up vote 0 down vote favorite
share [g+] share [fb]

I have a Postfix e-mail receiving server setup.

I have applied the following setting in my Postfix main.cf file:

    smtpd_recipient_restrictions =
  reject_unauth_destination, 
  reject_rbl_client sbl-xbl.spamhaus.org,
  reject_rbl_client bl.spamcop.net
  permit

for checking the mails with DNSRBL providers.

I want to know if a certain IP address is continuously attacking with spam on my e-mail server, then how can I get it added with the following DNSRBL provider list:

  1. Spamcop
  2. Spamhaus

thanks in advance.

Ashish

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Spamcop requires you to view spam emails to make sure that they really are spam. I don't think they give you an option to have your mta report spam automatically.

Spamhaus offers no way to report spam to them, neither manually (like spamcop) nor automatically.

link|improve this answer
feedback

I think the reject_rbl_client is what you are looking for:

smtpd_recipient_restrictions reject_rbl_client zen.spamhaus.org, reject_rbl_client bl.spamcop.net
link|improve this answer
How is this basically different from what Ashish already has mentioned in his question? And how does this report the offending IP addresses to different DNSBLs? – joschi Nov 3 '09 at 10:46
I agree with joschi's comment. – Ashish Sharma Nov 3 '09 at 10:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.