Differences

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

Link to this comparison view

sendmail [2013/03/19 18:34]
sendmail [2013/03/19 18:34] (current)
Line 1: Line 1:
 +====== sendmail ======
  
 +  * [[FreeBSD]]
 +  * [[OpenBSD]]
 +
 +Sendmail will work out of the box, and use the FQDN to send email from.  You may want to make sure the hostname is set correctly using Webmin first.
 +
 +== Disable Sendmail ==
 +
 +For FreeBSD:
 +
 +Add to ''/​etc/​rc.conf'':​
 +
 +<​code>​
 +postfix_enable="​YES"​
 +sendmail_enable="​NO"​
 +sendmail_submit_enable="​NO"​
 +sendmail_outbound_enable="​NO"​
 +sendmail_msp_queue_enable="​NO"​
 +</​code>​
 +
 +Add to ''/​etc/​periodic.conf'':​
 +
 +<​code>​
 +daily_clean_hoststat_enable="​NO"​
 +daily_status_mail_rejects_enable="​NO"​
 +daily_status_include_submit_mailq="​NO"​
 +daily_submit_queuerun="​NO"​
 +</​code>​