-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Rule “email-security-spf-dkim-dmarc/rule” (#7185)
- Loading branch information
1 parent
88ea3ff
commit c2960cd
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ SPF is an email authentication method designed to prevent spammers from sending | |
1. Identify the mail servers that are authorized to send email on behalf of your domain. | ||
2. Create an SPF record in the DNS for your domain. The record might look something like: | ||
|
||
``` | ||
```bash | ||
v=spf1 ip4:192.0.2.0/24 ip4:198.51.100.123 a -all | ||
``` | ||
|
||
|
@@ -51,7 +51,7 @@ DMARC unifies the SPF and DKIM authentication mechanisms into a common framework | |
1. Ensure SPF and DKIM are in place. | ||
2. Create a DMARC policy record, which will look something like: | ||
|
||
``` | ||
```bash | ||
v=DMARC1; p=none; rua=mailto:[email protected] | ||
``` | ||
|
||
|