From owner-svn-ports-head@FreeBSD.ORG Mon Nov 5 02:19:58 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6EF57691; Mon, 5 Nov 2012 02:19:58 +0000 (UTC) (envelope-from sahil@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 5334D8FC0A; Mon, 5 Nov 2012 02:19:58 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qA52Jw2U004529; Mon, 5 Nov 2012 02:19:58 GMT (envelope-from sahil@svn.freebsd.org) Received: (from sahil@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qA52Jwre004524; Mon, 5 Nov 2012 02:19:58 GMT (envelope-from sahil@svn.freebsd.org) Message-Id: <201211050219.qA52Jwre004524@svn.freebsd.org> From: Sahil Tandon Date: Mon, 5 Nov 2012 02:19:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306992 - in head: . mail/postfix-current mail/postfix-current/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Nov 2012 02:19:58 -0000 Author: sahil Date: Mon Nov 5 02:19:57 2012 New Revision: 306992 URL: http://svnweb.freebsd.org/changeset/ports/306992 Log: Update to Postfix 2.10 Snapshot 20121031 and document incompatible changes in UPDATING. Also, revise the PKGINSTALL script to distinguish upgrades from fresh installs. Feature safe: yes Modified: head/UPDATING head/mail/postfix-current/Makefile head/mail/postfix-current/distinfo head/mail/postfix-current/files/pkg-install.in Modified: head/UPDATING ============================================================================== --- head/UPDATING Mon Nov 5 01:36:47 2012 (r306991) +++ head/UPDATING Mon Nov 5 02:19:57 2012 (r306992) @@ -5,6 +5,18 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20121105: + AFFECTS: users of mail/postfix-current + AUTHOR: sahil@FreeBSD.org + + With this version of Postfix, the default master.cf now uses "unix" + instead of "fifo" for the pickup and qmgr services. In addition, a + new smtpd_relay_restrictions feature has been introduced for mail + relay control. For sites that do not define this parameter in + main.cf, the upgrade process will add an entry to main.cf. Please + read the RELEASE_NOTES to understand this new feature, how it may + affect your site, and backwards compatibility options. + 20121104: AFFECTS: users of lang/perl5.16 AUTHOR: az@FreeBSD.org Modified: head/mail/postfix-current/Makefile ============================================================================== --- head/mail/postfix-current/Makefile Mon Nov 5 01:36:47 2012 (r306991) +++ head/mail/postfix-current/Makefile Mon Nov 5 02:19:57 2012 (r306992) @@ -6,7 +6,7 @@ # PORTNAME= postfix -DISTVERSION= 2.10-20120801 +DISTVERSION= 2.10-20121031 PORTEPOCH= 4 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/experimental/ \ Modified: head/mail/postfix-current/distinfo ============================================================================== --- head/mail/postfix-current/distinfo Mon Nov 5 01:36:47 2012 (r306991) +++ head/mail/postfix-current/distinfo Mon Nov 5 02:19:57 2012 (r306992) @@ -1,4 +1,4 @@ -SHA256 (postfix/postfix-2.10-20120801.tar.gz) = b0f076e0fae9faaa7302f66e693f1485a2d6c47c6174f697f64df37821756bd6 -SIZE (postfix/postfix-2.10-20120801.tar.gz) = 3784702 +SHA256 (postfix/postfix-2.10-20121031.tar.gz) = 665a707181b7a32848c96f0609d1c450bd0aefeb4246a70bdb69975e33dd06c5 +SIZE (postfix/postfix-2.10-20121031.tar.gz) = 3814909 SHA256 (postfix/postfix-2.8.0-libspf2-1.2.x-0.patch.gz) = e5c38e5bc226cab109c02a4e530ab1aefd3bb06f2169f3e052bdf83d2727aacc SIZE (postfix/postfix-2.8.0-libspf2-1.2.x-0.patch.gz) = 8191 Modified: head/mail/postfix-current/files/pkg-install.in ============================================================================== --- head/mail/postfix-current/files/pkg-install.in Mon Nov 5 01:36:47 2012 (r306991) +++ head/mail/postfix-current/files/pkg-install.in Mon Nov 5 02:19:57 2012 (r306992) @@ -65,11 +65,15 @@ if [ "$2" = "POST-INSTALL" ]; then fi done - /bin/sh ${DAEMONDIR}/post-install tempdir=/tmp \ - daemon_directory=${DAEMONDIR} \ - html_directory=${READMEDIR} \ - readme_directory=${READMEDIR} \ - upgrade-package + cmp ${DAEMONDIR}/main.cf ${ETCDIR}/main.cf >/dev/null 2>&1 \ + && POSTARG="set-permissions" \ + || POSTARG="upgrade-package" + + /bin/sh ${DAEMONDIR}/post-install tempdir=/tmp \ + daemon_directory=${DAEMONDIR} \ + html_directory=${READMEDIR} \ + readme_directory=${READMEDIR} \ + ${POSTARG} fi if [ "$2" = "POST-INSTALL" -a -z "${PACKAGE_BUILDING}" -a -f "${MC}" ]; then