File: //scripts.20110531.215904.25158/imapup
#!/usr/bin/perl
# cpanel - imapup Copyright(c) 2010 cPanel, Inc.
# All rights Reserved.
# copyright@cpanel.net http://cpanel.net
# This code is subject to the cPanel license. Unauthorized copying is prohibited
BEGIN { unshift @INC, '/usr/local/cpanel'; }
use strict;
use warnings;
use Cpanel::Config::LoadCpConf ();
my $cpconf_ref = Cpanel::Config::LoadCpConf::loadcpconf();
if ( defined $cpconf_ref->{'mailserver'} && $cpconf_ref->{'mailserver'} eq 'dovecot' ) {
exec '/scripts/dovecotup', @ARGV;
}
else {
exec '/scripts/courierup', @ARGV;
}