Monday, 4 April 2016

Show the sendmail mail queue

To list the mail queue in sendmail do this:
sendmail -bp
or this:
mailq

No comments:

Post a Comment

Git merge branch to another branch

$ git checkout develop $ git pull $ git checkout test-branch $ git merge develop $ git push