I did an upgrade to my FreeBSD server. I followed this guide:
https://www.freebsd.org/doc/handbook/updating-upgrading-freebsdupdate.html
Things seemed to work pretty well....after attempt 4 (helps to read some).
It seems though something is still not correct as Sendmail stopped working. The specific steps I took are as follows:
I have this server setup to relay local mail from ports to Gmail smarthost. When a local mail is generated I see the following in the maillog:
Since I am relaying through gmail I have done all the appropriate SSL configurations (was working before upgrade fine). Telneting to the host reveals this:
So no:
I don't think sendmail would need to send local mail using TLS or anything but on a whim I checked SSL functionality like so:
That does not look correct but am not sure if its relevant to the issue I am seeing. So something is really busted here and I am too much of a novice with BSD to figure it out. Is there some way to rebuild sendmail after an upgrade like this that I need to be doing here?
Any help is appreciated.
https://www.freebsd.org/doc/handbook/updating-upgrading-freebsdupdate.html
Things seemed to work pretty well....after attempt 4 (helps to read some).
It seems though something is still not correct as Sendmail stopped working. The specific steps I took are as follows:
Code:
freebsd-update -r 9.3-RELEASE upgrade
freebsd-update install
shutdown -r now
freebsd-update install
portsnap fetch update && portupgrade -a -m BATCH=yes
freebsd-update install
I have this server setup to relay local mail from ports to Gmail smarthost. When a local mail is generated I see the following in the maillog:
Code:
stat=Deferred: Connection reset by [127.0.0.1]
Since I am relaying through gmail I have done all the appropriate SSL configurations (was working before upgrade fine). Telneting to the host reveals this:
Code:
root@draco:/etc/mail # telnet 127.0.0.1 25
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
220 draco.domain.com ESMTP Sendmail 8.14.9/8.14.9; Wed, 14 Jan 2015 15:35:15 -0600 (CST)
ehlo
Connection closed by foreign host.
[EMAIL]root@draco:/etc/mail[/EMAIL] #
So no:
Code:
250-ETRN
250-AUTH LOGIN CRAM-MD5 PLAIN
250-8BITMIME
250-ENHANCEDSTATUSCODES
250-STARTTLS
250 SIZE
I don't think sendmail would need to send local mail using TLS or anything but on a whim I checked SSL functionality like so:
Code:
root@draco:/etc/mail # openssl s_client -connect localhost:25
CONNECTED(00000003)
33083:error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol:/usr/src/secure/lib/libssl/../../../crypto/openssl/ssl/s23_clnt.c:618:
That does not look correct but am not sure if its relevant to the issue I am seeing. So something is really busted here and I am too much of a novice with BSD to figure it out. Is there some way to rebuild sendmail after an upgrade like this that I need to be doing here?
Any help is appreciated.