[Rspamd] use boolean for one_shot, fixes #2066

master
andryyy 2018-12-04 08:31:56 +01:00
parent cfab7274b7
commit 968f6f4157
1 changed files with 3 additions and 3 deletions

View File

@ -13,17 +13,17 @@ group "MX" {
symbol "MX_INVALID" {
score = 0.5;
description = "No connectable MX";
one_shot = "true";
one_shot = true;
}
symbol "MX_MISSING" {
score = 2.0;
description = "No MX record";
one_shot = "true";
one_shot = true;
}
symbol "MX_GOOD" {
score = -0.01;
description = "MX was ok";
one_shot = "true";
one_shot = true;
}
}
symbol "CTYPE_MIXED_BOGUS" {