Differences between revisions 8 and 9
Revision 8 as of 2023-06-03 21:09:52
Size: 922
Editor: PieterSmit
Comment:
Revision 9 as of 2023-06-03 21:26:07
Size: 1199
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
 * https://emailspooftest.com/
 * Basic server test 2023 - https://ssl-tools.net/mailservers
 * [[https://emailspooftest.com/]]
 * Basic server test 2023 - [[https://ssl-tools.net/mailservers]]
 * Test mail - [[http://www.allaboutspam.com/email-server-test/]] -> Send mail to "test @ allaboutspam.com"
 * (./) 2023-06 [[http://mail-server-test.online-domain-tools.com/]]
 * Website check - [[https://www.amberloom.com/]]
 * [[https://internet.nl/test-mail/]]

SMTP Simple mail transfer protocol

SMTP / Email spoof tests

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)
  • test sasl (/etc/sasldb2 )with

    # sasldblistusers2
    # testsaslauthd -u user -p password -f /var/spool/postfix/var/run/saslauthd/mux
  • add user to sasl

    saslpasswd -c -u mail.example.com -a smtpauth test
  • view postfix smtp logs using journalctl

    journalctl -u postfix@-.service  -f
  • Check tls certificate on smtp server

    # echo "quit" | openssl s_client -starttls smtp -crlf -connect <smtp.host>:25 | openssl x509 -noout -text | grep DNS:

...

smtp (last edited 2024-02-08 09:50:04 by PieterSmit)