diff options
author | alecpl <alec@alec.pl> | 2010-06-03 08:02:12 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-06-03 08:02:12 +0000 |
commit | bb8721aaeb4961f0dee8ca250749906e01a8f6a8 (patch) | |
tree | 743b5444c38d9903331079e95bf99b42c83ba3b0 /program/include/rcube_smtp.php | |
parent | 05a631a43c1950fc99f817cb50e4184dc0696663 (diff) |
- Support dynamic hostname (%d/%n) variables in configuration options (#1485438)
Diffstat (limited to 'program/include/rcube_smtp.php')
-rw-r--r-- | program/include/rcube_smtp.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_smtp.php b/program/include/rcube_smtp.php index 447143500..4525502db 100644 --- a/program/include/rcube_smtp.php +++ b/program/include/rcube_smtp.php @@ -73,7 +73,7 @@ class rcube_smtp 'smtp_timeout' => $RCMAIL->config->get('smtp_timeout'), )); - $smtp_host = str_replace('%h', $_SESSION['imap_host'], $CONFIG['smtp_server']); + $smtp_host = rcube_parse_host($CONFIG['smtp_server']); // when called from Installer it's possible to have empty $smtp_host here if (!$smtp_host) $smtp_host = 'localhost'; $smtp_port = is_numeric($CONFIG['smtp_port']) ? $CONFIG['smtp_port'] : 25; |