CVSROOT: /cvs Module name: src Changes by: nat...@cvs.openbsd.org 2017/07/11 00:08:40
Modified files: usr.sbin/smtpd : parse.y smtpd.conf.5 Log message: Remove "listen secure" syntax from smtpd.conf. It's broken since a couple of months and noone complained. Users should replace existing "listen secure" directives with two separate "tls" and "smtps" listeners. i.e. a line like listen on $iface tls pki $pki has to be replaced with listen on $iface tls pki $pki listen on $iface smtps pki $pki Relaying syntax is not affected by this change. suggested by eric ok gilles