View | Details | Raw Unified | Return to bug 54767
Collapse All | Expand All

(-)postfix-current-new/Makefile (-14 / +22 lines)
Lines 2-20 Link Here
2
# Date created: 	18 Mar 1999
2
# Date created: 	18 Mar 1999
3
# Whom:			torstenb
3
# Whom:			torstenb
4
#
4
#
5
# $FreeBSD: ports/mail/postfix-current/Makefile,v 1.92 2003/02/21 12:42:22 knu Exp $
5
# $FreeBSD: ports/mail/postfix/Makefile,v 1.76 2003/07/02 11:23:10 daichi Exp $
6
#
6
#
7
7
8
# To pre-select options in batch mode, run make like this:
8
# To pre-select options in batch mode, run make like this:
9
#
9
#
10
#  make -DBATCH POSTFIX_OPTIONS="DB3 PCRE"
10
#  make -DBATCH POSTFIX_OPTIONS="DB3 IPv6TLS"
11
#
11
#
12
# the options are the same names as in the scripts/configure.postfix file.
12
# the options are the same names as in the scripts/configure.postfix file.
13
# POSTFIX_OPTIONS can be set in /etc/make.conf also.
13
# POSTFIX_OPTIONS can be set in /etc/make.conf also.
14
14
15
# NOTE: PCRE is enabled by default unless you specifically disable it.
16
15
PORTNAME=	postfix
17
PORTNAME=	postfix
16
PORTVERSION=	1.1.11-20021115
18
PORTVERSION=	2.0.14-20030717
17
#PORTREVISION=	1
18
PORTEPOCH=	1
19
PORTEPOCH=	1
19
CATEGORIES=	mail ipv6
20
CATEGORIES=	mail ipv6
20
MASTER_SITES=	ftp://ftp.porcupine.org/mirrors/postfix-release/experimental/ \
21
MASTER_SITES=	ftp://ftp.porcupine.org/mirrors/postfix-release/experimental/ \
Lines 28-34 Link Here
28
DIST_SUBDIR=	${PORTNAME}
29
DIST_SUBDIR=	${PORTNAME}
29
30
30
MAINTAINER=	khera@kciLink.com
31
MAINTAINER=	khera@kciLink.com
31
COMMENT=	An alternative to widely-used Sendmail
32
COMMENT=	A secure alternative to widely-used Sendmail
32
33
33
USE_SUBMAKE=	yes
34
USE_SUBMAKE=	yes
34
USE_REINPLACE=	yes
35
USE_REINPLACE=	yes
Lines 37-57 Link Here
37
	postfix.1 postkick.1 postlock.1 postlog.1 postmap.1 postqueue.1 \
38
	postfix.1 postkick.1 postlock.1 postlog.1 postmap.1 postqueue.1 \
38
	postsuper.1 sendmail.1
39
	postsuper.1 sendmail.1
39
40
40
MAN5=	access.5 aliases.5 canonical.5 pcre_table.5 regexp_table.5 \
41
MAN5=	access.5 aliases.5 canonical.5 cidr_table.5 pcre_table.5 regexp_table.5 \
41
	relocated.5 transport.5 virtual.5
42
	relocated.5 tcp_table.5 transport.5 virtual.5
42
43
43
MAN8=	bounce.8 cleanup.8 defer.8 error.8 flush.8 lmtp.8 local.8 \
44
MAN8=	bounce.8 cleanup.8 defer.8 error.8 flush.8 lmtp.8 local.8 \
44
	master.8 nqmgr.8 pickup.8 pipe.8 qmgr.8 qmqpd.8 showq.8 smtp.8 \
45
	master.8 nqmgr.8 pickup.8 pipe.8 proxymap.8 qmgr.8 qmqpd.8 showq.8 \
45
	smtpd.8 spawn.8 trivial-rewrite.8 virtual.8
46
	smtp.8 smtpd.8 spawn.8 trace.8 trivial-rewrite.8 verify.8 virtual.8
