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 /config/main.inc.php.dist | |
parent | 84d06edb06433c980dc7718188fcdd0799b08c09 (diff) |
Make smtp HELO/EHLO hostname configurable (closes #1484067)
Diffstat (limited to 'config/main.inc.php.dist')
-rw-r--r-- | config/main.inc.php.dist | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index b948b3845..6aa6e4b40 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -77,6 +77,12 @@ $rcmail_config['smtp_pass'] = ''; // best server supported one) $rcmail_config['smtp_auth_type'] = ''; +// SMTP HELO host +// Hostname to give to the remote server for SMTP 'HELO' or 'EHLO' messages +// Leave this blank and you will get the server variable 'server_name' or +// localhost if that isn't defined. +$rcmail_config['smtp_helo_host'] = ''; + // Log sent messages $rcmail_config['smtp_log'] = TRUE; |