User Tools

Site Tools


sendmail

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
sendmail [2011/11/28 18:32]
k2patel [Rebuild aliases]
sendmail [2011/12/29 14:26]
k2patel [How to change outbound IP]
Line 47: Line 47:
 NOTE : change 192.168.1.22 with your IP. NOTE : change 192.168.1.22 with your IP.
  
 +
 +==== Clear queue ====
 +
 +Check if you want to delete all mail.
 +<code bash>
 +mailq
 +OR
 +sendmail -bp
 +</​code>​
 +
 +Now if you want to delete everything in queue just delete everything inside mqueue folder.\\
 +In CentOS it is located at **/​var/​spool/​mqueue/​**
 +<code bash>
 +rm -rf /​var/​spool/​mqueue/​*
 +</​code>​
 +
 +If there is too many files to remove you better use option like xargs with find.
 +<code bash>
 +find /​var/​spool/​mqueue -name * -print0 |xargs -0 -r -n100 rm
 +</​code>​
sendmail.txt ยท Last modified: 2020/08/10 02:35 (external edit)