- To determined which server is sending the mail.
(Note that this will be different for different webapps, so best is to monitor the whole farm with ULS)
run Sysinternals procmon on all servers (usually only the frontends) monitor traffic for :25 - Activate verbose logging for alertsThis 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
Add-PSSnapin microsoft.sharepoint.powershell $names = "Alerts" foreach ($name in $names) { Get-SPLogLevel -Identity $name set-sploglevel -Identity $name -TraceSeverity verbose -EventSeverity verbose #default value Tracesev High and EventSev Information } write-output "Trace levels set to verbose for" $names |format-table -AutoSize - Monitor ULSViewer on specific member or the whole farm for events matching below
Category contains "Alerts" AND Message contains "Alert for" OR Message contains "Successfully sent"
Now ULS messages will show successfull and failed (based on securityfiltering) sent emails.
References:
https://blogs.technet.microsoft.com/steve_chen/alerts-in-sharepoint-troubleshooting-mosswss/
https://blogs.technet.microsoft.com/steve_chen/alerts-in-sharepoint-troubleshooting-mosswss/
http://sharepointalert.info/troubleshooting-sharepoint-alerts/
http://www.sharepointdiary.com/2012/02/sharepoint-alerts-not-working-troubleshooting-checklist.html