| | |
| | | +-----------------------------------------------------------------------+ |
| | | | Main configuration file | |
| | | | | |
| | | | This file is part of the RoundCube Webmail client | |
| | | | Copyright (C) 2005-2010, RoundCube Dev. - Switzerland | |
| | | | This file is part of the Roundcube Webmail client | |
| | | | Copyright (C) 2005-2010, Roundcube Dev. - Switzerland | |
| | | | Licensed under the GNU GPL | |
| | | | | |
| | | +-----------------------------------------------------------------------+ |
| | |
| | | // %h - user's IMAP hostname |
| | | // %n - http hostname ($_SERVER['SERVER_NAME']) |
| | | // %d - domain (http hostname without the first part) |
| | | // %z - IMAP domain (IMAP hostname without the first part) |
| | | // For example %n = mail.domain.tld, %d = domain.tld |
| | | $rcmail_config['smtp_server'] = ''; |
| | | |
| | | // 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 |
| | | // SMTP username (if required) if you use %u as the username Roundcube |
| | | // will use the current username for login |
| | | $rcmail_config['smtp_user'] = ''; |
| | | |
| | | // SMTP password (if required) if you use %p as the password RoundCube |
| | | // SMTP password (if required) if you use %p as the password Roundcube |
| | | // will use the current user's password for login |
| | | $rcmail_config['smtp_pass'] = ''; |
| | | |
| | |
| | | // set the port for the ssl connection as value of this option if it differs from the default 443 |
| | | $rcmail_config['force_https'] = false; |
| | | |
| | | // automatically create a new RoundCube user when log-in the first time. |
| | | // automatically create a new Roundcube user when log-in the first time. |
| | | // a new user will be created once the IMAP login succeeds. |
| | | // set to false if only registered users can use this service |
| | | $rcmail_config['auto_create_user'] = true; |
| | |
| | | // %h - user's IMAP hostname |
| | | // %n - http hostname ($_SERVER['SERVER_NAME']) |
| | | // %d - domain (http hostname without the first part) |
| | | // %z - IMAP domain (IMAP hostname without the first part) |
| | | // For example %n = mail.domain.tld, %d = domain.tld |
| | | $rcmail_config['username_domain'] = ''; |
| | | |
| | |
| | | // %h - user's IMAP hostname |
| | | // %n - http hostname ($_SERVER['SERVER_NAME']) |
| | | // %d - domain (http hostname without the first part) |
| | | // %z - IMAP domain (IMAP hostname without the first part) |
| | | // For example %n = mail.domain.tld, %d = domain.tld |
| | | $rcmail_config['mail_domain'] = ''; |
| | | |
| | |
| | | $rcmail_config['include_host_config'] = false; |
| | | |
| | | // path to a text file which will be added to each sent message |
| | | // paths are relative to the RoundCube root folder |
| | | // paths are relative to the Roundcube root folder |
| | | $rcmail_config['generic_message_footer'] = ''; |
| | | |
| | | // path to a text file which will be added to each sent HTML message |
| | | // paths are relative to the RoundCube root folder |
| | | // paths are relative to the Roundcube root folder |
| | | $rcmail_config['generic_message_footer_html'] = ''; |
| | | |
| | | // add a received header to outgoing mails containing the creators IP and hostname |
| | |
| | | // %h - user's IMAP hostname |
| | | // %n - http hostname ($_SERVER['SERVER_NAME']) |
| | | // %d - domain (http hostname without the first part) |
| | | // %z - IMAP domain (IMAP hostname without the first part) |
| | | // For example %n = mail.domain.tld, %d = domain.tld |
| | | 'hosts' => array('directory.verisign.com'), |
| | | 'port' => 389, |
| | |
| | | 'sort' => 'cn', // The field to sort the listing by. |
| | | 'scope' => 'sub', // search mode: sub|base|list |
| | | 'filter' => '', // used for basic listing (if not empty) and will be &'d with search queries. example: status=act |
| | | 'fuzzy_search' => true // server allows wildcard search |
| | | 'fuzzy_search' => true, // server allows wildcard search |
| | | 'sizelimit' => '0', // Enables you to limit the count of entries fetched. Setting this to 0 means no limit. |
| | | 'timelimit' => '0', // Sets the number of seconds how long is spend on the search. Setting this to 0 means no limit. |
| | | ); |
| | |
| | | $rcmail_config['delete_always'] = false; |
| | | |
| | | // end of config file |
| | | ?> |
| | | |