summaryrefslogtreecommitdiff
path: root/roundcubemail/config
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-11-02 09:58:14 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-11-02 09:58:14 +0000
commit50d1fabb9ef7b2c02bd12b891644dc5b2687a229 (patch)
treed937e02211596af7a3e7e5b9e92e9226a62b590e /roundcubemail/config
parentdaa2f26bfff24af95ab423f115a8b5e70bbae2f4 (diff)
More options for top posting feature (#1484272) using patch from Phil Weir
git-svn-id: https://svn.roundcube.net/trunk@3089 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/config')
-rw-r--r--roundcubemail/config/main.inc.php.dist14
1 files changed, 10 insertions, 4 deletions
diff --git a/roundcubemail/config/main.inc.php.dist b/roundcubemail/config/main.inc.php.dist
index 51c8ee450..5c3558a82 100644
--- a/roundcubemail/config/main.inc.php.dist
+++ b/roundcubemail/config/main.inc.php.dist
@@ -453,12 +453,18 @@ $rcmail_config['index_sort'] = TRUE;
// When replying place cursor above original message (top posting)
$rcmail_config['top_posting'] = FALSE;
+// When replying strip original signature from message
+$rcmail_config['strip_existing_sig'] = TRUE;
+
// Show signature:
-// 0 - Always
-// 1 - Never
+// 0 - Never
+// 1 - Always
// 2 - New messages only
-// 3 - Forwards, Edits and Replies only
-$rcmail_config['show_sig'] = 0;
+// 3 - Forwards and Replies only
+$rcmail_config['show_sig'] = 1;
+
+// When replying or forwarding place sender's signature above existing message
+$rcmail_config['sig_above'] = FALSE;
// end of config file
?>