bsasninja

Well-Known Member
Sep 2, 2004
527
0
166
I have RBL´s on my Exim server (spamcop and spamhause)
The problem is that some customers have dinamic IP address that changes everytime.

And sometimes the get an IP that is blacklisted and they cant send e-mails using the e-mail client.

Is there a way to whitelist the IP so they can send the mails out?¿

Thanks in advance ! :D
 

luis

Well-Known Member
Sep 3, 2001
50
0
306
I had the same problem a while ago. Now I use it this way:

drop message = blacklisted $dnslist_text
!hosts = /etc/relayhosts
!hosts = +relay_hosts
!authenticated = *
dnslists = sbl-xbl.spamhaus.org : bl.spamcop.net :

Basically you are whitelisting all authenticated hosts, your clients of course.
Works fine for me
 

jamesbond

Well-Known Member
Oct 9, 2002
737
1
168
luis said:
I had the same problem a while ago. Now I use it this way:

drop message = blacklisted $dnslist_text
!hosts = /etc/relayhosts
!hosts = +relay_hosts
!authenticated = *
dnslists = sbl-xbl.spamhaus.org : bl.spamcop.net :

Basically you are whitelisting all authenticated hosts, your clients of course.
Works fine for me
Why did you add '!hosts = /etc/relayhosts'?
Isn't that the same as '!hosts = +relay_hosts' ?