On Fri, 19 Dec 2025 08:47:17 -0500, Matthias Apitz wrote:
>
> Hello,
>
> Since ages I do use mutt as MUA to leer mit correos (fetched with IMAPs)
> and send outboud via a normal senmail configuration in my laptop
> (configured in /etc/mail/ the normal way with make). All this works
> fine, as said since ages, when I'm in Europe. sendmail delivers the mail
> by SMTP to port 25 of my ISP
smtp.1blu.de.
>
> When I'm in Cuba, connected via data mobile to the cuban cellphone
> network, they block outbound port 25 traffic, for whatever reason and I
> have to bypass sendmail with a configuration in mutt to send mails to
>
smtp.1blu.de:465
>
> I have had a look into the port mail/ssmtp which addresses this problem sending
> mail to port 465, but has no queuing etc. of mails.
>
> My question is, is there a way to configure sendmail to use SSL port 465
> to the remote mail HUB?
I have a few notes from 2023 / 2024 where I had to deal with a problem
like this (needed to connect to a TLS remote system where my own program
did not support it, so I had to go through sendmail as a "handover" relay).
Allow me to provide the parts of my... pile of... unsorted stupid notes,
incomplete and questionable... which I have also forgotten and do no longer
understand... ;-) I'll add a few comments.
Maybe it still helps?
1. install
cyrus-sasl
cyrus-sasl-saslauthd
(Version 2)
2. check file /usr/local/lib/sasl2/Sendmail.conf
pwcheck_method: saslauthd
mech_list: EXTERNAL DIGEST-MD5 CRAM-MD5 PLAIN LOGIN
3. recompile sendmail with SASL support
check:
# sendmail -d0.1 -bt < /dev/null
Compiled with: DNSMAP IPV6_FULL LOG MAP_REGEX MATCHGECOS MILTER
MIME7TO8 MIME8TO7 NAMED_BIND NETINET NETINET6 NETUNIX
NEWDB NIS PIPELINING SCANF STARTTLS TCPWRAPPERS TLS_EC
TLS_VRFY_PER_CTX USERDB XDEBUG
missing: SASLv2
add to file /etc/make.conf:
SENDMAIL_CFLAGS=-I/usr/local/include -DSASL=2
SENDMAIL_LDFLAGS=-L/usr/local/lib
SENDMAIL_LDADD=/usr/local/lib/libsasl2.so
NB: Handbook 30.9 # 4 is _wrong_ <- !!!
https://docs.freebsd.org/en/books/handbook/mail/#SMTP-Auth
SENDMAIL_CFLAGS=-I/usr/local/include/sasl -DSASL
The -DSASL is wrong, must be defined as "2"!
obtain /usr/src tree via git or freebsd-update (select
"src" distribution) <--- gitup !!!
recompile
# cd /usr/src/lib/libsm
# make
# cd /usr/src/lib/libsmutil
# make
# cd /usr/src/usr.sbin/sendmail
# make
# make install
re-check:
# sendmail -d0.1 -bt < /dev/null
Compiled with: DNSMAP IPV6_FULL LOG MAP_REGEX MATCHGECOS MILTER
MIME7TO8 MIME8TO7 NAMED_BIND NETINET NETINET6 NETUNIX
NEWDB NIS PIPELINING SASLv2 SCANF STARTTLS TCPWRAPPERS
TLS_EC TLS_VRFY_PER_CTX USERDB XDEBUG
now: SASLv2 listed
4. enable services in file /etc/rc.conf
sendmail_enable="YES"
saslauthd_enable="YES"
5. add access credentials for SMTP server to send mail to
# cd /etc/mail
# mkdir auth
# chmod 700 auth
# cd auth
create file client-info
AuthInfo:<SMTP server> "U:root" "I:<user name>" "P:<password>"'
user "root" (or "smmsp"?) <- ???
make database
# makemap hash client-info < client-info
# chmod 600 client-info*
authentication will be STARTTLS method
6. configure sendmail to use them and to accept external connections
# cd /etc/mail
create file access to define where user can connect from
<your domain> RELAY
<your IP> RELAY
and
# makemap hash access < access
add /etc/mail/local-host-names for local names that sendmail accepts
as local in addition to "localhost"
<machine name>
<machine name FQDN>
then
# make
modify file <hostname>.mc
comment out:
dnl DAEMON_OPTIONS(`Name=IPv6, Family=inet6, Modifiers=O')
^^^
only IPv4!
add:
DAEMON_OPTIONS(`Family=inet,Name=MSP-v4,Port=submission,M=Ea')dnl
then add:
define(`SMART_HOST',`<smart host here>')dnl
define(`confAUTH_MECHANISMS', `EXTERNAL GSSAPI DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl
FEATURE(`authinfo',`hash /etc/mail/auth/client-info')dnl
and add:
define(`confAUTH_OPTIONS', `A')dnl
TRUST_AUTH_MECH(`EXTERNAL DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl
at top add:
FEATURE(access_db)
finally use
# make
# make install
# service sendmail start
to bring config changes into effect and restart sendmail service
<port> 587 = STARTTLS
<port> 465 = SSL/TLS <--- YOU NEED THIS!
define('RELAY_MAILER_ARGS', 'TCP $h <port>')dnl
define('confAUTH_MECHANISMS', 'EXTERNAL GSSAPI DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl
FEATURE('authinfo','hash /etc/mail/auth/smtp-auth.db')dnl
define(`confAUTH_OPTIONS', `A p y')dnl
?
https://docs.oracle.com/en/operating-systems/oracle-linux/6/admin/configure-sendmail.html
https://www.akadia.com/services/sendmail_relay.html
--
Polytropon
Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...