aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--packages/spamd_db.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/spamd_db.php b/packages/spamd_db.php
index ffa42ca9..22cdf786 100644
--- a/packages/spamd_db.php
+++ b/packages/spamd_db.php
@@ -213,7 +213,7 @@ if (typeof getURL == 'undefined') {
/* if string is really long allow it to be wrapped by
* replacing @ with space@
*/
- if(strlen($col)>40) {
+ if(strlen($col)>25) {
$col = str_replace("@"," @",$col);
$col = str_replace("-"," -",$col);
$col = str_replace("."," .",$col);