46
47
47
# TLS patch adds to MAN8 but doesn't have .html file, so avoid trying to
48
# TLS patch adds to MAN8 but doesn't have .html file, so avoid trying to
48
# patch it.
49
# patch it.
49
MAN8base=$(MAN8:S/tlsmgr.8//)
50
MAN8base=$(MAN8:S/tlsmgr.8//)
50
51
51
NO_LATEST_LINK=	yes
52
CONF1=	main.cf master.cf access aliases canonical cidr_table pcre_table \
52
53
	regexp_table relocated tcp_table transport virtual
53
CONF1=	main.cf master.cf access aliases canonical pcre_table regexp_table \
54
	relocated transport virtual
55
54
56
.if !defined(DEBUG)
55
.if !defined(DEBUG)
57
MAKEFILEFLAGS+=	DEBUG=
56
MAKEFILEFLAGS+=	DEBUG=
Lines 71-76 Link Here
71
.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc"
70
.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc"
72
.endif
71
.endif
73
72
73
.if defined(WITHOUT_PCRE)
74
POSTFIX_CCARGS+=	-DNO_PCRE
75
.else
76
LIB_DEPENDS+=	pcre.0:${PORTSDIR}/devel/pcre
77
POSTFIX_CCARGS+=	-DHAS_PCRE -I${LOCALBASE}/include
78
POSTFIX_AUXLIBS+=	-L${LOCALBASE}/lib -lpcre
79
.endif
80
81
74
post-patch:
82
post-patch:
75
	(cd ${WRKSRC} && ${MAKE} -f Makefile.init makefiles ${MAKEFILEFLAGS} \
83
	(cd ${WRKSRC} && ${MAKE} -f Makefile.init makefiles ${MAKEFILEFLAGS} \
76
	CCARGS="${POSTFIX_CCARGS}" AUXLIBS="${POSTFIX_AUXLIBS}" && \
84
	CCARGS="${POSTFIX_CCARGS}" AUXLIBS="${POSTFIX_AUXLIBS}" && \
Lines 107-113 Link Here
107
.endif
115
.endif
108
116
109
do-install:
117
do-install:
110
	cd ${WRKSRC}; sh postfix-install -non-interactive install_root=/ tempdir=/tmp \
118
	cd ${WRKSRC}; ${SH} postfix-install -non-interactive install_root=/ tempdir=/tmp \
111
	 config_directory=${PREFIX}/etc/postfix \
119
	 config_directory=${PREFIX}/etc/postfix \
112
	 daemon_directory=${PREFIX}/libexec/postfix \
120
	 daemon_directory=${PREFIX}/libexec/postfix \
113
	 command_directory=${PREFIX}/sbin \
121
	 command_directory=${PREFIX}/sbin \
(-)postfix-current-new/distinfo (-4 / +2 lines)
Lines 1-4 Link Here
1
MD5 (postfix/postfix-1.1.11-20021115.tar.gz) = dd3c98b616844a3548049bbaa418c296
1
MD5 (postfix/postfix-2.0.14-20030717.tar.gz) = 82709b0742d886f345d718aa941b154d
2
MD5 (postfix/pfixtls-0.8.11a-1.1.11-20021031-0.9.6g.tar.gz) = 1fc29989315ab5570486929c24187626
2
MD5 (postfix/pfixtls-0.8.15a-2.0.14-20030715-0.9.7b.tar.gz) = b7572506f62cd5c64614128a5f0491e3
3
MD5 (postfix/postfix-pg.postfix-1.1.8.patch) = e0f4d910a6d6648d9b48e2244f2764ba
4
MD5 (postfix/tls+ipv6-1.8-pf-1.1.11-20021115.patch) = f01d9a0e28fb3d1a59614f2093ad24f3
(-)postfix-current-new/files/patch-main.cf (+58 lines)
Line 0 Link Here
1
--- ./conf/main.cf	Wed Jan  8 22:11:52 2003
2
+++ ./conf/main.cf	Wed Jan  8 22:11:53 2003
3
@@ -31,13 +31,13 @@
4
 # The command_directory parameter specifies the location of all
5
 # postXXX commands.
6
 #
7
-command_directory = /usr/sbin
8
+command_directory = !!PREFIX!!/sbin
9
 
10
 # The daemon_directory parameter specifies the location of all Postfix
11
 # daemon programs (i.e. programs listed in the master.cf file). This
12
 # directory must be owned by root.
13
 #
14
-daemon_directory = /usr/libexec/postfix
15
+daemon_directory = !!PREFIX!!/libexec/postfix
16
 
17
 # QUEUE AND PROCESS OWNERSHIP
18
 #
19
@@ -590,32 +590,32 @@
20
 # sendmail_path: The full pathname of the Postfix sendmail command.
21
 # This is the Sendmail-compatible mail posting interface.
22
 # 
23
-sendmail_path =
24
+sendmail_path = !!PREFIX!!/sbin/sendmail
25
 
26
 # newaliases_path: The full pathname of the Postfix newaliases command.
27
 # This is the Sendmail-compatible command to build alias databases.
28
 #
29
-newaliases_path =
30
+newaliases_path = !!PREFIX!!/bin/newaliases
31
 
32
 # mailq_path: The full pathname of the Postfix mailq command.  This
33
 # is the Sendmail-compatible mail queue listing command.
34
 # 
35
-mailq_path =
36
+mailq_path = !!PREFIX!!/bin/mailq
37
 
38
 # setgid_group: The group for mail submission and queue management
39
 # commands.  This must be a group name with a numerical group ID that
40
 # is not shared with other accounts, not even with the Postfix account.
41
 #
42
-setgid_group =
43
+setgid_group = maildrop
44
 
45
 # manpage_directory: The location of the Postfix on-line manual pages.
46
 #
47
-manpage_directory =
48
+manpage_directory = !!PREFIX!!/man
49
 
50
 # sample_directory: The location of the Postfix sample configuration files.
51
 #
52
-sample_directory =
53
+sample_directory = !!PREFIX!!/etc/postfix
54
 
55
 # readme_directory: The location of the Postfix README files.
56
 #
57
-readme_directory =
58
+readme_directory = no
(-)postfix-current-new/pkg-install (-4 / +16 lines)
Lines 1-10 Link Here
1
#!/bin/sh
1
#!/bin/sh
2
#
2
#
3
#	$FreeBSD: ports/mail/postfix-current/pkg-install,v 1.13 2002/06/20 01:34:00 dwcjr Exp $
3
#	$FreeBSD: ports/mail/postfix/pkg-install,v 1.16 2003/07/10 07:12:46 erwin Exp $
4
#
4
#
5
5
6
# If the POSTFIX_DEFAULT_MTA environment variable is set to YES, it
7
# will make the port/package use defaults which makes postfix replaces
8
# sendmail as much as possible.
9
6
PKG_PREFIX=${PKG_PREFIX:=/usr/local}
10
PKG_PREFIX=${PKG_PREFIX:=/usr/local}
7
BATCH=${BATCH:=no}
11
BATCH=${BATCH:=no}
12
POSTFIX_DEFAULT_MTA=${POSTFIX_DEFAULT_MTA:=no}
13
14
if [ x${POSTFIX_DEFAULT_MTA} = xno ]; then
15
    DEFAULT_REPLACE_MAILERCONF=n
16
else
17
    DEFAULT_REPLACE_MAILERCONF=y
18
fi
8
19
9
ask() {
20
ask() {
10
    local question default answer
21
    local question default answer
Lines 98-105 Link Here
98
fi
109
fi
99
110
100
if [ x"$2" = xPOST-INSTALL ]; then
111
if [ x"$2" = xPOST-INSTALL ]; then
101
	CONF1="main.cf master.cf access aliases canonical pcre_table \
112
	CONF1="main.cf master.cf access aliases canonical cidr_table \
102
	regexp_table relocated transport virtual"
113
	pcre_table regexp_table relocated tcp_table transport virtual"
103
114
104
	for file in $CONF1
115
	for file in $CONF1
105
	do
116
	do
Lines 147-153 Link Here
147
        OSVERSION=`/usr/sbin/sysctl -n kern.osreldate`
158
        OSVERSION=`/usr/sbin/sysctl -n kern.osreldate`
148
    fi
159
    fi
149
    if [ ${OSVERSION} -ge 400014 ]; then
160
    if [ ${OSVERSION} -ge 400014 ]; then
150
        if yesno "Would you like to activate Postfix in /etc/mail/mailer.conf" n; then
161
        if yesno "Would you like to activate Postfix in /etc/mail/mailer.conf" \
162
	    ${DEFAULT_REPLACE_MAILERCONF}; then
151
            mv -f /etc/mail/mailer.conf /etc/mail/mailer.conf.old
163
            mv -f /etc/mail/mailer.conf /etc/mail/mailer.conf.old
152
            echo "#"						>  /etc/mail/mailer.conf
164
            echo "#"						>  /etc/mail/mailer.conf
153
            echo -n "# Execute the Postfix sendmail program"	>> /etc/mail/mailer.conf
165
            echo -n "# Execute the Postfix sendmail program"	>> /etc/mail/mailer.conf
(-)postfix-current-new/pkg-message (-3 / +19 lines)
Lines 10-24 Link Here
10
10
11
This will disable Sendmail completely.
11
This will disable Sendmail completely.
12
12
13
Alternatively to the above settings, you can enable postfix to start with
14
the other local services, for example, after your database server starts if
15
you need it to be running for postfix.  To do this, set in your rc.conf file:
13
16
14
Also, you may wish to disable some Sendmail-specific daily maintenance
17
sendmail_enable="NONE"                                
18
19
Then make the following symbolic link:
20
21
cd /usr/local/etc/rc.d
22
ln -s /usr/local/sbin/postfix postfix.sh
23
24
25
Also, you will want to disable some Sendmail-specific daily maintenance
15
routines in your /etc/periodic.conf file:
26
routines in your /etc/periodic.conf file:
16
27
28
daily_clean_hoststat_enable="NO"
17
daily_status_mail_rejects_enable="NO"                                      
29
daily_status_mail_rejects_enable="NO"                                      
18
daily_status_include_submit_mailq="NO"
30
daily_status_include_submit_mailq="NO"
19
daily_submit_queuerun="NO"
31
daily_submit_queuerun="NO"
20
32
21
33
22
If you are using SASL, you need to make sure that postfix has access to read
34
If you are using SASL, you need to make sure that postfix has access to read
23
the sasldb file.  This is accomplished by adding postfix to group cyrus and
35
the sasldb file.  This is accomplished by adding postfix to group mail and
24
making the /usr/local/etc/sasldb* file(s) owned by group cyrus.
36
making the /usr/local/etc/sasldb* file(s) readable by group mail (this should
37
be the default for new installs).
38
39
If you are upgrading from postfix version prior to 2.0, please see the README
40
files for recommended changes to your configuration.
(-)postfix-current-new/pkg-plist (+21 lines)
Lines 3-22 Link Here
3
@unexec if cmp -s %D/etc/postfix/access %D/etc/postfix/sample-access; then rm -f %D/etc/postfix/access; fi
3
@unexec if cmp -s %D/etc/postfix/access %D/etc/postfix/sample-access; then rm -f %D/etc/postfix/access; fi
4
@unexec if cmp -s %D/etc/postfix/aliases %D/etc/postfix/sample-aliases; then rm -f %D/etc/postfix/aliases; fi
4
@unexec if cmp -s %D/etc/postfix/aliases %D/etc/postfix/sample-aliases; then rm -f %D/etc/postfix/aliases; fi
5
@unexec if cmp -s %D/etc/postfix/canonical %D/etc/postfix/sample-canonical; then rm -f %D/etc/postfix/canonical; fi
5
@unexec if cmp -s %D/etc/postfix/canonical %D/etc/postfix/sample-canonical; then rm -f %D/etc/postfix/canonical; fi
6
@unexec if cmp -s %D/etc/postfix/cidr_table %D/etc/postfix/sample-cidr_table; then rm -f %D/etc/postfix/cidr_table; fi
6
@unexec if cmp -s %D/etc/postfix/pcre_table %D/etc/postfix/sample-pcre_table; then rm -f %D/etc/postfix/pcre_table; fi
7
@unexec if cmp -s %D/etc/postfix/pcre_table %D/etc/postfix/sample-pcre_table; then rm -f %D/etc/postfix/pcre_table; fi
7
@unexec if cmp -s %D/etc/postfix/regexp_table %D/etc/postfix/sample-regexp_table; then rm -f %D/etc/postfix/regexp_table; fi
8
@unexec if cmp -s %D/etc/postfix/regexp_table %D/etc/postfix/sample-regexp_table; then rm -f %D/etc/postfix/regexp_table; fi
8
@unexec if cmp -s %D/etc/postfix/relocated %D/etc/postfix/sample-relocated; then rm -f %D/etc/postfix/relocated; fi
9
@unexec if cmp -s %D/etc/postfix/relocated %D/etc/postfix/sample-relocated; then rm -f %D/etc/postfix/relocated; fi
10
@unexec if cmp -s %D/etc/postfix/tcp_table %D/etc/postfix/sample-tcp_table; then rm -f %D/etc/postfix/tcp_table; fi
9
@unexec if cmp -s %D/etc/postfix/transport %D/etc/postfix/sample-transport; then rm -f %D/etc/postfix/transport; fi
11
@unexec if cmp -s %D/etc/postfix/transport %D/etc/postfix/sample-transport; then rm -f %D/etc/postfix/transport; fi
10
@unexec if cmp -s %D/etc/postfix/virtual %D/etc/postfix/sample-virtual; then rm -f %D/etc/postfix/virtual; fi
12
@unexec if cmp -s %D/etc/postfix/virtual %D/etc/postfix/sample-virtual; then rm -f %D/etc/postfix/virtual; fi
11
bin/rmail
13
bin/rmail
12
etc/postfix/LICENSE
14
etc/postfix/LICENSE
13
etc/postfix/main.cf.default
15
etc/postfix/main.cf.default
16
etc/postfix/makedefs.out
14
etc/postfix/post-install
17
etc/postfix/post-install
15
etc/postfix/postfix-files
18
etc/postfix/postfix-files
16
etc/postfix/postfix-script
19
etc/postfix/postfix-script
17
etc/postfix/sample-access
20
etc/postfix/sample-access
18
etc/postfix/sample-aliases
21
etc/postfix/sample-aliases
19
etc/postfix/sample-canonical
22
etc/postfix/sample-canonical
23
etc/postfix/sample-cidr_table
20
etc/postfix/sample-pcre_table
24
etc/postfix/sample-pcre_table
21
etc/postfix/sample-regexp_table
25
etc/postfix/sample-regexp_table
22
etc/postfix/sample-relocated
26
etc/postfix/sample-relocated
Lines 37-42 Link Here
37
etc/postfix/sample-pcre-access.cf
41
etc/postfix/sample-pcre-access.cf
38
etc/postfix/sample-pcre-body.cf
42
etc/postfix/sample-pcre-body.cf
39
etc/postfix/sample-pcre-header.cf
43
etc/postfix/sample-pcre-header.cf
44
etc/postfix/sample-pgsql-aliases.cf
40
etc/postfix/sample-qmqpd.cf
45
etc/postfix/sample-qmqpd.cf
41
etc/postfix/sample-rate.cf
46
etc/postfix/sample-rate.cf
42
etc/postfix/sample-regexp-access.cf
47
etc/postfix/sample-regexp-access.cf
Lines 45-55 Link Here
45
etc/postfix/sample-relocated.cf
50
etc/postfix/sample-relocated.cf
46
etc/postfix/sample-resource.cf
51
etc/postfix/sample-resource.cf
47
etc/postfix/sample-rewrite.cf
52
etc/postfix/sample-rewrite.cf
53
etc/postfix/sample-scheduler.cf
48
etc/postfix/sample-smtp.cf
54
etc/postfix/sample-smtp.cf
49
etc/postfix/sample-smtpd.cf
55
etc/postfix/sample-smtpd.cf
56
etc/postfix/sample-tcp_table
50
etc/postfix/sample-transport.cf
57
etc/postfix/sample-transport.cf
51
etc/postfix/sample-virtual.cf
58
etc/postfix/sample-virtual.cf
52
etc/postfix/sample-transport
59
etc/postfix/sample-transport
60
etc/postfix/sample-verify.cf
53
etc/postfix/sample-virtual
61
etc/postfix/sample-virtual
54
%%SUB_TLS%%etc/postfix/sample-tls.cf
62
%%SUB_TLS%%etc/postfix/sample-tls.cf
55
libexec/postfix/bounce
63
libexec/postfix/bounce
Lines 62-67 Link Here
62
libexec/postfix/nqmgr
70
libexec/postfix/nqmgr
63
libexec/postfix/pickup
71
libexec/postfix/pickup
64
libexec/postfix/pipe
72
libexec/postfix/pipe
73
libexec/postfix/proxymap
65
libexec/postfix/qmgr
74
libexec/postfix/qmgr
66
libexec/postfix/qmqpd
75
libexec/postfix/qmqpd
67
libexec/postfix/showq
76
libexec/postfix/showq
Lines 69-74 Link Here
69
libexec/postfix/smtpd
78
libexec/postfix/smtpd
70
libexec/postfix/spawn
79
libexec/postfix/spawn
71
libexec/postfix/trivial-rewrite
80
libexec/postfix/trivial-rewrite
81
libexec/postfix/verify
72
libexec/postfix/virtual
82
libexec/postfix/virtual
73
%%SUB_TLS%%libexec/postfix/tlsmgr
83
%%SUB_TLS%%libexec/postfix/tlsmgr
74
sbin/postalias
84
sbin/postalias
Lines 87-92 Link Here
87
bin/mailq
97
bin/mailq
88
%%SUB_TEST%%sbin/smtp-sink
98
%%SUB_TEST%%sbin/smtp-sink
89
%%SUB_TEST%%sbin/smtp-source
99
%%SUB_TEST%%sbin/smtp-source
100
%%PORTDOCS%%share/doc/postfix/ADDRESS_CLASS_README
101
%%PORTDOCS%%share/doc/postfix/ADDRESS_VERIFICATION_README
90
%%PORTDOCS%%share/doc/postfix/DB_README
102
%%PORTDOCS%%share/doc/postfix/DB_README
91
%%PORTDOCS%%share/doc/postfix/DEBUG_README
103
%%PORTDOCS%%share/doc/postfix/DEBUG_README
92
%%PORTDOCS%%share/doc/postfix/ETRN_README
104
%%PORTDOCS%%share/doc/postfix/ETRN_README
Lines 94-108 Link Here
94
%%PORTDOCS%%share/doc/postfix/INSTALL
106
%%PORTDOCS%%share/doc/postfix/INSTALL
95
%%PORTDOCS%%share/doc/postfix/LDAP_README
107
%%PORTDOCS%%share/doc/postfix/LDAP_README
96
%%PORTDOCS%%share/doc/postfix/LINUX_README
108
%%PORTDOCS%%share/doc/postfix/LINUX_README
109
%%PORTDOCS%%share/doc/postfix/LOCAL_RECIPIENT_README
97
%%PORTDOCS%%share/doc/postfix/LMTP_README
110
%%PORTDOCS%%share/doc/postfix/LMTP_README
98
%%PORTDOCS%%share/doc/postfix/MACOSX_README
111
%%PORTDOCS%%share/doc/postfix/MACOSX_README
112
%%PORTDOCS%%share/doc/postfix/MAILDROP_README
99
%%PORTDOCS%%share/doc/postfix/MYSQL_README
113
%%PORTDOCS%%share/doc/postfix/MYSQL_README
100
%%PORTDOCS%%share/doc/postfix/NFS_README
114
%%PORTDOCS%%share/doc/postfix/NFS_README
101
%%PORTDOCS%%share/doc/postfix/PACKAGE_README
115
%%PORTDOCS%%share/doc/postfix/PACKAGE_README
102
%%PORTDOCS%%share/doc/postfix/PCRE_README
116
%%PORTDOCS%%share/doc/postfix/PCRE_README
103
%%PORTDOCS%%share/doc/postfix/QMQP_README
117
%%PORTDOCS%%share/doc/postfix/QMQP_README
118
%%PORTDOCS%%share/doc/postfix/RELEASE_NOTES
104
%%PORTDOCS%%share/doc/postfix/RESTRICTION_CLASS_README
119
%%PORTDOCS%%share/doc/postfix/RESTRICTION_CLASS_README
105
%%PORTDOCS%%share/doc/postfix/SASL_README
120
%%PORTDOCS%%share/doc/postfix/SASL_README
121
%%PORTDOCS%%share/doc/postfix/SCHEDULER_README
106
%%PORTDOCS%%share/doc/postfix/ULTRIX_README
122
%%PORTDOCS%%share/doc/postfix/ULTRIX_README
107
%%PORTDOCS%%share/doc/postfix/UUCP_README
123
%%PORTDOCS%%share/doc/postfix/UUCP_README
108
%%PORTDOCS%%share/doc/postfix/VERP_README
124
%%PORTDOCS%%share/doc/postfix/VERP_README
Lines 116-121 Link Here
116
%%PORTDOCS%%share/doc/postfix/big-picture.html
132
%%PORTDOCS%%share/doc/postfix/big-picture.html
117
%%PORTDOCS%%share/doc/postfix/bounce.8.html
133
%%PORTDOCS%%share/doc/postfix/bounce.8.html
118
%%PORTDOCS%%share/doc/postfix/canonical.5.html
134
%%PORTDOCS%%share/doc/postfix/canonical.5.html
135
%%PORTDOCS%%share/doc/postfix/cidr_table.5.html
119
%%PORTDOCS%%share/doc/postfix/cleanup.8.html
136
%%PORTDOCS%%share/doc/postfix/cleanup.8.html
120
%%PORTDOCS%%share/doc/postfix/commands.html
137
%%PORTDOCS%%share/doc/postfix/commands.html
121
%%PORTDOCS%%share/doc/postfix/defer.8.html
138
%%PORTDOCS%%share/doc/postfix/defer.8.html
Lines 148-153 Link Here
148
%%PORTDOCS%%share/doc/postfix/postmap.1.html
165
%%PORTDOCS%%share/doc/postfix/postmap.1.html
149
%%PORTDOCS%%share/doc/postfix/postqueue.1.html
166
%%PORTDOCS%%share/doc/postfix/postqueue.1.html
150
%%PORTDOCS%%share/doc/postfix/postsuper.1.html
167
%%PORTDOCS%%share/doc/postfix/postsuper.1.html
168
%%PORTDOCS%%share/doc/postfix/proxymap.8.html
151
%%PORTDOCS%%share/doc/postfix/qmgr.8.html
169
%%PORTDOCS%%share/doc/postfix/qmgr.8.html
152
%%PORTDOCS%%share/doc/postfix/qmqpd.8.html
170
%%PORTDOCS%%share/doc/postfix/qmqpd.8.html
153
%%PORTDOCS%%share/doc/postfix/queuing.html
171
%%PORTDOCS%%share/doc/postfix/queuing.html
Lines 164-172 Link Here
164
%%PORTDOCS%%share/doc/postfix/smtp.8.html
182
%%PORTDOCS%%share/doc/postfix/smtp.8.html
165
%%PORTDOCS%%share/doc/postfix/smtpd.8.html
183
%%PORTDOCS%%share/doc/postfix/smtpd.8.html
166
%%PORTDOCS%%share/doc/postfix/spawn.8.html
184
%%PORTDOCS%%share/doc/postfix/spawn.8.html
185
%%PORTDOCS%%share/doc/postfix/tcp_table.5.html
186
%%PORTDOCS%%share/doc/postfix/trace.8.html
167
%%PORTDOCS%%share/doc/postfix/transport.5.html
187
%%PORTDOCS%%share/doc/postfix/transport.5.html
168
%%PORTDOCS%%share/doc/postfix/trivial-rewrite.8.html
188
%%PORTDOCS%%share/doc/postfix/trivial-rewrite.8.html
169
%%PORTDOCS%%share/doc/postfix/uce.html
189
%%PORTDOCS%%share/doc/postfix/uce.html
190
%%PORTDOCS%%share/doc/postfix/verify.8.html
170
%%PORTDOCS%%share/doc/postfix/virtual.5.html
191
%%PORTDOCS%%share/doc/postfix/virtual.5.html
171
%%PORTDOCS%%share/doc/postfix/virtual.8.html
192
%%PORTDOCS%%share/doc/postfix/virtual.8.html
172
%%PORTDOCS%%@dirrm share/doc/postfix
193
%%PORTDOCS%%@dirrm share/doc/postfix
(-)postfix-current-new/scripts/configure (-1 / +1 lines)
Lines 1-6 Link Here
1
#!/bin/sh
1
#!/bin/sh
2
#
2
#
3
# $FreeBSD: ports/mail/postfix-current/scripts/configure,v 1.7 2001/08/30 03:36:38 dwcjr Exp $
3
# $FreeBSD: ports/mail/postfix/scripts/configure,v 1.7 2003/01/09 05:10:39 petef Exp $
4
4
5
for f in `find ${WRKSRC} -type f | xargs grep -l '\!\!PREFIX\!\!' ` ; do \
5
for f in `find ${WRKSRC} -type f | xargs grep -l '\!\!PREFIX\!\!' ` ; do \
6
	mv $f $f.orig && sed s+!!PREFIX!!+$PREFIX+g < $f.orig > $f && \
6
	mv $f $f.orig && sed s+!!PREFIX!!+$PREFIX+g < $f.orig > $f && \
(-)postfix-current-new/scripts/configure.postfix (-52 / +88 lines)
Lines 1-5 Link Here
1
#!/bin/sh
1
#!/bin/sh
2
# $FreeBSD: ports/mail/postfix-current/scripts/configure.postfix,v 1.43 2003/02/24 02:26:52 edwin Exp $
2
# $FreeBSD: ports/mail/postfix/scripts/configure.postfix,v 1.37 2003/07/07 08:28:33 osa Exp $
3
3
4
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
4
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
5
	exit
5
	exit
Lines 9-16 Link Here
9
9
10
if [ "${POSTFIX_OPTIONS}" ]; then
10
if [ "${POSTFIX_OPTIONS}" ]; then
11
	set ${POSTFIX_OPTIONS}
11
	set ${POSTFIX_OPTIONS}
12
else
13
	set PCRE
14
fi
12
fi
15
13
16
for i; do
14
for i; do
Lines 21-37 Link Here
21
	/usr/bin/dialog --title "Postfix configuration options" --clear \
19
	/usr/bin/dialog --title "Postfix configuration options" --clear \
22
		--checklist "\n\
20
		--checklist "\n\
23
Please select desired options:" -1 -1 16 \
21
Please select desired options:" -1 -1 16 \
24
PCRE		"Perl Compatible Regular Expressions" "$status_PCRE" \
22
NOPCRE		"DISABLE Perl Compatible Regular Expressions" "$status_NOPCRE" \
25
SASL		"Cyrus SASLv1 (Simple Authentication and Security Layer)" "$status_SASL" \
23
SASL		"Cyrus SASLv1 (Simple Authentication and Security Layer)" "$status_SASL" \
26
SASL2		"Cyrus SASLv2 (Simple Authentication and Security Layer)" "$status_SASL2" \
24
SASL2		"Cyrus SASLv2 (Simple Authentication and Security Layer)" "$status_SASL2" \
25
SASLKRB		"If your SASL requires Kerberos select this option" "$status_SASLKRB" \
26
TLS		"SSL and TLS" "$status_TLS" \
27
IPv6		"IPv6 support (broken)" "$status_IPv6" \
28
IPv6TLS		"IPv6 support with SSL and TLS (broken)" "$status_IPv6TLS" \
27
DB3		"Berkeley DB3 (required if SASL also built with DB3)" "$status_DB3" \
29
DB3		"Berkeley DB3 (required if SASL also built with DB3)" "$status_DB3" \
30
DB40		"Berkeley DB4.0 (required if SASL also built with DB4.0)" "$status_DB40" \
31
DB41		"Berkeley DB4.1 (required if SASL also built with DB4.1)" "$status_DB41" \
28
MySQL		"MySQL map lookups" "$status_MySQL" \
32
MySQL		"MySQL map lookups" "$status_MySQL" \
29
PgSQL		"PostgreSQL map lookups" "$status_PgSQL" \
33
PgSQL		"PostgreSQL v7.3 map lookups" "$status_PgSQL" \
30
OpenLDAP	"OpenLDAP map lookups" "$status_OpenLDAP" \
34
PgSQL72		"PostgreSQL v7.2 map lookups" "$status_PgSQL72" \
35
OpenLDAP12	"OpenLDAP 1.2 map lookups" "$status_OpenLDAP" \
36
OpenLDAP20	"OpenLDAP 2.0 map lookups" "$status_OpenLDAP" \
37
OpenLDAP21	"OpenLDAP 2.1 map lookups" "$status_OpenLDAP" \
31
Test		"SMTP/LMTP test server and generator" "$status_Test" \
38
Test		"SMTP/LMTP test server and generator" "$status_Test" \
32
TLS		"SSL and TLS" "$status_TLS" \
33
IPv6		"IPv6 support (currently broken)" "$status_IPv6" \
34
IPv6TLS		"IPv6 support with SSL and TLS" "$status_IPv6TLS" \
35
2> $tempfile
39
2> $tempfile
36
40
37
	retval=$?
41
	retval=$?
Lines 62-73 Link Here
62
66
63
while [ "$1" ]; do
67
while [ "$1" ]; do
64
	case $1 in
68
	case $1 in
65
		PCRE)
69
		NOPCRE)
66
			echo "LIB_DEPENDS+=	pcre.0:\${PORTSDIR}/devel/pcre"
70
			echo "WITHOUT_PCRE=	yes"
67
			echo "POSTFIX_CCARGS+=	-DHAS_PCRE -I\${LOCALBASE}/include"
71
			echo "NOPCRE_SUFFIX=	+nopcre"
68
			echo "POSTFIX_AUXLIBS+=	-L\${LOCALBASE}/lib -lpcre"
72
			SUB_NOPCRE=""
69
			echo "PCRE_SUFFIX=	+pcre"
70
			SUB_PCRE=""
71
			;;
73
			;;
72
                SASL)
74
                SASL)
73
                        echo "LIB_DEPENDS+=     sasl.8:\${PORTSDIR}/security/cyrus-sasl"
75
                        echo "LIB_DEPENDS+=     sasl.8:\${PORTSDIR}/security/cyrus-sasl"
Lines 79-91 Link Here
79
                                        echo "POSTFIX_CCARGS+=  -DHAS_MYSQL -I\${LOCALBASE}/include/mysql"
81
                                        echo "POSTFIX_CCARGS+=  -DHAS_MYSQL -I\${LOCALBASE}/include/mysql"
80
                                        echo "POSTFIX_AUXLIBS+= \${LOCALBASE}/lib/mysql/libmysqlclient.a -lm -lz"
82
                                        echo "POSTFIX_AUXLIBS+= \${LOCALBASE}/lib/mysql/libmysqlclient.a -lm -lz"
81
                                fi
83
                                fi
82
                        else
83
                                echo "POSTFIX_CCARGS+=  -DHAS_MYSQL -I\${LOCALBASE}/include/mysql"
84
                                echo "POSTFIX_AUXLIBS+= \${LOCALBASE}/lib/mysql/libmysqlclient.a -lm -lz"
85
                        fi
84
                        fi
86
                        echo ".if exists(/usr/lib/libkrb.a)"
87
                        echo "POSTFIX_AUXLIBS+= -lkrb -ldes -lcom_err"
88
                        echo ".endif"
89
                        SUB_SASL=""
85
                        SUB_SASL=""
90
                        ;;
86
                        ;;
91
		SASL2)
87
		SASL2)
