Changeset 183 in subversion


Ignore:
Timestamp:
Apr 4, 2006 5:42:01 PM (7 years ago)
Author:
roundcube
Message:

Include host-specific configuration file

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/config/main.inc.php.dist

    r171 r183  
    4040// TCP port used for IMAP connections 
    4141$rcmail_config['default_port'] = 143; 
     42 
     43// Automatically add this domain to user names for login 
     44// Only for IMAP servers that require full e-mail addresses for login 
     45// Specify an array with 'host' => 'domain' values to support multiple hosts 
     46$rcmail_config['username_domain'] = ''; 
    4247 
    4348// This domain will be used to form e-mail addresses of new users 
     
    176181$rcmail_config['prettydate'] = TRUE; 
    177182 
     183 
     184/***** try to load host-specific configuration *****/ 
     185 
     186@include($_SERVER['HTTP_HOST'].'.inc.php'); 
     187 
     188 
    178189// end of config file 
    179190?> 
Note: See TracChangeset for help on using the changeset viewer.