The 2020-06-27 snapshot was the last release from the Postfix 3.6 branch that supported SSL libraries older than OpenSSL 1.1.1. Should we disable building snapshot releases to prevent users from installing a version which is currently a dead-end for us?
(Alternatively it would be possible to build a snapshot version using OpenSSL 1.1.1 rather than LibreSSL, but the sasl2/ldap/mysql/pgsql flavours would need to be disabled; that might be preferable for some users as it would allow using DANE..) Index: Makefile =================================================================== RCS file: /cvs/ports/mail/postfix/Makefile,v retrieving revision 1.49 diff -u -p -r1.49 Makefile --- Makefile 17 Nov 2014 15:26:53 -0000 1.49 +++ Makefile 3 May 2021 13:15:09 -0000 @@ -10,13 +10,13 @@ SUBDIR += stable,pgsql SUBDIR += stable,pgsql,sasl2 SUBDIR += stable,sasl2 -SUBDIR += snapshot -SUBDIR += snapshot,ldap -SUBDIR += snapshot,ldap,sasl2 -SUBDIR += snapshot,mysql -SUBDIR += snapshot,mysql,sasl2 -SUBDIR += snapshot,pgsql -SUBDIR += snapshot,pgsql,sasl2 -SUBDIR += snapshot,sasl2 +#SUBDIR += snapshot +#SUBDIR += snapshot,ldap +#SUBDIR += snapshot,ldap,sasl2 +#SUBDIR += snapshot,mysql +#SUBDIR += snapshot,mysql,sasl2 +#SUBDIR += snapshot,pgsql +#SUBDIR += snapshot,pgsql,sasl2 +#SUBDIR += snapshot,sasl2 .include <bsd.port.subdir.mk> Index: snapshot/Makefile =================================================================== RCS file: /cvs/ports/mail/postfix/snapshot/Makefile,v retrieving revision 1.330 diff -u -p -r1.330 Makefile --- snapshot/Makefile 23 Dec 2020 21:17:59 -0000 1.330 +++ snapshot/Makefile 3 May 2021 13:15:09 -0000 @@ -1,5 +1,7 @@ # $OpenBSD: Makefile,v 1.330 2020/12/23 21:17:59 sthen Exp $ +BROKEN= outdated; newer versions require OpenSSL 1.1.1 API + VERSION= 3.6-20200627 REVISION= 0
