no way to compare when less than two revisions
Differences
This shows you the differences between two versions of the page.
— | exim [2011/07/05 16:29] (current) – created - external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Exim ====== | ||
+ | Exim is the mailserver used on the Eboundhost VPS. | ||
+ | |||
+ | Configuration settings need to be changed through CPanel. | ||
+ | |||
+ | ==== Configuration ==== | ||
+ | |||
+ | < | ||
+ | # Display exim's configuration | ||
+ | exim -bP | ||
+ | </ | ||
+ | |||
+ | ==== Queue Management ==== | ||
+ | |||
+ | < | ||
+ | # List messages | ||
+ | exim -bp | ||
+ | |||
+ | # Count messages | ||
+ | exim -bpc | ||
+ | |||
+ | # Remove a message | ||
+ | exim -Mrm {message-id} | ||
+ | |||
+ | # Remove all messages | ||
+ | exim -bp | exiqgrep -i | xargs exim -Mrm | ||
+ | |||
+ | # Freeze all messages in queue | ||
+ | exim -bp | exiqgrep -i | xargs exim -Mf | ||
+ | </ | ||
+ | |||
+ | ==== Messages ==== | ||
+ | |||
+ | < | ||
+ | # View header | ||
+ | exim -Mvh < | ||
+ | |||
+ | # View body | ||
+ | exim -Mvb < | ||
+ | |||
+ | # View logs | ||
+ | exim -Mvl < | ||
+ | </ |