diff options
author | svncommit <devs@roundcube.net> | 2007-09-20 11:24:41 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2007-09-20 11:24:41 +0000 |
commit | aca3d25f1b65bc601ea66b59528e39ce158f6c89 (patch) | |
tree | 69d3185c9efe3ec26d1de43f6988316878a5b75a /program | |
parent | 84d06edb06433c980dc7718188fcdd0799b08c09 (diff) |
Make smtp HELO/EHLO hostname configurable (closes #1484067)
Diffstat (limited to 'program')
-rw-r--r-- | program/include/rcube_smtp.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_smtp.inc b/program/include/rcube_smtp.inc index 7b839873e..f56246bbd 100644 --- a/program/include/rcube_smtp.inc +++ b/program/include/rcube_smtp.inc @@ -76,7 +76,7 @@ function smtp_mail($from, $recipients, &$headers, &$body, &$response) // create Net_SMTP object and connect to server if (!is_object($smtp_conn)) { - $helo_host = !empty($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : 'localhost'; + $helo_host = !empty($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : (!empty($CONFIG['smtp_helo_host']) ? $CONFIG['smtp_helo_host'] : 'localhost'); $SMTP_CONN = new Net_SMTP($smtp_host, $smtp_port, $helo_host); // set debugging |