Archive for April, 2009
Exim Command Option of Linux Exim Mail server
Exim Command Option of Linux Exim Mail server
exim
=====
exim -bpc
<—-to view mail queue count
exim -bp
<—-list the contents of mail queue
exim -bpu
<—-list the contents of undelivered mail
exim -bpa
<—-list the contents of delivered mail
exim -bP
<—-list the values of Exim configuration
exim -Mrm <mail ID>
<—-to remove required mail
exim -bpu | awk ‘{print $3}’ | xargs exim -Mrm
<—-to remove all undelivered mail
exiqgrep -o 86400 -i | xargs exim -Mrm
<—-remove one day before mail
(86400 is mins of one day)
Add comment April 29, 2009
Linux – httpd command to get details of apache
Some Useful httpd commands, to get details about static modules compiled, httpd.conf directives, Apache version.,
httpd -l <—-display static modules compiled inside Apache
httpd -M <—-display both static & shared module
httpd -L <—-display all the httpd.conf directives
httpd -V <—-Apache version number and all parameters
httpd -v <—-display only the Apache version
Add comment April 29, 2009