| | |
| | | | Main configuration file | |
| | | | | |
| | | | This file is part of the RoundCube Webmail client | |
| | | | Copyright (C) 2005-2008, RoundCube Dev. - Switzerland | |
| | | | Copyright (C) 2005-2009, RoundCube Dev. - Switzerland | |
| | | | Licensed under the GNU GPL | |
| | | | | |
| | | +-----------------------------------------------------------------------+ |
| | |
| | | // Optional, defaults to "check" |
| | | $rcmail_config['imap_auth_type'] = null; |
| | | |
| | | // If you know your imap's root directory and its folder delimiter, |
| | | // you can specify them here. Otherwise they will be determined automatically. |
| | | $rcmail_config['imap_root'] = null; |
| | | $rcmail_config['imap_delimiter'] = null; |
| | | |
| | | // 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['sendmail_delay'] = 0; |
| | | |
| | | // These cols are shown in the message list. Available cols are: |
| | | // subject, from, to, cc, replyto, date, size, encoding, flag, attachment |
| | | // subject, from, to, cc, replyto, date, size, flag, attachment |
| | | $rcmail_config['list_cols'] = array('subject', 'from', 'date', 'size', 'flag', 'attachment'); |
| | | |
| | | // Includes should be interpreted as PHP files |
| | |
| | | |
| | | // use this name to compose page titles |
| | | $rcmail_config['product_name'] = 'RoundCube Webmail'; |
| | | |
| | | // only list folders within this path |
| | | $rcmail_config['imap_root'] = ''; |
| | | |
| | | // store draft message is this mailbox |
| | | // leave blank if draft messages should not be stored |
| | |
| | | |
| | | // In order to enable public ldap search, configure an array like the Verisign |
| | | // example further below. if you would like to test, simply uncomment the example. |
| | | $rcmail_config['ldap_public'] = array(); |
| | | |
| | | // |
| | | // If you are going to use LDAP for individual address books, you will need to |
| | | // set 'user_specific' to true and use the variables to generate the appropriate DNs to access it. |
| | |
| | | * '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 |
| | | * 'global_search' => true, // perform a global search for address auto-completion on compose |
| | | * 'fuzzy_search' => true); // server allows wildcard search |
| | | */ |
| | | |
| | | // An ordered array of the ids of the addressbooks that should be searched |
| | | // when populating address autocomplete fields server-side. ex: array('sql','Verisign'); |
| | | $rcmail_config['autocomplete_addressbooks'] = array('sql'); |
| | | |
| | | // don't allow these settings to be overriden by the user |
| | | $rcmail_config['dont_override'] = array(); |
| | |
| | | // prefer displaying HTML messages |
| | | $rcmail_config['prefer_html'] = TRUE; |
| | | |
| | | // display images in mail from known senders |
| | | $rcmail_config['addrbook_show_images'] = FALSE; |
| | | // display remote inline images |
| | | // 0 - Never, always ask |
| | | // 1 - Ask if sender is not in address book |
| | | // 2 - Always show inline images |
| | | $rcmail_config['show_images'] = 0; |
| | | |
| | | // compose html formatted messages by default |
| | | $rcmail_config['htmleditor'] = FALSE; |
| | |
| | | // Must be greater than or equal to 'min_keep_alive' and less than 'session_lifetime' |
| | | $rcmail_config['keep_alive'] = 60; |
| | | |
| | | // If true all folders will be checked for recent messages |
| | | $rcmail_config['check_all_folders'] = FALSE; |
| | | |
| | | // end of config file |
| | | ?> |