How to read messages in Qmail queue
Run qmail-qread to find out the id
# /var/qmail/bin/qmail-qread
Output
28 Mar 2014 01:01:47 GMT #93683 1793 <#@[]> remote @
We are interested #xxxx
28 Mar 2014 01:01:47 GMT #93683 1793 <#@[]> remote @
Read the contents of an email in queue
find /var/qmail/queue/ -name 93683 | xargs cat |less
Report of qmail queue
/var/qmail/bin/qmail-qstat
Output
messages in queue: 2messages in queue but not yet preprocessed: 0
Comments
Post a Comment