Difference between revisions of "sendmail"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
m (smw: software type)
(STARTTLS)
Line 27: Line 27:
 
* [http://www.linuxserverhowto.com/linux-mail-server-sendmail/configure-sendmail.html Linux Server How To - Configure Sendmail]
 
* [http://www.linuxserverhowto.com/linux-mail-server-sendmail/configure-sendmail.html Linux Server How To - Configure Sendmail]
 
** [http://www.linuxserverhowto.com/linux-mail-server-sendmail/sendmail-linux-mail-server-spam-control.html Linux Server How To - Filtering Spam on a Sendmail Mail Server]: suggests installing [[SpamAssassin]], but doesn't say how to get it working with sendmail
 
** [http://www.linuxserverhowto.com/linux-mail-server-sendmail/sendmail-linux-mail-server-spam-control.html Linux Server How To - Filtering Spam on a Sendmail Mail Server]: suggests installing [[SpamAssassin]], but doesn't say how to get it working with sendmail
 +
==Notes==
 +
<pre>
 +
To enable sendmail to use STARTTLS, you need to:
 +
1) Add this line to /etc/mail/sendmail.mc and optionally
 +
  to /etc/mail/submit.mc:
 +
  include(`/etc/mail/tls/starttls.m4')dnl
 +
2) Run sendmailconfig
 +
3) Restart sendmail
 +
</pre>

Revision as of 13:34, 28 October 2014

About

Sendmail is a free/open-source email server that handles both relay and delivery. The documentation is very detailed but also unclear on many critical points.

Notes

Links

Reference

How To

Notes

To enable sendmail to use STARTTLS, you need to:
1) Add this line to /etc/mail/sendmail.mc and optionally
   to /etc/mail/submit.mc:
  include(`/etc/mail/tls/starttls.m4')dnl
2) Run sendmailconfig
3) Restart sendmail