mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Disable IPv6 on Alpha, since this breaks it.
Submitted by: blaz@amis.net (maintainer)
This commit is contained in:
parent
1d882ca785
commit
ace1848ae7
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=39602
11 changed files with 220 additions and 55 deletions
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $FreeBSD: /tmp/pcvs/ports/mail/postfix/scripts/Attic/configure.postfix,v 1.2 2001-03-05 22:15:24 knu Exp $
|
# $FreeBSD: /tmp/pcvs/ports/mail/postfix/scripts/Attic/configure.postfix,v 1.3 2001-03-11 19:53:59 alex Exp $
|
||||||
|
|
||||||
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
||||||
exit
|
exit
|
||||||
|
@ -10,18 +10,33 @@ tempfile=`mktemp -t checklist`
|
||||||
if [ "${BATCH}" = "yes" ]; then
|
if [ "${BATCH}" = "yes" ]; then
|
||||||
set \"PCRE\"
|
set \"PCRE\"
|
||||||
else
|
else
|
||||||
|
# IPv6 patches are broken on alpha
|
||||||
|
if [ `uname -m` = "alpha" ]; then
|
||||||
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
||||||
--checklist "\n\
|
--checklist "\n\
|
||||||
Please select desired options:" -1 -1 16 \
|
Please select desired options:" -1 -1 16 \
|
||||||
PCRE "Perl Compatible Regular Expressions" OFF \
|
PCRE "Perl Compatible Regular Expressions" ON \
|
||||||
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
||||||
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
||||||
MySQL "MySQL map lookups" OFF \
|
MySQL "MySQL map lookups" OFF \
|
||||||
OpenLDAP "OpenLDAP map lookups" OFF \
|
OpenLDAP "OpenLDAP map lookups" OFF \
|
||||||
Test "SMTP/LMTP test server and generator" OFF \
|
Test "SMTP/LMTP test server and generator" OFF \
|
||||||
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
||||||
IPv6 "IPv6 support" OFF \
|
|
||||||
2> $tempfile
|
2> $tempfile
|
||||||
|
else
|
||||||
|
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
||||||
|
--checklist "\n\
|
||||||
|
Please select desired options:" -1 -1 16 \
|
||||||
|
PCRE "Perl Compatible Regular Expressions" ON \
|
||||||
|
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
||||||
|
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
||||||
|
MySQL "MySQL map lookups" OFF \
|
||||||
|
OpenLDAP "OpenLDAP map lookups" OFF \
|
||||||
|
Test "SMTP/LMTP test server and generator" OFF \
|
||||||
|
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
||||||
|
IPv6 "IPv6 support" OFF
|
||||||
|
2> $tempfile
|
||||||
|
fi
|
||||||
|
|
||||||
retval=$?
|
retval=$?
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $FreeBSD: /tmp/pcvs/ports/mail/postfix1/scripts/Attic/configure.postfix,v 1.2 2001-03-05 22:15:24 knu Exp $
|
# $FreeBSD: /tmp/pcvs/ports/mail/postfix1/scripts/Attic/configure.postfix,v 1.3 2001-03-11 19:53:59 alex Exp $
|
||||||
|
|
||||||
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
||||||
exit
|
exit
|
||||||
|
@ -10,18 +10,33 @@ tempfile=`mktemp -t checklist`
|
||||||
if [ "${BATCH}" = "yes" ]; then
|
if [ "${BATCH}" = "yes" ]; then
|
||||||
set \"PCRE\"
|
set \"PCRE\"
|
||||||
else
|
else
|
||||||
|
# IPv6 patches are broken on alpha
|
||||||
|
if [ `uname -m` = "alpha" ]; then
|
||||||
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
||||||
--checklist "\n\
|
--checklist "\n\
|
||||||
Please select desired options:" -1 -1 16 \
|
Please select desired options:" -1 -1 16 \
|
||||||
PCRE "Perl Compatible Regular Expressions" OFF \
|
PCRE "Perl Compatible Regular Expressions" ON \
|
||||||
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
||||||
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
||||||
MySQL "MySQL map lookups" OFF \
|
MySQL "MySQL map lookups" OFF \
|
||||||
OpenLDAP "OpenLDAP map lookups" OFF \
|
OpenLDAP "OpenLDAP map lookups" OFF \
|
||||||
Test "SMTP/LMTP test server and generator" OFF \
|
Test "SMTP/LMTP test server and generator" OFF \
|
||||||
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
||||||
IPv6 "IPv6 support" OFF \
|
|
||||||
2> $tempfile
|
2> $tempfile
|
||||||
|
else
|
||||||
|
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
||||||
|
--checklist "\n\
|
||||||
|
Please select desired options:" -1 -1 16 \
|
||||||
|
PCRE "Perl Compatible Regular Expressions" ON \
|
||||||
|
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
||||||
|
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
||||||
|
MySQL "MySQL map lookups" OFF \
|
||||||
|
OpenLDAP "OpenLDAP map lookups" OFF \
|
||||||
|
Test "SMTP/LMTP test server and generator" OFF \
|
||||||
|
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
||||||
|
IPv6 "IPv6 support" OFF
|
||||||
|
2> $tempfile
|
||||||
|
fi
|
||||||
|
|
||||||
retval=$?
|
retval=$?
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $FreeBSD: /tmp/pcvs/ports/mail/postfix20/scripts/Attic/configure.postfix,v 1.2 2001-03-05 22:15:24 knu Exp $
|
# $FreeBSD: /tmp/pcvs/ports/mail/postfix20/scripts/Attic/configure.postfix,v 1.3 2001-03-11 19:53:59 alex Exp $
|
||||||
|
|
||||||
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
||||||
exit
|
exit
|
||||||
|
@ -10,18 +10,33 @@ tempfile=`mktemp -t checklist`
|
||||||
if [ "${BATCH}" = "yes" ]; then
|
if [ "${BATCH}" = "yes" ]; then
|
||||||
set \"PCRE\"
|
set \"PCRE\"
|
||||||
else
|
else
|
||||||
|
# IPv6 patches are broken on alpha
|
||||||
|
if [ `uname -m` = "alpha" ]; then
|
||||||
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
||||||
--checklist "\n\
|
--checklist "\n\
|
||||||
Please select desired options:" -1 -1 16 \
|
Please select desired options:" -1 -1 16 \
|
||||||
PCRE "Perl Compatible Regular Expressions" OFF \
|
PCRE "Perl Compatible Regular Expressions" ON \
|
||||||
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
||||||
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
||||||
MySQL "MySQL map lookups" OFF \
|
MySQL "MySQL map lookups" OFF \
|
||||||
OpenLDAP "OpenLDAP map lookups" OFF \
|
OpenLDAP "OpenLDAP map lookups" OFF \
|
||||||
Test "SMTP/LMTP test server and generator" OFF \
|
Test "SMTP/LMTP test server and generator" OFF \
|
||||||
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
||||||
IPv6 "IPv6 support" OFF \
|
|
||||||
2> $tempfile
|
2> $tempfile
|
||||||
|
else
|
||||||
|
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
||||||
|
--checklist "\n\
|
||||||
|
Please select desired options:" -1 -1 16 \
|
||||||
|
PCRE "Perl Compatible Regular Expressions" ON \
|
||||||
|
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
||||||
|
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
||||||
|
MySQL "MySQL map lookups" OFF \
|
||||||
|
OpenLDAP "OpenLDAP map lookups" OFF \
|
||||||
|
Test "SMTP/LMTP test server and generator" OFF \
|
||||||
|
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
||||||
|
IPv6 "IPv6 support" OFF
|
||||||
|
2> $tempfile
|
||||||
|
fi
|
||||||
|
|
||||||
retval=$?
|
retval=$?
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $FreeBSD: /tmp/pcvs/ports/mail/postfix21/scripts/Attic/configure.postfix,v 1.2 2001-03-05 22:15:24 knu Exp $
|
# $FreeBSD: /tmp/pcvs/ports/mail/postfix21/scripts/Attic/configure.postfix,v 1.3 2001-03-11 19:53:59 alex Exp $
|
||||||
|
|
||||||
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
||||||
exit
|
exit
|
||||||
|
@ -10,18 +10,33 @@ tempfile=`mktemp -t checklist`
|
||||||
if [ "${BATCH}" = "yes" ]; then
|
if [ "${BATCH}" = "yes" ]; then
|
||||||
set \"PCRE\"
|
set \"PCRE\"
|
||||||
else
|
else
|
||||||
|
# IPv6 patches are broken on alpha
|
||||||
|
if [ `uname -m` = "alpha" ]; then
|
||||||
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
||||||
--checklist "\n\
|
--checklist "\n\
|
||||||
Please select desired options:" -1 -1 16 \
|
Please select desired options:" -1 -1 16 \
|
||||||
PCRE "Perl Compatible Regular Expressions" OFF \
|
PCRE "Perl Compatible Regular Expressions" ON \
|
||||||
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
||||||
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
||||||
MySQL "MySQL map lookups" OFF \
|
MySQL "MySQL map lookups" OFF \
|
||||||
OpenLDAP "OpenLDAP map lookups" OFF \
|
OpenLDAP "OpenLDAP map lookups" OFF \
|
||||||
Test "SMTP/LMTP test server and generator" OFF \
|
Test "SMTP/LMTP test server and generator" OFF \
|
||||||
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
||||||
IPv6 "IPv6 support" OFF \
|
|
||||||
2> $tempfile
|
2> $tempfile
|
||||||
|
else
|
||||||
|
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
||||||
|
--checklist "\n\
|
||||||
|
Please select desired options:" -1 -1 16 \
|
||||||
|
PCRE "Perl Compatible Regular Expressions" ON \
|
||||||
|
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
||||||
|
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
||||||
|
MySQL "MySQL map lookups" OFF \
|
||||||
|
OpenLDAP "OpenLDAP map lookups" OFF \
|
||||||
|
Test "SMTP/LMTP test server and generator" OFF \
|
||||||
|
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
||||||
|
IPv6 "IPv6 support" OFF
|
||||||
|
2> $tempfile
|
||||||
|
fi
|
||||||
|
|
||||||
retval=$?
|
retval=$?
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $FreeBSD: /tmp/pcvs/ports/mail/postfix22/scripts/Attic/configure.postfix,v 1.2 2001-03-05 22:15:24 knu Exp $
|
# $FreeBSD: /tmp/pcvs/ports/mail/postfix22/scripts/Attic/configure.postfix,v 1.3 2001-03-11 19:53:59 alex Exp $
|
||||||
|
|
||||||
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
||||||
exit
|
exit
|
||||||
|
@ -10,18 +10,33 @@ tempfile=`mktemp -t checklist`
|
||||||
if [ "${BATCH}" = "yes" ]; then
|
if [ "${BATCH}" = "yes" ]; then
|
||||||
set \"PCRE\"
|
set \"PCRE\"
|
||||||
else
|
else
|
||||||
|
# IPv6 patches are broken on alpha
|
||||||
|
if [ `uname -m` = "alpha" ]; then
|
||||||
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
||||||
--checklist "\n\
|
--checklist "\n\
|
||||||
Please select desired options:" -1 -1 16 \
|
Please select desired options:" -1 -1 16 \
|
||||||
PCRE "Perl Compatible Regular Expressions" OFF \
|
PCRE "Perl Compatible Regular Expressions" ON \
|
||||||
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
||||||
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
||||||
MySQL "MySQL map lookups" OFF \
|
MySQL "MySQL map lookups" OFF \
|
||||||
OpenLDAP "OpenLDAP map lookups" OFF \
|
OpenLDAP "OpenLDAP map lookups" OFF \
|
||||||
Test "SMTP/LMTP test server and generator" OFF \
|
Test "SMTP/LMTP test server and generator" OFF \
|
||||||
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
||||||
IPv6 "IPv6 support" OFF \
|
|
||||||
2> $tempfile
|
2> $tempfile
|
||||||
|
else
|
||||||
|
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
||||||
|
--checklist "\n\
|
||||||
|
Please select desired options:" -1 -1 16 \
|
||||||
|
PCRE "Perl Compatible Regular Expressions" ON \
|
||||||
|
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
||||||
|
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
||||||
|
MySQL "MySQL map lookups" OFF \
|
||||||
|
OpenLDAP "OpenLDAP map lookups" OFF \
|
||||||
|
Test "SMTP/LMTP test server and generator" OFF \
|
||||||
|
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
||||||
|
IPv6 "IPv6 support" OFF
|
||||||
|
2> $tempfile
|
||||||
|
fi
|
||||||
|
|
||||||
retval=$?
|
retval=$?
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $FreeBSD: /tmp/pcvs/ports/mail/postfix23/scripts/Attic/configure.postfix,v 1.2 2001-03-05 22:15:24 knu Exp $
|
# $FreeBSD: /tmp/pcvs/ports/mail/postfix23/scripts/Attic/configure.postfix,v 1.3 2001-03-11 19:53:59 alex Exp $
|
||||||
|
|
||||||
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
||||||
exit
|
exit
|
||||||
|
@ -10,18 +10,33 @@ tempfile=`mktemp -t checklist`
|
||||||
if [ "${BATCH}" = "yes" ]; then
|
if [ "${BATCH}" = "yes" ]; then
|
||||||
set \"PCRE\"
|
set \"PCRE\"
|
||||||
else
|
else
|
||||||
|
# IPv6 patches are broken on alpha
|
||||||
|
if [ `uname -m` = "alpha" ]; then
|
||||||
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
||||||
--checklist "\n\
|
--checklist "\n\
|
||||||
Please select desired options:" -1 -1 16 \
|
Please select desired options:" -1 -1 16 \
|
||||||
PCRE "Perl Compatible Regular Expressions" OFF \
|
PCRE "Perl Compatible Regular Expressions" ON \
|
||||||
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
||||||
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
||||||
MySQL "MySQL map lookups" OFF \
|
MySQL "MySQL map lookups" OFF \
|
||||||
OpenLDAP "OpenLDAP map lookups" OFF \
|
OpenLDAP "OpenLDAP map lookups" OFF \
|
||||||
Test "SMTP/LMTP test server and generator" OFF \
|
Test "SMTP/LMTP test server and generator" OFF \
|
||||||
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
||||||
IPv6 "IPv6 support" OFF \
|
|
||||||
2> $tempfile
|
2> $tempfile
|
||||||
|
else
|
||||||
|
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
||||||
|
--checklist "\n\
|
||||||
|
Please select desired options:" -1 -1 16 \
|
||||||
|
PCRE "Perl Compatible Regular Expressions" ON \
|
||||||
|
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
||||||
|
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
||||||
|
MySQL "MySQL map lookups" OFF \
|
||||||
|
OpenLDAP "OpenLDAP map lookups" OFF \
|
||||||
|
Test "SMTP/LMTP test server and generator" OFF \
|
||||||
|
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
||||||
|
IPv6 "IPv6 support" OFF
|
||||||
|
2> $tempfile
|
||||||
|
fi
|
||||||
|
|
||||||
retval=$?
|
retval=$?
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $FreeBSD: /tmp/pcvs/ports/mail/postfix24/scripts/Attic/configure.postfix,v 1.2 2001-03-05 22:15:24 knu Exp $
|
# $FreeBSD: /tmp/pcvs/ports/mail/postfix24/scripts/Attic/configure.postfix,v 1.3 2001-03-11 19:53:59 alex Exp $
|
||||||
|
|
||||||
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
||||||
exit
|
exit
|
||||||
|
@ -10,18 +10,33 @@ tempfile=`mktemp -t checklist`
|
||||||
if [ "${BATCH}" = "yes" ]; then
|
if [ "${BATCH}" = "yes" ]; then
|
||||||
set \"PCRE\"
|
set \"PCRE\"
|
||||||
else
|
else
|
||||||
|
# IPv6 patches are broken on alpha
|
||||||
|
if [ `uname -m` = "alpha" ]; then
|
||||||
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
||||||
--checklist "\n\
|
--checklist "\n\
|
||||||
Please select desired options:" -1 -1 16 \
|
Please select desired options:" -1 -1 16 \
|
||||||
PCRE "Perl Compatible Regular Expressions" OFF \
|
PCRE "Perl Compatible Regular Expressions" ON \
|
||||||
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
||||||
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
||||||
MySQL "MySQL map lookups" OFF \
|
MySQL "MySQL map lookups" OFF \
|
||||||
OpenLDAP "OpenLDAP map lookups" OFF \
|
OpenLDAP "OpenLDAP map lookups" OFF \
|
||||||
Test "SMTP/LMTP test server and generator" OFF \
|
Test "SMTP/LMTP test server and generator" OFF \
|
||||||
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
||||||
IPv6 "IPv6 support" OFF \
|
|
||||||
2> $tempfile
|
2> $tempfile
|
||||||
|
else
|
||||||
|
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
||||||
|
--checklist "\n\
|
||||||
|
Please select desired options:" -1 -1 16 \
|
||||||
|
PCRE "Perl Compatible Regular Expressions" ON \
|
||||||
|
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
||||||
|
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
||||||
|
MySQL "MySQL map lookups" OFF \
|
||||||
|
OpenLDAP "OpenLDAP map lookups" OFF \
|
||||||
|
Test "SMTP/LMTP test server and generator" OFF \
|
||||||
|
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
||||||
|
IPv6 "IPv6 support" OFF
|
||||||
|
2> $tempfile
|
||||||
|
fi
|
||||||
|
|
||||||
retval=$?
|
retval=$?
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $FreeBSD: /tmp/pcvs/ports/mail/postfix25/scripts/Attic/configure.postfix,v 1.2 2001-03-05 22:15:24 knu Exp $
|
# $FreeBSD: /tmp/pcvs/ports/mail/postfix25/scripts/Attic/configure.postfix,v 1.3 2001-03-11 19:53:59 alex Exp $
|
||||||
|
|
||||||
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
||||||
exit
|
exit
|
||||||
|
@ -10,18 +10,33 @@ tempfile=`mktemp -t checklist`
|
||||||
if [ "${BATCH}" = "yes" ]; then
|
if [ "${BATCH}" = "yes" ]; then
|
||||||
set \"PCRE\"
|
set \"PCRE\"
|
||||||
else
|
else
|
||||||
|
# IPv6 patches are broken on alpha
|
||||||
|
if [ `uname -m` = "alpha" ]; then
|
||||||
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
||||||
--checklist "\n\
|
--checklist "\n\
|
||||||
Please select desired options:" -1 -1 16 \
|
Please select desired options:" -1 -1 16 \
|
||||||
PCRE "Perl Compatible Regular Expressions" OFF \
|
PCRE "Perl Compatible Regular Expressions" ON \
|
||||||
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
||||||
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
||||||
MySQL "MySQL map lookups" OFF \
|
MySQL "MySQL map lookups" OFF \
|
||||||
OpenLDAP "OpenLDAP map lookups" OFF \
|
OpenLDAP "OpenLDAP map lookups" OFF \
|
||||||
Test "SMTP/LMTP test server and generator" OFF \
|
Test "SMTP/LMTP test server and generator" OFF \
|
||||||
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
||||||
IPv6 "IPv6 support" OFF \
|
|
||||||
2> $tempfile
|
2> $tempfile
|
||||||
|
else
|
||||||
|
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
||||||
|
--checklist "\n\
|
||||||
|
Please select desired options:" -1 -1 16 \
|
||||||
|
PCRE "Perl Compatible Regular Expressions" ON \
|
||||||
|
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
||||||
|
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
||||||
|
MySQL "MySQL map lookups" OFF \
|
||||||
|
OpenLDAP "OpenLDAP map lookups" OFF \
|
||||||
|
Test "SMTP/LMTP test server and generator" OFF \
|
||||||
|
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
||||||
|
IPv6 "IPv6 support" OFF
|
||||||
|
2> $tempfile
|
||||||
|
fi
|
||||||
|
|
||||||
retval=$?
|
retval=$?
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $FreeBSD: /tmp/pcvs/ports/mail/postfix26/scripts/Attic/configure.postfix,v 1.2 2001-03-05 22:15:24 knu Exp $
|
# $FreeBSD: /tmp/pcvs/ports/mail/postfix26/scripts/Attic/configure.postfix,v 1.3 2001-03-11 19:53:59 alex Exp $
|
||||||
|
|
||||||
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
||||||
exit
|
exit
|
||||||
|
@ -10,18 +10,33 @@ tempfile=`mktemp -t checklist`
|
||||||
if [ "${BATCH}" = "yes" ]; then
|
if [ "${BATCH}" = "yes" ]; then
|
||||||
set \"PCRE\"
|
set \"PCRE\"
|
||||||
else
|
else
|
||||||
|
# IPv6 patches are broken on alpha
|
||||||
|
if [ `uname -m` = "alpha" ]; then
|
||||||
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
||||||
--checklist "\n\
|
--checklist "\n\
|
||||||
Please select desired options:" -1 -1 16 \
|
Please select desired options:" -1 -1 16 \
|
||||||
PCRE "Perl Compatible Regular Expressions" OFF \
|
PCRE "Perl Compatible Regular Expressions" ON \
|
||||||
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
||||||
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
||||||
MySQL "MySQL map lookups" OFF \
|
MySQL "MySQL map lookups" OFF \
|
||||||
OpenLDAP "OpenLDAP map lookups" OFF \
|
OpenLDAP "OpenLDAP map lookups" OFF \
|
||||||
Test "SMTP/LMTP test server and generator" OFF \
|
Test "SMTP/LMTP test server and generator" OFF \
|
||||||
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
||||||
IPv6 "IPv6 support" OFF \
|
|
||||||
2> $tempfile
|
2> $tempfile
|
||||||
|
else
|
||||||
|
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
||||||
|
--checklist "\n\
|
||||||
|
Please select desired options:" -1 -1 16 \
|
||||||
|
PCRE "Perl Compatible Regular Expressions" ON \
|
||||||
|
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
||||||
|
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
||||||
|
MySQL "MySQL map lookups" OFF \
|
||||||
|
OpenLDAP "OpenLDAP map lookups" OFF \
|
||||||
|
Test "SMTP/LMTP test server and generator" OFF \
|
||||||
|
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
||||||
|
IPv6 "IPv6 support" OFF
|
||||||
|
2> $tempfile
|
||||||
|
fi
|
||||||
|
|
||||||
retval=$?
|
retval=$?
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $FreeBSD: /tmp/pcvs/ports/mail/postfix27/scripts/Attic/configure.postfix,v 1.2 2001-03-05 22:15:24 knu Exp $
|
# $FreeBSD: /tmp/pcvs/ports/mail/postfix27/scripts/Attic/configure.postfix,v 1.3 2001-03-11 19:53:59 alex Exp $
|
||||||
|
|
||||||
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
||||||
exit
|
exit
|
||||||
|
@ -10,18 +10,33 @@ tempfile=`mktemp -t checklist`
|
||||||
if [ "${BATCH}" = "yes" ]; then
|
if [ "${BATCH}" = "yes" ]; then
|
||||||
set \"PCRE\"
|
set \"PCRE\"
|
||||||
else
|
else
|
||||||
|
# IPv6 patches are broken on alpha
|
||||||
|
if [ `uname -m` = "alpha" ]; then
|
||||||
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
||||||
--checklist "\n\
|
--checklist "\n\
|
||||||
Please select desired options:" -1 -1 16 \
|
Please select desired options:" -1 -1 16 \
|
||||||
PCRE "Perl Compatible Regular Expressions" OFF \
|
PCRE "Perl Compatible Regular Expressions" ON \
|
||||||
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
||||||
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
||||||
MySQL "MySQL map lookups" OFF \
|
MySQL "MySQL map lookups" OFF \
|
||||||
OpenLDAP "OpenLDAP map lookups" OFF \
|
OpenLDAP "OpenLDAP map lookups" OFF \
|
||||||
Test "SMTP/LMTP test server and generator" OFF \
|
Test "SMTP/LMTP test server and generator" OFF \
|
||||||
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
||||||
IPv6 "IPv6 support" OFF \
|
|
||||||
2> $tempfile
|
2> $tempfile
|
||||||
|
else
|
||||||
|
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
||||||
|
--checklist "\n\
|
||||||
|
Please select desired options:" -1 -1 16 \
|
||||||
|
PCRE "Perl Compatible Regular Expressions" ON \
|
||||||
|
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
||||||
|
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
||||||
|
MySQL "MySQL map lookups" OFF \
|
||||||
|
OpenLDAP "OpenLDAP map lookups" OFF \
|
||||||
|
Test "SMTP/LMTP test server and generator" OFF \
|
||||||
|
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
||||||
|
IPv6 "IPv6 support" OFF
|
||||||
|
2> $tempfile
|
||||||
|
fi
|
||||||
|
|
||||||
retval=$?
|
retval=$?
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $FreeBSD: /tmp/pcvs/ports/mail/postfix28/scripts/Attic/configure.postfix,v 1.2 2001-03-05 22:15:24 knu Exp $
|
# $FreeBSD: /tmp/pcvs/ports/mail/postfix28/scripts/Attic/configure.postfix,v 1.3 2001-03-11 19:53:59 alex Exp $
|
||||||
|
|
||||||
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
|
||||||
exit
|
exit
|
||||||
|
@ -10,18 +10,33 @@ tempfile=`mktemp -t checklist`
|
||||||
if [ "${BATCH}" = "yes" ]; then
|
if [ "${BATCH}" = "yes" ]; then
|
||||||
set \"PCRE\"
|
set \"PCRE\"
|
||||||
else
|
else
|
||||||
|
# IPv6 patches are broken on alpha
|
||||||
|
if [ `uname -m` = "alpha" ]; then
|
||||||
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
||||||
--checklist "\n\
|
--checklist "\n\
|
||||||
Please select desired options:" -1 -1 16 \
|
Please select desired options:" -1 -1 16 \
|
||||||
PCRE "Perl Compatible Regular Expressions" OFF \
|
PCRE "Perl Compatible Regular Expressions" ON \
|
||||||
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
||||||
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
||||||
MySQL "MySQL map lookups" OFF \
|
MySQL "MySQL map lookups" OFF \
|
||||||
OpenLDAP "OpenLDAP map lookups" OFF \
|
OpenLDAP "OpenLDAP map lookups" OFF \
|
||||||
Test "SMTP/LMTP test server and generator" OFF \
|
Test "SMTP/LMTP test server and generator" OFF \
|
||||||
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
||||||
IPv6 "IPv6 support" OFF \
|
|
||||||
2> $tempfile
|
2> $tempfile
|
||||||
|
else
|
||||||
|
/usr/bin/dialog --title "Postfix configuration options" --clear \
|
||||||
|
--checklist "\n\
|
||||||
|
Please select desired options:" -1 -1 16 \
|
||||||
|
PCRE "Perl Compatible Regular Expressions" ON \
|
||||||
|
SASL "Cyrus SASL (Simple Authentication and Security Layer)" OFF \
|
||||||
|
DB3 "Berkeley DB3 (required if SASL also built with DB3)" OFF \
|
||||||
|
MySQL "MySQL map lookups" OFF \
|
||||||
|
OpenLDAP "OpenLDAP map lookups" OFF \
|
||||||
|
Test "SMTP/LMTP test server and generator" OFF \
|
||||||
|
TLS "Secure Sockets Layer and Transport Layer Security" OFF \
|
||||||
|
IPv6 "IPv6 support" OFF
|
||||||
|
2> $tempfile
|
||||||
|
fi
|
||||||
|
|
||||||
retval=$?
|
retval=$?
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue