Hi Zitat von FredZ via Users : > Hello all > > Firstly: I have little to no working knowledge of RSPAMD. So please > be patient with me. > > I am attempting to whitelist sender domains. > > What I have to date. > > /etc/rspamd/local.d/multimap.conf > WHITELIST_SENDER_DOMAIN { > type = "from"; > filter = "email:domain"; > map = "/etc/rspamd/local.d/whitelist.sender.domain.map"; > score = -1000.0 > } > > > /etc/rspamd/local.d/whitelist.sender.domain.map > whitelisteddomain.tld > whitelisted.domaon.tld > > Obviously whitelisteddomain.tld and whitelisted.domaon.tld are the > actual domains I want whitelisted. > > However this doesn't seem to be working as emails from the domains > in the list are still being marked as spam. > > rspamd ver = 2.7 > postfix > Dovecot > Sieve > Redis > OS = Debian Buster > > Your comments would be most helpful. > > Regards > > Fred try with a ; after score = -1000 and before the closing bracket. -1000 is quite hefty score. -10 should do it I presume there should be a closing }. Ist is listed in rspamadm configdump like this? I have a blocklist with regex like this: LOCAL_BL_FROM { type = "from"; map = "/usr/local/etc/rspamd/local.d/mail_from_blacklist.map"; filter = "text"; symbol = "LOCAL_BL_FROM"; description = "Local from blacklist"; regexp = true; score = 6; } with cat /usr/local/etc/rspamd/local.d/mail_from_blacklist.map /.*@web.de/i Cheers Christian