move to postfix release 2.1 and snapshot 2.2

- enable SMTP over SSL/TLS by default
- enable IPv6 by default
- enable PRE by default
- keep sasl2/ldap/mysql/pgsql as flavours
This commit is contained in:
jakob 2004-04-25 10:36:39 +00:00
parent 70e53b0530
commit b675939442
21 changed files with 318 additions and 369 deletions

View File

@ -1,15 +1,13 @@
# $OpenBSD: Makefile,v 1.41 2004/02/16 08:54:13 jakob Exp $
# $OpenBSD: Makefile,v 1.42 2004/04/25 10:36:39 jakob Exp $
SUBDIR+= stable
SUBDIR+= stable,tls
SUBDIR+= stable,tls,ldap
SUBDIR+= stable,tls,mysql
SUBDIR+= stable,tls,sasl2,pcre
SUBDIR+= stable,ldap
SUBDIR+= stable,mysql
SUBDIR+= stable,sasl2
SUBDIR+= snapshot
SUBDIR+= snapshot,tls
SUBDIR+= snapshot,tls,ldap
SUBDIR+= snapshot,tls,mysql
SUBDIR+= snapshot,tls,sasl2,pcre
#SUBDIR+= snapshot
#SUBDIR+= snapshot,ldap
#SUBDIR+= snapshot,mysql
#SUBDIR+= snapshot,sasl2
.include <bsd.port.subdir.mk>

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile.inc,v 1.36 2004/04/01 08:11:17 jakob Exp $
# $OpenBSD: Makefile.inc,v 1.37 2004/04/25 10:36:39 jakob Exp $
COMMENT= "fast, secure sendmail replacement"
@ -16,12 +16,6 @@ DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
HOMEPAGE= http://www.postfix.org/
TLSHOMEPAGE= http://www.aet.tu-cottbus.de/personen/jaenicke/pfixtls/
SUBST_VARS+= TLSHOMEPAGE
IPV6HOMEPAGE= http://www.ipnet6.org/postfix/
SUBST_VARS+= IPV6HOMEPAGE
PERMIT_PACKAGE_CDROM= "cannot be sold, see section 4 of license"
PERMIT_PACKAGE_FTP= yes
PERMIT_DISTFILES_CDROM= "cannot be sold, see section 4 of license"
@ -36,16 +30,13 @@ ALL_TARGET= default
NO_REGRESS= Yes
FLAVORS+= pcre sasl2 ldap mysql tls ipv6
FLAVOR?=
.if ${FLAVOR:L:Mpcre}
# always include pcre
LIB_DEPENDS+= pcre::devel/pcre
MAKE_CCARGS+= -DHAS_PCRE -I${LOCALBASE}/include
MAKE_AUXLIBS+= -L${LOCALBASE}/lib -lpcre
.else
MAKE_CCARGS+= -DNO_PCRE
.endif
FLAVORS+= sasl2 ldap mysql pgsql
FLAVOR?=
.if ${FLAVOR:L:Msasl2}
LIB_DEPENDS+= sasl2::security/cyrus-sasl2
@ -65,112 +56,35 @@ MAKE_CCARGS+= -I${LOCALBASE}/include/mysql -DHAS_MYSQL
MAKE_AUXLIBS+= -L${LOCALBASE}/lib/mysql -lmysqlclient
.endif
.if ${FLAVOR:L:Mtls}
MAKE_CCARGS+= -DHAS_SSL
MAKE_AUXLIBS+= -lssl -lcrypto
.if ${FLAVOR:L:Mipv6}
.if defined(IPV6VERSION)
PKGNAME:= ${PKGNAME}.ipv6+tlsr${IPV6VERSION}
IPV6TLSDISTNAME= tls+ipv6-${IPV6VERSION}-pf-${IPV6PFIXVERSION}
IPV6TLSPATCH= ${IPV6TLSDISTNAME}.patch.gz
DISTFILES+= ${IPV6TLSPATCH}:1
MASTER_SITES1= ftp://ftp.stack.nl/pub/postfix/tls+ipv6/${IPV6VERSION}/
post-patch-tls:
@echo "===> Applying IPv6+TLS patches for ${FULLPKGNAME}"
@mv ${WRKDIST}/conf/master.cf ${WRKDIST}/conf/master.cf.save
@cp ${WRKDIST}/conf/master.cf.orig ${WRKDIST}/conf/master.cf
@cd ${WRKDIST} && gzcat ${DISTDIR}/postfix/${IPV6TLSPATCH} | \
${PATCH} -st -p1
@mv ${WRKDIST}/conf/master.cf.save ${WRKDIST}/conf/master.cf
@rm ${WRKDIST}/conf/master.cf.orig
@cd ${WRKDIST} && ${PATCH} -st -p0 < ${FILESDIR}/patch-tls-master.cf
post-install-tls:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/postfix/tls
${INSTALL_DATA} ${WRKSRC}/pfixtls/doc/* ${PREFIX}/share/doc/postfix/tls
.else
BROKEN= "TLS+IPv6 patches not yet available for this version"
.if ${FLAVOR:L:Mpgsql}
LIB_DEPENDS+= pq.3:postgresql-clients-7.*:databases/postgresql
MAKE_CCARGS+= -I${LOCALBASE}/include/postgresql -DHAS_PGSQL
MAKE_AUXLIBS+= -L${LOCALBASE}/lib -lpq
.endif
.else
.if defined(TLSVERSION)
PKGNAME:= ${PKGNAME}.tls${TLSVERSION}
TLSDISTNAME= pfixtls-${TLSVERSION}-${TLSPFIXVERSION}-${TLSSSLVERSION}
MASTER_SITES0= ftp://ftp.aet.tu-cottbus.de/pub/postfix_tls/ \
ftp://ftp.aet.tu-cottbus.de/pub/postfix_tls/old/
DISTFILES+= ${TLSDISTNAME}${EXTRACT_SUFX}:0
post-patch-tls:
@echo "===> Applying TLS patches for ${FULLPKGNAME}"
@mv ${WRKDIST}/conf/master.cf ${WRKDIST}/conf/master.cf.save
@cp ${WRKDIST}/conf/master.cf.orig ${WRKDIST}/conf/master.cf
@cd ${WRKDIST} && ${PATCH} -st -p1 < ${WRKDIR}/${TLSDISTNAME}/pfixtls.diff
@mv ${WRKDIST}/conf/master.cf.save ${WRKDIST}/conf/master.cf
@rm ${WRKDIST}/conf/master.cf.orig
@cd ${WRKDIST} && ${PATCH} -st -p0 < ${FILESDIR}/patch-tls-master.cf
post-install-tls:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/postfix/tls
${INSTALL_DATA} ${WRKDIR}/${TLSDISTNAME}/doc/* \
${PREFIX}/share/doc/postfix/tls
.else
BROKEN= "TLS patches not yet available for this version"
.endif
.endif
.else
.if ${FLAVOR:L:Mipv6}
.if defined(IPV6VERSION)
PKGNAME:= ${PKGNAME}.ipv6r${IPV6VERSION}
IPV6DISTNAME= ipv6-${IPV6VERSION}-pf-${IPV6PFIXVERSION}
MASTER_SITES1= ftp://ftp.stack.nl/pub/postfix/tls+ipv6/${IPV6VERSION}/
PATCHFILES+= ${IPV6DISTNAME}.patch.gz:1
PATCH_DIST_STRIP= -p1
.else
BROKEN= "IPv6 patches not yet available for this version"
.endif
.endif
post-patch-tls:
post-install-tls:
.endif
post-patch: post-patch-tls
@rm ${WRKDIST}/conf/*.orig
post-install: post-install-tls
do-configure:
cd ${WRKSRC}; ${MAKE_PROGRAM} makefiles \
@cd ${WRKSRC}; ${MAKE_PROGRAM} makefiles \
CC="${CC}" OPT="${CFLAGS}" DEBUG="${MAKE_DEBUG}" \
CCARGS='${MAKE_CCARGS}' AUXLIBS="${MAKE_AUXLIBS}"
do-install:
(cd ${WRKSRC}; sh postfix-install \
@(cd ${WRKSRC}; sh postfix-install \
-non-interactive \
mail_owner=_postfix \
setgid_group=_postdrop \
install_root=${WRKINST} \
daemon_directory=${TRUEPREFIX}/libexec/postfix \
command_directory=${TRUEPREFIX}/sbin \
sendmail_path=${TRUEPREFIX}/sbin/sendmail \
newalises_path=${TRUEPREFIX}/sbin/newaliases \
mailq_path=${TRUEPREFIX}/sbin/mailq \
mail_owner=_postfix \
setgid_group=_postdrop \
manpage_directory=${TRUEPREFIX}/man \
readme_directory=${TRUEPREFIX}/share/doc/postfix/readme \
html_directory=${TRUEPREFIX}/share/doc/postfix/html \
)
${INSTALL_SCRIPT} ${FILESDIR}/postfix-enable ${PREFIX}/sbin
${INSTALL_SCRIPT} ${FILESDIR}/postfix-disable ${PREFIX}/sbin
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/postfix
mv ${WRKINST}${SYSCONFDIR}/postfix/* ${PREFIX}/share/examples/postfix
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/postfix/html
${INSTALL_DATA} ${WRKSRC}/html/*.html ${PREFIX}/share/doc/postfix/html
${INSTALL_DATA} ${WRKSRC}/html/*.gif ${PREFIX}/share/doc/postfix/html
rm -fr ${WRKINST}/var/spool/postfix
@${INSTALL_SCRIPT} ${FILESDIR}/postfix-enable ${PREFIX}/sbin
@${INSTALL_SCRIPT} ${FILESDIR}/postfix-disable ${PREFIX}/sbin
@${INSTALL_DATA_DIR} ${PREFIX}/share/examples/postfix
@mv ${WRKINST}${SYSCONFDIR}/postfix/* ${PREFIX}/share/examples/postfix
@rm -fr ${WRKINST}/var/spool/postfix

View File

@ -1,6 +1,6 @@
# $OpenBSD: Makefile,v 1.82 2004/02/12 22:24:55 jakob Exp $
# $OpenBSD: Makefile,v 1.83 2004/04/25 10:36:39 jakob Exp $
VERSION= 2.0.18-20040209
VERSION= 2.2-20040422
DISTNAME= postfix-${VERSION}
PKGNAME= postfix-${VERSION}
@ -9,20 +9,6 @@ MAINTAINER= Jakob Schlyter <jakob@openbsd.org>
MASTER_SITES= ${MASTER_SITE_POSTFIX:=experimental/}
TLSVERSION= 0.8.18
TLSPFIXVERSION= 2.0.18-20040205
TLSSSLVERSION= 0.9.7c
IPV6VERSION= 1.21a
IPV6PFIXVERSION=2.0.18-20040205
FLAVORS+= pgsql
FLAVOR?=
.if ${FLAVOR:L:Mpgsql}
LIB_DEPENDS+= pq.3:postgresql-clients-7.*:databases/postgresql
MAKE_CCARGS+= -I${LOCALBASE}/include/postgresql -DHAS_PGSQL
MAKE_AUXLIBS+= -L${LOCALBASE}/lib -lpq
.endif
BROKEN= "No TLS/IPv6 patch availible"
.include <bsd.port.mk>

View File

@ -1,12 +1,3 @@
MD5 (postfix/ipv6-1.21a-pf-2.0.18-20040205.patch.gz) = 8edc76bbed1080426d8d41bc3b1b3f90
MD5 (postfix/pfixtls-0.8.18-2.0.18-20040205-0.9.7c.tar.gz) = ea0cab58f33477ed4f9117b32b185284
MD5 (postfix/postfix-2.0.18-20040209.tar.gz) = 66202b05efdd1547a51454d994e24f08
MD5 (postfix/tls+ipv6-1.21a-pf-2.0.18-20040205.patch.gz) = 326cf867532bcbc79a20329567ddfbfd
RMD160 (postfix/ipv6-1.21a-pf-2.0.18-20040205.patch.gz) = a1ed82d5bdf304041c7fa7f9d1126ef7c3fd86b9
RMD160 (postfix/pfixtls-0.8.18-2.0.18-20040205-0.9.7c.tar.gz) = 4640613de288423f44bc43ddeb91fc19d4738287
RMD160 (postfix/postfix-2.0.18-20040209.tar.gz) = dfffd3c9feab7efeb1e3bc9742bbc74b4c9a838f
RMD160 (postfix/tls+ipv6-1.21a-pf-2.0.18-20040205.patch.gz) = 9e47a42430face3e56718ec234c3750c2edb84d1
SHA1 (postfix/ipv6-1.21a-pf-2.0.18-20040205.patch.gz) = cb8839c237766876fac3e6f91a7fd050bb0fe126
SHA1 (postfix/pfixtls-0.8.18-2.0.18-20040205-0.9.7c.tar.gz) = fc426f51605111d8b5f53c0757380d71a2ebb244
SHA1 (postfix/postfix-2.0.18-20040209.tar.gz) = 053f88ca3ce04c1439523c478e907f79095b1169
SHA1 (postfix/tls+ipv6-1.21a-pf-2.0.18-20040205.patch.gz) = 4c3c1faa7a942db652747db1c7f71ba7c0e3178d
MD5 (postfix/postfix-2.2-20040422.tar.gz) = df2c7485ea47402020ac3c03c38da6e0
RMD160 (postfix/postfix-2.2-20040422.tar.gz) = 9f2761de37fc193088fa8bc19168fa3216309ea8
SHA1 (postfix/postfix-2.2-20040422.tar.gz) = a89e0df45c34b27ecaa8c5a06ead760df75aac55

View File

@ -1,11 +0,0 @@
--- conf/master.cf.orig Tue Jan 28 17:28:45 2003
+++ conf/master.cf Tue Jan 28 17:30:06 2003
@@ -70,6 +70,8 @@
# (yes) (yes) (yes) (never) (100)
# ==========================================================================
smtp inet n - - - - smtpd
+#smtps inet n - - - - smtpd -o smtpd_tls_wrappermode=yes -o smtpd_sasl_auth_enable=yes
+#submission inet n - - - - smtpd -o smtpd_enforce_tls=yes -o smtpd_sasl_auth_enable=yes
#628 inet n - - - - qmqpd
pickup fifo n - - 60 1 pickup
cleanup unix n - - - 0 cleanup

View File

@ -1,29 +1,36 @@
$OpenBSD: patch-master.cf,v 1.11 2004/01/26 13:43:02 jakob Exp $
$OpenBSD: patch-master.cf,v 1.12 2004/04/25 10:36:39 jakob Exp $
--- conf/master.cf.orig 2004-01-04 21:51:17.000000000 +0100
+++ conf/master.cf 2004-01-26 14:36:29.000000000 +0100
@@ -77,28 +77,28 @@
--- conf/master.cf.orig Sat Apr 24 23:39:28 2004
+++ conf/master.cf Sat Apr 24 23:42:33 2004
@@ -77,33 +77,33 @@
# service type private unpriv chroot wakeup maxproc command + args
# (yes) (yes) (yes) (never) (100)
# ==========================================================================
-smtp inet n - n - - smtpd
-#smtps inet n - n - - smtpd
+smtp inet n - - - - smtpd
+#smtps inet n - - - - smtpd
# -o smtpd_tls_wrappermode=yes -o smtpd_sasl_auth_enable=yes
#submission inet n - n - - smtpd
# -o smtpd_enforce_tls=yes -o smtpd_sasl_auth_enable=yes -o smtpd_etrn_restrictions=reject
-#628 inet n - n - - qmqpd
-pickup fifo n - n 60 1 pickup
-cleanup unix n - n - 0 cleanup
-qmgr fifo n - n 300 1 qmgr
-#qmgr fifo n - n 300 1 oqmgr
-#tlsmgr fifo - - n 300 1 tlsmgr
-rewrite unix - - n - - trivial-rewrite
-bounce unix - - n - 0 bounce
-defer unix - - n - 0 bounce
-trace unix - - n - 0 bounce
-verify unix - - n - 1 verify
-flush unix n - n 1000? 0 flush
+smtp inet n - - - - smtpd
+#628 inet n - - - - qmqpd
+pickup fifo n - - 60 1 pickup
+cleanup unix n - - - 0 cleanup
+qmgr fifo n - - 300 1 qmgr
+#qmgr fifo n - - 300 1 oqmgr
+#tlsmgr fifo - - - 300 1 tlsmgr
+rewrite unix - - - - - trivial-rewrite
+bounce unix - - - - 0 bounce
+defer unix - - - - 0 bounce

View File

@ -3,13 +3,16 @@ same time being sendmail compatible enough to not upset existing users.
Thus, the outside has a sendmail-ish flavor, but the inside is completely
different.
Port flavors:
Extra features always included:
- SMTP over SSL/TLS (${TLSHOMEPAGE})
- IPv6 (${IPV6HOMEPAGE})
- table lookups using PCRE (Perl-Compatible Regular Expression)
Optional fetures included using flavors:
- authenticated SMTP using Cyrus SASL v2
- table lookups using LDAP
- table lookups using MySQL
- table lookups using PostgreSQL
ipv6 support IPv6 (${IPV6HOMEPAGE})
tls support SMTP over SSL/TLS (${TLSHOMEPAGE})
sasl support authenticated SMTP using Cyrus SASL v1 (deprecated)
sasl2 support authenticated SMTP using Cyrus SASL v2 (recommended)
pcre support table lookups using PCRE (Perl-Compatible Regular Expression)
ldap support table lookups using LDAP
mysql support table lookups using MySQL
pgsql support table lookups using PostgreSQL

View File

@ -1,2 +0,0 @@
@comment $OpenBSD: PFRAG.ipv6,v 1.1 2004/02/08 12:23:18 jakob Exp $
share/doc/postfix/readme/IPV6_README

View File

@ -1,20 +0,0 @@
@comment $OpenBSD: PFRAG.tls,v 1.7 2003/11/24 18:50:08 jakob Exp $
libexec/postfix/tlsmgr
man/man8/tlsmgr.8
share/doc/postfix/tls/conf.html
share/doc/postfix/tls/index.html
share/doc/postfix/tls/install.html
share/doc/postfix/tls/intro.html
share/doc/postfix/tls/loadCAcert.pl
share/doc/postfix/tls/myownca.html
share/doc/postfix/tls/prng.html
share/doc/postfix/tls/references.html
share/doc/postfix/tls/relaycert.html
share/doc/postfix/tls/rfc2246.txt
share/doc/postfix/tls/rfc2487.txt
share/doc/postfix/tls/rfc3207.txt
share/doc/postfix/tls/security.html
share/doc/postfix/tls/setup.html
share/doc/postfix/tls/test.html
share/examples/postfix/sample-tls.cf
@dirrm share/doc/postfix/tls

View File

@ -1,8 +1,5 @@
@comment $OpenBSD: PLIST,v 1.24 2004/02/08 12:23:18 jakob Exp $
@comment $OpenBSD: PLIST,v 1.25 2004/04/25 10:36:39 jakob Exp $
@pkgcfl postfix-*
%%tls%%
%%ipv6%%
libexec/postfix/anvil
libexec/postfix/bounce
libexec/postfix/cleanup
libexec/postfix/error
@ -21,6 +18,7 @@ libexec/postfix/showq
libexec/postfix/smtp
libexec/postfix/smtpd
libexec/postfix/spawn
libexec/postfix/tlsmgr
libexec/postfix/trivial-rewrite
libexec/postfix/verify
libexec/postfix/virtual
@ -44,13 +42,15 @@ man/man5/body_checks.5
man/man5/canonical.5
man/man5/cidr_table.5
man/man5/header_checks.5
man/man5/ldap_table.5
man/man5/mysql_table.5
man/man5/pcre_table.5
man/man5/pgsql_table.5
man/man5/postconf.5
man/man5/regexp_table.5
man/man5/relocated.5
man/man5/tcp_table.5
man/man5/transport.5
man/man5/virtual.5
man/man8/anvil.8
man/man8/bounce.8
man/man8/cleanup.8
man/man8/defer.8
@ -69,6 +69,7 @@ man/man8/showq.8
man/man8/smtp.8
man/man8/smtpd.8
man/man8/spawn.8
man/man8/tlsmgr.8
man/man8/trace.8
man/man8/trivial-rewrite.8
man/man8/verify.8
@ -88,43 +89,76 @@ sbin/postmap
sbin/postqueue
sbin/postsuper
sbin/sendmail
share/doc/postfix/html/ADDRESS_CLASS_README.html
share/doc/postfix/html/ADDRESS_REWRITING_README.html
share/doc/postfix/html/ADDRESS_VERIFICATION_README.html
share/doc/postfix/html/BACKSCATTER_README.html
share/doc/postfix/html/BASIC_CONFIGURATION_README.html
share/doc/postfix/html/BUILTIN_FILTER_README.html
share/doc/postfix/html/CONTENT_INSPECTION_README.html
share/doc/postfix/html/CYRUS_README.html
share/doc/postfix/html/DATABASE_README.html
share/doc/postfix/html/DB_README.html
share/doc/postfix/html/DEBUG_README.html
share/doc/postfix/html/ETRN_README.html
share/doc/postfix/html/FILTER_README.html
share/doc/postfix/html/INSTALL.html
share/doc/postfix/html/LDAP_README.html
share/doc/postfix/html/LINUX_README.html
share/doc/postfix/html/LMTP_README.html
share/doc/postfix/html/LOCAL_RECIPIENT_README.html
share/doc/postfix/html/MAILDROP_README.html
share/doc/postfix/html/MYSQL_README.html
share/doc/postfix/html/NFS_README.html
share/doc/postfix/html/OVERVIEW.html
share/doc/postfix/html/PACKAGE_README.html
share/doc/postfix/html/PCRE_README.html
share/doc/postfix/html/PGSQL_README.html
share/doc/postfix/html/QMQP_README.html
share/doc/postfix/html/QSHAPE_README.html
share/doc/postfix/html/RESTRICTION_CLASS_README.html
share/doc/postfix/html/SASL_README.html
share/doc/postfix/html/SCHEDULER_README.html
share/doc/postfix/html/SMTPD_ACCESS_README.html
share/doc/postfix/html/SMTPD_POLICY_README.html
share/doc/postfix/html/SMTPD_PROXY_README.html
share/doc/postfix/html/STANDARD_CONFIGURATION_README.html
share/doc/postfix/html/TUNING_README.html
share/doc/postfix/html/ULTRIX_README.html
share/doc/postfix/html/UUCP_README.html
share/doc/postfix/html/VERP_README.html
share/doc/postfix/html/VIRTUAL_README.html
share/doc/postfix/html/XCLIENT_README.html
share/doc/postfix/html/XFORWARD_README.html
share/doc/postfix/html/access.5.html
share/doc/postfix/html/aliases.5.html
share/doc/postfix/html/anvil.8.html
share/doc/postfix/html/architecture.html
share/doc/postfix/html/backstage.html
share/doc/postfix/html/basic.html
share/doc/postfix/html/big-picture.gif
share/doc/postfix/html/big-picture.html
share/doc/postfix/html/bounce.8.html
share/doc/postfix/html/canonical.5.html
share/doc/postfix/html/cidr_table.5.html
share/doc/postfix/html/cleanup.8.html
share/doc/postfix/html/commands.html
share/doc/postfix/html/defer.8.html
share/doc/postfix/html/delivering.html
share/doc/postfix/html/error.8.html
share/doc/postfix/html/faq.html
share/doc/postfix/html/flush.8.html
share/doc/postfix/html/goals.html
share/doc/postfix/html/header_checks.5.html
share/doc/postfix/html/inbound.gif
share/doc/postfix/html/index.html
share/doc/postfix/html/ldap_table.5.html
share/doc/postfix/html/lmtp.8.html
share/doc/postfix/html/local.8.html
share/doc/postfix/html/mailq.1.html
share/doc/postfix/html/master.8.html
share/doc/postfix/html/motivation.html
share/doc/postfix/html/mysql_table.5.html
share/doc/postfix/html/newaliases.1.html
share/doc/postfix/html/oqmgr.8.html
share/doc/postfix/html/outbound.gif
share/doc/postfix/html/pcre_table.5.html
share/doc/postfix/html/pgsql_table.5.html
share/doc/postfix/html/pickup.8.html
share/doc/postfix/html/pipe.8.html
share/doc/postfix/html/postalias.1.html
share/doc/postfix/html/postcat.1.html
share/doc/postfix/html/postconf.1.html
share/doc/postfix/html/postconf.5.html
share/doc/postfix/html/postdrop.1.html
share/doc/postfix/html/postfix-logo.jpg
share/doc/postfix/html/postfix.1.html
share/doc/postfix/html/postkick.1.html
share/doc/postfix/html/postlock.1.html
@ -134,61 +168,83 @@ share/doc/postfix/html/postqueue.1.html
share/doc/postfix/html/postsuper.1.html
share/doc/postfix/html/proxymap.8.html
share/doc/postfix/html/qmgr.8.html
share/doc/postfix/html/qmqp-sink.1.html
share/doc/postfix/html/qmqp-source.1.html
share/doc/postfix/html/qmqpd.8.html
share/doc/postfix/html/queuing.html
share/doc/postfix/html/rate.html
share/doc/postfix/html/receiving.html
share/doc/postfix/html/qshape.1.html
share/doc/postfix/html/regexp_table.5.html
share/doc/postfix/html/relocated.5.html
share/doc/postfix/html/resource.html
share/doc/postfix/html/rewrite.html
share/doc/postfix/html/security.html
share/doc/postfix/html/sendmail.1.html
share/doc/postfix/html/showq.8.html
share/doc/postfix/html/small-picture.gif
share/doc/postfix/html/smtp-sink.1.html
share/doc/postfix/html/smtp-source.1.html
share/doc/postfix/html/smtp.8.html
share/doc/postfix/html/smtpd.8.html
share/doc/postfix/html/spawn.8.html
share/doc/postfix/html/tcp_table.5.html
share/doc/postfix/html/trace.8.html
share/doc/postfix/html/transport.5.html
share/doc/postfix/html/trivial-rewrite.8.html
share/doc/postfix/html/uce.html
share/doc/postfix/html/verify.8.html
share/doc/postfix/html/virtual.5.html
share/doc/postfix/html/virtual.8.html
share/doc/postfix/readme/AAAREADME
share/doc/postfix/readme/ADDRESS_CLASS_README
share/doc/postfix/readme/ADDRESS_REWRITING_README
share/doc/postfix/readme/ADDRESS_VERIFICATION_README
share/doc/postfix/readme/BACKSCATTER_README
share/doc/postfix/readme/BASIC_CONFIGURATION_README
share/doc/postfix/readme/BUILTIN_FILTER_README
share/doc/postfix/readme/CONTENT_INSPECTION_README
share/doc/postfix/readme/DATABASE_README
share/doc/postfix/readme/DB_README
share/doc/postfix/readme/DEBUG_README
share/doc/postfix/readme/ETRN_README
share/doc/postfix/readme/FILTER_README
share/doc/postfix/readme/HOSTING_README
share/doc/postfix/readme/INSTALL
share/doc/postfix/readme/IPV6_README
share/doc/postfix/readme/LDAP_README
share/doc/postfix/readme/LINUX_README
share/doc/postfix/readme/LMTP_README
share/doc/postfix/readme/LOCAL_RECIPIENT_README
share/doc/postfix/readme/MACOSX_README
share/doc/postfix/readme/MAILDROP_README
share/doc/postfix/readme/MYSQL_README
share/doc/postfix/readme/NFS_README
share/doc/postfix/readme/OVERVIEW
share/doc/postfix/readme/PACKAGE_README
share/doc/postfix/readme/PCRE_README
share/doc/postfix/readme/PGSQL_README
share/doc/postfix/readme/QMQP_README
share/doc/postfix/readme/QSHAPE_README
share/doc/postfix/readme/RELEASE_NOTES
share/doc/postfix/readme/RESTRICTION_CLASS_README
share/doc/postfix/readme/SASL_README
share/doc/postfix/readme/SCHEDULER_README
share/doc/postfix/readme/SMTPD_ACCESS_README
share/doc/postfix/readme/SMTPD_POLICY_README
share/doc/postfix/readme/SMTPD_PROXY_README
share/doc/postfix/readme/STANDARD_CONFIGURATION_README
share/doc/postfix/readme/TUNING_README
share/doc/postfix/readme/ULTRIX_README
share/doc/postfix/readme/UUCP_README
share/doc/postfix/readme/VERP_README
share/doc/postfix/readme/VIRTUAL_README
share/doc/postfix/readme/XCLIENT_README
share/doc/postfix/readme/XFORWARD_README
share/doc/postfix/tls/conf.html
share/doc/postfix/tls/index.html
share/doc/postfix/tls/install.html
share/doc/postfix/tls/intro.html
share/doc/postfix/tls/loadCAcert.pl
share/doc/postfix/tls/myownca.html
share/doc/postfix/tls/prng.html
share/doc/postfix/tls/references.html
share/doc/postfix/tls/relaycert.html
share/doc/postfix/tls/rfc2246.txt
share/doc/postfix/tls/rfc2487.txt
share/doc/postfix/tls/rfc3207.txt
share/doc/postfix/tls/security.html
share/doc/postfix/tls/setup.html
share/doc/postfix/tls/test.html
share/examples/postfix/LICENSE
share/examples/postfix/access
share/examples/postfix/aliases
@ -202,31 +258,10 @@ share/examples/postfix/post-install
share/examples/postfix/postfix-files
share/examples/postfix/postfix-script
share/examples/postfix/relocated
share/examples/postfix/sample-aliases.cf
share/examples/postfix/sample-auth.cf
share/examples/postfix/sample-compatibility.cf
share/examples/postfix/sample-debug.cf
share/examples/postfix/sample-flush.cf
share/examples/postfix/sample-ldap.cf
share/examples/postfix/sample-lmtp.cf
share/examples/postfix/sample-local.cf
share/examples/postfix/sample-mime.cf
share/examples/postfix/sample-misc.cf
share/examples/postfix/sample-pgsql-aliases.cf
share/examples/postfix/sample-qmqpd.cf
share/examples/postfix/sample-rate.cf
share/examples/postfix/sample-relocated.cf
share/examples/postfix/sample-resource.cf
share/examples/postfix/sample-rewrite.cf
share/examples/postfix/sample-scheduler.cf
share/examples/postfix/sample-smtp.cf
share/examples/postfix/sample-smtpd.cf
share/examples/postfix/sample-transport.cf
share/examples/postfix/sample-verify.cf
share/examples/postfix/sample-virtual.cf
share/examples/postfix/transport
share/examples/postfix/virtual
@dirrm share/examples/postfix
@dirrm share/doc/postfix/tls
@dirrm share/doc/postfix/readme
@dirrm share/doc/postfix/html
@dirrm share/doc/postfix

View File

@ -1,6 +1,6 @@
# $OpenBSD: Makefile,v 1.59 2004/03/31 09:40:01 jakob Exp $
# $OpenBSD: Makefile,v 1.60 2004/04/25 10:36:40 jakob Exp $
VERSION= 2.0.19
VERSION= 2.1.0
DISTNAME= postfix-${VERSION}
PKGNAME= postfix-${VERSION}
@ -9,11 +9,27 @@ MAINTAINER= Jakob Schlyter <jakob@openbsd.org>
MASTER_SITES= ${MASTER_SITE_POSTFIX:=official/}
TLSVERSION= 0.8.16
TLSPFIXVERSION= 2.0.18
TLSSSLVERSION= 0.9.7c
IPV6VERSION= 1.22
IPV6PFIXVERSION=2.0.19
IPV6POSTFIX= 2.1.0
TLSHOMEPAGE= http://www.aet.tu-cottbus.de/personen/jaenicke/pfixtls/
SUBST_VARS+= TLSHOMEPAGE
IPV6HOMEPAGE= http://www.ipnet6.org/postfix/
SUBST_VARS+= IPV6HOMEPAGE
MAKE_CCARGS+= -DHAS_SSL
MAKE_AUXLIBS+= -lssl -lcrypto
PATCH_DIST_STRIP=-p1
PATCHFILES+= tls+ipv6-${IPV6VERSION}-pf-${IPV6POSTFIX}.patch.gz:0
MASTER_SITES0= ftp://ftp.suse.com/pub/people/choeger/postfix-2.1/source/
post-patch:
@find ${WRKSRC} -type f -name '*.bak.orig' -print | xargs rm
post-install:
@${INSTALL_DATA_DIR} ${PREFIX}/share/doc/postfix/tls
@${INSTALL_DATA} ${WRKSRC}/pfixtls/doc/* ${PREFIX}/share/doc/postfix/tls
.include <bsd.port.mk>

View File

@ -1,12 +1,6 @@
MD5 (postfix/postfix-2.0.19.tar.gz) = 3515ba531b0fadd0e54ef688797d393e
MD5 (postfix/tls+ipv6-1.22-pf-2.0.19.patch.gz) = e02040e1e773e6db055cc467e8d1db2e
RMD160 (postfix/postfix-2.0.19.tar.gz) = 9bd7b81ae2d150412f282c291baead3d8393165e
RMD160 (postfix/tls+ipv6-1.22-pf-2.0.19.patch.gz) = f3b6ac93498da3a2ae4f74267cb7394024944912
SHA1 (postfix/postfix-2.0.19.tar.gz) = 5248f4d0af530260b6715da3a973557ae63df382
SHA1 (postfix/tls+ipv6-1.22-pf-2.0.19.patch.gz) = a2fae0097aff9b3d36e7a4938549e4f8d3b9f1c1
MD5 (postfix/pfixtls-0.8.16-2.0.18-0.9.7c.tar.gz) = 2d9b07d3847a06b77db3be25973acf14
RMD160 (postfix/pfixtls-0.8.16-2.0.18-0.9.7c.tar.gz) = 34822ba8852e29770c2cc96a629ada936e11164e
SHA1 (postfix/pfixtls-0.8.16-2.0.18-0.9.7c.tar.gz) = 33fb818493789b3f1458b7073fa1bca5c03f0aa9
MD5 (postfix/ipv6-1.22-pf-2.0.19.patch.gz) = df37cd613167a070852278de78ee3c97
RMD160 (postfix/ipv6-1.22-pf-2.0.19.patch.gz) = 0456a421544bfdc939e89e2c7642330556c78c63
SHA1 (postfix/ipv6-1.22-pf-2.0.19.patch.gz) = bdc61ebc6e45cc631f8c78eb44249de29b19e078
MD5 (postfix/postfix-2.1.0.tar.gz) = 286856c9597cfa244c3b6133dce12749
MD5 (postfix/tls+ipv6-1.22-pf-2.1.0.patch.gz) = b900c8a2fc99256f6a4c752ffbfc54db
RMD160 (postfix/postfix-2.1.0.tar.gz) = 0a3490610961dc58a5f2114fe68e2d685dc2e6a8
RMD160 (postfix/tls+ipv6-1.22-pf-2.1.0.patch.gz) = 1c64dffe47f0ec415a8b95c6e65bfb5b081c708d
SHA1 (postfix/postfix-2.1.0.tar.gz) = e47da6dd31b404da092f8c253a8397d68ddf6098
SHA1 (postfix/tls+ipv6-1.22-pf-2.1.0.patch.gz) = a716187f15a09559eb75f080ae10263b008e2a68

View File

@ -1,11 +0,0 @@
--- conf/master.cf.orig Tue Jan 28 17:28:45 2003
+++ conf/master.cf Tue Jan 28 17:30:06 2003
@@ -70,6 +70,8 @@
# (yes) (yes) (yes) (never) (100)
# ==========================================================================
smtp inet n - - - - smtpd
+#smtps inet n - - - - smtpd -o smtpd_tls_wrappermode=yes -o smtpd_sasl_auth_enable=yes
+#submission inet n - - - - smtpd -o smtpd_enforce_tls=yes -o smtpd_sasl_auth_enable=yes
#628 inet n - - - - qmqpd
pickup fifo n - - 60 1 pickup
cleanup unix n - - - 0 cleanup

View File

@ -1,6 +1,6 @@
#!/bin/sh
#
# $OpenBSD: postfix-disable,v 1.2 2002/12/25 11:51:23 jakob Exp $
# $OpenBSD: postfix-disable,v 1.3 2004/04/25 10:36:40 jakob Exp $
if [ ! -f /etc/mailer.conf.pre-postfix ]; then
echo "can't find /etc/mailer.conf.pre-postfix, postfix not disabled"

View File

@ -1,6 +1,6 @@
#!/bin/sh
#
# $OpenBSD: postfix-enable,v 1.3 2002/12/25 11:51:23 jakob Exp $
# $OpenBSD: postfix-enable,v 1.4 2004/04/25 10:36:40 jakob Exp $
if [ -f /etc/mailer.conf.postfix ]; then
if [ -f /etc/mailer.conf ]; then

View File

@ -1,30 +1,41 @@
$OpenBSD: patch-master.cf,v 1.6 2003/01/28 16:41:32 jakob Exp $
$OpenBSD: patch-master.cf,v 1.7 2004/04/25 10:36:40 jakob Exp $
--- conf/master.cf.orig Thu Jan 16 13:44:58 2003
+++ conf/master.cf Sat Jan 25 14:18:07 2003
@@ -69,25 +69,25 @@
--- conf/master.cf.orig Sat Apr 24 23:39:28 2004
+++ conf/master.cf Sat Apr 24 23:42:33 2004
@@ -77,33 +77,33 @@
# service type private unpriv chroot wakeup maxproc command + args
# (yes) (yes) (yes) (never) (100)
# ==========================================================================
-smtp inet n - n - - smtpd
-#smtps inet n - n - - smtpd
+smtp inet n - - - - smtpd
+#smtps inet n - - - - smtpd
# -o smtpd_tls_wrappermode=yes -o smtpd_sasl_auth_enable=yes
#submission inet n - n - - smtpd
# -o smtpd_enforce_tls=yes -o smtpd_sasl_auth_enable=yes -o smtpd_etrn_restrictions=reject
-#628 inet n - n - - qmqpd
-pickup fifo n - n 60 1 pickup
-cleanup unix n - n - 0 cleanup
-qmgr fifo n - n 300 1 qmgr
-#qmgr fifo n - n 300 1 nqmgr
-#qmgr fifo n - n 300 1 oqmgr
-#tlsmgr fifo - - n 300 1 tlsmgr
-rewrite unix - - n - - trivial-rewrite
-bounce unix - - n - 0 bounce
-defer unix - - n - 0 bounce
-trace unix - - n - 0 bounce
-verify unix - - n - 1 verify
-flush unix n - n 1000? 0 flush
+smtp inet n - - - - smtpd
+#628 inet n - - - - qmqpd
+pickup fifo n - - 60 1 pickup
+cleanup unix n - - - 0 cleanup
+qmgr fifo n - - 300 1 qmgr
+#qmgr fifo n - - 300 1 nqmgr
+#qmgr fifo n - - 300 1 oqmgr
+#tlsmgr fifo - - - 300 1 tlsmgr
+rewrite unix - - - - - trivial-rewrite
+bounce unix - - - - 0 bounce
+defer unix - - - - 0 bounce
+trace unix - - - - 0 bounce
+verify unix - - - - 1 verify
+flush unix n - - 1000? 0 flush
proxymap unix - - n - - proxymap
-smtp unix - - n - - smtp
@ -39,7 +50,9 @@ $OpenBSD: patch-master.cf,v 1.6 2003/01/28 16:41:32 jakob Exp $
local unix - n n - - local
virtual unix - n n - - virtual
-lmtp unix - - n - - lmtp
-anvil unix - - n - 1 anvil
+lmtp unix - - - - - lmtp
+anvil unix - - - - 1 anvil
#
# Interfaces to non-Postfix software. Be sure to examine the manual
# pages of the non-Postfix software to find out what options it wants.

View File

@ -3,12 +3,16 @@ same time being sendmail compatible enough to not upset existing users.
Thus, the outside has a sendmail-ish flavor, but the inside is completely
different.
Port flavors:
Extra features always included:
- SMTP over SSL/TLS (${TLSHOMEPAGE})
- IPv6 (${IPV6HOMEPAGE})
- table lookups using PCRE (Perl-Compatible Regular Expression)
Optional fetures included using flavors:
- authenticated SMTP using Cyrus SASL v2
- table lookups using LDAP
- table lookups using MySQL
- table lookups using PostgreSQL
ipv6 support IPv6 (${IPV6HOMEPAGE})
tls support SMTP over SSL/TLS (${TLSHOMEPAGE})
sasl support authenticated SMTP using Cyrus SASL v1 (deprecated)
sasl2 support authenticated SMTP using Cyrus SASL v2 (recommended)
pcre support table lookups using PCRE (Perl-Compatible Regular Expression)
ldap support table lookups using LDAP
mysql support table lookups using MySQL

View File

@ -1,5 +1,5 @@
#!/bin/sh
# $OpenBSD: INSTALL,v 1.10 2004/03/31 09:33:46 jakob Exp $
# $OpenBSD: INSTALL,v 1.11 2004/04/25 10:36:40 jakob Exp $
#
# Pre/post-installation setup of postfix
@ -144,7 +144,7 @@ do_notice()
echo "+---------------"
echo "| WARNING!"
echo "|"
echo "| This port has changed its user/groups from 'postfix' to '_postfix'"
echo "| This port has changed its user/groups from 'postfix' to '_postfix'"
echo "| and 'postdrop' to '_postdrop'. If you installed this port before,"
echo "| ensure all permissions are set correctly and then"
echo "| rmuser _postfix"

View File

@ -1,2 +0,0 @@
@comment $OpenBSD: PFRAG.ipv6,v 1.1 2004/01/14 17:45:45 jakob Exp $
share/doc/postfix/readme/IPV6_README

View File

@ -1,20 +0,0 @@
@comment $OpenBSD: PFRAG.tls,v 1.4 2003/01/13 15:44:09 jakob Exp $
libexec/postfix/tlsmgr
man/man8/tlsmgr.8
share/doc/postfix/tls/conf.html
share/doc/postfix/tls/index.html
share/doc/postfix/tls/install.html
share/doc/postfix/tls/intro.html
share/doc/postfix/tls/loadCAcert.pl
share/doc/postfix/tls/myownca.html
share/doc/postfix/tls/prng.html
share/doc/postfix/tls/references.html
share/doc/postfix/tls/relaycert.html
share/doc/postfix/tls/rfc2246.txt
share/doc/postfix/tls/rfc2487.txt
share/doc/postfix/tls/rfc3207.txt
share/doc/postfix/tls/security.html
share/doc/postfix/tls/setup.html
share/doc/postfix/tls/test.html
share/examples/postfix/sample-tls.cf
@dirrm share/doc/postfix/tls

View File

@ -1,7 +1,5 @@
@comment $OpenBSD: PLIST,v 1.7 2004/01/14 17:45:45 jakob Exp $
@comment $OpenBSD: PLIST,v 1.8 2004/04/25 10:36:40 jakob Exp $
@pkgcfl postfix-*
%%tls%%
%%ipv6%%
libexec/postfix/bounce
libexec/postfix/cleanup
libexec/postfix/error
@ -10,6 +8,7 @@ libexec/postfix/lmtp
libexec/postfix/local
libexec/postfix/master
libexec/postfix/nqmgr
libexec/postfix/oqmgr
libexec/postfix/pickup
libexec/postfix/pipe
libexec/postfix/proxymap
@ -19,7 +18,9 @@ libexec/postfix/showq
libexec/postfix/smtp
libexec/postfix/smtpd
libexec/postfix/spawn
libexec/postfix/tlsmgr
libexec/postfix/trivial-rewrite
libexec/postfix/verify
libexec/postfix/virtual
man/man1/mailq.1
man/man1/newaliases.1
@ -37,8 +38,15 @@ man/man1/postsuper.1
man/man1/sendmail.1
man/man5/access.5
man/man5/aliases.5
man/man5/body_checks.5
man/man5/canonical.5
man/man5/cidr_table.5
man/man5/header_checks.5
man/man5/ldap_table.5
man/man5/mysql_table.5
man/man5/pcre_table.5
man/man5/pgsql_table.5
man/man5/postconf.5
man/man5/regexp_table.5
man/man5/relocated.5
man/man5/transport.5
@ -51,7 +59,7 @@ man/man8/flush.8
man/man8/lmtp.8
man/man8/local.8
man/man8/master.8
man/man8/nqmgr.8
man/man8/oqmgr.8
man/man8/pickup.8
man/man8/pipe.8
man/man8/proxymap.8
@ -61,7 +69,10 @@ man/man8/showq.8
man/man8/smtp.8
man/man8/smtpd.8
man/man8/spawn.8
man/man8/tlsmgr.8
man/man8/trace.8
man/man8/trivial-rewrite.8
man/man8/verify.8
man/man8/virtual.8
sbin/mailq
sbin/postalias
@ -78,40 +89,76 @@ sbin/postmap
sbin/postqueue
sbin/postsuper
sbin/sendmail
share/doc/postfix/html/ADDRESS_CLASS_README.html
share/doc/postfix/html/ADDRESS_REWRITING_README.html
share/doc/postfix/html/ADDRESS_VERIFICATION_README.html
share/doc/postfix/html/BACKSCATTER_README.html
share/doc/postfix/html/BASIC_CONFIGURATION_README.html
share/doc/postfix/html/BUILTIN_FILTER_README.html
share/doc/postfix/html/CONTENT_INSPECTION_README.html
share/doc/postfix/html/CYRUS_README.html
share/doc/postfix/html/DATABASE_README.html
share/doc/postfix/html/DB_README.html
share/doc/postfix/html/DEBUG_README.html
share/doc/postfix/html/ETRN_README.html
share/doc/postfix/html/FILTER_README.html
share/doc/postfix/html/INSTALL.html
share/doc/postfix/html/LDAP_README.html
share/doc/postfix/html/LINUX_README.html
share/doc/postfix/html/LMTP_README.html
share/doc/postfix/html/LOCAL_RECIPIENT_README.html
share/doc/postfix/html/MAILDROP_README.html
share/doc/postfix/html/MYSQL_README.html
share/doc/postfix/html/NFS_README.html
share/doc/postfix/html/OVERVIEW.html
share/doc/postfix/html/PACKAGE_README.html
share/doc/postfix/html/PCRE_README.html
share/doc/postfix/html/PGSQL_README.html
share/doc/postfix/html/QMQP_README.html
share/doc/postfix/html/QSHAPE_README.html
share/doc/postfix/html/RESTRICTION_CLASS_README.html
share/doc/postfix/html/SASL_README.html
share/doc/postfix/html/SCHEDULER_README.html
share/doc/postfix/html/SMTPD_ACCESS_README.html
share/doc/postfix/html/SMTPD_POLICY_README.html
share/doc/postfix/html/SMTPD_PROXY_README.html
share/doc/postfix/html/STANDARD_CONFIGURATION_README.html
share/doc/postfix/html/TUNING_README.html
share/doc/postfix/html/ULTRIX_README.html
share/doc/postfix/html/UUCP_README.html
share/doc/postfix/html/VERP_README.html
share/doc/postfix/html/VIRTUAL_README.html
share/doc/postfix/html/XCLIENT_README.html
share/doc/postfix/html/XFORWARD_README.html
share/doc/postfix/html/access.5.html
share/doc/postfix/html/aliases.5.html
share/doc/postfix/html/architecture.html
share/doc/postfix/html/backstage.html
share/doc/postfix/html/basic.html
share/doc/postfix/html/big-picture.gif
share/doc/postfix/html/big-picture.html
share/doc/postfix/html/bounce.8.html
share/doc/postfix/html/canonical.5.html
share/doc/postfix/html/cidr_table.5.html
share/doc/postfix/html/cleanup.8.html
share/doc/postfix/html/commands.html
share/doc/postfix/html/defer.8.html
share/doc/postfix/html/delivering.html
share/doc/postfix/html/error.8.html
share/doc/postfix/html/faq.html
share/doc/postfix/html/flush.8.html
share/doc/postfix/html/goals.html
share/doc/postfix/html/inbound.gif
share/doc/postfix/html/header_checks.5.html
share/doc/postfix/html/index.html
share/doc/postfix/html/ldap_table.5.html
share/doc/postfix/html/lmtp.8.html
share/doc/postfix/html/local.8.html
share/doc/postfix/html/mailq.1.html
share/doc/postfix/html/master.8.html
share/doc/postfix/html/motivation.html
share/doc/postfix/html/mysql_table.5.html
share/doc/postfix/html/newaliases.1.html
share/doc/postfix/html/nqmgr.8.html
share/doc/postfix/html/outbound.gif
share/doc/postfix/html/oqmgr.8.html
share/doc/postfix/html/pcre_table.5.html
share/doc/postfix/html/pgsql_table.5.html
share/doc/postfix/html/pickup.8.html
share/doc/postfix/html/pipe.8.html
share/doc/postfix/html/postalias.1.html
share/doc/postfix/html/postcat.1.html
share/doc/postfix/html/postconf.1.html
share/doc/postfix/html/postconf.5.html
share/doc/postfix/html/postdrop.1.html
share/doc/postfix/html/postfix-logo.jpg
share/doc/postfix/html/postfix.1.html
share/doc/postfix/html/postkick.1.html
share/doc/postfix/html/postlock.1.html
@ -121,93 +168,100 @@ share/doc/postfix/html/postqueue.1.html
share/doc/postfix/html/postsuper.1.html
share/doc/postfix/html/proxymap.8.html
share/doc/postfix/html/qmgr.8.html
share/doc/postfix/html/qmqp-sink.1.html
share/doc/postfix/html/qmqp-source.1.html
share/doc/postfix/html/qmqpd.8.html
share/doc/postfix/html/queuing.html
share/doc/postfix/html/rate.html
share/doc/postfix/html/receiving.html
share/doc/postfix/html/qshape.1.html
share/doc/postfix/html/regexp_table.5.html
share/doc/postfix/html/relocated.5.html
share/doc/postfix/html/resource.html
share/doc/postfix/html/rewrite.html
share/doc/postfix/html/security.html
share/doc/postfix/html/sendmail.1.html
share/doc/postfix/html/showq.8.html
share/doc/postfix/html/small-picture.gif
share/doc/postfix/html/smtp-sink.1.html
share/doc/postfix/html/smtp-source.1.html
share/doc/postfix/html/smtp.8.html
share/doc/postfix/html/smtpd.8.html
share/doc/postfix/html/spawn.8.html
share/doc/postfix/html/trace.8.html
share/doc/postfix/html/transport.5.html
share/doc/postfix/html/trivial-rewrite.8.html
share/doc/postfix/html/uce.html
share/doc/postfix/html/verify.8.html
share/doc/postfix/html/virtual.5.html
share/doc/postfix/html/virtual.8.html
share/doc/postfix/readme/AAAREADME
share/doc/postfix/readme/ADDRESS_CLASS_README
share/doc/postfix/readme/ADDRESS_REWRITING_README
share/doc/postfix/readme/ADDRESS_VERIFICATION_README
share/doc/postfix/readme/BACKSCATTER_README
share/doc/postfix/readme/BASIC_CONFIGURATION_README
share/doc/postfix/readme/BUILTIN_FILTER_README
share/doc/postfix/readme/CONTENT_INSPECTION_README
share/doc/postfix/readme/DATABASE_README
share/doc/postfix/readme/DB_README
share/doc/postfix/readme/DEBUG_README
share/doc/postfix/readme/ETRN_README
share/doc/postfix/readme/FILTER_README
share/doc/postfix/readme/INSTALL
share/doc/postfix/readme/IPV6_README
share/doc/postfix/readme/LDAP_README
share/doc/postfix/readme/LINUX_README
share/doc/postfix/readme/LMTP_README
share/doc/postfix/readme/LOCAL_RECIPIENT_README
share/doc/postfix/readme/MACOSX_README
share/doc/postfix/readme/MAILDROP_README
share/doc/postfix/readme/MYSQL_README
share/doc/postfix/readme/NFS_README
share/doc/postfix/readme/OVERVIEW
share/doc/postfix/readme/PACKAGE_README
share/doc/postfix/readme/PCRE_README
share/doc/postfix/readme/PGSQL_README
share/doc/postfix/readme/QMQP_README
share/doc/postfix/readme/QSHAPE_README
share/doc/postfix/readme/RELEASE_NOTES
share/doc/postfix/readme/RESTRICTION_CLASS_README
share/doc/postfix/readme/SASL_README
share/doc/postfix/readme/SCHEDULER_README
share/doc/postfix/readme/SMTPD_ACCESS_README
share/doc/postfix/readme/SMTPD_POLICY_README
share/doc/postfix/readme/SMTPD_PROXY_README
share/doc/postfix/readme/STANDARD_CONFIGURATION_README
share/doc/postfix/readme/TUNING_README
share/doc/postfix/readme/ULTRIX_README
share/doc/postfix/readme/UUCP_README
share/doc/postfix/readme/VERP_README
share/doc/postfix/readme/VIRTUAL_README
share/doc/postfix/readme/XCLIENT_README
share/doc/postfix/readme/XFORWARD_README
share/doc/postfix/tls/conf.html
share/doc/postfix/tls/index.html
share/doc/postfix/tls/install.html
share/doc/postfix/tls/intro.html
share/doc/postfix/tls/loadCAcert.pl
share/doc/postfix/tls/myownca.html
share/doc/postfix/tls/prng.html
share/doc/postfix/tls/references.html
share/doc/postfix/tls/relaycert.html
share/doc/postfix/tls/rfc2246.txt
share/doc/postfix/tls/rfc2487.txt
share/doc/postfix/tls/rfc3207.txt
share/doc/postfix/tls/security.html
share/doc/postfix/tls/setup.html
share/doc/postfix/tls/test.html
share/examples/postfix/LICENSE
share/examples/postfix/access
share/examples/postfix/aliases
share/examples/postfix/canonical
share/examples/postfix/header_checks
share/examples/postfix/main.cf
share/examples/postfix/main.cf.default
share/examples/postfix/makedefs.out
share/examples/postfix/master.cf
share/examples/postfix/pcre_table
share/examples/postfix/post-install
share/examples/postfix/postfix-files
share/examples/postfix/postfix-script
share/examples/postfix/regexp_table
share/examples/postfix/relocated
share/examples/postfix/sample-aliases.cf
share/examples/postfix/sample-auth.cf
share/examples/postfix/sample-canonical.cf
share/examples/postfix/sample-compatibility.cf
share/examples/postfix/sample-debug.cf
share/examples/postfix/sample-filter.cf
share/examples/postfix/sample-flush.cf
share/examples/postfix/sample-ldap.cf
share/examples/postfix/sample-lmtp.cf
share/examples/postfix/sample-local.cf
share/examples/postfix/sample-mime.cf
share/examples/postfix/sample-misc.cf
share/examples/postfix/sample-pcre-access.cf
share/examples/postfix/sample-pcre-body.cf
share/examples/postfix/sample-pcre-header.cf
share/examples/postfix/sample-qmqpd.cf
share/examples/postfix/sample-rate.cf
share/examples/postfix/sample-regexp-access.cf
share/examples/postfix/sample-regexp-body.cf
share/examples/postfix/sample-regexp-header.cf
share/examples/postfix/sample-relocated.cf
share/examples/postfix/sample-resource.cf
share/examples/postfix/sample-rewrite.cf
share/examples/postfix/sample-smtp.cf
share/examples/postfix/sample-smtpd.cf
share/examples/postfix/sample-transport.cf
share/examples/postfix/sample-virtual.cf
share/examples/postfix/transport
share/examples/postfix/virtual
@dirrm share/examples/postfix
@dirrm share/doc/postfix/tls
@dirrm share/doc/postfix/readme
@dirrm share/doc/postfix/html
@dirrm share/doc/postfix