File: //proc/self/root/scripts.20110531.215904.25158/eximconfgen
#!/usr/bin/perl
# cpanel - eximconfgen 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 Cpanel::Exim::Config ();
my $exim_cfgobj = Cpanel::Exim::Config->new();
my %CFDATA = $exim_cfgobj->generate_config_file();
if ( @ARGV && grep( /\-template/, @ARGV ) ) {
print $CFDATA{'template'};
}
else {
print $CFDATA{'cfg'};
}