Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SPF for subdomain to avoid email spam

SPF is a powerful method to avoid blocking the emails as spam. However, setup of SPF is normally for the main domain, and I was unable to find setting for subdomain, and I am not sure if it is effective at all. I want to setup my email server on mail.domain.com on a separate server. The SPF for the main domain is

@                 v=spf1 mx include:domain.com ~all
@                 v=spf1 a mx ptr ip4:0.0.0.0 ~all

And for mail server (subdomain)

mail.domain.com   v=spf1 mx include:mail.domain.com ~all
mail.domain.com   v=spf1 a mx ptr ip4:1.1.1.1 ~all

where 0.0.0.0 is the main server IP and 1.1.1.1 is the mail server IP. Will this setting work to successfully use mail.domain.com for emails (e.g. [email protected])?

What other considerations can help to avoid labeling the emails sent from subdomain as spam?

like image 230
Googlebot Avatar asked Dec 08 '11 19:12

Googlebot


1 Answers

Simplify your SPF setup. If I take your words literally then you need three DNS records for SMTP:

 mail.domain.com.   A   1.1.1.1
 mail.domain.com.   MX   10   mail.domain.com.
 mail.domain.com.   TXT    "v=spf1 ip4:1.1.1.1 -all"

The second record (MX) is actually optional.

A more reasonable setup based on your comment:

 mail.example.com.   A   1.1.1.1
 example.com.   MX   10   mail.example.com.
 example.com.   TXT    "v=spf1 ip4:1.1.1.1 -all"

This means you can use mail addresses like [email protected], while your mail server can be on a different server than the one which serves example.com. You should also setup the reverse DNS entry (PTR record) for 1.1.1.1, so that it points to mail.example.com. Usually you need your hosting company to do that.

like image 93
Hontvári Levente Avatar answered Sep 23 '22 15:09

Hontvári Levente