diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/main.inc.php.dist | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 14ce518be..17ba0a031 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -298,6 +298,21 @@ $rcmail_config['message_sort_order'] = 'DESC'; // ONLY ENABLE IT IF YOU'RE REALLY SURE WHAT YOU'RE DOING! $rcmail_config['enable_installer'] = false; +// Log successful logins +$rcmail_config['log_logins'] = false; + +/** + * 'Delete always' + * This setting reflects if mail should be always marked as deleted, + * even if moving to "Trash" fails. This is necessary in some setups + * because a) people may not have a Trash folder or b) they are over + * quota (and Trash is included in the quota). + * + * This is a failover setting for iil_C_Move when a message is moved + * to the Trash, and not the same as "delete_right_away". + */ +$rcmail_config['delete_always'] = false; + /***** these settings can be overwritten by user's preferences *****/ // show up to X items in list view @@ -333,20 +348,8 @@ $rcmail_config['logout_purge'] = FALSE; // Compact INBOX on logout $rcmail_config['logout_expunge'] = FALSE; -/** - * 'Delete always' - * This setting reflects if mail should be always marked as deleted, - * even if moving to "Trash" fails. This is necessary in some setups - * because a) people may not have a Trash folder or b) they are over - * quota (and Trash is included in the quota). - * - * This is a failover setting for iil_C_Move when a message is moved - * to the Trash, and not the same as "delete_right_away". - */ -$rcmail_config['delete_always'] = false; - -// Log successful logins -$rcmail_config['log_logins'] = false; +// Display attached images below the message body +$rcmail_config['inline_images'] = TRUE; // end of config file ?> |