summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-08-26 18:20:28 +0200
committerAleksander Machniak <alec@alec.pl>2012-08-26 18:20:28 +0200
commit651c7b6e9df38a3b7cdf6daebed39021d88c3bea (patch)
treebac0d18414e6e4b7a5f2ad7ba37403c5bf5a65b9 /config
parent4877dbd4d2ca63d7f6b8857abcb4d2f895f2542e (diff)
Add option to not include original message on reply, rename option top_posting to reply_mode (#1485149)
Diffstat (limited to 'config')
-rw-r--r--config/main.inc.php.dist7
1 files changed, 5 insertions, 2 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist
index 504593028..69a6ea279 100644
--- a/config/main.inc.php.dist
+++ b/config/main.inc.php.dist
@@ -783,8 +783,11 @@ $rcmail_config['display_next'] = true;
// 2 - Expand only threads with unread messages
$rcmail_config['autoexpand_threads'] = 0;
-// When replying place cursor above original message (top posting)
-$rcmail_config['top_posting'] = false;
+// When replying:
+// -1 - don't cite the original message
+// 0 - place cursor below the original message
+// 1 - place cursor above original message (top posting)
+$rcmail_config['reply_mode'] = 0;
// When replying strip original signature from message
$rcmail_config['strip_existing_sig'] = true;