]> source.dussan.org Git - rspamd.git/commitdiff
[Fix] Add spaces instead of newlines to the normalized content
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Sun, 24 Jul 2016 17:48:34 +0000 (18:48 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Sun, 24 Jul 2016 17:48:34 +0000 (18:48 +0100)
src/ragel/newlines_strip.rl

index 190a759ac22ca5e56ce61b8aed362e9472cc7974..a0e239bc3f0339d46557a48c338d4087f29ed289 100644 (file)
@@ -4,7 +4,7 @@
   action Double_CRLF {
     if (!crlf_added && p > c) {
       (*newlines_count)++;
-      g_byte_array_append (data, (const guint8 *)"\n", 1);
+      g_byte_array_append (data, (const guint8 *)" ", 1);
       c = p;
     }
 
@@ -34,7 +34,7 @@
   action Line_CRLF {
     if (!crlf_added) {
       if (is_html || g_ascii_ispunct (last_c)) {
-         g_byte_array_append (data, (const guint8 *)"\n", 1);
+         g_byte_array_append (data, (const guint8 *)" ", 1);
          crlf_added = TRUE;
       }
     }