From 11be9330dee677a25653dcb83adc343b8bf95a88 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Mon, 20 Sep 2010 07:07:56 -0400 Subject: [PATCH] - Support %z variable in host configuration options (#1487003) --- config/main.inc.php.dist | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index df251c6..e036395 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -98,6 +98,7 @@ // %h - user's IMAP hostname // %n - http hostname ($_SERVER['SERVER_NAME']) // %d - domain (http hostname without the first part) +// %z - IMAP domain (IMAP hostname without the first part) // For example %n = mail.domain.tld, %d = domain.tld $rcmail_config['smtp_server'] = ''; @@ -184,6 +185,7 @@ // %h - user's IMAP hostname // %n - http hostname ($_SERVER['SERVER_NAME']) // %d - domain (http hostname without the first part) +// %z - IMAP domain (IMAP hostname without the first part) // For example %n = mail.domain.tld, %d = domain.tld $rcmail_config['username_domain'] = ''; @@ -193,6 +195,7 @@ // %h - user's IMAP hostname // %n - http hostname ($_SERVER['SERVER_NAME']) // %d - domain (http hostname without the first part) +// %z - IMAP domain (IMAP hostname without the first part) // For example %n = mail.domain.tld, %d = domain.tld $rcmail_config['mail_domain'] = ''; @@ -400,6 +403,7 @@ // %h - user's IMAP hostname // %n - http hostname ($_SERVER['SERVER_NAME']) // %d - domain (http hostname without the first part) + // %z - IMAP domain (IMAP hostname without the first part) // For example %n = mail.domain.tld, %d = domain.tld 'hosts' => array('directory.verisign.com'), 'port' => 389, -- Gitblit v1.9.1