<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>dkim office 365 Archives - the Sysadmin Channel</title>
	<atom:link href="https://thesysadminchannel.com/tag/dkim-office-365/feed/" rel="self" type="application/rss+xml" />
	<link>https://thesysadminchannel.com/tag/dkim-office-365/</link>
	<description>Documenting My Life as a System Administrator</description>
	<lastBuildDate>Tue, 26 Oct 2021 23:34:10 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>
<site xmlns="com-wordpress:feed-additions:1">144174110</site>	<item>
		<title>How To Enable DKIM in Office 365</title>
		<link>https://thesysadminchannel.com/how-to-enable-dkim-in-office-365/</link>
					<comments>https://thesysadminchannel.com/how-to-enable-dkim-in-office-365/#comments</comments>
		
		<dc:creator><![CDATA[Paul Contreras]]></dc:creator>
		<pubDate>Tue, 02 Jul 2019 03:53:12 +0000</pubDate>
				<category><![CDATA[Exchange Online]]></category>
		<category><![CDATA[Office365]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[DKIM lookup]]></category>
		<category><![CDATA[dkim office 365]]></category>
		<category><![CDATA[DomainKey Identified Mail]]></category>
		<category><![CDATA[enable DKIM with cloudflare]]></category>
		<category><![CDATA[how can we check to see if DKIM is enabled and working]]></category>
		<category><![CDATA[How To Enable DKIM in Office 365]]></category>
		<category><![CDATA[selector1 settings for DKIM]]></category>
		<category><![CDATA[setup dkim 365]]></category>
		<guid isPermaLink="false">https://thesysadminchannel.com/?p=1760</guid>

					<description><![CDATA[<p>What is DKIM DomainKey Identified Mail, otherwise known as DKIM, is a used to validate your email by digitally signing your mail to help protect senders and recipients from forged and phishing email. When you setup DKIM in Office 365,&#8230; <a href="https://thesysadminchannel.com/how-to-enable-dkim-in-office-365/" class="more-link">Continue Reading <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a href="https://thesysadminchannel.com/how-to-enable-dkim-in-office-365/">How To Enable DKIM in Office 365</a> appeared first on <a href="https://thesysadminchannel.com">the Sysadmin Channel</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>What is DKIM</h2>
<p><strong>DomainKey Identified Mail</strong>, otherwise known as <strong>DKIM</strong>, is a used to validate your email by digitally signing your mail to help protect senders and recipients from forged and phishing email. When you setup DKIM in Office 365, you authorize your domain to sign its name to an email message by using cryptographic authentication. </p>
<p>External domains that receive email from your domain can use this digital signature to help determine if incoming email that they receive is legitimate.  So, for the sake of good security, we should enable DKIM in Office 365 because it is considered a much stronger form of authentication than SPF and should be used in conjunction with SPF and DMARC in your environment. </p>
<div id="blockquote1">
<strong>Note:</strong> You should strive to have DKIM, DMARC and SPF setup and configured for your domain for the most robust security.
</div>
<h2>How To Enable DKIM in Office 365</h2>
<p>By default, Office 365 enables DKIM for your .onmicrosoft.com domain but let&#8217;s look at the steps to enable DKIM for your custom domain. In my example I am going to setup DKIM for thesysadminchannel.com domain because that&#8217;s the domain that&#8217;s being used for email. </p>
<p>There is a prerequisite that you must make in order to configure DKIM for your domain, and that&#8217;s to publish the DNS records in your registrar.  If you try to enable it before you publish the DNS records, you&#8217;ll get a error like this. </p>
<div id="attachment_1761" style="width: 644px" class="wp-caption aligncenter"><a href="https://thesysadminchannel.com/wp-content/uploads/2020/01/DKIM-is-disabled-error-message.png" target="_blank" rel="noopener noreferrer"><img fetchpriority="high" decoding="async" aria-describedby="caption-attachment-1761" src="https://thesysadminchannel.com/wp-content/uploads/2020/01/DKIM-is-disabled-error-message.png" alt="DKIM is disabled error message" width="634" height="221" class="size-full wp-image-1761" /></a><p id="caption-attachment-1761" class="wp-caption-text">CNAME record does not exist for this config. Please publish the following two CNAME records first.<br />selector1-thesysadminchannel-com._domainkey.thesysadminchannel.onmicrosoft.com<br />selector2-thesysadminchannel-com._domainkey.thesysadminchannel.onmicrosoft.com<br /></p></div>
<ul>
<li>Login to your DNS Hosting provider.  I am using CloudFlare so we&#8217;ll make changes there</li>
<li>Create a <strong>new CNAME Record</strong></li>
<li>In the <strong>name</strong> field, type: <strong>selector1._domainkey</strong></li>
<li>In the <strong>value</strong> field, type: <strong>selector1-thesysadminchannel-com._domainkey.thesysadminchannel.onmicrosoft.com</strong></li>
<li>Set TTL to 5 minutes to allow for a quick DNS propogation.  Be sure to change to 1 hour afterwords</li>
<li>Create a second CNAME and copy the values, but change the 1 to 2 (It&#8217;s easiest to copy the error)</li>
<li>Wait.  It might take 5 minutes to an hour depending on your TTL records</li>
</ul>
<p>&nbsp;<br />
Once we&#8217;ve waited a generous amount of time we can head back to Exchange Online to complete the configuration. Within Office 365 <strong>Exchange Admin Center</strong>, Navigate to <strong>Protection</strong> -> <strong>DKIM</strong> and <strong>click Enable</strong>.  If successful, it should look like the screenshot below.</p>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2020/01/DKIM-is-Enabled-for-Office-365.png" target="_blank" rel="noopener noreferrer"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2020/01/DKIM-is-Enabled-for-Office-365.png" alt="DKIM is Enabled for Office 365" width="612" height="204" class="aligncenter size-full wp-image-1772" /></a></p>
<h2>How To Check If DKIM is Enabled and Working</h2>
<p>Now that we have enabled DKIM for our custom domain, we want to make sure everything is working as expected. So now the question is, how can we check to see if DKIM is enabled and working?  Let&#8217;s head on over to <a href="https://mxtoolbox.com/dkim.aspx" rel="noopener noreferrer" target="_blank">https://mxtoolbox.com/dkim.aspx</a> so they can do the heavy lifting for us. For here, enter in your domain name and for selector, type in selector1.  </p>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2020/01/Check-if-DKIM-is-working-MXToolbox.png" target="_blank" rel="noopener noreferrer"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2020/01/Check-if-DKIM-is-working-MXToolbox.png" alt="Check if DKIM is working MXToolbox" width="1073" height="157" class="aligncenter size-full wp-image-1774" srcset="https://thesysadminchannel.com/wp-content/uploads/2020/01/Check-if-DKIM-is-working-MXToolbox.png?v=1579557316 1073w, https://thesysadminchannel.com/wp-content/uploads/2020/01/Check-if-DKIM-is-working-MXToolbox-1024x150.png?v=1579557316 1024w, https://thesysadminchannel.com/wp-content/uploads/2020/01/Check-if-DKIM-is-working-MXToolbox-768x112.png?v=1579557316 768w" sizes="(max-width: 1073px) 100vw, 1073px" /></a></p>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2020/01/Check-if-DKIM-is-working-MXToolbox-Confirmation.png" target="_blank" rel="noopener noreferrer"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2020/01/Check-if-DKIM-is-working-MXToolbox-Confirmation.png" alt="Check if DKIM is working MXToolbox Confirmation" width="1571" height="634" class="aligncenter size-full wp-image-1775" srcset="https://thesysadminchannel.com/wp-content/uploads/2020/01/Check-if-DKIM-is-working-MXToolbox-Confirmation.png?v=1579557355 1571w, https://thesysadminchannel.com/wp-content/uploads/2020/01/Check-if-DKIM-is-working-MXToolbox-Confirmation-1024x413.png?v=1579557355 1024w, https://thesysadminchannel.com/wp-content/uploads/2020/01/Check-if-DKIM-is-working-MXToolbox-Confirmation-768x310.png?v=1579557355 768w" sizes="(max-width: 1571px) 100vw, 1571px" /></a></p>
<p>&nbsp;<br />
Now when we send an email we will see in the headers that DKIM is allowing thesysadminchannel.com which is what we want to see.</p>
<p><em><code>ARC-Authentication-Results: i=2; mx.google.com;<br />
dkim=pass header.i=@thesysadminchannel.com header.s=selector1 header.b=Ltm8x9Fw;</code></em></p>
<p>As mentioned, once you have <strong>setup DKIM for Office 365</strong>, I would strongly suggest you also <a href="https://thesysadminchannel.com/how-to-setup-dmarc-in-office-365/" rel="noopener noreferrer" target="_blank">setup DMARC (Domain-based Message Authentication, Reporting &#038; Conformance)</a> to strengthen your security footprint.</p>
<p>&nbsp;</p>
<p>As always, thank you for taking the time to stop by and feel free to drop a comment if you have any questions.  If you&#8217;re interested in more sysadmin content, take a look at our <a href="https://www.youtube.com/c/theSysadminChannel" target="_blank" rel="noopener noreferrer">Youtube Channel</a> for awesome tips and tools for your everyday work-life.</p>
<p>The post <a href="https://thesysadminchannel.com/how-to-enable-dkim-in-office-365/">How To Enable DKIM in Office 365</a> appeared first on <a href="https://thesysadminchannel.com">the Sysadmin Channel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://thesysadminchannel.com/how-to-enable-dkim-in-office-365/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1760</post-id>	</item>
	</channel>
</rss>
