/etc/rspamd/local.d/multimap.conf:
IP_WHITELIST {
type = "ip";
prefilter = true;
map = "/${LOCAL_CONFDIR}/local.d/ip_whitelist.map";
action = "accept";
}
/etc/rspamd/local.d/ip_whitelist.map:
192.168.122.3
192.168.122.4
/etc/rspamd/local.d/multimap.conf:
WHITELIST_SENDER_DOMAIN {
type = "from";
filter = "email:domain";
map = "/etc/rspamd/local.d/whitelist.sender.domain.map";
score = -6.0
}
/etc/rspamd/local.d/whitelist.sender.domain.map:
meinedomain.tld
anderedomain.tld
Sorry for the slight offtopic:
Does the
rspamc learn_ham
only train the bayes filter or does it actually add some whitelisting on its own?I've just had an email where bayes was 100% sure it wasn't spam, but their other parameters were so bad, it was marked as spam. Does
learn_ham
help here?