Lines 98-127 Link Here
98
					echo "POSTFIX_CCARGS+=  -DHAS_MYSQL -I\${LOCALBASE}/include/mysql"
94
					echo "POSTFIX_CCARGS+=  -DHAS_MYSQL -I\${LOCALBASE}/include/mysql"
99
					echo "POSTFIX_AUXLIBS+= \${LOCALBASE}/lib/mysql/libmysqlclient.a -lm -lz"
95
					echo "POSTFIX_AUXLIBS+= \${LOCALBASE}/lib/mysql/libmysqlclient.a -lm -lz"
100
				fi
96
				fi
101
			else
97
			fi
102
				echo "POSTFIX_CCARGS+=  -DHAS_MYSQL -I\${LOCALBASE}/include/mysql"
103
				echo "POSTFIX_AUXLIBS+= \${LOCALBASE}/lib/mysql/libmysqlclient.a -lm -lz"
104
			fi
105
			echo ".if exists(/usr/lib/libkrb.a)"
106
			echo "POSTFIX_AUXLIBS+=	-lkrb -ldes -lcom_err"
107
			echo ".endif"
108
			SUB_SASL=""
98
			SUB_SASL=""
109
			;;
99
			;;
100
		SASLKRB)
101
                        echo "POSTFIX_AUXLIBS+= -lkrb -lcrypto -lcom_err"
