4 msgClient sporadically unknown
2 msgdisappearing admin mail
1 msgVirtual mailing list from SQL query
13 msgthe most popular domainkey signer?
2 msgAlias to nonexistent user
8 msgConfiguration... any issues or suggestions?
3 msgScript to 'click' on a URL in an e-mail?
2 msgLots of Connection Refused messages
4 msgGet rid of messages in Cyrillic?
6 msgDisabling cleanup of messages?
4 msgdomain name not appending for internal messages
2 msgOT: help with understanding domain key implicat...
7 msgrejecting spam that doesn't include the recipie...
4 msgQuestion: rejecting email normally, then callin...
3 msgdeny sender
7 msgPostfix SMTP service unavailable
4 msgcontrolling spamming using sender_access file
2 msgaddress not listed for hostname
3 msgBest method to handle invalid HELO hostnames?

How to block certain tld's
\ Jack Raats (16 Mar 2008)
. \ Justin Piszcz (16 Mar 2008)
. \ mouss (16 Mar 2008)

Subject:Re: How to block certain tld's
Group:Postfix-users
From:mouss
Date:16 Mar 2008


 
Jack Raats wrote:
> I want to block certain tld's and somehow it doesn't work.
>
> In main.cf I have
>
> smtpd_recipient_restrictions =
> ....
> permit_mynetworks,
> permit_sasl_authenticated,
> reject_unauth_destination,
> ....
> check_client_access hash:/postfix/tables/blacklist,
> ...
>
> In /postfix/tables/blacklist
> .biz REJECT
> .gov REJECT
> .pro REJECT
> .cn REJECT
>

http://www.postfix.org/postconf.5.html#parent_domain_matches_subdomains

> Still I receive a lot of chinese spam.
> Can anyone give me some clues?

you forgot the relevant logs.
>
> and how to do the opposite?
> To receive mail from only three tld's like .net, .com and .org?

smtpd_recipient_restrictions =
...
reject_unauth_destination
...
check_client_access pcre:/etc/postfix/tld_acl
check_helo_access pcre:/etc/postfix/tld_acl


== tld_acl
# whitelist
/\.(com|org|net|info)$/ DUNNO
...
# blacklist
/\.(arpa|lan|localdomain|localhost)$/ REJECT
#/\.(aero|museum)$/ REJECT
...

# whitelist"country" tld
/\.[^.]{2}$/ DUNNO
#others
/\./ reject_unknown_client,
reject_unknown_helo_hostname, greylist




© 2004-2008 readlist.com