diff --git a/mail/courier/Makefile b/mail/courier/Makefile index 61f94d1ed238..1500725b0191 100644 --- a/mail/courier/Makefile +++ b/mail/courier/Makefile @@ -1,394 +1,395 @@ PORTNAME= courier PORTVERSION= 1.1.11 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail MASTER_SITES= SF MAINTAINER= bsd@dino.sk COMMENT= Courier SMTP IMAP POP3 HTTP mail server suite WWW= https://www.Courier-MTA.org/ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING.GPL BUILD_DEPENDS= courierauthconfig:security/courier-authlib-base \ wget:ftp/wget LIB_DEPENDS= libidn.so:dns/libidn \ libpcre.so:devel/pcre \ libgdbm.so:databases/gdbm \ libcourier-unicode.so:devel/courier-unicode \ libpcre2-8.so:devel/pcre2 RUN_DEPENDS= courierauthconfig:security/courier-authlib-base \ ${LOCALBASE}/share/sysconftool/sysconftool:devel/sysconftool \ ${LOCALBASE}/etc/mime.types:misc/mime-support \ p5-Net-CIDR>=0:net-mgmt/p5-Net-CIDR \ ca_root_nss>=3.*:security/ca_root_nss \ ${LOCALBASE}/bin/wget:ftp/wget CONFLICTS= courier-imap-2.* couriermlm-0.* \ exim-4.* maildrop-1.* \ panda-imap-201* postfix-1.* postfix-2.* \ qmail-*-1.* qmail-1.* \ sendmail-*-8.* sendmail-8.* \ smail-3.* sqwebmail-3.* \ zmailer-2.* # # User-serviceable variables # # [ There's no need to add trailing ``/''s ] # # set IMAGEURL to where on the web server URL the images are found # set CACHEOWN to who you'd like to own the cache files # set MAILDROPDEFAULT to what you'd like the $DEFAULT in maildrop to be # recomended values are: /var/mail, ./Mailbox or ./Maildir # IMAGEURL?= /webmail CACHEOWN?= pop MAILDROPDEFAULT?=./Maildir # End of user-serviceable variables MAILOWN?= courier MAILGRP?= courier MAILUID?= 465 MAILGID?= 465 ETCDIR= ${PREFIX}/etc SYSCONFDIR= ${ETCDIR}/courier LIBEXECDIR= ${PREFIX}/libexec LOCALSTATEDIR= /var/spool/courier CACHEDIR= /var/spool/webmail CALENDIR= /var/spool/calendar MIMETYPES= ${LOCALBASE}/etc/mime.types WITH_TRANSPORT= local esmtp dsn USES= fam gettext gmake libtool perl5 pkgconfig tar:bzip2 ssl shebangfix USE_SUBMAKE= yes USE_RC_SUBR= courier SHEBANG_FILES= courier/filters/perlfilter/perlfilter-ratelimit.pl \ courier/filters/perlfilter/perlfilter-wrapper.pl GNU_CONFIGURE= yes +GNU_CONFIGURE_MANPREFIX=${PREFIX}/share CONFIGURE_ARGS= --disable-root-check \ --with-db=gdbm \ --enable-syslog=1 --enable-use-flock \ --program-transform-name=s,^,, \ --enable-utf7-folder-encoding \ --enable-unicode \ --with-mailuser=${MAILOWN} \ --with-mailgroup=${MAILGRP} \ --with-mailuid=${MAILUID} \ --with-mailgid=${MAILGID} \ --with-etcdir=${ETCDIR} \ --sysconfdir=${SYSCONFDIR} \ --datadir=${DATADIR} \ --libexecdir=${LIBEXECDIR} \ --localstatedir=${LOCALSTATEDIR} \ --enable-mimetypes=${MIMETYPES} \ --enable-imageurl=${IMAGEURL} \ --with-cachedir=${CACHEDIR} \ --with-cacheowner=${CACHEOWN} \ --with-calendardir=${CALENDIR} \ --with-mydatadir=${SYSCONFDIR} \ --with-transport='${WITH_TRANSPORT}' \ --with-default-maildrop=${MAILDROPDEFAULT} \ --with-paranoid-smtpext \ --enable-workarounds-for-imap-client-bugs \ --with-notice=unicode CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib INSTALL_TARGET= install-strip install-perms PLIST_SUB+= BINOWN="${BINOWN}" BINGRP="${BINGRP}" \ CACHEOWN="${CACHEOWN}" CACHEDIR="${CACHEDIR}" \ CALENDIR="${CALENDIR}" LOCALSTATEDIR="${LOCALSTATEDIR}" \ MAILOWN="${MAILOWN}" MAILGRP="${MAILGRP}" \ MAILUID="${MAILUID}" MAILGID="${MAILGID}" \ SHAREOWN="${SHAREOWN}" SHAREGRP="${SHAREGRP}" SUB_LIST:= ${PLIST_SUB} SUB_FILES+= pkg-message crontab sharedindexupdate OPTIONS_DEFINE= LDAP PROCMAIL SENDFAX UUCP IPV6 DOCS CERTSDIR OPTIONS_GROUP= WEBMAIL OPTIONS_GROUP_WEBMAIL= GNUPG WEBMAILRSENT WEBMAILFLAGS WEBMAILXFACE OPTIONS_RADIO= ALIASES SPELL OPTIONS_RADIO_ALIASES= SYSTEMALIASES EMPTYALIASES OPTIONS_RADIO_SPELL= ASPELL ISPELL OPTIONS_DEFAULT=WEBMAILRSENT SYSTEMALIASES LDAP_DESC= LDAP-based mail aliasing support GNUPG_DESC= GNU Privacy Guard support for WebMail ASPELL_DESC= ASpell support for WebMail ISPELL_DESC= ISpell support for WebMail PROCMAIL_DESC= Procmail local delivery support SENDFAX_DESC= mgetty+sendfax support UUCP_DESC= UUCP support CERTSDIR_DESC= separate .pem directory for certificates WEBMAILRSENT_DESC= enable Autorename Sent folder WEBMAILFLAGS_DESC= webmail show flags patch WEBMAILXFACE_DESC= experimental webmail X-Face patch SYSTEMALIASES_DESC= symlink system /etc/aliases EMPTYALIASES_DESC= create empty aliases file RCCONF_DESC= modify rc.conf to enable courier/disable sendmail MAILCONF_DESC= modify mailer.conf to use courier instead of sendmail PERIODIC_DESC= modify/create periodic.conf .include .include "${.CURDIR}/Makefile.doc" .if ${PORT_OPTIONS:MLDAP} USES+= ldap WITH_AUTH_LDAP= yes RUN_DEPENDS+= ${LOCALBASE}/lib/courier-authlib/libauthldap.so:net/courier-authlib-ldap CONFIGURE_ARGS+=--with-ldapaliasd PLIST_SUB+= WITHLDAP="" SUB_LIST+= WITHLDAP="" .else CONFIGURE_ARGS+=--without-ldapaliasd PLIST_SUB+= WITHLDAP="@comment " SUB_LIST+= WITHLDAP="@comment " .endif .if ${PORT_OPTIONS:MSYSTEMALIASES} PLIST_SUB+= WITHSYSTEMALIASES="" SUB_LIST+= WITHSYSTEMALIASES="" .else PLIST_SUB+= WITHSYSTEMALIASES="@comment " SUB_LIST+= WITHSYSTEMALIASES="@comment " .endif .if ${PORT_OPTIONS:MEMPTYALIASES} PLIST_SUB+= WITHEMPTYALIASES="" SUB_LIST+= WITHEMPTYALIASES="" .else PLIST_SUB+= WITHEMPTYALIASES="@comment " SUB_LIST+= WITHEMPTYALIASES="@comment " .endif .if exists(${.CURDIR}/../../security/courier-authlib/Makefile.dep) .include "${.CURDIR}/../../security/courier-authlib/Makefile.dep" .endif .if ${PORT_OPTIONS:MGNUPG} BUILD_DEPENDS+= gpg:security/gnupg RUN_DEPENDS+= gpg:security/gnupg .else # This is a hack! But works well (at least partially) for me... CONFIGURE_ENV+= GPG="${WRKSRC}/fakegpg" .endif .if ${PORT_OPTIONS:MASPELL} BUILD_DEPENDS+= aspell:textproc/aspell RUN_DEPENDS+= aspell:textproc/aspell CONFIGURE_ARGS+=--with-ispell=${LOCALBASE}/bin/aspell .elif ${PORT_OPTIONS:MISPELL} BUILD_DEPENDS+= ispell:textproc/aspell-ispell RUN_DEPENDS+= ispell:textproc/aspell-ispell CONFIGURE_ARGS+=--with-ispell=${LOCALBASE}/bin/ispell .else CONFIGURE_ARGS+=--without-ispell .endif .if ${PORT_OPTIONS:MPROCMAIL} BUILD_DEPENDS+= procmail:mail/procmail RUN_DEPENDS+= procmail:mail/procmail .endif .if ${PORT_OPTIONS:MSENDFAX} USES+= ghostscript SENDFAX_DEPENDS=sendfax:comms/mgetty+sendfax \ pnmscale:graphics/netpbm BUILD_DEPENDS+= ${SENDFAX_DEPENDS} RUN_DEPENDS+= ${SENDFAX_DEPENDS} WITH_TRANSPORT+=fax PLIST_SUB+= WITHFAX="" SUB_LIST+= WITHFAX="" .else PLIST_SUB+= WITHFAX="@comment " SUB_LIST+= WITHFAX="@comment " .endif .if ${PORT_OPTIONS:MUUCP} .if !exists(/usr/bin/uux) BUILD_DEPENDS+= uux:net/freebsd-uucp RUN_DEPENDS+= uux:net/freebsd-uucp .endif WITH_TRANSPORT+=uucp PLIST_SUB+= WITHUUCP="" .else PLIST_SUB+= WITHUUCP="@comment " .endif .if ${PORT_OPTIONS:MIPV6} CONFIGURE_ARGS+=--with-ipv6 .else CONFIGURE_ARGS+=--without-ipv6 .endif .if ${PORT_OPTIONS:MWEBMAILXFACE} EXTRA_PATCHES+= ${FILESDIR}/extra-patch-libs__sqwebmail__msg2html.c .endif .if ${PORT_OPTIONS:MWEBMAILFLAGS} EXTRA_PATCHES+= ${FILESDIR}/extra-patch-libs__sqwebmail__folder.c ${FILESDIR}/extra-patch-libs__sqwebmail__maildir.c EXTRA_PATCHES+= ${FILESDIR}/extra-patch-libs__sqwebmail__maildir.h ${FILESDIR}/extra-patch-libs__sqwebmail__images__sqwebmail.css .endif .if ${PORT_OPTIONS:MWEBMAILRSENT} CONFIGURE_ARGS+=--enable-autorenamesent .else CONFIGURE_ARGS+=--disable-autorenamesent .endif .if ${PORT_OPTIONS:MMAILCONF} SUB_LIST+= MAILCONF="y" .else SUB_LIST+= MAILCONF="n" .endif .if ${PORT_OPTIONS:MRCCONF} SUB_LIST+= RCCONF="y" .else SUB_LIST+= RCCONF="n" .endif .if ${PORT_OPTIONS:MPERIODIC} SUB_LIST+= PERIODIC="y" .else SUB_LIST+= PERIODIC="n" .endif .if ${PORT_OPTIONS:MCERTSDIR} CONFIGURE_ARGS+=--with-certsdir=${SYSCONFDIR}/.pem PLIST_SUB+= WITHCERTSDIR="" SUB_LIST+= CERTSDIR="${SYSCONFDIR}/.pem" .else CONFIGURE_ARGS+=--with-certsdir=${SYSCONFDIR} PLIST_SUB+= WITHCERTSDIR="@comment " SUB_LIST+= CERTSDIR="${SYSCONFDIR}" .endif _CNFFILES= esmtpd.cnf \ imapd.cnf \ pop3d.cnf _DISTEXFILES= courierd.dist \ esmtpd-msa.dist \ esmtpd-ssl.dist \ esmtpd.dist \ faxcoverpage.tr.dist \ faxnotifyrc.dist \ faxrc.dist \ imapd-ssl.dist \ imapd.dist \ ldapaddressbook.dist \ ldapaliasrc.dist \ pop3d-ssl.dist \ pop3d.dist \ sqwebmaild.dist \ webmlmrc.dist pre-everything:: @${ECHO_MSG} "===> --------------------------------------------------------" @${ECHO_MSG} "===> Run 'make config' to (re)configure ${PKGNAME}" @${ECHO_MSG} "===> --------------------------------------------------------" pre-patch: ${CP} ${TEMPLATES}/config.guess ${TEMPLATES}/config.sub ${WRKSRC} post-patch: ${REINPLACE_CMD} -i '' -e 's|#! perl|#!${PERL}|g' \ ${WRKSRC}/webadmin/*.pl \ ${WRKSRC}/webadmin/*.pl.in \ ${WRKSRC}/courier/webadmin/*.pl \ ${WRKSRC}/courier/webadmin/*.pl.in ${REINPLACE_CMD} -e 's|^PROG=\./|PROG=exec ./|g' \ ${WRKSRC}/courier/module.*/courier.config ${REINPLACE_CMD} -e 's|@mydatadir@|@sysconfdir@|g' \ ${WRKSRC}/*/*/mk*cert.* ${REINPLACE_CMD} -e 's|^\(TLS_CERTFILE=\)@mydatadir@|\1@sysconfdir@|g' \ ${WRKSRC}/*/*.dist.in \ ${WRKSRC}/*/*/*.dist.in ${REINPLACE_CMD} -e 's|^\(TLS_DHPARAMS=\)@mydatadir@|\1@sysconfdir@|g' \ ${WRKSRC}/*/*.dist.in \ ${WRKSRC}/*/*/*.dist.in ${REINPLACE_CMD} -e 's|^\(RANDFILE[[:space:]]*=[[:space:]]*\)@mydatadir@|\1@sysconfdir@|g' \ ${WRKSRC}/*/*/*.cnf.openssl.in ${REINPLACE_CMD} -e 's|$$(INSTALL_DATA) \(.$$$$file.\)|${INSTALL_MAN} \1|' \ ${WRKSRC}/Makefile.in \ ${WRKSRC}/*/Makefile.in \ ${WRKSRC}/*/*/Makefile.in \ ${WRKSRC}/*/*/*/Makefile.in ${REINPLACE_CMD} -e 's|^\(INSTALL_STRIP_PROGRAM=\).*$$|\1"${INSTALL_PROGRAM} -s"|' \ -e 's|; ldapaliasd="yes"||' \ ${WRKSRC}/configure \ ${WRKSRC}/*/configure \ ${WRKSRC}/*/*/configure \ ${WRKSRC}/*/*/*/configure ${REINPLACE_CMD} -E -e 's/(root|bin)[[:space:]]*bin/root wheel/g' \ ${WRKSRC}/courier/perms.sh.in ${REINPLACE_CMD} '/^courieresmtp_LDADD =/s/$$/ -lcourierauth/' \ ${WRKSRC}/courier/module.esmtp/Makefile.in # Avoid conflict with C++20 by adding .txt suffix ${REINPLACE_CMD} -i .c++20 's/>version$$/&.txt/' ${WRKSRC}/configure ${FIND} ${WRKSRC} -name configure -exec ${REINPLACE_CMD} \ -i .c++20 '/^version.*cat/s,/version,&.txt,' {} + pre-configure: # This is a hack! But works well (at least partially) for me... touch ${WRKSRC}/fakegpg chmod +x ${WRKSRC}/fakegpg post-build: ${PERL} -pi -e 's|^(auth)\s+(required).*|$$1\t\t$$2\tpam_unix.so\ttry_first_pass|g;' \ -e 's|^(account)\s+(required).*|$$1 \t$$2\tpam_unix.so|g;' \ -e 's|^(session)\s+(required).*|$$1 \t$$2\tpam_permit.so|g;' \ ${WRKSRC}/*/*.authpam* \ ${WRKSRC}/*/*/*.authpam* ${INSTALL} -lrs ${WRKSRC}/libs/gpglib/README.html ${WRKSRC}/libs/gpglib/README.gpglib.html ${INSTALL} -lrs ${WRKSRC}/libs/imap/BUGS ${WRKSRC}/libs/imap/BUGS.imap ${INSTALL} -lrs ${WRKSRC}/libs/imap/BUGS.html ${WRKSRC}/libs/imap/BUGS.imap.html ${INSTALL} -lrs ${WRKSRC}/libs/imap/README.proxy ${WRKSRC}/libs/imap/README.imap.proxy ${INSTALL} -lrs ${WRKSRC}/libs/imap/README.proxy.html ${WRKSRC}/libs/imap/README.imap.proxy.html ${INSTALL} -lrs ${WRKSRC}/libs/maildrop/README.html ${WRKSRC}/libs/maildrop/README.maildrop.html ${INSTALL} -lrs ${WRKSRC}/libs/pcp/README.html ${WRKSRC}/libs/pcp/README.pcp.html ${INSTALL} -lrs ${WRKSRC}/libs/sqwebmail/BUGS ${WRKSRC}/libs/sqwebmail/BUGS.sqwebmail ${INSTALL} -lrs ${WRKSRC}/libs/sqwebmail/BUGS.html ${WRKSRC}/libs/sqwebmail/BUGS.sqwebmail.html ${INSTALL} -lrs ${WRKSRC}/libs/sqwebmail/SECURITY ${WRKSRC}/libs/sqwebmail/SECURITY.sqwebmail ${INSTALL} -lrs ${WRKSRC}/libs/sqwebmail/SECURITY.html ${WRKSRC}/libs/sqwebmail/SECURITY.sqwebmail.html post-install: .for _cfgfile in ${_CNFFILES} -${MV} ${STAGEDIR}${SYSCONFDIR}/${_cfgfile} ${STAGEDIR}${SYSCONFDIR}/${_cfgfile:S/.cnf/.cnf.sample/g} .endfor .for _cfgfile in ${_DISTEXFILES} -${MV} ${STAGEDIR}${SYSCONFDIR}/${_cfgfile} ${STAGEDIR}${SYSCONFDIR}/${_cfgfile:S/.dist/.sample/g} .endfor ${INSTALL} -lrs ${STAGEDIR}${SYSCONFDIR}/maildrop ${STAGEDIR}${SYSCONFDIR}/maildropfilter ${INSTALL_DATA} /dev/null ${STAGEDIR}${SYSCONFDIR}/locallowercase ${INSTALL_DATA} ${WRKDIR}/crontab ${STAGEDIR}${SYSCONFDIR}/ ${INSTALL_SCRIPT} ${WRKDIR}/sharedindexupdate ${STAGEDIR}${DATADIR}/ .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${STAGEDIR}${DOCSDIR} ${MKDIR} ${STAGEDIR}${DOCSDIR}/html .for f in ${DOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} .endfor .for f in ${HTMLDOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/html .endfor ${INSTALL_DATA} ${STAGEDIR}${DATADIR}/htmldoc/* ${STAGEDIR}${DOCSDIR}/html .endif .if ${PORT_OPTIONS:MCERTSDIR} ${MKDIR} ${STAGEDIR}${SYSCONFDIR}/.pem .endif ${RM} -r ${STAGEDIR}${DATADIR}/htmldoc ${CHMOD} -R a+r ${STAGEDIR}${DATADIR}/courierwebadmin ${CHMOD} -R a-w ${STAGEDIR}${DATADIR} ${STAGEDIR}${LIBEXECDIR}/courier ${CHMOD} 550 ${STAGEDIR}${LIBEXECDIR}/courier/modules/esmtp/courieresmtp* .include diff --git a/mail/courier/pkg-plist b/mail/courier/pkg-plist index 14f3c368b712..972121ac4e28 100644 --- a/mail/courier/pkg-plist +++ b/mail/courier/pkg-plist @@ -1,576 +1,576 @@ @postunexec rm -f %D/etc/courier/*.dat 2>/dev/null || true bin/addcr @(%%MAILOWN%%,%%MAILGRP%%,) bin/cancelmsg bin/courier-config bin/couriermlm bin/couriertls bin/deliverquota bin/dotforward bin/imapd bin/lockmail bin/mailbot bin/maildiracl bin/maildirkw bin/maildirmake @(,%%MAILGRP%%,4511) bin/maildrop @(%%MAILOWN%%,%%MAILGRP%%,2555) bin/mailq bin/makedat bin/makemime bin/mimegpg bin/preline bin/reformail bin/reformime @(,%%MAILGRP%%,4511) bin/rmail @(,%%MAILGRP%%,4511) bin/sendmail bin/testmxlookup bin/verifysmtp bin/webmlmd bin/webmlmd.rc etc/courier/aliases/system -%%WITHSYSTEMALIASES%%@exec [ -e /etc/aliases ] && ln -sf /etc/aliases %D/etc/courier/aliases/system -%%WITHEMPTYALIASES%%@exec true > %D/etc/courier/aliases/system +%%WITHSYSTEMALIASES%%@postexec [ -e /etc/aliases ] && ln -sf /etc/aliases %D/etc/courier/aliases/system +%%WITHEMPTYALIASES%%@postexec true > %D/etc/courier/aliases/system @sample etc/courier/courierd.sample etc/courier/crontab etc/courier/dsndelayed.txt etc/courier/dsndelivered.txt etc/courier/dsnfailed.txt etc/courier/dsnfooter.txt etc/courier/dsnheader.txt etc/courier/dsnrelayed.txt etc/courier/dsnsubjectnotice.txt etc/courier/dsnsubjectwarn.txt etc/courier/enablefiltering etc/courier/esmtp.authpam @(%%MAILOWN%%,,) etc/courier/esmtpauthclient @sample etc/courier/esmtpd-msa.sample @sample etc/courier/esmtpd-ssl.sample @sample etc/courier/esmtpd.cnf.sample @sample etc/courier/esmtpd.sample %%WITHFAX%%@sample etc/courier/faxcoverpage.tr.sample %%WITHFAX%%@sample etc/courier/faxnotifyrc.sample %%WITHFAX%%@sample etc/courier/faxrc.sample @sample etc/courier/imapd-ssl.sample etc/courier/imapd.authpam @sample etc/courier/imapd.cnf.sample @sample etc/courier/imapd.sample @sample etc/courier/ldapaddressbook.sample %%WITHLDAP%%@sample etc/courier/ldapaliasrc.sample etc/courier/locallowercase etc/courier/maildrop etc/courier/maildropfilter etc/courier/module.dsn etc/courier/module.esmtp %%WITHFAX%%etc/courier/module.fax etc/courier/module.local %%WITHUUCP%%etc/courier/module.uucp @sample etc/courier/pop3d-ssl.sample etc/courier/pop3d.authpam @sample etc/courier/pop3d.cnf.sample @sample etc/courier/pop3d.sample etc/courier/quotawarnmsg.example etc/courier/smtpaccess/default @sample etc/courier/sqwebmaild.sample etc/courier/webmail.authpam @sample etc/courier/webmlmrc.sample @(%%MAILOWN%%,,) libexec/courier/aliascombine @(%%MAILOWN%%,,) libexec/courier/aliascreate @(%%MAILOWN%%,,) libexec/courier/aliasexp @(%%MAILOWN%%,,) libexec/courier/courierd libexec/courier/courierfilter libexec/courier/courierpop3d libexec/courier/courierpop3login libexec/courier/imaplogin libexec/courier/makedatprog @(%%MAILOWN%%,%%MAILGRP%%,) libexec/courier/modules/dsn/courierdsn @(%%MAILOWN%%,%%MAILGRP%%,) libexec/courier/modules/esmtp/addcr @(%%MAILOWN%%,%%MAILGRP%%,) libexec/courier/modules/esmtp/courieresmtp @(%%MAILOWN%%,%%MAILGRP%%,) libexec/courier/modules/esmtp/courieresmtpd %%WITHFAX%%@(%%MAILOWN%%,%%MAILGRP%%,) libexec/courier/modules/fax/courierfax @(%%MAILOWN%%,%%MAILGRP%%,) libexec/courier/modules/local/courierdeliver @(%%MAILOWN%%,%%MAILGRP%%,) libexec/courier/modules/local/courierlocal %%WITHUUCP%%@(%%MAILOWN%%,%%MAILGRP%%,) libexec/courier/modules/uucp/courieruucp libexec/courier/pcpd libexec/courier/sqwebmaild @(%%MAILOWN%%,%%MAILGRP%%,2555) libexec/courier/sqwebpasswd @(%%MAILOWN%%,,) libexec/courier/submit @(%%MAILOWN%%,,) libexec/courier/submitmkdir libexec/courier/webmail/webadmin libexec/courier/webmail/webmail libexec/courier/webmail/webmlm libexec/filters/dupfilter libexec/filters/perlfilter libexec/filters/ratefilter libexec/filters/verifyfilter -man/man1/cancelmsg.1.gz -man/man1/couriermlm.1.gz -man/man1/couriertcpd.1.gz -man/man1/couriertls.1.gz -man/man1/dot-forward.1.gz -man/man1/dotforward.1.gz -man/man1/lockmail.1.gz -man/man1/mailbot.1.gz -man/man1/maildiracl.1.gz -man/man1/maildirkw.1.gz -man/man1/maildirmake.1.gz -man/man1/maildirwatch.1.gz -man/man1/maildrop.1.gz -man/man1/mailq.1.gz -man/man1/makedat.1.gz -man/man1/makemime.1.gz -man/man1/mimegpg.1.gz -man/man1/preline.1.gz -man/man1/reformail.1.gz -man/man1/reformime.1.gz -man/man1/rmail.1.gz -man/man1/sendmail.1.gz -man/man1/testmxlookup.1.gz -man/man1/webmlmd.1.gz -man/man5/dot-courier.5.gz -man/man5/maildir.5.gz -man/man7/localmailfilter.7.gz -man/man7/maildirquota.7.gz -man/man7/maildropex.7.gz -man/man7/maildropfilter.7.gz -man/man7/maildropgdbm.7.gz -man/man8/aliaslookup.8.gz -man/man8/courier.8.gz -man/man8/courierfilter.8.gz -%%WITHLDAP%%man/man8/courierldapaliasd.8.gz -man/man8/courierperlfilter.8.gz -man/man8/courierpop3d.8.gz -man/man8/courierpop3login.8.gz -man/man8/deliverquota.8.gz -man/man8/dupfilter.8.gz -man/man8/esmtpd-msa.8.gz -man/man8/esmtpd.8.gz -man/man8/filterctl.8.gz -man/man8/imapd.8.gz -man/man8/makeacceptmailfor.8.gz -man/man8/makealiases.8.gz -man/man8/makehosteddomains.8.gz -man/man8/makeimapaccess.8.gz -man/man8/makepercentrelay.8.gz -man/man8/makesmtpaccess-msa.8.gz -man/man8/makesmtpaccess.8.gz -man/man8/mkdhparams.8.gz -man/man8/mkesmtpdcert.8.gz -man/man8/mkimapdcert.8.gz -man/man8/mkpop3dcert.8.gz -man/man8/pop3d-ssl.8.gz -man/man8/pop3d.8.gz -man/man8/ratefilter.8.gz -man/man8/submit.8.gz -man/man8/verifyfilter.8.gz -man/man8/verifysmtp.8.gz +share/man/man1/cancelmsg.1.gz +share/man/man1/couriermlm.1.gz +share/man/man1/couriertcpd.1.gz +share/man/man1/couriertls.1.gz +share/man/man1/dot-forward.1.gz +share/man/man1/dotforward.1.gz +share/man/man1/lockmail.1.gz +share/man/man1/mailbot.1.gz +share/man/man1/maildiracl.1.gz +share/man/man1/maildirkw.1.gz +share/man/man1/maildirmake.1.gz +share/man/man1/maildirwatch.1.gz +share/man/man1/maildrop.1.gz +share/man/man1/mailq.1.gz +share/man/man1/makedat.1.gz +share/man/man1/makemime.1.gz +share/man/man1/mimegpg.1.gz +share/man/man1/preline.1.gz +share/man/man1/reformail.1.gz +share/man/man1/reformime.1.gz +share/man/man1/rmail.1.gz +share/man/man1/sendmail.1.gz +share/man/man1/testmxlookup.1.gz +share/man/man1/webmlmd.1.gz +share/man/man5/dot-courier.5.gz +share/man/man5/maildir.5.gz +share/man/man7/localmailfilter.7.gz +share/man/man7/maildirquota.7.gz +share/man/man7/maildropex.7.gz +share/man/man7/maildropfilter.7.gz +share/man/man7/maildropgdbm.7.gz +share/man/man8/aliaslookup.8.gz +share/man/man8/courier.8.gz +share/man/man8/courierfilter.8.gz +%%WITHLDAP%%share/man/man8/courierldapaliasd.8.gz +share/man/man8/courierperlfilter.8.gz +share/man/man8/courierpop3d.8.gz +share/man/man8/courierpop3login.8.gz +share/man/man8/deliverquota.8.gz +share/man/man8/dupfilter.8.gz +share/man/man8/esmtpd-msa.8.gz +share/man/man8/esmtpd.8.gz +share/man/man8/filterctl.8.gz +share/man/man8/imapd.8.gz +share/man/man8/makeacceptmailfor.8.gz +share/man/man8/makealiases.8.gz +share/man/man8/makehosteddomains.8.gz +share/man/man8/makeimapaccess.8.gz +share/man/man8/makepercentrelay.8.gz +share/man/man8/makesmtpaccess-msa.8.gz +share/man/man8/makesmtpaccess.8.gz +share/man/man8/mkdhparams.8.gz +share/man/man8/mkesmtpdcert.8.gz +share/man/man8/mkimapdcert.8.gz +share/man/man8/mkpop3dcert.8.gz +share/man/man8/pop3d-ssl.8.gz +share/man/man8/pop3d.8.gz +share/man/man8/ratefilter.8.gz +share/man/man8/submit.8.gz +share/man/man8/verifyfilter.8.gz +share/man/man8/verifysmtp.8.gz sbin/aliaslookup sbin/courier sbin/courieresmtpd sbin/courierfilter %%WITHLDAP%%sbin/courierldapaliasd sbin/couriertcpd sbin/esmtpd sbin/esmtpd-msa sbin/esmtpd-ssl sbin/filterctl sbin/imapd sbin/imapd-ssl sbin/makeacceptmailfor sbin/makealiases sbin/makehosteddomains sbin/makeimapaccess sbin/makepercentrelay sbin/makesmtpaccess sbin/makesmtpaccess-msa %%WITHUUCP%%sbin/makeuucpneighbors sbin/mkdhparams sbin/mkesmtpdcert sbin/mkimapdcert sbin/mkpop3dcert sbin/pop3d sbin/pop3d-ssl sbin/sharedindexinstall sbin/sharedindexsplit sbin/showconfig @(%%MAILOWN%%,,) sbin/showmodules sbin/webgpg sbin/webmaild @owner %%SHAREOWN%% @group %%SHAREGRP%% %%DATADIR%%/courierctl.start %%DATADIR%%/couriermlm/adminrequest.tmpl %%DATADIR%%/couriermlm/confsubj.tmpl %%DATADIR%%/couriermlm/couriermlm-rcptfilter-ctlmsg %%DATADIR%%/couriermlm/couriermlm-rcptfilter-msg %%DATADIR%%/couriermlm/couriermlm-smtpfilter-ctlmsg %%DATADIR%%/couriermlm/couriermlm-smtpfilter-msg %%DATADIR%%/couriermlm/digestsubj.tmpl %%DATADIR%%/couriermlm/fetch.tmpl %%DATADIR%%/couriermlm/fetchsubj.tmpl %%DATADIR%%/couriermlm/help.tmpl %%DATADIR%%/couriermlm/idxheader2html.tmpl %%DATADIR%%/couriermlm/idxheaderhtml.tmpl %%DATADIR%%/couriermlm/idxheadertxt.tmpl %%DATADIR%%/couriermlm/idxsubject.tmpl %%DATADIR%%/couriermlm/modrejbody.tmpl %%DATADIR%%/couriermlm/modrejheader.tmpl %%DATADIR%%/couriermlm/modsubject.tmpl %%DATADIR%%/couriermlm/modtext.tmpl %%DATADIR%%/couriermlm/modtext2.tmpl %%DATADIR%%/couriermlm/style.css.tmpl %%DATADIR%%/couriermlm/sub.tmpl %%DATADIR%%/couriermlm/sub2.tmpl %%DATADIR%%/couriermlm/sub3.tmpl %%DATADIR%%/couriermlm/sub4.tmpl %%DATADIR%%/couriermlm/sub5.tmpl %%DATADIR%%/couriermlm/suback.tmpl %%DATADIR%%/couriermlm/subjrequest.tmpl %%DATADIR%%/couriermlm/subreportfooter.tmpl %%DATADIR%%/couriermlm/subreporthdr.tmpl %%DATADIR%%/couriermlm/subreporthdr1.tmpl %%DATADIR%%/couriermlm/subreporthdr2.tmpl %%DATADIR%%/couriermlm/subreporthdr3.tmpl %%DATADIR%%/couriermlm/unsub.tmpl %%DATADIR%%/couriermlm/unsub2.tmpl %%DATADIR%%/couriermlm/unsub3.tmpl %%DATADIR%%/couriermlm/warn1headers.tmpl %%DATADIR%%/couriermlm/warn1text.tmpl %%DATADIR%%/couriermlm/warn1text2.tmpl %%DATADIR%%/couriermlm/warn2msg.tmpl %%DATADIR%%/couriermlm/webmlm.tmpl %%DATADIR%%/couriermlm/webmlm.tmpl.html %%DATADIR%%/couriermlm/webmlmconfirm.html %%DATADIR%%/couriermlm/webmlmerror.tmpl.html %%DATADIR%%/couriermlm/webmlmidx.html %%DATADIR%%/couriermlm/webmlmlistadmin.tmpl.html %%DATADIR%%/couriermlm/webmlmlistadminmod.tmpl.html %%DATADIR%%/couriermlm/webmlmlistadminpw.tmpl.html %%DATADIR%%/couriermlm/webmlmlistindex.tmpl.html %%DATADIR%%/couriermlm/webmlmnotprocessed.html %%DATADIR%%/couriermlm/webmlmpleasewait.tmpl.html %%DATADIR%%/couriermlm/webmlmprocessed.html %%DATADIR%%/couriermlm/webmlmrequestreceived.tmpl.html %%DATADIR%%/couriermlm/webmlmsubinfo.tmpl.html %%DATADIR%%/couriermlm/webmlmsublist.tmpl.html %%DATADIR%%/courierwebadmin/admin-00machine.html %%DATADIR%%/courierwebadmin/admin-00machine.pl %%DATADIR%%/courierwebadmin/admin-05local.html %%DATADIR%%/courierwebadmin/admin-05local.pl %%DATADIR%%/courierwebadmin/admin-10password.html %%DATADIR%%/courierwebadmin/admin-10password.pl %%DATADIR%%/courierwebadmin/admin-15ldap.html %%DATADIR%%/courierwebadmin/admin-15ldap.pl %%DATADIR%%/courierwebadmin/admin-15ldapa.html %%DATADIR%%/courierwebadmin/admin-15ldapa.pl %%DATADIR%%/courierwebadmin/admin-15mysql.html %%DATADIR%%/courierwebadmin/admin-15mysql.pl %%DATADIR%%/courierwebadmin/admin-15pgsql.html %%DATADIR%%/courierwebadmin/admin-15pgsql.pl %%DATADIR%%/courierwebadmin/admin-20aliases.html %%DATADIR%%/courierwebadmin/admin-20aliases.pl %%DATADIR%%/courierwebadmin/admin-30esmtp.html %%DATADIR%%/courierwebadmin/admin-30esmtp.pl %%DATADIR%%/courierwebadmin/admin-30xspf.html %%DATADIR%%/courierwebadmin/admin-30xspf.pl %%DATADIR%%/courierwebadmin/admin-31esmtp.html %%DATADIR%%/courierwebadmin/admin-31esmtp.pl %%DATADIR%%/courierwebadmin/admin-34fax.html %%DATADIR%%/courierwebadmin/admin-34fax.pl %%DATADIR%%/courierwebadmin/admin-35fax.html %%DATADIR%%/courierwebadmin/admin-35fax.pl %%DATADIR%%/courierwebadmin/admin-40imap.html %%DATADIR%%/courierwebadmin/admin-40imap.pl %%DATADIR%%/courierwebadmin/admin-45pop3.html %%DATADIR%%/courierwebadmin/admin-45pop3.pl %%DATADIR%%/courierwebadmin/admin-47webmail.html %%DATADIR%%/courierwebadmin/admin-47webmail.pl %%DATADIR%%/courierwebadmin/admin-50bofh.html %%DATADIR%%/courierwebadmin/admin-50bofh.pl %%DATADIR%%/courierwebadmin/admin-cancel.pl %%DATADIR%%/courierwebadmin/admin-main.html %%DATADIR%%/courierwebadmin/admin-main.pl %%DATADIR%%/courierwebadmin/admin-save.html %%DATADIR%%/courierwebadmin/admin-save.pl %%DATADIR%%/courierwebadmin/dumpenv.pl %%DATADIR%%/courierwebadmin/login.html %%DATADIR%%/courierwebadmin/notsupp.html %%DATADIR%%/courierwebadmin/unsecure.html %%DATADIR%%/courierwebadmin/webadmin.pl %%DATADIR%%/courierwebadmin/webadmin.pm %%DATADIR%%/esmtpd %%DATADIR%%/esmtpd-ssl %%WITHFAX%%%%DATADIR%%/faxmail/application-pdf.filter %%WITHFAX%%%%DATADIR%%/faxmail/application-postscript.filter %%WITHFAX%%%%DATADIR%%/faxmail/coverpage %%WITHFAX%%%%DATADIR%%/faxmail/image-gif.filter %%WITHFAX%%%%DATADIR%%/faxmail/image-jpeg.filter %%WITHFAX%%%%DATADIR%%/faxmail/image-png.filter %%WITHFAX%%%%DATADIR%%/faxmail/init %%WITHFAX%%%%DATADIR%%/faxmail/new_fax %%WITHFAX%%%%DATADIR%%/faxmail/text-plain.filter %%DATADIR%%/filterctl %%DATADIR%%/imapd %%DATADIR%%/imapd-ssl %%DATADIR%%/makeacceptmailfor %%DATADIR%%/makealiases %%DATADIR%%/makedat %%DATADIR%%/makehosteddomains %%DATADIR%%/makeimapaccess %%DATADIR%%/makepercentrelay %%DATADIR%%/makesmtpaccess %%WITHUUCP%%%%DATADIR%%/makeuucpneighbors %%DATADIR%%/mkdhparams %%DATADIR%%/mkesmtpdcert %%DATADIR%%/mkimapdcert %%DATADIR%%/mkpop3dcert %%DATADIR%%/perlfilter-example.pl %%DATADIR%%/perlfilter-ratelimit.pl %%DATADIR%%/perlfilter-wrapper.pl %%DATADIR%%/pop3d %%DATADIR%%/pop3d-ssl %%DATADIR%%/sharedindexupdate %%DATADIR%%/sqwebmail/cleancache.pl %%DATADIR%%/sqwebmail/html/en %%DATADIR%%/sqwebmail/html/en-us/CHARSET %%DATADIR%%/sqwebmail/html/en-us/ISPELLDICT %%DATADIR%%/sqwebmail/html/en-us/LANGUAGE %%DATADIR%%/sqwebmail/html/en-us/LANGUAGE_PREF %%DATADIR%%/sqwebmail/html/en-us/LOCALE %%DATADIR%%/sqwebmail/html/en-us/TIMEZONELIST %%DATADIR%%/sqwebmail/html/en-us/abooklist.html %%DATADIR%%/sqwebmail/html/en-us/acl.html %%DATADIR%%/sqwebmail/html/en-us/attachments.html %%DATADIR%%/sqwebmail/html/en-us/autoresponder.html %%DATADIR%%/sqwebmail/html/en-us/calendarlogin.inc.html %%DATADIR%%/sqwebmail/html/en-us/empty.html %%DATADIR%%/sqwebmail/html/en-us/eventacl.html %%DATADIR%%/sqwebmail/html/en-us/eventdaily.html %%DATADIR%%/sqwebmail/html/en-us/eventdelete.html %%DATADIR%%/sqwebmail/html/en-us/eventmonthly.html %%DATADIR%%/sqwebmail/html/en-us/eventnotifydelete.txt %%DATADIR%%/sqwebmail/html/en-us/eventnotifynew.txt %%DATADIR%%/sqwebmail/html/en-us/eventnotifysubject.txt %%DATADIR%%/sqwebmail/html/en-us/eventshow.html %%DATADIR%%/sqwebmail/html/en-us/eventweekly.html %%DATADIR%%/sqwebmail/html/en-us/expired.html %%DATADIR%%/sqwebmail/html/en-us/filter.html %%DATADIR%%/sqwebmail/html/en-us/folder.html %%DATADIR%%/sqwebmail/html/en-us/folders.html %%DATADIR%%/sqwebmail/html/en-us/gpg.html %%DATADIR%%/sqwebmail/html/en-us/gpgcreate.html %%DATADIR%%/sqwebmail/html/en-us/gpgerr.html %%DATADIR%%/sqwebmail/html/en-us/index.html %%DATADIR%%/sqwebmail/html/en-us/invalid.html %%DATADIR%%/sqwebmail/html/en-us/keyimport.html %%DATADIR%%/sqwebmail/html/en-us/ldaplist.html %%DATADIR%%/sqwebmail/html/en-us/ldapsearch.html %%DATADIR%%/sqwebmail/html/en-us/login.html %%DATADIR%%/sqwebmail/html/en-us/loginform.inc.html %%DATADIR%%/sqwebmail/html/en-us/navbar.inc.html %%DATADIR%%/sqwebmail/html/en-us/navbar2.inc.html %%DATADIR%%/sqwebmail/html/en-us/navbar3.inc.html %%DATADIR%%/sqwebmail/html/en-us/newevent.html %%DATADIR%%/sqwebmail/html/en-us/newmsg.html %%DATADIR%%/sqwebmail/html/en-us/preferences.html %%DATADIR%%/sqwebmail/html/en-us/print.html %%DATADIR%%/sqwebmail/html/en-us/printnocookie.html %%DATADIR%%/sqwebmail/html/en-us/printredirect.html %%DATADIR%%/sqwebmail/html/en-us/quickadd.html %%DATADIR%%/sqwebmail/html/en-us/readmsg.html %%DATADIR%%/sqwebmail/html/en-us/redirect.html %%DATADIR%%/sqwebmail/html/en-us/refreshfr.html %%DATADIR%%/sqwebmail/html/en-us/smileys.txt %%DATADIR%%/sqwebmail/html/en-us/spellchk.html %%DATADIR%%/sqwebmail/images/bg.png %%DATADIR%%/sqwebmail/images/bluebottomleft.png %%DATADIR%%/sqwebmail/images/bluebottomright.png %%DATADIR%%/sqwebmail/images/bluetopleft.png %%DATADIR%%/sqwebmail/images/bluetopright.png %%DATADIR%%/sqwebmail/images/calendar.png %%DATADIR%%/sqwebmail/images/cancel.png %%DATADIR%%/sqwebmail/images/eventadd.png %%DATADIR%%/sqwebmail/images/eventedit.png %%DATADIR%%/sqwebmail/images/first.png %%DATADIR%%/sqwebmail/images/folder.png %%DATADIR%%/sqwebmail/images/folder2.png %%DATADIR%%/sqwebmail/images/folders.png %%DATADIR%%/sqwebmail/images/forward.png %%DATADIR%%/sqwebmail/images/forwardatt.png %%DATADIR%%/sqwebmail/images/fullheaders.png %%DATADIR%%/sqwebmail/images/graybottomleft.png %%DATADIR%%/sqwebmail/images/graybottomright.png %%DATADIR%%/sqwebmail/images/graytopleft.png %%DATADIR%%/sqwebmail/images/graytopright.png %%DATADIR%%/sqwebmail/images/key.png %%DATADIR%%/sqwebmail/images/last.png %%DATADIR%%/sqwebmail/images/left.png %%DATADIR%%/sqwebmail/images/left2.png %%DATADIR%%/sqwebmail/images/logo.png %%DATADIR%%/sqwebmail/images/print.png %%DATADIR%%/sqwebmail/images/reply.png %%DATADIR%%/sqwebmail/images/replyall.png %%DATADIR%%/sqwebmail/images/replylist.png %%DATADIR%%/sqwebmail/images/right.png %%DATADIR%%/sqwebmail/images/right2.png %%DATADIR%%/sqwebmail/images/save.png %%DATADIR%%/sqwebmail/images/sep.png %%DATADIR%%/sqwebmail/images/signin.png %%DATADIR%%/sqwebmail/images/sm-frowney.png %%DATADIR%%/sqwebmail/images/sm-frowney2.png %%DATADIR%%/sqwebmail/images/sm-notsmiley.png %%DATADIR%%/sqwebmail/images/sm-notsmiley2.png %%DATADIR%%/sqwebmail/images/sm-ohno.png %%DATADIR%%/sqwebmail/images/sm-smiley.png %%DATADIR%%/sqwebmail/images/sm-smiley2.png %%DATADIR%%/sqwebmail/images/sm-wink.png %%DATADIR%%/sqwebmail/images/sm-wink2.png %%DATADIR%%/sqwebmail/images/sqwebmail.css %%DATADIR%%/sqwebmail/images/trash2.png %%DATADIR%%/sqwebmail/images/uncancel.png %%DATADIR%%/sqwebmail/images/wikifmt.html %%DATADIR%%/sqwebmail/ldapsearch %%DATADIR%%/sqwebmail/sendit.sh %%DATADIR%%/sqwebmail/webgpg %%DATADIR%%/verifysender %%DATADIR%%/verifysenderfull @owner @group %%PORTDOCS%%%%DOCSDIR%%/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/BENCHMARKS %%PORTDOCS%%%%DOCSDIR%%/BUGS.imap %%PORTDOCS%%%%DOCSDIR%%/BUGS.sqwebmail %%PORTDOCS%%%%DOCSDIR%%/COPYING %%PORTDOCS%%%%DOCSDIR%%/COPYING.GPL %%PORTDOCS%%%%DOCSDIR%%/ChangeLog %%PORTDOCS%%%%DOCSDIR%%/ChangeLog.2001 %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/NEWS %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/README.couriertls %%PORTDOCS%%%%DOCSDIR%%/README.imap.proxy %%PORTDOCS%%%%DOCSDIR%%/README.maildirquota.txt %%PORTDOCS%%%%DOCSDIR%%/README.sharedfolders.txt %%PORTDOCS%%%%DOCSDIR%%/SECURITY.sqwebmail %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/html/BUGS.imap.html %%PORTDOCS%%%%DOCSDIR%%/html/BUGS.sqwebmail.html %%PORTDOCS%%%%DOCSDIR%%/html/FAQ.html %%PORTDOCS%%%%DOCSDIR%%/html/NEWS.html %%PORTDOCS%%%%DOCSDIR%%/html/README.gpglib.html %%PORTDOCS%%%%DOCSDIR%%/html/README.imap.proxy.html %%PORTDOCS%%%%DOCSDIR%%/html/README.maildirfilter.html %%PORTDOCS%%%%DOCSDIR%%/html/README.maildirquota.html %%PORTDOCS%%%%DOCSDIR%%/html/README.maildrop.html %%PORTDOCS%%%%DOCSDIR%%/html/README.pcp.html %%PORTDOCS%%%%DOCSDIR%%/html/README.sharedfolders.html %%PORTDOCS%%%%DOCSDIR%%/html/SECURITY.sqwebmail.html %%PORTDOCS%%%%DOCSDIR%%/html/aliases.html %%PORTDOCS%%%%DOCSDIR%%/html/aliaslookup.html %%PORTDOCS%%%%DOCSDIR%%/html/bg.png %%PORTDOCS%%%%DOCSDIR%%/html/cancelmsg.html %%PORTDOCS%%%%DOCSDIR%%/html/courier.html %%PORTDOCS%%%%DOCSDIR%%/html/courierd.html %%PORTDOCS%%%%DOCSDIR%%/html/courierdsn.html %%WITHFAX%%%%PORTDOCS%%%%DOCSDIR%%/html/courierfax.html %%PORTDOCS%%%%DOCSDIR%%/html/courierfilter.html %%WITHLDAP%%%%PORTDOCS%%%%DOCSDIR%%/html/courierldapaliasd.html %%PORTDOCS%%%%DOCSDIR%%/html/couriermlm.html %%PORTDOCS%%%%DOCSDIR%%/html/courierperlfilter.html %%PORTDOCS%%%%DOCSDIR%%/html/courierpop3d.html %%PORTDOCS%%%%DOCSDIR%%/html/couriertcpd.html %%PORTDOCS%%%%DOCSDIR%%/html/couriertls.html %%WITHUUCP%%%%PORTDOCS%%%%DOCSDIR%%/html/courieruucp.html %%PORTDOCS%%%%DOCSDIR%%/html/deliverquota.html %%PORTDOCS%%%%DOCSDIR%%/html/documentation.html %%PORTDOCS%%%%DOCSDIR%%/html/dot-courier.html %%PORTDOCS%%%%DOCSDIR%%/html/dot-forward.html %%PORTDOCS%%%%DOCSDIR%%/html/draft-varshavchik-exdata-smtpext.txt %%PORTDOCS%%%%DOCSDIR%%/html/draft-varshavchik-security-smtpext.txt %%PORTDOCS%%%%DOCSDIR%%/html/draft-varshavchik-verp-smtpext.txt %%PORTDOCS%%%%DOCSDIR%%/html/dupfilter.html %%PORTDOCS%%%%DOCSDIR%%/html/esmtp.html %%PORTDOCS%%%%DOCSDIR%%/html/esmtpd.html %%PORTDOCS%%%%DOCSDIR%%/html/icon.gif %%PORTDOCS%%%%DOCSDIR%%/html/imapd.html %%PORTDOCS%%%%DOCSDIR%%/html/index.html %%PORTDOCS%%%%DOCSDIR%%/html/install.html %%PORTDOCS%%%%DOCSDIR%%/html/japanese_flag.png %%PORTDOCS%%%%DOCSDIR%%/html/layout.html %%PORTDOCS%%%%DOCSDIR%%/html/links.html %%PORTDOCS%%%%DOCSDIR%%/html/local.html %%PORTDOCS%%%%DOCSDIR%%/html/localmailfilter.html %%PORTDOCS%%%%DOCSDIR%%/html/lockmail.html %%PORTDOCS%%%%DOCSDIR%%/html/mailbot.html %%PORTDOCS%%%%DOCSDIR%%/html/maildir.html %%PORTDOCS%%%%DOCSDIR%%/html/maildiracl.html %%PORTDOCS%%%%DOCSDIR%%/html/maildirkw.html %%PORTDOCS%%%%DOCSDIR%%/html/maildirmake.html %%PORTDOCS%%%%DOCSDIR%%/html/maildirquota.html %%PORTDOCS%%%%DOCSDIR%%/html/maildirwatch.html %%PORTDOCS%%%%DOCSDIR%%/html/maildrop.README.html %%PORTDOCS%%%%DOCSDIR%%/html/maildrop.html %%PORTDOCS%%%%DOCSDIR%%/html/maildropex.html %%PORTDOCS%%%%DOCSDIR%%/html/maildropfilter.html %%PORTDOCS%%%%DOCSDIR%%/html/maildropgdbm.html %%PORTDOCS%%%%DOCSDIR%%/html/maildroptips.html %%PORTDOCS%%%%DOCSDIR%%/html/mailq.html %%PORTDOCS%%%%DOCSDIR%%/html/makeacceptmailfor.html %%PORTDOCS%%%%DOCSDIR%%/html/makealiases.html %%PORTDOCS%%%%DOCSDIR%%/html/makedat.html %%PORTDOCS%%%%DOCSDIR%%/html/makehosteddomains.html %%PORTDOCS%%%%DOCSDIR%%/html/makeimapaccess.html %%PORTDOCS%%%%DOCSDIR%%/html/makemime.html %%PORTDOCS%%%%DOCSDIR%%/html/makepercentrelay.html %%PORTDOCS%%%%DOCSDIR%%/html/makesmtpaccess.html %%PORTDOCS%%%%DOCSDIR%%/html/manpage.css %%PORTDOCS%%%%DOCSDIR%%/html/menu.html %%PORTDOCS%%%%DOCSDIR%%/html/mimegpg.html %%PORTDOCS%%%%DOCSDIR%%/html/mkdhparams.html %%PORTDOCS%%%%DOCSDIR%%/html/mkesmtpdcert.html %%PORTDOCS%%%%DOCSDIR%%/html/mkimapdcert.html %%PORTDOCS%%%%DOCSDIR%%/html/mkpop3dcert.html %%PORTDOCS%%%%DOCSDIR%%/html/modules.html %%PORTDOCS%%%%DOCSDIR%%/html/pcp_README.html %%PORTDOCS%%%%DOCSDIR%%/html/pop3d.html %%PORTDOCS%%%%DOCSDIR%%/html/preline.html %%PORTDOCS%%%%DOCSDIR%%/html/queue.html %%PORTDOCS%%%%DOCSDIR%%/html/ratefilter.html %%PORTDOCS%%%%DOCSDIR%%/html/reformail.html %%PORTDOCS%%%%DOCSDIR%%/html/reformime.html %%PORTDOCS%%%%DOCSDIR%%/html/repo.html %%PORTDOCS%%%%DOCSDIR%%/html/rpm.html %%PORTDOCS%%%%DOCSDIR%%/html/sendmail.html %%PORTDOCS%%%%DOCSDIR%%/html/socks.html %%PORTDOCS%%%%DOCSDIR%%/html/status.html %%PORTDOCS%%%%DOCSDIR%%/html/structures.html %%PORTDOCS%%%%DOCSDIR%%/html/submit.html %%PORTDOCS%%%%DOCSDIR%%/html/testmxlookup.html %%PORTDOCS%%%%DOCSDIR%%/html/verifyfilter.html %%PORTDOCS%%%%DOCSDIR%%/html/webmlmd.html %%WITHCERTSDIR%%@dir(%%MAILOWN%%,%%MAILGRP%%,) etc/courier/.pem @dir(%%MAILOWN%%,%%MAILGRP%%,) etc/courier/aliasdir @dir(%%MAILOWN%%,%%MAILGRP%%,) etc/courier/aliases @dir etc/courier/esmtpacceptmailfor.dir @dir etc/courier/esmtppercentrelay.dir @dir(%%MAILOWN%%,%%MAILGRP%%,750) etc/courier/filters/active @dir(%%MAILOWN%%,%%MAILGRP%%,750) etc/courier/filters @dir etc/courier/imapaccess @dir etc/courier/shared @dir etc/courier/shared.tmp @dir(%%MAILOWN%%,%%MAILGRP%%,) etc/courier/webadmin/added @dir(%%MAILOWN%%,%%MAILGRP%%,) etc/courier/webadmin/removed @dir(%%MAILOWN%%,%%MAILGRP%%,700) etc/courier/webadmin etc/courier/webadmin/restartauthcmd @dir(%%MAILOWN%%,%%MAILGRP%%,) etc/courier @dir(%%CACHEOWN%%,%%MAILGRP%%,700) %%CALENDIR%%/localcache @dir(%%CACHEOWN%%,%%MAILGRP%%,750) %%CALENDIR%%/private @dir(%%CACHEOWN%%,%%MAILGRP%%,755) %%CALENDIR%%/public @dir(%%BINOWN%%,%%BINGRP%%,755) %%CALENDIR%% @dir(%%MAILOWN%%,%%MAILGRP%%,750) %%LOCALSTATEDIR%%/allfilters @dir(%%MAILOWN%%,%%MAILGRP%%,750) %%LOCALSTATEDIR%%/filters @dir(%%MAILOWN%%,%%MAILGRP%%,750) %%LOCALSTATEDIR%%/msgq @dir(%%MAILOWN%%,%%MAILGRP%%,750) %%LOCALSTATEDIR%%/msgs @dir(%%MAILOWN%%,%%MAILGRP%%,755) %%LOCALSTATEDIR%%/sts @dir(%%MAILOWN%%,%%MAILGRP%%,770) %%LOCALSTATEDIR%%/tmp @dir(%%MAILOWN%%,%%MAILGRP%%,755) %%LOCALSTATEDIR%%/track @dir %%LOCALSTATEDIR%% @dir %%CACHEDIR%%