102
			;;
110
		TLS)
103
		TLS)
111
			echo "MAN8+=		tlsmgr.8"
104
			echo "MAN8+=		tlsmgr.8"
112
			echo "POSTFIX_CCARGS+=	-DHAS_SSL -I/usr/include/openssl"
105
			echo "USE_OPENSSL=	yes"
113
			echo "POSTFIX_AUXLIBS+=	-lssl -lcrypto"
106
			echo "POSTFIX_CCARGS+=	-DHAS_SSL -I\${OPENSSLINC}"
114
			echo "DISTFILES+=	\${DISTNAME}.tar.gz pfixtls-0.8.11a-1.1.11-20021031-0.9.6g.tar.gz"
107
			echo "POSTFIX_AUXLIBS+=	-L\${OPENSSLLIB} -lssl -lcrypto"
115
			echo "EXTRA_PATCHES+=	\${WRKDIR}/pfixtls-0.8.11a-1.1.11-20021031-0.9.6g/pfixtls.diff"
108
			echo "DISTFILES+=	\${DISTNAME}.tar.gz pfixtls-0.8.15a-2.0.14-20030715-0.9.7b.tar.gz"
109
			echo "EXTRA_PATCHES+=	\${WRKDIR}/pfixtls-0.8.15a-2.0.14-20030715-0.9.7b/pfixtls.diff"
