I recently rebuilt world after updating to 9.1-RELEASE-p4 from 9.1-RELEASE-p3 and working through the process, I followed the
This deleted a bunch of Sendmail stuff, which seemed a little scary, but made sense since I'm using a Sendmail port and not the base installation.
I've got this in /etc/rc.conf
and this in /etc/make.conf
Immediately after updating, I started to get this error in /var/log/maillog
That's not totally unexpected given that I just deleted the file, but going to /etc/mail and doing a
I changed the value of Mlocal in /etc/mail/sendmail.cf and all seems well, but it looks like this change will get lost next time I update the Sendmail port.
Any suggestions for the proper way to solve this problem, so I don't accidentally blast it later?
make delete-old
step.This deleted a bunch of Sendmail stuff, which seemed a little scary, but made sense since I'm using a Sendmail port and not the base installation.
I've got this in /etc/rc.conf
Code:
sendmail_enable="YES"
and this in /etc/make.conf
Code:
NO_SENDMAIL=TRUE
Immediately after updating, I started to get this error in /var/log/maillog
Code:
Cannot exec /usr/libexec/mail.local: No such file or directory
That's not totally unexpected given that I just deleted the file, but going to /etc/mail and doing a
make
did not produce a cf file with the correct location for mail.local. It should be /usr/local/libexec/mail.local but it showed the old location at /usr/libexec/mail.localI changed the value of Mlocal in /etc/mail/sendmail.cf and all seems well, but it looks like this change will get lost next time I update the Sendmail port.
Any suggestions for the proper way to solve this problem, so I don't accidentally blast it later?