| | |
| | | $rcmail_config['default_port'] = 143; |
| | | |
| | | // use this host for sending mails. |
| | | // to use SSL connection, set ssl://smtp.host.com |
| | | // if left blank, the PHP mail() function is used |
| | | $rcmail_config['smtp_server'] = ''; |
| | | |
| | | // SMTP port (default is 25) |
| | | // SMTP port (default is 25; 465 for SSL) |
| | | $rcmail_config['smtp_port'] = 25; |
| | | |
| | | // SMTP username (if required) if you use %u as the username RoundCube |
| | |
| | | |
| | | // use this folder to store temp files (must be writebale for apache user) |
| | | $rcmail_config['temp_dir'] = 'temp/'; |
| | | |
| | | // use this folder to store log files (must be writebale for apache user) |
| | | $rcmail_config['log_dir'] = 'logs/'; |
| | | |
| | | // session lifetime in minutes |
| | | $rcmail_config['session_lifetime'] = 10; |
| | |
| | | // default sort order |
| | | $rcmail_config['message_sort_order'] = 'DESC'; |
| | | |
| | | // path to a text file which will be added to each sent message |
| | | // paths are relative to the RoundCube root folder |
| | | $rcmail_config['generic_message_footer'] = ''; |
| | | |
| | | // this string is used as a delimiter for message headers when sending |
| | | $rcmail_config['mail_header_delimiter'] = "\r\n"; |
| | | |
| | | |
| | | /***** these settings can be overwritten by user's preferences *****/ |