summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2008-06-14 18:09:53 +0000
committeralecpl <alec@alec.pl>2008-06-14 18:09:53 +0000
commit166b615dbb67d403845b0dc4aed5ed56caf8b6de (patch)
treec7436f751430bed640ec71336cb4d064fc8fa254 /config
parented42ff12e76fd626d6348665cc28415fcc052715 (diff)
- Added option to disable displaying of attached images below the message body
Diffstat (limited to 'config')
-rw-r--r--config/main.inc.php.dist31
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
?>