Free Software
is a term used to describe software that is freely available, which allows users and developers to copy, modify and redistribute the source code.

Postfix options


Last week I got call from one of my colleagues complaining about the amount of spam she’s receiving, so I installed SA and implemented some restricted options in postfix

  1. smtpd_recipient_restrictions =
  2.         permit_sasl_authenticated,
  3.         permit_mynetworks,
  4.         reject_unauth_destination,
  5.         reject_invalid_hostname,
  6.         reject_non_fqdn_hostname,
  7.         reject_non_fqdn_sender,
  8.         reject_rbl_client list.dsbl.org,
  9.         reject_rbl_client cbl.abuseat.org,
  10.         reject_rbl_client, dnsbl.sorbs.net,
  11.         reject_rbl_client spam.dnsbl.sorbs.net,
  12.         reject_rbl_client korea.services.net,
  13.         reject_rbl_client zen.spamhaus.org,
  14.         reject_rbl_client pbl.spamhaus.org,
  15.         reject_rbl_client sbl.spamhaus.org,
  16.         permit

but later she called complaining that she cannot send emails using our SMTP server so for me it was what the hell is going one? later I found that Postfix is picky about the order of your options so if you do reject_non_fqdn_hostname before permitting sasl authenticated users, those authenticated will not be able to send emails.

and this was new to me.

Tags: , , , , , , , , , , , ,

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>