-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add documentation on setting up DMARC
- Loading branch information
Showing
5 changed files
with
100 additions
and
20 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<template> | ||
<div class="bg-blue-100 p-5 flex flex-row gap-2"> | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
fill="none" | ||
viewBox="0 0 24 24" | ||
stroke-width="1.5" | ||
stroke="currentColor" | ||
class="w-6 h-6" | ||
> | ||
<path | ||
stroke-linecap="round" | ||
stroke-linejoin="round" | ||
d="m11.25 11.25.041-.02a.75.75 0 0 1 1.063.852l-.708 2.836a.75.75 0 0 0 1.063.853l.041-.021M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9-3.75h.008v.008H12V8.25Z" | ||
/> | ||
</svg> | ||
<div> | ||
<strong>Note:</strong> | ||
This document only applies if you are using Managed Keila on keila.io.<br /> | ||
If you are using a self-hosted instance, these instructions won’t work. | ||
</div> | ||
</div> | ||
</template> |
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
title: Setting up SPF, DKIM & DMARC | ||
slug: managed-dmarc | ||
--- | ||
|
||
# Setting up your domain for SPF, DKIM & DMARC | ||
|
||
Setting up your domain to comply with SPF, DKIM and DMARC requirements that are being | ||
implemented by more and more email providers, is easy with Keila! | ||
|
||
<managed-note></managed-note> | ||
|
||
## 1. Pick an unused subdomain. | ||
Choose a subdomain that is not currently used for anything else. This | ||
subdomain will become your *FROM domain*. Common choices are something | ||
like `mailings.example.com` or `send.example.com`. | ||
|
||
## 2. Update your DNS | ||
|
||
Add the following entries to your DNS settings: | ||
|
||
**Connect your chosen subdomain with CNAME**: | ||
`CNAME` `*your-subdomain*.example.com` `public.keila.io` | ||
|
||
**Add the Keila DKIM key**: | ||
`CNAME` `keila._domainkey.example.com` | ||
|
||
**Enable DMARC for your main domain**: | ||
`TXT` `example.com` `v=DMARC1; p=none` | ||
|
||
## 3. Almost done! | ||
|
||
Now you’re almost done! Just submit our domain configuration form and we’ll take | ||
care of the rest and get in touch with you. | ||
<br><br><br> | ||
<a href="https://forms.gle/c3SJV8TrLxxzwqZq5" class="link-button">Submit your configuration</a> |
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
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
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