You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
398 B
19 lines
398 B
{
|
|
|
|
use esmith::util;
|
|
|
|
my $ldapbase = esmith::util::ldapBase ($DomainName);
|
|
|
|
$OUT .=<<"EOF";
|
|
|
|
define('DOMAIN', '$DomainName');
|
|
define('USER_BASE', 'ou=Users,$ldapbase');
|
|
define('IMAP_SERVER', '$SystemName.$DomainName');
|
|
define('IMAP_PORT', '$imaps{'TCPPort'}');
|
|
define('SMTP_SERVER', '$SystemName.$DomainName');
|
|
define('SMTP_PORT', '$ssmtpd{'TCPPort'}');
|
|
define('LDAP_SERVER', 'localhost');
|
|
|
|
EOF
|
|
|
|
}
|
|
|