diff options
author | thomascube <thomas@roundcube.net> | 2005-09-30 22:04:50 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2005-09-30 22:04:50 +0000 |
commit | 968bdc7c90f718560b84eb3b7e8e1d02cf4270f3 (patch) | |
tree | a97784b62efac5215dc1cd71ea6b9a53aa753d8e /config/main.inc.php.dist | |
parent | 15fee7b8dd9991c798e6b3eeb9f98cd34e8153fc (diff) |
Improved SMTP script for sending mails. Now using the PEAR::Net_SMTP class
Diffstat (limited to 'config/main.inc.php.dist')
-rw-r--r-- | config/main.inc.php.dist | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 79bb96447..0e8fc54c1 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -15,7 +15,7 @@ $rcmail_config = array(); -// system error reporting: 1 = log; 2 = report (not implemented yet), 4 = show +// system error reporting: 1 = log; 2 = report (not implemented yet), 4 = show, 8 = trace $rcmail_config['debug_level'] = 5; // automatically create a new user when log-in the first time @@ -31,6 +31,9 @@ $rcmail_config['default_host'] = ''; // if left blank, the PHP mail() function is used $rcmail_config['smtp_server'] = ''; +// SMTP port (default is 25) +$rcmail_config['smtp_port'] = 25; + // SMTP username (if required) $rcmail_config['smtp_user'] = ''; |