1

Topic: Senderscore Exceptions?

Greetings:

Using the new senderscore plugin of iredAPD, how can I except a domain / ip from being rejected due to low senderscore value?

I know how to set the general value, but I need to selectively exempt some domains from being handled by the plugin.

Thanks.

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2

Re: Senderscore Exceptions?

Unfortunately, currently no whitelist for senderscore plugins yet. Feel free to create an issue as feature request here:
https://github.com/iredmail/iRedAPD/issues

BTW, are you sure these domains have low scores?

3 (edited by hws 2019-12-13 21:48:33)

Re: Senderscore Exceptions?

ZhangHuangbin wrote:

BTW, are you sure these domains have low scores?

Yes, the score is logged by iredapd. The score is between 10 and 20.

The domains are trustworthy, but they use a shared mail server from a hosting company that seems to have a very low score. It looks like this is a common problem with SenderScore.

Would it help if we whitelist them? Or will the senderscore plugin reject the mail before the whitelist is checked and followed?

4

Re: Senderscore Exceptions?

The best solution is we improve iRedAPD to support some kind of whitelisting or bypassing. Feel free to create an issue as feature request here: https://github.com/iredmail/iRedAPD/issues

As a temporary solution, you can whitelist its server.
Or, update the score in SQL table "iredapd.senderscore_cache". Run a cron job to update the "time" column so that it won't expire.

5

Re: Senderscore Exceptions?

Hi @hws:

I added a command line script to add whitelist IP addresses for senderscore plugin here:
https://github.com/iredmail/iRedAPD/blo … e_admin.py

You can download this script and copy to /opt/iredapd/tools/, then whitelist IP addresses like this:

cd /opt/iredapd/tools/
python2 senderscore_admin.py -w <ip> <ip> <ip>

Let me know if it doesn't work for you, or you need more features. Enjoy. big_smile

6

Re: Senderscore Exceptions?

ZhangHuangbin wrote:

I added a command line script to add whitelist IP addresses for senderscore plugin here:
https://github.com/iredmail/iRedAPD/blo … e_admin.py

Let me know if it doesn't work for you, or you need more features. Enjoy. big_smile

Hi @ZhangHuangbin, thank you for your help. The whitelist works perfectly!