From: Vsevolod Stakhov Date: Thu, 27 Oct 2016 08:34:15 +0000 (+0200) Subject: [Minor] Add one_param to MX symbols X-Git-Tag: 1.4.0~179 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa1e7f8425a07af47cbf91711a36657aad89f623;p=thirdparty%2Frspamd.git [Minor] Add one_param to MX symbols --- diff --git a/src/plugins/lua/mx_check.lua b/src/plugins/lua/mx_check.lua index 40dc871880..bf38f63c6f 100644 --- a/src/plugins/lua/mx_check.lua +++ b/src/plugins/lua/mx_check.lua @@ -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