From a4dc96e73e74ffa15a1e76010c7afba531eac15b Mon Sep 17 00:00:00 2001 From: Thomas Bruederli <thomas@roundcube.net> Date: Fri, 26 Sep 2014 09:19:46 -0400 Subject: [PATCH] Add 'sig_max_lines' config option to defaults (#1490071) --- config/defaults.inc.php | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/config/defaults.inc.php b/config/defaults.inc.php index 7603251..ade3f97 100644 --- a/config/defaults.inc.php +++ b/config/defaults.inc.php @@ -640,6 +640,10 @@ // 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; -- Gitblit v1.9.1