Applicable to:
- Plesk for Linux
- Plesk for Windows
Question
What is SPF and how to configure it on a Plesk server?
Answer
SPF (Sender Policy Framework) is a system that ensures emails are genuine by comparing them against a TXT list of approved senders. Senders are published in the DNS record. These DNS entries can be trusted because owners and administrators are the only individuals allowed to make them.
To access SPF configuration form, in Plesk go to Tools & Settings > Mail Server Settings and specify the required options in the SPF spam protection section. If you don't have the Tools & Settings menu, contact your hosting support.
Once the SPF resource is enabled, DNS TXT records will be provided for each A and MX records at Domains > example.com > DNS Setings.
DNS TXT records have the following format:
CONFIG_TEXT: example.com IN TXT "v=spf1 spf\\_string"
Here, spf1 is SPF version, and spf\_string takes the combination of the so-called mechanisms:
CONFIG_TEXT: a, ptr, mx, ip4, include, all
Where all is a finalizing mechanism and must be placed at the end. Each mechanism may have a prefix pointing to a certain type of processing messages:
CONFIG_TEXT: '-' fail (message is rejected)
'~' softfail (message is passed with warning)
'+' pass (message is passed - the default prefix value)
'?' neutral The simplest (and most popular)
An SPF record will look like:
CONFIG_TEXT: example.com IN TXT "v=spf1 mx -all"
This means that mail from john_doe@example.com can be sent only from his MX record. There can be used other options. If other servers send mail from domain.com, you can describe them by giving "arguments" to the a:, mx:, ip4:, and ptr: mechanisms. mx: takes domain names and approves all the MX servers of these domains. Example:
CONFIG_TEXT: "v=spf1 a mx a:example.com -all"
Mail can be sent from his MX and from example.com server.
To set both ipv4 and ipv6 SPF records, the following syntax can be used:
CONFIG_TEXT: "v=spf1 ip4:XX.XX.XX.XX ip6:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX ~all"
Comments
2 comments
Please post the default values for REJECT mail when SPF resolves...
SPF local rules
SPF guess rules
SPF explanation text
@Robert,
The default values are "empty". In most of the cases local, guess and explanation text are not needed. These settings are for specific use-cases.
Please sign in to leave a comment.