Mail: Difference between revisions
From DWIKI
m (→Blacklists) |
m (→Tips&Tricks) |
||
Line 58: | Line 58: | ||
==script for testing mailservers== | ==script for testing mailservers== | ||
sendEmail | sendEmail | ||
==Test submission== | |||
Encode using | |||
echo -n whatever | base64 | |||
openssl s_client -starttls smtp -crlf -connect server:587 | |||
ehlo your.host | |||
auth login | |||
base64 encoded username | |||
base64 encoded password |
Revision as of 13:19, 13 May 2020
Docs
Servers
Tools
Blacklists
Mailing lists
Related services and tools
- IMAP
- Fetchmail
- Procmail
- formail
- bayes spamfiltering
- SRS
- swak
- sendEmail: commandline tool for sending test mails
Filters
Webmail
SMTP servers of ISPs
Tips&Tricks
Send maildir mails to a remote server
without damaging the From and Subject etc.
cat somemail | formail -i "To: new@address.com" | sendmail -t
script for testing mailservers
sendEmail
Test submission
Encode using
echo -n whatever | base64
openssl s_client -starttls smtp -crlf -connect server:587 ehlo your.host auth login base64 encoded username base64 encoded password