HowTo: Postfix with SPF

Reading Time: 4 minutes

In this post, I would like to explain the usage of SPF (Sender Policy Framework), which could be used to prevent spam. SPF will use the DNS system to tell the receiving mail server, whether the sending server is allowed to send mails for this domain. As this is the basic concept, I will explain it in more detail in the first section of this post. The last section will explain, how to use SPF in a Postfix environment.

What is SPF

SPF or Sender Policy Framework can help to prevent spam, as every domain owner can specify which IP is allowed to send emails for the domain. The first step is to create a DNS TXT record, which will publish a list of IP’s which are allowed to send emails for your domain.

This record has to start with the SPF version:

v=spf1

After the version statement, you will need one or multiple statements. Those statements can have one of the following qualifiers:

  • “+” The following host is allowed. This is default and assumed if you did not set a qualifier in font of a statement.
  • “?” The following host should be treated as neutral.
  • “~” This indicates a softfail, which means, the other side should be treated as failed but the mail should be accepted.
  • “-” This indicates a fail.

After the qualifier, you have to specify one of eight mechanisms:

  • “all” which will match everything and should be at the end of every entry, like a default rule when working with ACL’s
  • “A” The receiver will check the “A” or “AAAA” record. If this matches the senders address, this statement applies.
  • “IPv4” If the sender matches the IP address or IP range this statement applies.
  • “IPv6” If the sender matches the IPv6 address or IPv6 range this statement applies.
  • “MX” If the MX record resolves to the senders IP, this statement matches.
  • “PTR” If the PTR record points to a domain name within the given domain and this domain resolves to the senders IP, this statement matches.
  • “exists” If the domain name exists and can be resolved, no matter to which IP, the Statement matches.
  • “include” The includes statement points to another SPF entry and if this one matches, the statement matches.

It is also possible to redirect the SPF request to another domain with the “redirect” statement.

This is everything you need to know. There are some SPF generators in the web, which are useful but the creation of such a record is very easy. The one for my mail server looks like this:

host -t TXT flomain.de
flomain.de descriptive text "v=spf1 ip4:89.163.185.211/32 -all"

I will only allow mails coming from my server. If the mail is coming from a different server, the receiver should reject this mail.

Here is an example for gmail.com:

host -t TXT gmail.com
gmail.com descriptive text "v=spf1 redirect=_spf.google.com"

This one redirects to “_spf.google.com”, which looks like this:

host -t TXT _spf.google.com
_spf.google.com descriptive text "v=spf1 include:_netblocks.google.com include:_netblocks2.google.com include:_netblocks3.google.com ~all"

This entry has some “include” statements and the “~all” statement which will tell the other side to do a softfail if the statements before did not match.

host -t TXT _netblocks.google.com
_netblocks.google.com descriptive text "v=spf1 ip4:64.18.0.0/20 ip4:64.233.160.0/19 ip4:66.102.0.0/20 ip4:66.249.80.0/20 ip4:72.14.192.0/18 ip4:74.125.0.0/16 ip4:108.177.8.0/21 ip4:173.194.0.0/16 ip4:207.126.144.0/20 ip4:209.85.128.0/17 ip4:216.58.192.0/19 ip4:216.239.32.0/19 ~all"

This is the entry for one of the “include” statements. I think you now got the logic behind it.

How to use SPF with Postfix

To allow postfix to check the SPF record of incoming mails you need to have postfix-policydspf-python. You can install it by using this command on Debian:

apt-get install postfix-policyd-spf-python

Afterwards you need to configure the daemon to work as required. Open the following file:

vi /etc/postfix-policyd-spf-python/policyd-spf.conf

This file should look like this:

debugLevel = 1
defaultSeedOnly = 1

HELO_reject = SPF_Not_Pass
Mail_From_reject = Fail

PermError_reject = False
TempError_Defer = False

skip_addresses = 127.0.0.0/8,::ffff:127.0.0.0/104,::1
  • debugLevel is the log level. 1 means that normal errors and SPF results are logged. You can increase the level to 5 or disable logging with 0
  • defaultSeedOnly can set the SPF daemon into a testing mode. The daemon will check all mails and mark them but will not reject them. 0 will enable the testing mode.
  • HELO_reject has different options. The “SPF_Not_Pass” option will reject all mails where the SPF verification for the HELO/EHLO on the mail server fails. This useful to save resources, as you can reject the mail before the mail is transferred. Other options are:
    • “Softfail” which will reject the mail on softfail or fail of the SPF Verification
    • “Fail” reject only on fail.
    • “False” will never reject a mail, but will insert the header. Useful for later checks.
    • “No_Check” will do no checks.
    • “Null” will only reject fail or null sender.
  • Mail_From_reject allows to use the mail from header for checks. “Fail” will reject mails where no statement in the SPF record could be matched.
  • PermError_reject will allow you to decide, what happens with broken SPF records. “False” will handle them as if there is no SPF record. “True” will reject them.
  • TempError_Defer allow you to decide what should happen to temporary errors. “True” will reject them and “False” will will handle them as if there is no SPF record.
  • skip_addresses will allow you to enter a list of IP’s which are not checked.

Save the file and open the main Postfix configuration file:

vi /etc/postfix/main.cf

Add this line to the file:

# SPF
policy-spf_time_limit = 3600s

This will set the timeout for the SPF daemon. You also have to add an entry to your recipient restrictions:

check_policy_service unix:private/policy-spf

Enter the line after “reject_unauth_destination” and before the blacklist checks.

Save the file and open the Postfix service file:

vi /etc/postfix/master.cf

You have to add this line at the bottom of the file:

policy-spf unix - n n - - spawn
 user=nobody argv=/usr/bin/policyd-spf

Save the file and restart Postfix.

If it is working, you should see entries like this in the logs:

Aug 24 09:16:13 mail postfix/smtpd[32238]: NOQUEUE: reject: RCPT from 84-244-31-4.pppoe.irknet.ru[84.244.31.4]: 550 5.7.1 <[email protected]>: Recipient address rejected: Message rejected due to: SPF fail - not authorized. Please see http://www.openspf.net/Why?s=mfrom;[email protected];ip=84.244.31.4;[email protected]; from=<[email protected]> to=<[email protected]> proto=ESMTP helo=<30.36.119.188.dsl.dynamic.turk.net>

If you have any questions, regarding this post or if you would like provide feedback, please use the comment function below.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.