<?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>M365 | KC's Blog</title>
	<atom:link href="https://www.kjctech.net/tag/m365/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.kjctech.net</link>
	<description></description>
	<lastBuildDate>Wed, 26 Jun 2024 06:04:08 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/12/cropped-KC-Logo.png?fit=32%2C32&#038;ssl=1</url>
	<title>M365 | KC's Blog</title>
	<link>https://www.kjctech.net</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">24634607</site>	<item>
		<title>Audit Email Deletion in Microsoft 365</title>
		<link>https://www.kjctech.net/audit-email-deletion-in-microsoft-365/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=audit-email-deletion-in-microsoft-365</link>
					<comments>https://www.kjctech.net/audit-email-deletion-in-microsoft-365/#respond</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Wed, 26 Jun 2024 06:04:05 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[audit]]></category>
		<category><![CDATA[M365]]></category>
		<guid isPermaLink="false">https://www.kjctech.net/?p=5188</guid>

					<description><![CDATA[<p>If you use a shared mailbox and sometimes wonder who deleted some of the emails from the inbox, you can search the audit log to find out. Before you go any further, check if you have turned on the Audit Log Search in your tenant first. Get-AdminAuditLogConfig &#124; Format-List UnifiedAuditLogIngestionEnabled If you haven&#8217;t, do this to turn it on. Set-AdminAuditLogConfig [&#8230;]</p>
The post <a href="https://www.kjctech.net/audit-email-deletion-in-microsoft-365/">Audit Email Deletion in Microsoft 365</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>If you use a shared mailbox and sometimes wonder who deleted some of the emails from the inbox, you can search the audit log to find out.</p>



<p>Before you go any further, check if you have turned on the Audit Log Search in your tenant first.</p>



<pre class="wp-block-preformatted">Get-AdminAuditLogConfig | Format-List UnifiedAuditLogIngestionEnabled</pre>



<p>If you haven&#8217;t, do this to turn it on.</p>



<pre class="wp-block-preformatted">Set-AdminAuditLogConfig -UnifiedAuditLogIngestionEnabled $true</pre>



<p>To do the search, you can either go through the Compliance Portal or use the PowerShell cmdlet.</p>



<ol class="wp-block-list">
<li>Sign into the Compliance Portal</li>



<li>Go to the <strong>Audit tab</strong> on the left panel</li>



<li>Select the <strong>New Search</strong> tab at the top of the <strong>Audit</strong> page.</li>
</ol>



<p>Then configure the search criteria as applicable. It took me some time to figure it out and then a few tries to get my result.</p>



<p>Check details on how to perform the search <a href="https://learn.microsoft.com/en-us/purview/audit-search" target="_blank" rel="noopener" title="">here</a>.</p>



<p>Obviously, as always, using PowerShell cmdlets or scripts makes things much easier. Check out <a href="https://learn.microsoft.com/en-us/purview/audit-log-search-script" target="_blank" rel="noopener" title="">this script from Microsoft</a> to get started on how it works. But if you like a more powerful script that works out of the box. Give <a href="https://o365reports.com/2021/09/02/audit-email-deletion-in-office-365-mailbox-powershell/" target="_blank" rel="noopener" title="">this </a>a serious look.</p>



<p>For example, I used it to check if any email deletions were happening after May 30, 2024 from a mailbox called overtime.</p>



<pre class="wp-block-preformatted">./auditdeleteemails.ps1 -mailbox "overtime" -StartDate 05/30/2024</pre>



<p>It saves the result in a CSV file for you to review.</p>The post <a href="https://www.kjctech.net/audit-email-deletion-in-microsoft-365/">Audit Email Deletion in Microsoft 365</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/audit-email-deletion-in-microsoft-365/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">5188</post-id>	</item>
		<item>
		<title>Options to Send Emails using Microsoft 365</title>
		<link>https://www.kjctech.net/options-to-send-emails-using-microsoft-365/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=options-to-send-emails-using-microsoft-365</link>
					<comments>https://www.kjctech.net/options-to-send-emails-using-microsoft-365/#respond</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Mon, 25 Mar 2024 06:04:45 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[M365]]></category>
		<guid isPermaLink="false">https://www.kjctech.net/?p=5151</guid>

					<description><![CDATA[<p>This is how to send emails from an app or device not named Outlook through the Microsoft 365 network. According to Mail Flow Best Practices, there are 3 options available. SMTP Auth If you can deal with Modern Authentication in the form of OAuth, this option provides you with the most reliable email delivery. And you do need a licensed [&#8230;]</p>
The post <a href="https://www.kjctech.net/options-to-send-emails-using-microsoft-365/">Options to Send Emails using Microsoft 365</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>This is how to send emails from an app or device not named Outlook through the Microsoft 365 network. According to <a href="https://learn.microsoft.com/en-us/Exchange/mail-flow-best-practices/how-to-set-up-a-multifunction-device-or-application-to-send-email-using-microsoft-365-or-office-365">Mail Flow Best Practices</a>, there are 3 options available.</p>



<ul class="wp-block-list">
<li>SMTP Auth</li>



<li>Direct Send</li>



<li>SMTP relay</li>
</ul>



<h3 class="wp-block-heading">SMTP Auth</h3>



<p>If you can deal with Modern Authentication in the form of OAuth, this option provides you with the most reliable email delivery. And you do need a licensed mailbox to send emails from.</p>



<figure class="wp-block-table"><table><tbody><tr><td>Server/smart host</td><td>smtp.office365.com</td></tr><tr><td>Port</td><td>Port 587 (recommended) or port 25</td></tr><tr><td>TLS/StartTLS</td><td>Enabled</td></tr><tr><td>Username/email address and password</td><td>Enter the sign-in credentials of the hosted mailbox being used</td></tr></tbody></table></figure>



<h3 class="wp-block-heading">Direct Send</h3>



<p>Direct Send doesn&#8217;t require SMTP Auth, nor a licensed mailbox. All you need is to specify your own MX endpoint as the mail server or smart host with an unblocked Port 25, you are all set to send emails to recipients in your own organization. Adding an SPF record to avoid having the message flagged as spam is recommended but not required.</p>



<pre class="wp-block-preformatted">v=spf1 ip4: include:spf.protection.outlook.com ~all</pre>



<figure class="wp-block-table"><table><tbody><tr><td>Server/smart host</td><td>Your MX endpoint, for example, contoso-com.mail.protection.outlook.com</td></tr><tr><td>Port</td><td>Port 25</td></tr><tr><td>TLS/StartTLS</td><td>Optional</td></tr><tr><td>Email address</td><td>Any email address for one of your Microsoft 365 or Office 365 accepted domains. This email address doesn&#8217;t need to have a mailbox.</td></tr></tbody></table></figure>



<h3 class="wp-block-heading">SMTP Relay</h3>



<p>If you need to send emails to external recipients, or not every device on your network has Port 25 open or allowed, SMTP Replay could be your answer. The basic setup is the same as the Direct Send but you do need to set up a Mail Flow connector first, whether it&#8217;s certificate-based or IP-based.</p>



<p>Obviously, an IP-based connector is much easier.</p>



<figure class="wp-block-table"><table><thead><tr><th>Connector setting</th><th>Value</th></tr></thead><tbody><tr><td>From</td><td>Your organization&#8217;s email server</td></tr><tr><td>To</td><td>Microsoft 365 or Office 365</td></tr><tr><td>Domain restrictions: IP address/range</td><td>Your on-premises IP address or address range that the device or application will use to connect to Microsoft 365 or Office 365</td></tr></tbody></table></figure>



<figure class="wp-block-table"><table><thead><tr><th>Device or application setting</th><th>Value</th></tr></thead><tbody><tr><td>Server/smart host</td><td>Your MX endpoint, for example,&nbsp;<em>yourdomain</em>&#8211; com.mail.protection.outlook.com</td></tr><tr><td>Port</td><td>Port 25</td></tr><tr><td>TLS/StartTLS</td><td>Enabled</td></tr><tr><td>Email address</td><td>Any email address in one of your Microsoft 365- or Office 365-verified domains. This email address doesn&#8217;t need a mailbox.</td></tr></tbody></table></figure>



<p>And again, SPF is highly recommended to avoid your messages being trapped in the spam folder.</p>The post <a href="https://www.kjctech.net/options-to-send-emails-using-microsoft-365/">Options to Send Emails using Microsoft 365</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/options-to-send-emails-using-microsoft-365/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">5151</post-id>	</item>
	</channel>
</rss>
