This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
computing:exim4 [2021/10/30 18:42] – oemb1905 | computing:exim4 [2024/12/16 01:32] (current) – oemb1905 | ||
---|---|---|---|
Line 184: | Line 184: | ||
To delete all frozen emails and/or individually delete/ | To delete all frozen emails and/or individually delete/ | ||
- | exim -bp <message id> | ||
- | exim -Mrm <message id> | ||
- | exim -Mvh <message id> | ||
exim -bp | awk '/^ *[0-9]+[mhd]/ | exim -bp | awk '/^ *[0-9]+[mhd]/ | ||
+ | |||
+ | To read email body: | ||
+ | |||
+ | exim4 -Mvb <message id> | ||
+ | |||
+ | To view the email header: | ||
+ | |||
+ | exim -Mvh <message id> | ||
TLS can pitch an annoying warning that states "TLS connections will fail. Suggested action: either install a certificate or change tls_advertise_hosts option." | TLS can pitch an annoying warning that states "TLS connections will fail. Suggested action: either install a certificate or change tls_advertise_hosts option." | ||
Line 201: | Line 206: | ||
{{ : | {{ : | ||
- | --- //[[jonathan@haacksnetworking.com|oemb1905]] | + | To stop the relay from barfing when clients with incomplete TLS emails through it, you can do the following on the client sending th email (not on the server/ |
+ | |||
+ | sudo nano / | ||
+ | REMOTE_SMTP_SMARTHOST_TLS_VERIFY_HOSTS = !* | ||
+ | systemctl restart exim4 | ||
+ | |||
+ | --- //[[alerts@haacksnetworking.org|oemb1905]] |