Jean-Fran?ois Stenuit: > Hi List, > > I'd like to configure my hub mail server to listen for connections on > port 465 SMTPs SSL - wrapper mode while still accepting standard > unencrypted SMTP coming from the scripts running on the machine. > > Intuitively, I configure my master.cf like this : > > smtp inet n - n - - smtpd > -o inet_interfaces=localhost
That does not work. inet_interfaces is implemented by the Postfix master daemon, not by the SMTP daemon. Specify instead: 127.0.0.0.1:smtp inet n - n - - smtpd Wietse