Hi,

I would like to implement some sort of semi-automated or dynamic sender black listing. Basically what I would like to accomplish is to have a dynamic blacklist (not something hardcoded in config files, but rather some sort of a database, possibly SQL based) so that I could relatively easily add senders domains to this list.

Another thing I would like to do with this is to create a special folder in my mailbox and create a cron task that would automatically get all senders of emails in this folder and add it into that dynamic blacklist. So that if I moved someone's e-mail to this specific folder in my mailbox, their whole domain would be blacklisted in my antispam (at some point I could probably just use current Junk folder for this purpose).

I am aware of DNSBL and I already use it, but it's not efficient enough, I am receiving tons of spam from certain domains and IP's, which are always same, and even if I have a cron task that automatically learn everything from my Junk folder as spam, spamassasin pass more than 90% of these senders in future, even if they keep using same domains and IPs to send spam. I used to add these to config file like this:


blacklist_from      *@*wyprz.xyz

What I would like to do is something like

blacklist_from_postgres     sa@localhost:sa/blacklist

Or something like that so that it would connect to localhost postgres and checked mail sender against table blacklist in db sa or anything similar like this.

Isn't there already some sort of a plugin that is capable of this? Basically if there was something that would allow me to create this dynamic blacklist (eg. let me create some mysql / postgres table that would be used as blacklist by spamassasin) I could implement the rest myself easily.

Thanks

Reply via email to