From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2CEAD138350 for ; Wed, 5 Feb 2020 12:17:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 654CFE0A10; Wed, 5 Feb 2020 12:17:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 472C1E0A10 for ; Wed, 5 Feb 2020 12:17:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8A10F34E793 for ; Wed, 5 Feb 2020 12:17:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 33E40B0 for ; Wed, 5 Feb 2020 12:17:05 +0000 (UTC) From: "Jason A. Donenfeld" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason A. Donenfeld" Message-ID: <1580904988.d852f2b49ce874f02aa2804f9ebd9e04d55a8b15.zx2c4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-mta/opensmtpd/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-mta/opensmtpd/opensmtpd-6.6.2_p1.ebuild X-VCS-Directories: mail-mta/opensmtpd/ X-VCS-Committer: zx2c4 X-VCS-Committer-Name: Jason A. Donenfeld X-VCS-Revision: d852f2b49ce874f02aa2804f9ebd9e04d55a8b15 X-VCS-Branch: master Date: Wed, 5 Feb 2020 12:17:05 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ec1a0af1-6cd7-4bf1-962f-f76721156804 X-Archives-Hash: 10f676d2a229628f56264292c429668c commit: d852f2b49ce874f02aa2804f9ebd9e04d55a8b15 Author: Jason A. Donenfeld gentoo org> AuthorDate: Wed Feb 5 12:10:01 2020 +0000 Commit: Jason A. Donenfeld gentoo org> CommitDate: Wed Feb 5 12:16:28 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d852f2b4 mail-mta/opensmtpd: modernize options Package-Manager: Portage-2.3.86, Repoman-2.3.20 Signed-off-by: Jason A. Donenfeld gentoo.org> mail-mta/opensmtpd/opensmtpd-6.6.2_p1.ebuild | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/mail-mta/opensmtpd/opensmtpd-6.6.2_p1.ebuild b/mail-mta/opensmtpd/opensmtpd-6.6.2_p1.ebuild index 47ee74dbd8e..001f39e82b7 100644 --- a/mail-mta/opensmtpd/opensmtpd-6.6.2_p1.ebuild +++ b/mail-mta/opensmtpd/opensmtpd-6.6.2_p1.ebuild @@ -41,15 +41,15 @@ RDEPEND="${DEPEND}" S=${WORKDIR}/${P/_} src_configure() { - tc-export AR - AR="$(which "$AR")" econf \ - --with-table-db \ + econf \ + --sysconfdir=/etc/smtpd \ + --with-path-mbox=/var/spool/mail \ + --with-path-empty=/var/empty \ + --with-path-socket=/run \ + --with-path-CAfile=/etc/ssl/certs/ca-certificates.crt \ --with-user-smtpd=smtpd \ --with-user-queue=smtpq \ --with-group-queue=smtpq \ - --with-path-socket=/run \ - --with-path-CAfile=/etc/ssl/certs/ca-certificates.crt \ - --sysconfdir=/etc/opensmtpd \ $(use_with pam auth-pam) } @@ -82,4 +82,10 @@ pkg_postinst() { einfo "Redis, and many other useful addons and filters are" einfo "available in the mail-filter/opensmtpd-extras package." einfo + + ewarn + ewarn "If you're upgrading from version 6.0, note that the" + ewarn "configuration syntax has changed, and config files" + ewarn "now live in /etc/smtpd instead of /etc/opensmtpd." + ewarn }