| | |
| | | // TCP port used for IMAP connections |
| | | $rcmail_config['default_port'] = 143; |
| | | |
| | | // Automatically add this domain to user names for login |
| | | // Only for IMAP servers that require full e-mail addresses for login |
| | | // Specify an array with 'host' => 'domain' values to support multiple hosts |
| | | $rcmail_config['username_domain'] = ''; |
| | | |
| | | // This domain will be used to form e-mail addresses of new users |
| | | // Specify an array with 'host' => 'domain' values to support multiple hosts |
| | | $rcmail_config['mail_domain'] = ''; |
| | |
| | | // show pretty dates as standard |
| | | $rcmail_config['prettydate'] = TRUE; |
| | | |
| | | |
| | | /***** try to load host-specific configuration *****/ |
| | | |
| | | @include($_SERVER['HTTP_HOST'].'.inc.php'); |
| | | |
| | | |
| | | // end of config file |
| | | ?> |