116
			echo "PATCH_STRIP=	-p1"
110
			echo "PATCH_STRIP=	-p1"
117
			echo "TLS_SUFFIX=	+tls"
111
			echo "TLS_SUFFIX=	+tls"
118
			SUB_TLS=""
112
			SUB_TLS=""
119
			;;
113
			;;
120
		DB3)
114
		DB3)
115
			if [ X$DB40_SELECTED != "X" -o X$DB41_SELECTED != "X" ]; then
116
				/usr/bin/dialog --msgbox "Select exactly one of the DB3, DB40 and DB41 options." 5 60 > /dev/stderr
117
				rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc
118
				exit 1
119
			fi
121
			echo "LIB_DEPENDS+=	db3.3:\${PORTSDIR}/databases/db3"
120
			echo "LIB_DEPENDS+=	db3.3:\${PORTSDIR}/databases/db3"
122
			echo "POSTFIX_CCARGS+=	-I\${LOCALBASE}/include/db3"
121
			echo "POSTFIX_CCARGS+=	-I\${LOCALBASE}/include/db3"
123
			echo "POSTFIX_AUXLIBS+=	-L\${LOCALBASE}/lib -ldb3"
122
			echo "POSTFIX_AUXLIBS+=	-L\${LOCALBASE}/lib -ldb3"
