[Rspamd-Users] Multimap behavior

usenet at schani.com usenet at schani.com
Sat Dec 2 12:32:15 UTC 2023


Hello,
I have a problem with Multimap that occurs with emails from mailing lists.
A subscribed mailing list is positively deposited via a map with a score 
of -15 (no action).
A user now sends spam via this mailing list and should have to be 
rejected via a second map. But that doesn't happen.

Do these maps only work on the envelope header? Can i change that so 
that it grabs both?
Is only one map in the multimap triggered or is it summed up?
How do you solve this?

Thanks from Bavaria with 50cm of fresh snow this night
Christian



multimap.conf

BLACKLIST_SENDER_EMAIL {
       type = "header";
	  filter = "email";
       map = "/etc/rspamd/local.d/blacklist.sender.email.map";
	  prefilter = true;
	  score = 30.0
       ##action = "reject";
	  symbol = "BLACKLIST_SENDER_EMAIL";
  }


WHITELIST_SENDER_EMAIL {
       type = "from";
	  filter = "email";
       map = "/etc/rspamd/local.d/whitelist.sender.email.map";
	  prefilter = true;
	  score = -15.0
       ##action = "accept";
	  symbol = "WHITELIST_SENDER_EMAIL";
  }

.... and some more ....


More information about the Users mailing list