Export email addresses from SpamTitan (API) whitelist filter to text file with PowerShell and delete them

I've created this PowerShell script to delete all email addresses from SpamTitan (API) global whitelist filter. Feel free to use it as long as you link to this article on your site or in your script:


<#
Created by Allan Brochorst Kjær. File must not be changed and/or copied without written permission from the author.
This file will export all global whitelisted addresses from SpamTitan to a file, remove 2 strings from the file and then delete each line/address from SpamTitan.
#>
$web = Invoke-WebRequest https://yourSpamTitanURLhere.site.com/whitelist/list
$web.content | Out-File C:\SpamTitan_ExportAddressesFromGlobalWhitelist.txt
(Get-Content C:\SpamTitan_ExportAddressesFromGlobalWhitelist.txt).replace('<item>', '') | Set-Content C:\SpamTitan_ExportAddressesFromGlobalWhitelist.txt
(Get-Content C:\SpamTitan_ExportAddressesFromGlobalWhitelist.txt).replace('</item>', '') | Set-Content C:\SpamTitan_ExportAddressesFromGlobalWhitelist.txt
$emails = Get-Content C:\SpamTitan_ExportAddressesFromGlobalWhitelist.txt
Foreach ($i in $emails)
{
If (-Not ($i.StartsWith(' @')))
{
Invoke-WebRequest https://yourSpamTitanURLhere.site.com/whitelist/delete?sender=$i
}
}

Kommentarer

Populære opslag fra denne blog

Microsoft Office 2016 and the AUTO_ACTIVATE property

Access Exchange online with Office 365 multi-factor authentication (MFA/2FA)

Disable logon and logoff events (event id 4624, 4625, 4634 (and all the other ones...))