124
			echo "DB3_SUFFIX=	+db3"
123
			echo "DB_SUFFIX=	+db3"
124
			DB3_SELECTED="YES"
125
			;;
126
		DB40)
127
			if [ X$DB3_SELECTED != "X" -o X$DB41_SELECTED != "X" ]; then
128
				/usr/bin/dialog --msgbox "Select exactly one of the DB3, DB40 and DB41 options." 5 60 > /dev/stderr
129
				rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc
130
				exit 1
131
			fi
132
			echo "LIB_DEPENDS+=	db4.0:\${PORTSDIR}/databases/db4"
133
			echo "POSTFIX_CCARGS+=	-I\${LOCALBASE}/include/db4"
134
			echo "POSTFIX_AUXLIBS+=	-L\${LOCALBASE}/lib -ldb4"
135
			echo "DB_SUFFIX=	+db40"
136
			DB40_SELECTED="YES"
137
			;;
138
		DB41)
139
			if [ X$DB3_SELECTED != "X" -o X$DB40_SELECTED != "X" ]; then
140
				/usr/bin/dialog --msgbox "Select exactly one of the DB3, DB40 and DB41 options." 5 60 > /dev/stderr
141
				rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc
142
				exit 1
143
			fi
144
			echo "LIB_DEPENDS+=	db41.1:\${PORTSDIR}/databases/db41"
