When you're setting up email authentication, understanding the syntax of an SPF record is crucial. A key part of that syntax is the qualifier, which tells a receiving mail server what to do when an email's sending IP address matches a mechanism in your SPF record. For a successful authentication check, a specific qualifier is used.
The SPF qualifier that indicates a Pass result is the + (plus) symbol. When a receiving server checks your SPF record and finds that the sending IP address matches a mechanism prefixed with + , it means the email has passed the SPF check. This result signals that the message is from an authorized sender for your domain.
One of the most important things to know about the Pass qualifier is that it's the default action. If you include a mechanism in your SPF record without any qualifier in front of it, it is implicitly treated as a +Pass. This is a common convention that simplifies SPF records.
For instance, the following two mechanisms in an SPF record are functionally identical:
Both versions will result in a Pass if the email is sent from an IP address authorized by Google's SPF record. Because the plus is implicit, you will often see SPF records written without it for the sake of brevity.
While + means an email is authorized, other qualifiers give different instructions to the receiving server. Understanding the whole set is key to properly configuring your record.
The four main SPF qualifiers are:
In summary, the + qualifier is your way of telling the world which servers are allowed to send email on your behalf. Since it's the default, you don't always need to write it out, but its presence, whether explicit or implicit, is what allows your legitimate emails to pass SPF authentication and contributes to a strong email deliverability posture.