From 0207c45c90818e7c7df64ea52c61050850dee13d Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Mon, 02 Nov 2009 04:58:14 -0500
Subject: [PATCH] More options for top posting feature (#1484272) using patch from Phil Weir

---
 config/main.inc.php.dist |   14 ++++++++++----
 1 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist
index 51c8ee4..5c3558a 100644
--- a/config/main.inc.php.dist
+++ b/config/main.inc.php.dist
@@ -453,12 +453,18 @@
 // 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
 ?>

--
Gitblit v1.9.1