SMTP Simple mail transfer protocol

SMTP / Email spoof tests

Check / Removal spam lists

Verify smtp ssl/tls certificate

Powershell *

$Password = ConvertTo-SecureString -AsPlainText -Force -String 'NYd...cKn'
$Cred = New-Object -TypeName PSCredential -ArgumentList 'communicationservice|5...4|0...1', $Password
Send-MailMessage -From 'TWG Printer <donotreply@8...7.azurecomm.net>' -To 'Me <Me@gmail.com>' -Subject 'Test mail pwsh smtp' -Body 'test' -SmtpServer 'smtp.azurecomm.net' -Port 587 -Credential $Cred -UseSsl
}}

== Debug smtp sasl starttls authentication ==

 * Connect and move to tls protected channel {{{
$ openssl s_client -starttls smtp -crlf -connect vigor.nz:25
ehlo testconnection
auth plain (base64encodedstring)

...

smtp (last edited 2025-02-19 00:17:49 by PieterSmit)