Date: Sun, 14 Jun 2015 18:18:17 +0300 From: Esa Karkkainen <ejk@iki.fi> To: Frank Seltzer <frank_s@bellsouth.net> Cc: gshapiro@FreeBSD.org, freebsd-stable@freebsd.org Subject: Re: Sendmail problem after upgrade to r284296 Message-ID: <20150614151817.GB89960@pp.htv.fi> In-Reply-To: <alpine.BSF.2.20.1506141014130.852@Ace.nina.org> References: <alpine.BSF.2.20.1506141014130.852@Ace.nina.org>
next in thread | previous in thread | raw e-mail | index | archive | help
On Sun, Jun 14, 2015 at 10:57:13AM -0400, Frank Seltzer wrote: > Am I the only one seeing this? Nope, I had the same issues after upgading from 10.1-RELEASE-p10 to 10.1-RELEASE-p12 using freebsd-update. I fixed this in my home enviroment by disabling TLS in sendmail.cf, by commenting e.g. adding "dnl " to the beginning of the lines lines which have "CERT_DIR" string, rebuiding and installing sendmail.cf and restarting sendmail daemons. # cd /etc/mail # vi freebsd.mc :g/CERT_DIR/s/^/dnl / :wq! The lines should look like this: # fgrep CERT_DIR freebsd.mc dnl define(`CERT_DIR', `/etc/mail/certs')dnl dnl define(`confSERVER_CERT', `CERT_DIR/host.cert')dnl dnl define(`confSERVER_KEY', `CERT_DIR/host.key')dnl dnl define(`confCLIENT_CERT', `CERT_DIR/host.cert')dnl dnl define(`confCLIENT_KEY', `CERT_DIR/host.key')dnl dnl define(`confCACERT', `CERT_DIR/cacert.pem')dnl dnl define(`confCACERT_PATH', `CERT_DIR')dnl dnl define(`confDH_PARAMETERS', `CERT_DIR/dh.param')dnl These three commands create and update/install new sendmail.cf and restarts sendmail daemons. # make all # make install # make restart > Did I get caught between revisions? I do not know. # freebsd-version 10.1-RELEASE-p12 # ident /etc/mail/freebsd.mc /etc/mail/freebsd.mc: $FreeBSD: releng/10.1/etc/sendmail/freebsd.mc 266698 2014-05-26 15:42:39Z gshapiro $ Regards, Esa -- "In the beginning the Universe was created. This has made a lot of people very angry and been widely regarded as a bad move." -- Douglas Adams 1952 - 2001
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20150614151817.GB89960>