43 lines
1.3 KiB
HTML
43 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>DMARC Record Creator - Generate DMARC DNS Records</title>
|
|
<link rel="stylesheet" href="/assets/styles/main.css">
|
|
<script type="module" src="/assets/scripts/ui/creator.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1>DMARC Record Creator</h1>
|
|
|
|
<label for="record">DNS Record</label><br>
|
|
<input id="record" type="text" readonly>
|
|
|
|
<main>
|
|
<h2>Create a DMARC DNS Record</h2>
|
|
|
|
<p>Customize the options below to generate a DMARC record, which will be shown in the input field above.</p>
|
|
|
|
<form id="form"></form>
|
|
|
|
<hr>
|
|
|
|
<p>
|
|
This tool allows you to create DMARC DNS records, which can be used when you are hosting an email-server
|
|
and want to provide an extra layer of security, so other email providers will trust your emails.
|
|
</p>
|
|
|
|
<p>
|
|
Select the options you want and copy the text. The DNS record should be a TXT record in the _dmarc
|
|
subdomain (e.g. _dmarc.example.com) with the content being the text above.
|
|
</p>
|
|
|
|
<center>
|
|
<h3>More tools:</h3>
|
|
<a href="/dmarc-validator">DMARC Validator Tool</a> •
|
|
<a href="/spf-creator">SPF Creator Tool</a>
|
|
</center>
|
|
</main>
|
|
</body>
|
|
</html>
|