| | |
| | | $rcmail_config['imap_root'] = null; |
| | | $rcmail_config['imap_delimiter'] = null; |
| | | |
| | | // By default IMAP capabilities are readed after connection to IMAP server |
| | | // In some cases, e.g. when using IMAP proxy, there's a need to refresh the list |
| | | // after login. Set to True if you've got this case. |
| | | $rcmail_config['imap_force_caps'] = false; |
| | | |
| | | // ---------------------------------- |
| | | // SMTP |
| | | // ---------------------------------- |
| | |
| | | |
| | | // How many seconds must pass between emails sent by a user |
| | | $rcmail_config['sendmail_delay'] = 0; |
| | | |
| | | // Maximum number of recipients per message. Default: 0 (no limit) |
| | | $rcmail_config['max_recipients'] = 0; |
| | | |
| | | // Maximum allowednumber of members of an address group. Default: 0 (no limit) |
| | | // If 'max_recipients' is set this value should be less or equal |
| | | $rcmail_config['max_group_members'] = 0; |
| | | |
| | | // add this user-agent to message headers when sending |
| | | $rcmail_config['useragent'] = 'RoundCube Webmail/'.RCMAIL_VERSION; |
| | |
| | | // default setting if preview pane is enabled |
| | | $rcmail_config['preview_pane'] = false; |
| | | |
| | | // Mark as read when viewed in preview pane (delay in seconds) |
| | | // Set to -1 if messages in preview pane should not be marked as read |
| | | $rcmail_config['preview_pane_mark_read'] = 0; |
| | | |
| | | // focus new window if new message arrives |
| | | $rcmail_config['focus_on_new_message'] = true; |
| | | |