145
			echo "POSTFIX_CCARGS+=	-I\${LOCALBASE}/include/db41"
146
			echo "POSTFIX_AUXLIBS+=	-L\${LOCALBASE}/lib -ldb41"
147
			echo "DB_SUFFIX=	+db41"
148
			DB41_SELECTED="YES"
125
			;;
149
			;;
126
		MySQL)
150
		MySQL)
127
			echo "BUILD_DEPENDS+=	\${LOCALBASE}/lib/mysql/libmysqlclient.a:\${PORTSDIR}/databases/mysql323-client"
151
			echo "BUILD_DEPENDS+=	\${LOCALBASE}/lib/mysql/libmysqlclient.a:\${PORTSDIR}/databases/mysql323-client"
Lines 135-168 Link Here
135
			echo "POSTFIX_CCARGS+=	-DHAS_PGSQL -I\${LOCALBASE}/include  -I\${LOCALBASE}/pgsql/include"
159
			echo "POSTFIX_CCARGS+=	-DHAS_PGSQL -I\${LOCALBASE}/include  -I\${LOCALBASE}/pgsql/include"
136
			echo "POSTFIX_AUXLIBS+=	-L\${LOCALBASE}/lib -L\${LOCALBASE}/pgsql/lib -lpq -lcrypt"
160
			echo "POSTFIX_AUXLIBS+=	-L\${LOCALBASE}/lib -L\${LOCALBASE}/pgsql/lib -lpq -lcrypt"
137
			echo "PGSQL_SUFFIX=	+pgsql"
161
			echo "PGSQL_SUFFIX=	+pgsql"
138
			echo "PATCH_SITES+=	http://mat.cc/postfix/"
139
			echo "PATCHFILES+=	postfix-pg.postfix-1.1.8.patch"
140
			echo "PATCH_DIST_STRIP= -p1"
141
			;;
162
			;;
142
		OpenLDAP)
163
		PgSQL72)
164
			echo "POSTGRESQL_PORT?=	databases/postgresql72"
165
			echo "LIB_DEPENDS+=	pq.2:\${PORTSDIR}/\${POSTGRESQL_PORT}"
166
			echo "POSTFIX_CCARGS+=	-DHAS_PGSQL -I\${LOCALBASE}/include  -I\${LOCALBASE}/pgsql/include"
167
			echo "POSTFIX_AUXLIBS+=	-L\${LOCALBASE}/lib -L\${LOCALBASE}/pgsql/lib -lpq -lcrypt"
168
			echo "PGSQL_SUFFIX=	+pgsql"
169
			;;
170
		OpenLDAP12)
