]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Add one_param to MX symbols
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 27 Oct 2016 08:34:15 +0000 (10:34 +0200)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 27 Oct 2016 08:34:15 +0000 (10:34 +0200)
src/plugins/lua/mx_check.lua

index 40dc871880bfa86a76a182fdce2c49610135d800..bf38f63c6f1325a93aad101a069642b4862f29e7 100644 (file)
@@ -264,6 +264,7 @@ if opts then
     description = 'Domain has no working MX',
     group = 'MX',
     one_shot = true,
+    one_param = true,
   })
   rspamd_config:set_metric_symbol({
     name = settings.symbol_good_mx,
@@ -271,6 +272,7 @@ if opts then
     description = 'Domain has working MX',
     group = 'MX',
     one_shot = true,
+    one_param = true,
   })
   rspamd_config:set_metric_symbol({
     name = settings.symbol_no_mx,
@@ -278,5 +280,6 @@ if opts then
     description = 'Domain has no resolvable MX',
     group = 'MX',
     one_shot = true,
+    one_param = true,
   })
 end