exim: Difference between revisions

From KlavoWiki
Jump to navigationJump to search
Created page with "<pre> dpkg-reconfigure exim4-config /etc/init.d/exim4 restart </pre> <pre> cat /var/log/exim4/mainlog </pre> Category : Linux"
 
No edit summary
Line 1: Line 1:
<pre>
<pre>
dpkg-reconfigure exim4-config
dpkg-reconfigure exim4-config
/etc/init.d/exim4 restart
systemctl restart exim4
</pre>
</pre>


View logfile.
<pre>
<pre>
cat /var/log/exim4/mainlog
cat /var/log/exim4/mainlog
</pre>
Force re-delivery of frozen emails.
<pre>
exim -qff
</pre>
View message details
<pre>
exim -Mvh <message_id>  # View the headers
exim -Mvb <message_id>  # View the body
exim -Mvl <message_id>  # View the logs
</pre>
</pre>


[[Category : Linux]]
[[Category : Linux]]

Revision as of 21:58, 13 September 2024

dpkg-reconfigure exim4-config
systemctl restart exim4

View logfile.

cat /var/log/exim4/mainlog

Force re-delivery of frozen emails.

exim -qff

View message details

exim -Mvh <message_id>   # View the headers
exim -Mvb <message_id>   # View the body
exim -Mvl <message_id>   # View the logs