From owner-svn-ports-all@freebsd.org Sun Sep 9 13:12:58 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 877C21094B76; Sun, 9 Sep 2018 13:12:58 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3A7A472B11; Sun, 9 Sep 2018 13:12:58 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 34BF11A37C; Sun, 9 Sep 2018 13:12:58 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w89DCv97098112; Sun, 9 Sep 2018 13:12:57 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w89DCv2G098111; Sun, 9 Sep 2018 13:12:57 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201809091312.w89DCv2G098111@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Sun, 9 Sep 2018 13:12:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r479288 - in head/mail: . postfix-ldap-sasl X-SVN-Group: ports-head X-SVN-Commit-Author: ohauer X-SVN-Commit-Paths: in head/mail: . postfix-ldap-sasl X-SVN-Commit-Revision: 479288 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Sep 2018 13:12:58 -0000 Author: ohauer Date: Sun Sep 9 13:12:57 2018 New Revision: 479288 URL: https://svnweb.freebsd.org/changeset/ports/479288 Log: - add new port postfix-ldap-sasl (OPTIONS_SLAVE= LDAP LDAP_SASL SASL) PR: 230816 Submitted by: bz@ Added: head/mail/postfix-ldap-sasl/ head/mail/postfix-ldap-sasl/Makefile (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Sun Sep 9 13:07:27 2018 (r479287) +++ head/mail/Makefile Sun Sep 9 13:12:57 2018 (r479288) @@ -510,6 +510,7 @@ SUBDIR += postfix SUBDIR += postfix-current SUBDIR += postfix-current-sasl + SUBDIR += postfix-ldap-sasl SUBDIR += postfix-logwatch SUBDIR += postfix-policyd-sf SUBDIR += postfix-policyd-spf-perl Added: head/mail/postfix-ldap-sasl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/postfix-ldap-sasl/Makefile Sun Sep 9 13:12:57 2018 (r479288) @@ -0,0 +1,14 @@ +# $FreeBSD$ + +PKGNAMESUFFIX?= -ldap-sasl + +MAINTAINER= ohauer@FreeBSD.org +COMMENT= Postfix with OpenLDAP and Cyrus SASL support + +MASTERDIR= ${.CURDIR}/../postfix + +OPTIONS_SLAVE= LDAP LDAP_SASL SASL + +SASL_SLAVE= yes + +.include "${MASTERDIR}/Makefile"