summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2014-09-26 15:19:14 +0200
committerThomas Bruederli <thomas@roundcube.net>2014-09-26 15:19:46 +0200
commita4dc96e73e74ffa15a1e76010c7afba531eac15b (patch)
tree7411f485a008b5b13f3e098e562ab4888cecdf86 /config
parent7d5a1c20e8bf245635880f7e0d6c3186cd92d007 (diff)
Add 'sig_max_lines' config option to defaults (#1490071)
Diffstat (limited to 'config')
-rw-r--r--config/defaults.inc.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/config/defaults.inc.php b/config/defaults.inc.php
index 760325156..ade3f97f2 100644
--- a/config/defaults.inc.php
+++ b/config/defaults.inc.php
@@ -640,6 +640,10 @@ $config['spellcheck_ignore_syms'] = false;
// Use this char/string to separate recipients when composing a new message
$config['recipients_separator'] = ',';
+// Number of lines at the end of a message considered to contain the signature.
+// Increase this value if signatures are not properly detected and colored
+$config['sig_max_lines'] = 15;
+
// don't let users set pagesize to more than this value if set
$config['max_pagesize'] = 200;