Icewolf.EXO.SpamAnalyze PowerShell Module 2.0.8 released

Hi All,

Over a Year ago i released my first PowerShell Module in the PowerShell Gallery Icewolf.EXO.SpamAnalyze. Now it was time for an Update.

Whats new in this release:

V2.0.8

  • Requires now ExchangeOnlineManagement 3.0.0

  • Addet TenantAllowBlockList checks

Check installed Version and what’s available in the PowerShell Gallery

Get-InstalledModule Icewolf.EXO.Spamanalyze
Find-Module Icewolf.EXO.Spamanalyze

Uninstall the old Module and install the current one

Uninstall-Module Icewolf.EXO.Spamanalyze
Install-Module Icewolf.EXO.Spamanalyze
Get-InstalledModule Icewolf.EXO.Spamanalyze

There is only one Command you can use

Invoke-SpamAnalyze -SenderAddress andres.bohren@gmail.com -RecipientAddress a.bohren@icewolf.ch

And here is the complete Output

Here are the commands from the TenantAllowBlock List that have been addet

Get-TenantAllowBlockListItems -ListType Sender -Allow -Entry $SenderAddress
Get-TenantAllowBlockListItems -ListType Sender -Block -Entry $SenderAddress
Get-TenantAllowBlockListItems -ListType Sender -Allow -Entry $SenderDomain
Get-TenantAllowBlockListItems -ListType Sender -Block -Entry $SenderDomain
Get-TenantAllowBlockListSpoofItems | Where-Object {$_.SpoofedUser -eq "$SenderDomain"}

Regards
Andres Bohren