Aug 07 2023 03:42 AM
Hi,
I must have missed an announcement but just doing some routine maintenance and I see that the "View another mailbox" in EAC has changed considerably. The most noticeable change is that you can no longer see the users Inbox rules.
The old days:
And now you get this:
Usually the first thing to do if an email account is compromised is checking here to see if there have been any rules setup to spoof emails etc. With this functionality removed this does take a very useful tool from our tool box. Has anyone else seen this change? more so does anyone know if there is another way to get inbox rule information for a user?
Cheers
Rob
Oct 08 2023 08:13 PM - edited Oct 08 2023 08:22 PM
@Talamasca trevorharrisABMG here posting from another account... Due to this issue I developed a PowerShell script for managing mailbox rules (sorry I cannot share it at this time due to company PII, but maybe soon I will post a cleaned-up version on my github). To see exactly what each rule is doing you can use cmdlet like below. Here is a small snippet from my script:
$mailboxname = get-exomailbox "username(at)yourcompany(dot)com"
Write-host "Loading all mailbox rules for " -nonewline
Write-host "$mailboxname" -foregroundcolor Green
Write-host "`nPlease wait..." -ForegroundColor yellow
$Rules = Get-InboxRule -Mailbox $MailboxName
$Rules | Format-List Priority,Name,Description,Enabled
Oct 09 2023 12:20 AM
Oct 26 2023 05:55 AM
@VasilMichev THANK YOU!! This was a lifesaver for me troubleshooting an issue today. Thank you, thank you, thank you!
Dec 04 2023 12:15 AM
Dec 04 2023 06:39 AM
@Talamasca Thank you for the update! It's also back to normal here too 🙂
Jul 22 2024 05:51 AM
Aug 12 2024 01:42 PM
Aug 12 2024 11:15 PM