Export email addresses from SpamTitan (API) whitelist filter to text file with PowerShell and delete them
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
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
Send en kommentar