summaryrefslogtreecommitdiffstats
path: root/src/filter.c
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@rambler-co.ru>2013-01-09 16:35:03 +0400
committerVsevolod Stakhov <vsevolod@rambler-co.ru>2013-01-09 16:35:03 +0400
commit823c263b9d417a9d28344c469b253e0dfe76e640 (patch)
tree9b87cc08829c7a66c5b4181848da8baf53fba415 /src/filter.c
parent86d52c83c8cb219e503704e4ee762a7633431e36 (diff)
downloadrspamd-823c263b9d417a9d28344c469b253e0dfe76e640.tar.gz
rspamd-823c263b9d417a9d28344c469b253e0dfe76e640.zip
Add saving of actions, symbols and maps.
Diffstat (limited to 'src/filter.c')
-rw-r--r--src/filter.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/filter.c b/src/filter.c
index bbe3b4678..44fc16a07 100644
--- a/src/filter.c
+++ b/src/filter.c
@@ -830,11 +830,11 @@ str_action_metric (enum rspamd_metric_action action)
case METRIC_ACTION_REJECT:
return "reject";
case METRIC_ACTION_SOFT_REJECT:
- return "soft reject";
+ return "soft_reject";
case METRIC_ACTION_REWRITE_SUBJECT:
- return "rewrite subject";
+ return "rewrite_subject";
case METRIC_ACTION_ADD_HEADER:
- return "add header";
+ return "add_header";
case METRIC_ACTION_GREYLIST:
return "greylist";
case METRIC_ACTION_NOACTION: