mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
- Update to 2.1.4
PR: ports/68949 Submitted by: Vivek Khera <vivek@khera.org> (maintainer)
This commit is contained in:
parent
5f363444c6
commit
e28d8ba3be
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=113568
27 changed files with 72 additions and 36 deletions
|
@ -15,7 +15,7 @@
|
||||||
# NOTE: PCRE is enabled by default unless you specifically disable it.
|
# NOTE: PCRE is enabled by default unless you specifically disable it.
|
||||||
|
|
||||||
PORTNAME= postfix
|
PORTNAME= postfix
|
||||||
PORTVERSION= 2.1.3
|
PORTVERSION= 2.1.4
|
||||||
PORTEPOCH= 1
|
PORTEPOCH= 1
|
||||||
CATEGORIES= mail ipv6
|
CATEGORIES= mail ipv6
|
||||||
MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \
|
MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
MD5 (postfix/postfix-2.1.3.tar.gz) = 1f515b0d80cd1f9db0113240bf36f248
|
MD5 (postfix/postfix-2.1.4.tar.gz) = f96fc9e7cbf9750d4a91475fcbd02a81
|
||||||
SIZE (postfix/postfix-2.1.3.tar.gz) = 1971632
|
SIZE (postfix/postfix-2.1.4.tar.gz) = 1970068
|
||||||
MD5 (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = d3211ebd4d2fbbc9c78235666ed355ac
|
MD5 (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = d3211ebd4d2fbbc9c78235666ed355ac
|
||||||
SIZE (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = 239141
|
SIZE (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = 239141
|
||||||
MD5 (postfix/ipv6-1.25-pf-2.1.3.patch.gz) = cd99ff3ddf9bb88e23a7e33ae42d0772
|
MD5 (postfix/ipv6-1.25-pf-2.1.3.patch.gz) = cd99ff3ddf9bb88e23a7e33ae42d0772
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $FreeBSD: /tmp/pcvs/ports/mail/postfix/scripts/Attic/configure.postfix,v 1.50 2004-06-25 09:11:35 pav Exp $
|
# $FreeBSD: /tmp/pcvs/ports/mail/postfix/scripts/Attic/configure.postfix,v 1.51 2004-07-13 16:23:12 pav Exp $
|
||||||
|
|
||||||
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
||||||
exit
|
exit
|
||||||
|
@ -23,6 +23,7 @@ NOPCRE "DISABLE Perl Compatible Regular Expressions" "$status_NOPCRE" \
|
||||||
SASL "Cyrus SASLv1 (Simple Authentication and Security Layer)" "$status_SASL" \
|
SASL "Cyrus SASLv1 (Simple Authentication and Security Layer)" "$status_SASL" \
|
||||||
SASL2 "Cyrus SASLv2 (Simple Authentication and Security Layer)" "$status_SASL2" \
|
SASL2 "Cyrus SASLv2 (Simple Authentication and Security Layer)" "$status_SASL2" \
|
||||||
SASLKRB "If your SASL requires Kerberos select this option" "$status_SASLKRB" \
|
SASLKRB "If your SASL requires Kerberos select this option" "$status_SASLKRB" \
|
||||||
|
SASLKRB5 "If your SASL requires Kerberos5 select this option" "$status_SASLKRB5" \
|
||||||
TLS "SSL and TLS" "$status_TLS" \
|
TLS "SSL and TLS" "$status_TLS" \
|
||||||
IPv6 "IPv6 support" "$status_IPv6" \
|
IPv6 "IPv6 support" "$status_IPv6" \
|
||||||
IPv6TLS "IPv6 support with SSL and TLS" "$status_IPv6TLS" \
|
IPv6TLS "IPv6 support with SSL and TLS" "$status_IPv6TLS" \
|
||||||
|
@ -103,6 +104,9 @@ while [ "$1" ]; do
|
||||||
SASLKRB)
|
SASLKRB)
|
||||||
echo "POSTFIX_AUXLIBS+= -lkrb -lcrypto -lcom_err"
|
echo "POSTFIX_AUXLIBS+= -lkrb -lcrypto -lcom_err"
|
||||||
;;
|
;;
|
||||||
|
SASLKRB5)
|
||||||
|
echo "POSTFIX_AUXLIBS+= -lkrb5 -lcrypto -lcom_err"
|
||||||
|
;;
|
||||||
TLS)
|
TLS)
|
||||||
echo "MAN8+= tlsmgr.8"
|
echo "MAN8+= tlsmgr.8"
|
||||||
echo "USE_OPENSSL= yes"
|
echo "USE_OPENSSL= yes"
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
# NOTE: PCRE is enabled by default unless you specifically disable it.
|
# NOTE: PCRE is enabled by default unless you specifically disable it.
|
||||||
|
|
||||||
PORTNAME= postfix
|
PORTNAME= postfix
|
||||||
PORTVERSION= 2.1.3
|
PORTVERSION= 2.1.4
|
||||||
PORTEPOCH= 1
|
PORTEPOCH= 1
|
||||||
CATEGORIES= mail ipv6
|
CATEGORIES= mail ipv6
|
||||||
MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \
|
MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
MD5 (postfix/postfix-2.1.3.tar.gz) = 1f515b0d80cd1f9db0113240bf36f248
|
MD5 (postfix/postfix-2.1.4.tar.gz) = f96fc9e7cbf9750d4a91475fcbd02a81
|
||||||
SIZE (postfix/postfix-2.1.3.tar.gz) = 1971632
|
SIZE (postfix/postfix-2.1.4.tar.gz) = 1970068
|
||||||
MD5 (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = d3211ebd4d2fbbc9c78235666ed355ac
|
MD5 (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = d3211ebd4d2fbbc9c78235666ed355ac
|
||||||
SIZE (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = 239141
|
SIZE (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = 239141
|
||||||
MD5 (postfix/ipv6-1.25-pf-2.1.3.patch.gz) = cd99ff3ddf9bb88e23a7e33ae42d0772
|
MD5 (postfix/ipv6-1.25-pf-2.1.3.patch.gz) = cd99ff3ddf9bb88e23a7e33ae42d0772
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $FreeBSD: /tmp/pcvs/ports/mail/postfix21/scripts/Attic/configure.postfix,v 1.50 2004-06-25 09:11:35 pav Exp $
|
# $FreeBSD: /tmp/pcvs/ports/mail/postfix21/scripts/Attic/configure.postfix,v 1.51 2004-07-13 16:23:12 pav Exp $
|
||||||
|
|
||||||
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
||||||
exit
|
exit
|
||||||
|
@ -23,6 +23,7 @@ NOPCRE "DISABLE Perl Compatible Regular Expressions" "$status_NOPCRE" \
|
||||||
SASL "Cyrus SASLv1 (Simple Authentication and Security Layer)" "$status_SASL" \
|
SASL "Cyrus SASLv1 (Simple Authentication and Security Layer)" "$status_SASL" \
|
||||||
SASL2 "Cyrus SASLv2 (Simple Authentication and Security Layer)" "$status_SASL2" \
|
SASL2 "Cyrus SASLv2 (Simple Authentication and Security Layer)" "$status_SASL2" \
|
||||||
SASLKRB "If your SASL requires Kerberos select this option" "$status_SASLKRB" \
|
SASLKRB "If your SASL requires Kerberos select this option" "$status_SASLKRB" \
|
||||||
|
SASLKRB5 "If your SASL requires Kerberos5 select this option" "$status_SASLKRB5" \
|
||||||
TLS "SSL and TLS" "$status_TLS" \
|
TLS "SSL and TLS" "$status_TLS" \
|
||||||
IPv6 "IPv6 support" "$status_IPv6" \
|
IPv6 "IPv6 support" "$status_IPv6" \
|
||||||
IPv6TLS "IPv6 support with SSL and TLS" "$status_IPv6TLS" \
|
IPv6TLS "IPv6 support with SSL and TLS" "$status_IPv6TLS" \
|
||||||
|
@ -103,6 +104,9 @@ while [ "$1" ]; do
|
||||||
SASLKRB)
|
SASLKRB)
|
||||||
echo "POSTFIX_AUXLIBS+= -lkrb -lcrypto -lcom_err"
|
echo "POSTFIX_AUXLIBS+= -lkrb -lcrypto -lcom_err"
|
||||||
;;
|
;;
|
||||||
|
SASLKRB5)
|
||||||
|
echo "POSTFIX_AUXLIBS+= -lkrb5 -lcrypto -lcom_err"
|
||||||
|
;;
|
||||||
TLS)
|
TLS)
|
||||||
echo "MAN8+= tlsmgr.8"
|
echo "MAN8+= tlsmgr.8"
|
||||||
echo "USE_OPENSSL= yes"
|
echo "USE_OPENSSL= yes"
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
# NOTE: PCRE is enabled by default unless you specifically disable it.
|
# NOTE: PCRE is enabled by default unless you specifically disable it.
|
||||||
|
|
||||||
PORTNAME= postfix
|
PORTNAME= postfix
|
||||||
PORTVERSION= 2.1.3
|
PORTVERSION= 2.1.4
|
||||||
PORTEPOCH= 1
|
PORTEPOCH= 1
|
||||||
CATEGORIES= mail ipv6
|
CATEGORIES= mail ipv6
|
||||||
MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \
|
MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
MD5 (postfix/postfix-2.1.3.tar.gz) = 1f515b0d80cd1f9db0113240bf36f248
|
MD5 (postfix/postfix-2.1.4.tar.gz) = f96fc9e7cbf9750d4a91475fcbd02a81
|
||||||
SIZE (postfix/postfix-2.1.3.tar.gz) = 1971632
|
SIZE (postfix/postfix-2.1.4.tar.gz) = 1970068
|
||||||
MD5 (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = d3211ebd4d2fbbc9c78235666ed355ac
|
MD5 (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = d3211ebd4d2fbbc9c78235666ed355ac
|
||||||
SIZE (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = 239141
|
SIZE (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = 239141
|
||||||
MD5 (postfix/ipv6-1.25-pf-2.1.3.patch.gz) = cd99ff3ddf9bb88e23a7e33ae42d0772
|
MD5 (postfix/ipv6-1.25-pf-2.1.3.patch.gz) = cd99ff3ddf9bb88e23a7e33ae42d0772
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $FreeBSD: /tmp/pcvs/ports/mail/postfix22/scripts/Attic/configure.postfix,v 1.50 2004-06-25 09:11:35 pav Exp $
|
# $FreeBSD: /tmp/pcvs/ports/mail/postfix22/scripts/Attic/configure.postfix,v 1.51 2004-07-13 16:23:12 pav Exp $
|
||||||
|
|
||||||
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
||||||
exit
|
exit
|
||||||
|
@ -23,6 +23,7 @@ NOPCRE "DISABLE Perl Compatible Regular Expressions" "$status_NOPCRE" \
|
||||||
SASL "Cyrus SASLv1 (Simple Authentication and Security Layer)" "$status_SASL" \
|
SASL "Cyrus SASLv1 (Simple Authentication and Security Layer)" "$status_SASL" \
|
||||||
SASL2 "Cyrus SASLv2 (Simple Authentication and Security Layer)" "$status_SASL2" \
|
SASL2 "Cyrus SASLv2 (Simple Authentication and Security Layer)" "$status_SASL2" \
|
||||||
SASLKRB "If your SASL requires Kerberos select this option" "$status_SASLKRB" \
|
SASLKRB "If your SASL requires Kerberos select this option" "$status_SASLKRB" \
|
||||||
|
SASLKRB5 "If your SASL requires Kerberos5 select this option" "$status_SASLKRB5" \
|
||||||
TLS "SSL and TLS" "$status_TLS" \
|
TLS "SSL and TLS" "$status_TLS" \
|
||||||
IPv6 "IPv6 support" "$status_IPv6" \
|
IPv6 "IPv6 support" "$status_IPv6" \
|
||||||
IPv6TLS "IPv6 support with SSL and TLS" "$status_IPv6TLS" \
|
IPv6TLS "IPv6 support with SSL and TLS" "$status_IPv6TLS" \
|
||||||
|
@ -103,6 +104,9 @@ while [ "$1" ]; do
|
||||||
SASLKRB)
|
SASLKRB)
|
||||||
echo "POSTFIX_AUXLIBS+= -lkrb -lcrypto -lcom_err"
|
echo "POSTFIX_AUXLIBS+= -lkrb -lcrypto -lcom_err"
|
||||||
;;
|
;;
|
||||||
|
SASLKRB5)
|
||||||
|
echo "POSTFIX_AUXLIBS+= -lkrb5 -lcrypto -lcom_err"
|
||||||
|
;;
|
||||||
TLS)
|
TLS)
|
||||||
echo "MAN8+= tlsmgr.8"
|
echo "MAN8+= tlsmgr.8"
|
||||||
echo "USE_OPENSSL= yes"
|
echo "USE_OPENSSL= yes"
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
# NOTE: PCRE is enabled by default unless you specifically disable it.
|
# NOTE: PCRE is enabled by default unless you specifically disable it.
|
||||||
|
|
||||||
PORTNAME= postfix
|
PORTNAME= postfix
|
||||||
PORTVERSION= 2.1.3
|
PORTVERSION= 2.1.4
|
||||||
PORTEPOCH= 1
|
PORTEPOCH= 1
|
||||||
CATEGORIES= mail ipv6
|
CATEGORIES= mail ipv6
|
||||||
MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \
|
MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
MD5 (postfix/postfix-2.1.3.tar.gz) = 1f515b0d80cd1f9db0113240bf36f248
|
MD5 (postfix/postfix-2.1.4.tar.gz) = f96fc9e7cbf9750d4a91475fcbd02a81
|
||||||
SIZE (postfix/postfix-2.1.3.tar.gz) = 1971632
|
SIZE (postfix/postfix-2.1.4.tar.gz) = 1970068
|
||||||
MD5 (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = d3211ebd4d2fbbc9c78235666ed355ac
|
MD5 (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = d3211ebd4d2fbbc9c78235666ed355ac
|
||||||
SIZE (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = 239141
|
SIZE (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = 239141
|
||||||
MD5 (postfix/ipv6-1.25-pf-2.1.3.patch.gz) = cd99ff3ddf9bb88e23a7e33ae42d0772
|
MD5 (postfix/ipv6-1.25-pf-2.1.3.patch.gz) = cd99ff3ddf9bb88e23a7e33ae42d0772
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $FreeBSD: /tmp/pcvs/ports/mail/postfix23/scripts/Attic/configure.postfix,v 1.50 2004-06-25 09:11:35 pav Exp $
|
# $FreeBSD: /tmp/pcvs/ports/mail/postfix23/scripts/Attic/configure.postfix,v 1.51 2004-07-13 16:23:12 pav Exp $
|
||||||
|
|
||||||
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
||||||
exit
|
exit
|
||||||
|
@ -23,6 +23,7 @@ NOPCRE "DISABLE Perl Compatible Regular Expressions" "$status_NOPCRE" \
|
||||||
SASL "Cyrus SASLv1 (Simple Authentication and Security Layer)" "$status_SASL" \
|
SASL "Cyrus SASLv1 (Simple Authentication and Security Layer)" "$status_SASL" \
|
||||||
SASL2 "Cyrus SASLv2 (Simple Authentication and Security Layer)" "$status_SASL2" \
|
SASL2 "Cyrus SASLv2 (Simple Authentication and Security Layer)" "$status_SASL2" \
|
||||||
SASLKRB "If your SASL requires Kerberos select this option" "$status_SASLKRB" \
|
SASLKRB "If your SASL requires Kerberos select this option" "$status_SASLKRB" \
|
||||||
|
SASLKRB5 "If your SASL requires Kerberos5 select this option" "$status_SASLKRB5" \
|
||||||
TLS "SSL and TLS" "$status_TLS" \
|
TLS "SSL and TLS" "$status_TLS" \
|
||||||
IPv6 "IPv6 support" "$status_IPv6" \
|
IPv6 "IPv6 support" "$status_IPv6" \
|
||||||
IPv6TLS "IPv6 support with SSL and TLS" "$status_IPv6TLS" \
|
IPv6TLS "IPv6 support with SSL and TLS" "$status_IPv6TLS" \
|
||||||
|
@ -103,6 +104,9 @@ while [ "$1" ]; do
|
||||||
SASLKRB)
|
SASLKRB)
|
||||||
echo "POSTFIX_AUXLIBS+= -lkrb -lcrypto -lcom_err"
|
echo "POSTFIX_AUXLIBS+= -lkrb -lcrypto -lcom_err"
|
||||||
;;
|
;;
|
||||||
|
SASLKRB5)
|
||||||
|
echo "POSTFIX_AUXLIBS+= -lkrb5 -lcrypto -lcom_err"
|
||||||
|
;;
|
||||||
TLS)
|
TLS)
|
||||||
echo "MAN8+= tlsmgr.8"
|
echo "MAN8+= tlsmgr.8"
|
||||||
echo "USE_OPENSSL= yes"
|
echo "USE_OPENSSL= yes"
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
# NOTE: PCRE is enabled by default unless you specifically disable it.
|
# NOTE: PCRE is enabled by default unless you specifically disable it.
|
||||||
|
|
||||||
PORTNAME= postfix
|
PORTNAME= postfix
|
||||||
PORTVERSION= 2.1.3
|
PORTVERSION= 2.1.4
|
||||||
PORTEPOCH= 1
|
PORTEPOCH= 1
|
||||||
CATEGORIES= mail ipv6
|
CATEGORIES= mail ipv6
|
||||||
MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \
|
MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
MD5 (postfix/postfix-2.1.3.tar.gz) = 1f515b0d80cd1f9db0113240bf36f248
|
MD5 (postfix/postfix-2.1.4.tar.gz) = f96fc9e7cbf9750d4a91475fcbd02a81
|
||||||
SIZE (postfix/postfix-2.1.3.tar.gz) = 1971632
|
SIZE (postfix/postfix-2.1.4.tar.gz) = 1970068
|
||||||
MD5 (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = d3211ebd4d2fbbc9c78235666ed355ac
|
MD5 (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = d3211ebd4d2fbbc9c78235666ed355ac
|
||||||
SIZE (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = 239141
|
SIZE (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = 239141
|
||||||
MD5 (postfix/ipv6-1.25-pf-2.1.3.patch.gz) = cd99ff3ddf9bb88e23a7e33ae42d0772
|
MD5 (postfix/ipv6-1.25-pf-2.1.3.patch.gz) = cd99ff3ddf9bb88e23a7e33ae42d0772
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $FreeBSD: /tmp/pcvs/ports/mail/postfix24/scripts/Attic/configure.postfix,v 1.50 2004-06-25 09:11:35 pav Exp $
|
# $FreeBSD: /tmp/pcvs/ports/mail/postfix24/scripts/Attic/configure.postfix,v 1.51 2004-07-13 16:23:12 pav Exp $
|
||||||
|
|
||||||
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
||||||
exit
|
exit
|
||||||
|
@ -23,6 +23,7 @@ NOPCRE "DISABLE Perl Compatible Regular Expressions" "$status_NOPCRE" \
|
||||||
SASL "Cyrus SASLv1 (Simple Authentication and Security Layer)" "$status_SASL" \
|
SASL "Cyrus SASLv1 (Simple Authentication and Security Layer)" "$status_SASL" \
|
||||||
SASL2 "Cyrus SASLv2 (Simple Authentication and Security Layer)" "$status_SASL2" \
|
SASL2 "Cyrus SASLv2 (Simple Authentication and Security Layer)" "$status_SASL2" \
|
||||||
SASLKRB "If your SASL requires Kerberos select this option" "$status_SASLKRB" \
|
SASLKRB "If your SASL requires Kerberos select this option" "$status_SASLKRB" \
|
||||||
|
SASLKRB5 "If your SASL requires Kerberos5 select this option" "$status_SASLKRB5" \
|
||||||
TLS "SSL and TLS" "$status_TLS" \
|
TLS "SSL and TLS" "$status_TLS" \
|
||||||
IPv6 "IPv6 support" "$status_IPv6" \
|
IPv6 "IPv6 support" "$status_IPv6" \
|
||||||
IPv6TLS "IPv6 support with SSL and TLS" "$status_IPv6TLS" \
|
IPv6TLS "IPv6 support with SSL and TLS" "$status_IPv6TLS" \
|
||||||
|
@ -103,6 +104,9 @@ while [ "$1" ]; do
|
||||||
SASLKRB)
|
SASLKRB)
|
||||||
echo "POSTFIX_AUXLIBS+= -lkrb -lcrypto -lcom_err"
|
echo "POSTFIX_AUXLIBS+= -lkrb -lcrypto -lcom_err"
|
||||||
;;
|
;;
|
||||||
|
SASLKRB5)
|
||||||
|
echo "POSTFIX_AUXLIBS+= -lkrb5 -lcrypto -lcom_err"
|
||||||
|
;;
|
||||||
TLS)
|
TLS)
|
||||||
echo "MAN8+= tlsmgr.8"
|
echo "MAN8+= tlsmgr.8"
|
||||||
echo "USE_OPENSSL= yes"
|
echo "USE_OPENSSL= yes"
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
# NOTE: PCRE is enabled by default unless you specifically disable it.
|
# NOTE: PCRE is enabled by default unless you specifically disable it.
|
||||||
|
|
||||||
PORTNAME= postfix
|
PORTNAME= postfix
|
||||||
PORTVERSION= 2.1.3
|
PORTVERSION= 2.1.4
|
||||||
PORTEPOCH= 1
|
PORTEPOCH= 1
|
||||||
CATEGORIES= mail ipv6
|
CATEGORIES= mail ipv6
|
||||||
MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \
|
MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
MD5 (postfix/postfix-2.1.3.tar.gz) = 1f515b0d80cd1f9db0113240bf36f248
|
MD5 (postfix/postfix-2.1.4.tar.gz) = f96fc9e7cbf9750d4a91475fcbd02a81
|
||||||
SIZE (postfix/postfix-2.1.3.tar.gz) = 1971632
|
SIZE (postfix/postfix-2.1.4.tar.gz) = 1970068
|
||||||
MD5 (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = d3211ebd4d2fbbc9c78235666ed355ac
|
MD5 (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = d3211ebd4d2fbbc9c78235666ed355ac
|
||||||
SIZE (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = 239141
|
SIZE (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = 239141
|
||||||
MD5 (postfix/ipv6-1.25-pf-2.1.3.patch.gz) = cd99ff3ddf9bb88e23a7e33ae42d0772
|
MD5 (postfix/ipv6-1.25-pf-2.1.3.patch.gz) = cd99ff3ddf9bb88e23a7e33ae42d0772
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $FreeBSD: /tmp/pcvs/ports/mail/postfix25/scripts/Attic/configure.postfix,v 1.50 2004-06-25 09:11:35 pav Exp $
|
# $FreeBSD: /tmp/pcvs/ports/mail/postfix25/scripts/Attic/configure.postfix,v 1.51 2004-07-13 16:23:12 pav Exp $
|
||||||
|
|
||||||
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
||||||
exit
|
exit
|
||||||
|
@ -23,6 +23,7 @@ NOPCRE "DISABLE Perl Compatible Regular Expressions" "$status_NOPCRE" \
|
||||||
SASL "Cyrus SASLv1 (Simple Authentication and Security Layer)" "$status_SASL" \
|
SASL "Cyrus SASLv1 (Simple Authentication and Security Layer)" "$status_SASL" \
|
||||||
SASL2 "Cyrus SASLv2 (Simple Authentication and Security Layer)" "$status_SASL2" \
|
SASL2 "Cyrus SASLv2 (Simple Authentication and Security Layer)" "$status_SASL2" \
|
||||||
SASLKRB "If your SASL requires Kerberos select this option" "$status_SASLKRB" \
|
SASLKRB "If your SASL requires Kerberos select this option" "$status_SASLKRB" \
|
||||||
|
SASLKRB5 "If your SASL requires Kerberos5 select this option" "$status_SASLKRB5" \
|
||||||
TLS "SSL and TLS" "$status_TLS" \
|
TLS "SSL and TLS" "$status_TLS" \
|
||||||
IPv6 "IPv6 support" "$status_IPv6" \
|
IPv6 "IPv6 support" "$status_IPv6" \
|
||||||
IPv6TLS "IPv6 support with SSL and TLS" "$status_IPv6TLS" \
|
IPv6TLS "IPv6 support with SSL and TLS" "$status_IPv6TLS" \
|
||||||
|
@ -103,6 +104,9 @@ while [ "$1" ]; do
|
||||||
SASLKRB)
|
SASLKRB)
|
||||||
echo "POSTFIX_AUXLIBS+= -lkrb -lcrypto -lcom_err"
|
echo "POSTFIX_AUXLIBS+= -lkrb -lcrypto -lcom_err"
|
||||||
;;
|
;;
|
||||||
|
SASLKRB5)
|
||||||
|
echo "POSTFIX_AUXLIBS+= -lkrb5 -lcrypto -lcom_err"
|
||||||
|
;;
|
||||||
TLS)
|
TLS)
|
||||||
echo "MAN8+= tlsmgr.8"
|
echo "MAN8+= tlsmgr.8"
|
||||||
echo "USE_OPENSSL= yes"
|
echo "USE_OPENSSL= yes"
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
# NOTE: PCRE is enabled by default unless you specifically disable it.
|
# NOTE: PCRE is enabled by default unless you specifically disable it.
|
||||||
|
|
||||||
PORTNAME= postfix
|
PORTNAME= postfix
|
||||||
PORTVERSION= 2.1.3
|
PORTVERSION= 2.1.4
|
||||||
PORTEPOCH= 1
|
PORTEPOCH= 1
|
||||||
CATEGORIES= mail ipv6
|
CATEGORIES= mail ipv6
|
||||||
MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \
|
MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
MD5 (postfix/postfix-2.1.3.tar.gz) = 1f515b0d80cd1f9db0113240bf36f248
|
MD5 (postfix/postfix-2.1.4.tar.gz) = f96fc9e7cbf9750d4a91475fcbd02a81
|
||||||
SIZE (postfix/postfix-2.1.3.tar.gz) = 1971632
|
SIZE (postfix/postfix-2.1.4.tar.gz) = 1970068
|
||||||
MD5 (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = d3211ebd4d2fbbc9c78235666ed355ac
|
MD5 (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = d3211ebd4d2fbbc9c78235666ed355ac
|
||||||
SIZE (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = 239141
|
SIZE (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = 239141
|
||||||
MD5 (postfix/ipv6-1.25-pf-2.1.3.patch.gz) = cd99ff3ddf9bb88e23a7e33ae42d0772
|
MD5 (postfix/ipv6-1.25-pf-2.1.3.patch.gz) = cd99ff3ddf9bb88e23a7e33ae42d0772
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $FreeBSD: /tmp/pcvs/ports/mail/postfix26/scripts/Attic/configure.postfix,v 1.50 2004-06-25 09:11:35 pav Exp $
|
# $FreeBSD: /tmp/pcvs/ports/mail/postfix26/scripts/Attic/configure.postfix,v 1.51 2004-07-13 16:23:12 pav Exp $
|
||||||
|
|
||||||
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
||||||
exit
|
exit
|
||||||
|
@ -23,6 +23,7 @@ NOPCRE "DISABLE Perl Compatible Regular Expressions" "$status_NOPCRE" \
|
||||||
SASL "Cyrus SASLv1 (Simple Authentication and Security Layer)" "$status_SASL" \
|
SASL "Cyrus SASLv1 (Simple Authentication and Security Layer)" "$status_SASL" \
|
||||||
SASL2 "Cyrus SASLv2 (Simple Authentication and Security Layer)" "$status_SASL2" \
|
SASL2 "Cyrus SASLv2 (Simple Authentication and Security Layer)" "$status_SASL2" \
|
||||||
SASLKRB "If your SASL requires Kerberos select this option" "$status_SASLKRB" \
|
SASLKRB "If your SASL requires Kerberos select this option" "$status_SASLKRB" \
|
||||||
|
SASLKRB5 "If your SASL requires Kerberos5 select this option" "$status_SASLKRB5" \
|
||||||
TLS "SSL and TLS" "$status_TLS" \
|
TLS "SSL and TLS" "$status_TLS" \
|
||||||
IPv6 "IPv6 support" "$status_IPv6" \
|
IPv6 "IPv6 support" "$status_IPv6" \
|
||||||
IPv6TLS "IPv6 support with SSL and TLS" "$status_IPv6TLS" \
|
IPv6TLS "IPv6 support with SSL and TLS" "$status_IPv6TLS" \
|
||||||
|
@ -103,6 +104,9 @@ while [ "$1" ]; do
|
||||||
SASLKRB)
|
SASLKRB)
|
||||||
echo "POSTFIX_AUXLIBS+= -lkrb -lcrypto -lcom_err"
|
echo "POSTFIX_AUXLIBS+= -lkrb -lcrypto -lcom_err"
|
||||||
;;
|
;;
|
||||||
|
SASLKRB5)
|
||||||
|
echo "POSTFIX_AUXLIBS+= -lkrb5 -lcrypto -lcom_err"
|
||||||
|
;;
|
||||||
TLS)
|
TLS)
|
||||||
echo "MAN8+= tlsmgr.8"
|
echo "MAN8+= tlsmgr.8"
|
||||||
echo "USE_OPENSSL= yes"
|
echo "USE_OPENSSL= yes"
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
# NOTE: PCRE is enabled by default unless you specifically disable it.
|
# NOTE: PCRE is enabled by default unless you specifically disable it.
|
||||||
|
|
||||||
PORTNAME= postfix
|
PORTNAME= postfix
|
||||||
PORTVERSION= 2.1.3
|
PORTVERSION= 2.1.4
|
||||||
PORTEPOCH= 1
|
PORTEPOCH= 1
|
||||||
CATEGORIES= mail ipv6
|
CATEGORIES= mail ipv6
|
||||||
MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \
|
MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
MD5 (postfix/postfix-2.1.3.tar.gz) = 1f515b0d80cd1f9db0113240bf36f248
|
MD5 (postfix/postfix-2.1.4.tar.gz) = f96fc9e7cbf9750d4a91475fcbd02a81
|
||||||
SIZE (postfix/postfix-2.1.3.tar.gz) = 1971632
|
SIZE (postfix/postfix-2.1.4.tar.gz) = 1970068
|
||||||
MD5 (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = d3211ebd4d2fbbc9c78235666ed355ac
|
MD5 (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = d3211ebd4d2fbbc9c78235666ed355ac
|
||||||
SIZE (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = 239141
|
SIZE (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = 239141
|
||||||
MD5 (postfix/ipv6-1.25-pf-2.1.3.patch.gz) = cd99ff3ddf9bb88e23a7e33ae42d0772
|
MD5 (postfix/ipv6-1.25-pf-2.1.3.patch.gz) = cd99ff3ddf9bb88e23a7e33ae42d0772
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $FreeBSD: /tmp/pcvs/ports/mail/postfix27/scripts/Attic/configure.postfix,v 1.50 2004-06-25 09:11:35 pav Exp $
|
# $FreeBSD: /tmp/pcvs/ports/mail/postfix27/scripts/Attic/configure.postfix,v 1.51 2004-07-13 16:23:12 pav Exp $
|
||||||
|
|
||||||
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
||||||
exit
|
exit
|
||||||
|
@ -23,6 +23,7 @@ NOPCRE "DISABLE Perl Compatible Regular Expressions" "$status_NOPCRE" \
|
||||||
SASL "Cyrus SASLv1 (Simple Authentication and Security Layer)" "$status_SASL" \
|
SASL "Cyrus SASLv1 (Simple Authentication and Security Layer)" "$status_SASL" \
|
||||||
SASL2 "Cyrus SASLv2 (Simple Authentication and Security Layer)" "$status_SASL2" \
|
SASL2 "Cyrus SASLv2 (Simple Authentication and Security Layer)" "$status_SASL2" \
|
||||||
SASLKRB "If your SASL requires Kerberos select this option" "$status_SASLKRB" \
|
SASLKRB "If your SASL requires Kerberos select this option" "$status_SASLKRB" \
|
||||||
|
SASLKRB5 "If your SASL requires Kerberos5 select this option" "$status_SASLKRB5" \
|
||||||
TLS "SSL and TLS" "$status_TLS" \
|
TLS "SSL and TLS" "$status_TLS" \
|
||||||
IPv6 "IPv6 support" "$status_IPv6" \
|
IPv6 "IPv6 support" "$status_IPv6" \
|
||||||
IPv6TLS "IPv6 support with SSL and TLS" "$status_IPv6TLS" \
|
IPv6TLS "IPv6 support with SSL and TLS" "$status_IPv6TLS" \
|
||||||
|
@ -103,6 +104,9 @@ while [ "$1" ]; do
|
||||||
SASLKRB)
|
SASLKRB)
|
||||||
echo "POSTFIX_AUXLIBS+= -lkrb -lcrypto -lcom_err"
|
echo "POSTFIX_AUXLIBS+= -lkrb -lcrypto -lcom_err"
|
||||||
;;
|
;;
|
||||||
|
SASLKRB5)
|
||||||
|
echo "POSTFIX_AUXLIBS+= -lkrb5 -lcrypto -lcom_err"
|
||||||
|
;;
|
||||||
TLS)
|
TLS)
|
||||||
echo "MAN8+= tlsmgr.8"
|
echo "MAN8+= tlsmgr.8"
|
||||||
echo "USE_OPENSSL= yes"
|
echo "USE_OPENSSL= yes"
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
# NOTE: PCRE is enabled by default unless you specifically disable it.
|
# NOTE: PCRE is enabled by default unless you specifically disable it.
|
||||||
|
|
||||||
PORTNAME= postfix
|
PORTNAME= postfix
|
||||||
PORTVERSION= 2.1.3
|
PORTVERSION= 2.1.4
|
||||||
PORTEPOCH= 1
|
PORTEPOCH= 1
|
||||||
CATEGORIES= mail ipv6
|
CATEGORIES= mail ipv6
|
||||||
MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \
|
MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
MD5 (postfix/postfix-2.1.3.tar.gz) = 1f515b0d80cd1f9db0113240bf36f248
|
MD5 (postfix/postfix-2.1.4.tar.gz) = f96fc9e7cbf9750d4a91475fcbd02a81
|
||||||
SIZE (postfix/postfix-2.1.3.tar.gz) = 1971632
|
SIZE (postfix/postfix-2.1.4.tar.gz) = 1970068
|
||||||
MD5 (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = d3211ebd4d2fbbc9c78235666ed355ac
|
MD5 (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = d3211ebd4d2fbbc9c78235666ed355ac
|
||||||
SIZE (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = 239141
|
SIZE (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = 239141
|
||||||
MD5 (postfix/ipv6-1.25-pf-2.1.3.patch.gz) = cd99ff3ddf9bb88e23a7e33ae42d0772
|
MD5 (postfix/ipv6-1.25-pf-2.1.3.patch.gz) = cd99ff3ddf9bb88e23a7e33ae42d0772
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $FreeBSD: /tmp/pcvs/ports/mail/postfix28/scripts/Attic/configure.postfix,v 1.50 2004-06-25 09:11:35 pav Exp $
|
# $FreeBSD: /tmp/pcvs/ports/mail/postfix28/scripts/Attic/configure.postfix,v 1.51 2004-07-13 16:23:12 pav Exp $
|
||||||
|
|
||||||
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
||||||
exit
|
exit
|
||||||
|
@ -23,6 +23,7 @@ NOPCRE "DISABLE Perl Compatible Regular Expressions" "$status_NOPCRE" \
|
||||||
SASL "Cyrus SASLv1 (Simple Authentication and Security Layer)" "$status_SASL" \
|
SASL "Cyrus SASLv1 (Simple Authentication and Security Layer)" "$status_SASL" \
|
||||||
SASL2 "Cyrus SASLv2 (Simple Authentication and Security Layer)" "$status_SASL2" \
|
SASL2 "Cyrus SASLv2 (Simple Authentication and Security Layer)" "$status_SASL2" \
|
||||||
SASLKRB "If your SASL requires Kerberos select this option" "$status_SASLKRB" \
|
SASLKRB "If your SASL requires Kerberos select this option" "$status_SASLKRB" \
|
||||||
|
SASLKRB5 "If your SASL requires Kerberos5 select this option" "$status_SASLKRB5" \
|
||||||
TLS "SSL and TLS" "$status_TLS" \
|
TLS "SSL and TLS" "$status_TLS" \
|
||||||
IPv6 "IPv6 support" "$status_IPv6" \
|
IPv6 "IPv6 support" "$status_IPv6" \
|
||||||
IPv6TLS "IPv6 support with SSL and TLS" "$status_IPv6TLS" \
|
IPv6TLS "IPv6 support with SSL and TLS" "$status_IPv6TLS" \
|
||||||
|
@ -103,6 +104,9 @@ while [ "$1" ]; do
|
||||||
SASLKRB)
|
SASLKRB)
|
||||||
echo "POSTFIX_AUXLIBS+= -lkrb -lcrypto -lcom_err"
|
echo "POSTFIX_AUXLIBS+= -lkrb -lcrypto -lcom_err"
|
||||||
;;
|
;;
|
||||||
|
SASLKRB5)
|
||||||
|
echo "POSTFIX_AUXLIBS+= -lkrb5 -lcrypto -lcom_err"
|
||||||
|
;;
|
||||||
TLS)
|
TLS)
|
||||||
echo "MAN8+= tlsmgr.8"
|
echo "MAN8+= tlsmgr.8"
|
||||||
echo "USE_OPENSSL= yes"
|
echo "USE_OPENSSL= yes"
|
||||||
|
|
Loading…
Add table
Reference in a new issue