diff options
| author | roundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2005-09-30 22:04:50 +0000 |
|---|---|---|
| committer | roundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2005-09-30 22:04:50 +0000 |
| commit | 35cc90fc9f49a2dacd79d7c32e846f91e28af210 (patch) | |
| tree | 3941d505a4c27b927535cf5f87106ed6c11e975b /roundcubemail/config | |
| parent | 3e0b457ce893a6a309b573a270336fb3ef4edac7 (diff) | |
Improved SMTP script for sending mails. Now using the PEAR::Net_SMTP class
git-svn-id: https://svn.roundcube.net/trunk@11 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/config')
| -rw-r--r-- | roundcubemail/config/main.inc.php.dist | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/roundcubemail/config/main.inc.php.dist b/roundcubemail/config/main.inc.php.dist index 79bb96447..0e8fc54c1 100644 --- a/roundcubemail/config/main.inc.php.dist +++ b/roundcubemail/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'] = ''; |
