Issues of E-mail Services (sendmail etc.)
This is a permanent link to a single version of the description.
This version is from 2 years ago. You can see the differences from the previous version, or view other versions on the board history page.
Issues and solutions for sendmail
Quick infos:
sudo service sendmail status
sudo service sendmail restart
# checking log files
for f in /var/log/mail*; do echo "###### ${f}"; zgrep ".*" "${f}" | tail -n 5;done
# searching phrase «error»
for f in /var/log/mail*; do echo "###### ${f}"; zgrep "error" "${f}" | tail -n 5;done