143
			echo "BUILD_DEPENDS+=	\${LOCALBASE}/lib/libldap.a:\${PORTSDIR}/net/openldap12"
171
			echo "BUILD_DEPENDS+=	\${LOCALBASE}/lib/libldap.a:\${PORTSDIR}/net/openldap12"
144
			echo "POSTFIX_CCARGS+=	-DHAS_LDAP -I\${LOCALBASE}/include"
172
			echo "POSTFIX_CCARGS+=	-DHAS_LDAP -I\${LOCALBASE}/include"
145
			echo "POSTFIX_AUXLIBS+=	\${LOCALBASE}/lib/libldap.a \${PREFIX}/lib/liblber.a"
173
			echo "POSTFIX_AUXLIBS+=	\${LOCALBASE}/lib/libldap.a \${PREFIX}/lib/liblber.a"
146
			echo "OPENLDAP_SUFFIX=	+openldap"
174
			echo "OPENLDAP_SUFFIX=	+openldap12"
175
			;;
176
		OpenLDAP20)
177
			echo "BUILD_DEPENDS+=	\${LOCALBASE}/lib/libldap.a:\${PORTSDIR}/net/openldap20"
178
			echo "POSTFIX_CCARGS+=	-DHAS_LDAP -I\${LOCALBASE}/include"
179
 			echo "POSTFIX_AUXLIBS+=	-lldap -llber"
180
			echo "OPENLDAP_SUFFIX=	+openldap20"
181
			;;
182
		OpenLDAP21)
183
			echo "BUILD_DEPENDS+=	\${LOCALBASE}/lib/libldap.a:\${PORTSDIR}/net/openldap21"
184
 			echo "POSTFIX_CCARGS+=	-DHAS_LDAP -I\${LOCALBASE}/include"
185
 			echo "POSTFIX_AUXLIBS+=	-lldap -llber"
186
 			echo "OPENLDAP_SUFFIX=	+openldap21"
147
			;;
187
			;;
148
		Test)
188
		Test)
149
			echo "BIN1=		smtp-sink smtp-source"
189
			echo "BIN1=		smtp-sink smtp-source"
150
			SUB_TEST=""
190
			SUB_TEST=""
151
			;;
191
			;;
152
		IPv6)
192
		IPv6)
153
			if [ `uname -m` != "i386" ]; then
154
				/usr/bin/dialog --msgbox "IPv6 patch currently only supported on i386!" 5 60 > /dev/stderr
155
				rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc
156
			exit 1
157
			fi
158
			if [ X$SUB_TLS = "X" ]; then
193
			if [ X$SUB_TLS = "X" ]; then
159
				/usr/bin/dialog --msgbox "Select exactly one of the IPv6 and TLS patches" 5 60 > /dev/stderr
194
				/usr/bin/dialog --msgbox "Select exactly one of the IPv6 and TLS patches" 5 60 > /dev/stderr
160
				rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc
195
				rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc
161
				exit 1
196
				exit 1
162
			fi
197
			fi
163
			echo "PATCH_SITES+=	http://www.cyber-magic.org/~taka/misc/"
198
			echo "PATCH_SITES+=	http://www.ipnet6.org/postfix/download/"
164
			echo "PATCHFILES+=	postfix-1.1.11+ipv6.patch.gz"
199
			echo "PATCHFILES+=	ipv6-1.15-pf-2.0.12-20030621.patch.gz"
165
			echo "PATCH_DIST_STRIP= -p1"
200
			echo "PATCH_DIST_STRIP=	-p1"
166
			echo "IPv6_SUFFIX=	+ipv6"
201
			echo "IPv6_SUFFIX=	+ipv6"
167
			echo ""
202
			echo ""
168
			IPv6SELECTED=YES
203
			IPv6SELECTED=YES
Lines 174-185 Link Here
174
				exit 1
209
				exit 1
175
			fi
210
			fi
176
			echo "MAN8+=		tlsmgr.8"
211
			echo "MAN8+=		tlsmgr.8"
177
			echo "POSTFIX_CCARGS+=	-DHAS_SSL -I/usr/include/openssl"
212
			echo "USE_OPENSSL=	yes"
178
			echo "POSTFIX_AUXLIBS+=	-lssl -lcrypto"
213
			echo "POSTFIX_CCARGS+=	-DHAS_SSL -I\${OPENSSLINC}"
179
			echo "PATCH_SITES+=	ftp://ftp.stack.nl/pub/postfix/tls+ipv6/1.8/"
214
			echo "POSTFIX_AUXLIBS+=	-L\${OPENSSLLIB} -lssl -lcrypto"
180
			echo "PATCHFILES+=	tls+ipv6-1.8-pf-1.1.11-20021115.patch"
215
			echo "PATCH_SITES+=	http://www.ipnet6.org/postfix/download/"
216
			echo "PATCHFILES+=	tls+ipv6-1.15-pf-2.0.12-20030621.patch.gz"
181
			echo "PATCH_DIST_STRIP=	-p1"
217
			echo "PATCH_DIST_STRIP=	-p1"
182
			echo "TLS_SUFFIX=	+ipv6+tls"
218
			echo "TLS_SUFFIX=	+tls+ipv6"
183
			SUB_TLS=""
219
			SUB_TLS=""
184
			;;
220
			;;
185
		*)
221
		*)
Lines 198-201 Link Here
198
# we ask the configure questions) doesn't pick up the extensions, but
234
# we ask the configure questions) doesn't pick up the extensions, but
199
# any subsequent build will.  so "make; make install" will build twice.
235
# any subsequent build will.  so "make; make install" will build twice.
200
# don't do this for now.
236
# don't do this for now.
201
#echo "PKGNAMESUFFIX=	\${PCRE_SUFFIX}\${SASL_SUFFIX}\${DB3_SUFFIX}\${MYSQL_SUFFIX}\${PGSQL_SUFFIX}\${OPENLDAP_SUFFIX}\${TLS_SUFFIX}\${IPv6_SUFFIX}"
237
#echo "PKGNAMESUFFIX=	\${NOPCRE_SUFFIX}\${SASL_SUFFIX}\${DB_SUFFIX}\${MYSQL_SUFFIX}\${PGSQL_SUFFIX}\${OPENLDAP_SUFFIX}\${TLS_SUFFIX}\${IPv6_SUFFIX}"

Return to bug 54767