Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 1D9217A1BC for ; Sun, 9 Apr 2017 12:58:48 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 86F6784DFE; Sun, 9 Apr 2017 12:58:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1647784DE3 for ; Sun, 9 Apr 2017 12:58:47 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id xzccVAdsKsQx for ; Sun, 9 Apr 2017 12:58:46 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 517B684DB2 for ; Sun, 9 Apr 2017 12:58:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4C9B5FBE4; Sun, 9 Apr 2017 12:58:46 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1491742726132020" MIME-Version: 1.0 Date: Sun, 9 Apr 2017 12:58:46 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/mail/qmail-run To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20170409125846.4C9B5FBE4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1491742726132020 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Sun Apr 9 12:58:46 UTC 2017 Modified Files: pkgsrc/mail/qmail-run: Makefile options.mk pkgsrc/mail/qmail-run/files: qmailofmipd.sh qmailpop3d.sh qmailsmtpd.sh Log Message: Add "qmail-run-ofmipd" option that controls the dependency on mess822. Turn it off by default. This should let us once again publish binary packages. To use another ofmipd, set qmailofmipd_ofmipdcmd in rc.conf. Likewise for qmail-smtpd and qmail-pop3d. Bump version. To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33 pkgsrc/mail/qmail-run/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/mail/qmail-run/options.mk cvs rdiff -u -r1.2 -r1.3 pkgsrc/mail/qmail-run/files/qmailofmipd.sh cvs rdiff -u -r1.11 -r1.12 pkgsrc/mail/qmail-run/files/qmailpop3d.sh \ pkgsrc/mail/qmail-run/files/qmailsmtpd.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1491742726132020 Content-Disposition: inline Content-Length: 7974 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/qmail-run/Makefile diff -u pkgsrc/mail/qmail-run/Makefile:1.32 pkgsrc/mail/qmail-run/Makefile:1.33 --- pkgsrc/mail/qmail-run/Makefile:1.32 Tue Apr 4 07:51:03 2017 +++ pkgsrc/mail/qmail-run/Makefile Sun Apr 9 12:58:46 2017 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.32 2017/04/04 07:51:03 schmonz Exp $ +# $NetBSD: Makefile,v 1.33 2017/04/09 12:58:46 schmonz Exp $ # -DISTNAME= qmail-run-20170404 +DISTNAME= qmail-run-20170409 CATEGORIES= mail MASTER_SITES= # empty DISTFILES= # empty @@ -10,7 +10,6 @@ MAINTAINER= schmonz@NetBSD.org COMMENT= Configures qmail to receive and deliver mail LICENSE= 2-clause-bsd -DEPENDS+= mess822-[0-9]*:../../mail/mess822 DEPENDS_QMAIL= qmail>=1.03nb8:../../mail/qmail DEPENDS+= ${DEPENDS_QMAIL} Index: pkgsrc/mail/qmail-run/options.mk diff -u pkgsrc/mail/qmail-run/options.mk:1.1 pkgsrc/mail/qmail-run/options.mk:1.2 --- pkgsrc/mail/qmail-run/options.mk:1.1 Sat Jan 14 23:00:31 2017 +++ pkgsrc/mail/qmail-run/options.mk Sun Apr 9 12:58:46 2017 @@ -1,10 +1,15 @@ -# $NetBSD: options.mk,v 1.1 2017/01/14 23:00:31 schmonz Exp $ +# $NetBSD: options.mk,v 1.2 2017/04/09 12:58:46 schmonz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.qmail-run -PKG_SUPPORTED_OPTIONS+= sasl tls +PKG_SUPPORTED_OPTIONS+= qmail-run-ofmipd sasl tls .include "../../mk/bsd.options.mk" +.if !empty(PKG_OPTIONS:Mqmail-run-ofmipd) +DEPENDS+= mess822-[0-9]*:../../mail/mess822 +.endif + + .if !empty(PKG_OPTIONS:Msasl) DEPENDS+= spamdyke-[0-9]*:../../mail/spamdyke .endif Index: pkgsrc/mail/qmail-run/files/qmailofmipd.sh diff -u pkgsrc/mail/qmail-run/files/qmailofmipd.sh:1.2 pkgsrc/mail/qmail-run/files/qmailofmipd.sh:1.3 --- pkgsrc/mail/qmail-run/files/qmailofmipd.sh:1.2 Tue Apr 4 07:51:03 2017 +++ pkgsrc/mail/qmail-run/files/qmailofmipd.sh Sun Apr 9 12:58:46 2017 @@ -1,6 +1,6 @@ #!@RCD_SCRIPTS_SHELL@ # -# $NetBSD: qmailofmipd.sh,v 1.2 2017/04/04 07:51:03 schmonz Exp $ +# $NetBSD: qmailofmipd.sh,v 1.3 2017/04/09 12:58:46 schmonz Exp $ # # @PKGNAME@ script to control ofmipd (SMTP submission service). # @@ -18,6 +18,7 @@ name="qmailofmipd" : ${qmailofmipd_datalimit:="146800640"} : ${qmailofmipd_pretcpserver:=""} : ${qmailofmipd_preofmipd:=""} +: ${qmailofmipd_ofmipdcmd:="@PREFIX@/bin/ofmipd"} : ${qmailofmipd_postofmipd:=""} : ${qmailofmipd_log:="YES"} : ${qmailofmipd_logcmd:="logger -t nb${name} -p mail.info"} @@ -48,7 +49,7 @@ qmailofmipd_precmd() if [ -f /etc/rc.subr ]; then checkyesno qmailofmipd_log || qmailofmipd_logcmd=${qmailofmipd_nologcmd} fi - command="@SETENV@ - ${qmailofmipd_postenv} @PREFIX@/bin/softlimit -m ${qmailofmipd_datalimit} ${qmailofmipd_pretcpserver} @PREFIX@/bin/argv0 @PREFIX@/bin/tcpserver ${name} ${qmailofmipd_tcpflags} -x @PKG_SYSCONFDIR@/tcp.ofmip.cdb -c `@HEAD@ -1 @PKG_SYSCONFDIR@/control/concurrencyofmip` -u `@ID@ -u @QMAIL_DAEMON_USER@` -g `@ID@ -g @QMAIL_DAEMON_USER@` ${qmailofmipd_tcphost} ${qmailofmipd_tcpport} ${qmailofmipd_preofmipd} @PREFIX@/bin/ofmipd ${qmailofmipd_postofmipd} 2>&1 | @PREFIX@/bin/setuidgid @QMAIL_LOG_USER@ ${qmailofmipd_logcmd}" + command="@SETENV@ - ${qmailofmipd_postenv} @PREFIX@/bin/softlimit -m ${qmailofmipd_datalimit} ${qmailofmipd_pretcpserver} @PREFIX@/bin/argv0 @PREFIX@/bin/tcpserver ${name} ${qmailofmipd_tcpflags} -x @PKG_SYSCONFDIR@/tcp.ofmip.cdb -c `@HEAD@ -1 @PKG_SYSCONFDIR@/control/concurrencyofmip` -u `@ID@ -u @QMAIL_DAEMON_USER@` -g `@ID@ -g @QMAIL_DAEMON_USER@` ${qmailofmipd_tcphost} ${qmailofmipd_tcpport} ${qmailofmipd_preofmipd} ${qmailofmipd_ofmipdcmd} ${qmailofmipd_postofmipd} 2>&1 | @PREFIX@/bin/setuidgid @QMAIL_LOG_USER@ ${qmailofmipd_logcmd}" command_args="&" rc_flags="" } Index: pkgsrc/mail/qmail-run/files/qmailpop3d.sh diff -u pkgsrc/mail/qmail-run/files/qmailpop3d.sh:1.11 pkgsrc/mail/qmail-run/files/qmailpop3d.sh:1.12 --- pkgsrc/mail/qmail-run/files/qmailpop3d.sh:1.11 Tue Apr 4 07:51:03 2017 +++ pkgsrc/mail/qmail-run/files/qmailpop3d.sh Sun Apr 9 12:58:46 2017 @@ -1,6 +1,6 @@ #!@RCD_SCRIPTS_SHELL@ # -# $NetBSD: qmailpop3d.sh,v 1.11 2017/04/04 07:51:03 schmonz Exp $ +# $NetBSD: qmailpop3d.sh,v 1.12 2017/04/09 12:58:46 schmonz Exp $ # # @PKGNAME@ script to control qmail-pop3d (POP3 server for Maildirs). # @@ -17,6 +17,7 @@ name="qmailpop3d" : ${qmailpop3d_datalimit:="146800640"} : ${qmailpop3d_pretcpserver:=""} : ${qmailpop3d_prepop3d:=""} +: ${qmailpop3d_pop3dcmd:="@PREFIX@/bin/qmail-pop3d"} : ${qmailpop3d_checkpassword:="@PREFIX@/bin/checkpassword"} : ${qmailpop3d_maildirname:="Maildir"} : ${qmailpop3d_log:="YES"} @@ -48,7 +49,7 @@ qmailpop3d_precmd() if [ -f /etc/rc.subr ]; then checkyesno qmailpop3d_log || qmailpop3d_logcmd=${qmailpop3d_nologcmd} fi - command="@SETENV@ - ${qmailpop3d_postenv} @PREFIX@/bin/softlimit -m ${qmailpop3d_datalimit} ${qmailpop3d_pretcpserver} @PREFIX@/bin/argv0 @PREFIX@/bin/tcpserver ${name} ${qmailpop3d_tcpflags} -x @PKG_SYSCONFDIR@/tcp.pop3.cdb -c `@HEAD@ -1 @PKG_SYSCONFDIR@/control/concurrencypop3` ${qmailpop3d_tcphost} ${qmailpop3d_tcpport} @PREFIX@/bin/qmail-popup `@HEAD@ -1 @PKG_SYSCONFDIR@/control/me` ${qmailpop3d_checkpassword} ${qmailpop3d_prepop3d} @PREFIX@/bin/qmail-pop3d ${qmailpop3d_maildirname} 2>&1 | @PREFIX@/bin/setuidgid @QMAIL_LOG_USER@ ${qmailpop3d_logcmd}" + command="@SETENV@ - ${qmailpop3d_postenv} @PREFIX@/bin/softlimit -m ${qmailpop3d_datalimit} ${qmailpop3d_pretcpserver} @PREFIX@/bin/argv0 @PREFIX@/bin/tcpserver ${name} ${qmailpop3d_tcpflags} -x @PKG_SYSCONFDIR@/tcp.pop3.cdb -c `@HEAD@ -1 @PKG_SYSCONFDIR@/control/concurrencypop3` ${qmailpop3d_tcphost} ${qmailpop3d_tcpport} @PREFIX@/bin/qmail-popup `@HEAD@ -1 @PKG_SYSCONFDIR@/control/me` ${qmailpop3d_checkpassword} ${qmailpop3d_prepop3d} ${qmailpop3d_pop3dcmd} ${qmailpop3d_maildirname} 2>&1 | @PREFIX@/bin/setuidgid @QMAIL_LOG_USER@ ${qmailpop3d_logcmd}" command_args="&" rc_flags="" } Index: pkgsrc/mail/qmail-run/files/qmailsmtpd.sh diff -u pkgsrc/mail/qmail-run/files/qmailsmtpd.sh:1.11 pkgsrc/mail/qmail-run/files/qmailsmtpd.sh:1.12 --- pkgsrc/mail/qmail-run/files/qmailsmtpd.sh:1.11 Tue Apr 4 07:51:03 2017 +++ pkgsrc/mail/qmail-run/files/qmailsmtpd.sh Sun Apr 9 12:58:46 2017 @@ -1,6 +1,6 @@ #!@RCD_SCRIPTS_SHELL@ # -# $NetBSD: qmailsmtpd.sh,v 1.11 2017/04/04 07:51:03 schmonz Exp $ +# $NetBSD: qmailsmtpd.sh,v 1.12 2017/04/09 12:58:46 schmonz Exp $ # # @PKGNAME@ script to control qmail-smtpd (SMTP service). # @@ -18,6 +18,7 @@ name="qmailsmtpd" : ${qmailsmtpd_datalimit:="146800640"} : ${qmailsmtpd_pretcpserver:=""} : ${qmailsmtpd_presmtpd:=""} +: ${qmailsmtpd_smtpdcmd:="@PREFIX@/bin/qmail-smtpd"} : ${qmailsmtpd_postsmtpd:=""} : ${qmailsmtpd_log:="YES"} : ${qmailsmtpd_logcmd:="logger -t nb${name} -p mail.info"} @@ -48,7 +49,7 @@ qmailsmtpd_precmd() if [ -f /etc/rc.subr ]; then checkyesno qmailsmtpd_log || qmailsmtpd_logcmd=${qmailsmtpd_nologcmd} fi - command="@SETENV@ - ${qmailsmtpd_postenv} @PREFIX@/bin/softlimit -m ${qmailsmtpd_datalimit} ${qmailsmtpd_pretcpserver} @PREFIX@/bin/argv0 @PREFIX@/bin/tcpserver ${name} ${qmailsmtpd_tcpflags} -x @PKG_SYSCONFDIR@/tcp.smtp.cdb -c `@HEAD@ -1 @PKG_SYSCONFDIR@/control/concurrencyincoming` -u `@ID@ -u @QMAIL_DAEMON_USER@` -g `@ID@ -g @QMAIL_DAEMON_USER@` ${qmailsmtpd_tcphost} ${qmailsmtpd_tcpport} ${qmailsmtpd_presmtpd} @PREFIX@/bin/qmail-smtpd ${qmailsmtpd_postsmtpd} 2>&1 | @PREFIX@/bin/setuidgid @QMAIL_LOG_USER@ ${qmailsmtpd_logcmd}" + command="@SETENV@ - ${qmailsmtpd_postenv} @PREFIX@/bin/softlimit -m ${qmailsmtpd_datalimit} ${qmailsmtpd_pretcpserver} @PREFIX@/bin/argv0 @PREFIX@/bin/tcpserver ${name} ${qmailsmtpd_tcpflags} -x @PKG_SYSCONFDIR@/tcp.smtp.cdb -c `@HEAD@ -1 @PKG_SYSCONFDIR@/control/concurrencyincoming` -u `@ID@ -u @QMAIL_DAEMON_USER@` -g `@ID@ -g @QMAIL_DAEMON_USER@` ${qmailsmtpd_tcphost} ${qmailsmtpd_tcpport} ${qmailsmtpd_presmtpd} ${qmailsmtpd_smtpdcmd} ${qmailsmtpd_postsmtpd} 2>&1 | @PREFIX@/bin/setuidgid @QMAIL_LOG_USER@ ${qmailsmtpd_logcmd}" command_args="&" rc_flags="" } --_----------=_1491742726132020--