diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-04-15 16:24:55 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-04-15 16:24:55 +0400 |
commit | 6663e20a1a0e14eba4cb31d3e3bb19d989180c54 (patch) | |
tree | a4dd27545d9d3006bb6931b24e023ae30f3d48eb /src/plugins | |
parent | 0d464875b6c84108c2bb4b0c12d8f39fc78dc840 (diff) | |
download | rspamd-6663e20a1a0e14eba4cb31d3e3bb19d989180c54.tar.gz rspamd-6663e20a1a0e14eba4cb31d3e3bb19d989180c54.zip |
* Try to convert each text part of messages to utf8 to avoid problems with regexps
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/regexp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/regexp.c b/src/plugins/regexp.c index 573d370f9..a05e0e0e0 100644 --- a/src/plugins/regexp.c +++ b/src/plugins/regexp.c @@ -174,7 +174,7 @@ process_regexp (struct rspamd_regexp *re, struct worker_task *task) return 0; case REGEXP_HEADER: if (re->header == NULL) { - msg_info ("process_regexp: header regexp without header name"); + msg_info ("process_regexp: header regexp without header name: '%s'", re->regexp_text); task_cache_add (task, re, 0); return 0; } |