[Midnightbsd-cvs] mports [20583] trunk/mail/dovecot2: dovecot 2.2.18
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Sat Oct 31 12:44:44 EDT 2015
Revision: 20583
http://svnweb.midnightbsd.org/mports/?rev=20583
Author: laffer1
Date: 2015-10-31 12:44:44 -0400 (Sat, 31 Oct 2015)
Log Message:
-----------
dovecot 2.2.18
Modified Paths:
--------------
trunk/mail/dovecot2/Makefile
trunk/mail/dovecot2/distinfo
trunk/mail/dovecot2/files/dovecot.in
trunk/mail/dovecot2/files/pkg-message.in
trunk/mail/dovecot2/pkg-plist
Modified: trunk/mail/dovecot2/Makefile
===================================================================
--- trunk/mail/dovecot2/Makefile 2015-10-31 16:42:51 UTC (rev 20582)
+++ trunk/mail/dovecot2/Makefile 2015-10-31 16:44:44 UTC (rev 20583)
@@ -1,7 +1,7 @@
# $MidnightBSD$
PORTNAME= dovecot
-PORTVERSION= 2.2.15
+PORTVERSION= 2.2.18
PORTREVISION= 0
CATEGORIES= mail ipv6
MASTER_SITES= http://www.dovecot.org/releases/${PORTVERSION:R}/
@@ -15,8 +15,9 @@
CONFLICTS= dovecot-1.[0-9]*
-USES= iconv libtool cpe
+USES= cpe iconv libtool
USE_RC_SUBR= dovecot
+USE_OPENSSL= yes
GNU_CONFIGURE= yes
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd9.1 \
@@ -24,14 +25,8 @@
CONFIGURE_ARGS= --localstatedir=/var \
--with-statedir=/var/db/dovecot \
--without-shadow \
- --with-notify=kqueue \
- --with-pam \
- --with-zlib \
- --with-bzlib \
- --with-lzma \
- --with-libiconv-prefix=/usr/local/
-CPPFLAGS+= -I${LOCALBASE}/include
-LDFLAGS+= -L${LOCALBASE}/lib
+ --with-docs
+
USE_LDCONFIG= ${PREFIX}/lib/dovecot
INSTALL_TARGET= install-strip
@@ -38,172 +33,125 @@
USERS= dovecot dovenull
GROUPS= ${USERS}
-PROTOCOLS= imap pop3
+OPTIONS_DEFINE= GC KQUEUE LIBWRAP LZ4 SSL VPOPMAIL DOCS EXAMPLES
+OPTIONS_DEFAULT=KQUEUE SSL GSSAPI_NONE
+OPTIONS_SUB= yes
-# Default requirement for dovecot rc script
-_REQUIRE= LOGIN
+OPTIONS_GROUP= DB FTS
+OPTIONS_GROUP_DB= CDB LDAP MYSQL PGSQL SQLITE
+OPTIONS_GROUP_FTS= ICU LUCENE SOLR TEXTCAT
-OPTIONS_DEFINE= KQUEUE SSL GSSAPI VPOPMAIL LDAP LUCENE PGSQL MYSQL SQLITE \
- SOLR DOCS EXAMPLES LIBWRAP
-OPTIONS_DEFAULT= KQUEUE SSL
-OPTIONS_SUB= yes
+OPTIONS_SINGLE= GSSAPI
+OPTIONS_SINGLE_GSSAPI= GSSAPI_NONE GSSAPI_BASE GSSAPI_HEIMDAL GSSAPI_MIT
+GC_DESC= Garbage collection with boehm-gc
KQUEUE_DESC= kqueue(2) support
+LZ4_DESC= LZ4 compression support
VPOPMAIL_DESC= vpopmail support
+
+DB_DESC= Database support
+CDB_DESC= CDB database support
+
+FTS_DESC= Full text search plugins
+ICU_DESC= Use libicu for FTS unicode normalization
LUCENE_DESC= CLucene FTS support
SOLR_DESC= Solr FTS support
+TEXTCAT_DESC= Libtextcat FTS support
-.include <bsd.port.pre.mk>
+GSSAPI_NONE_DESC= Build without GSSAPI support
+GSSAPI_BASE_DESC= Use GSSAPI from base
+GSSAPI_HEIMDAL_DESC= Use Heimdal GSSAPI from security/heimdal
+GSSAPI_MIT_DESC= Use MIT GSSAPI from security/krb5
-# sed script for dovecot.conf
-REINPLACE= s!%%PROTOCOLS%%!${PROTOCOLS}!g;\
- s!/usr/!${PREFIX}/!g;\
- s!=/usr!=${PREFIX}!g;\
- s!=/etc !=${PREFIX}/etc !g;\
- s!/etc/dovecot!${PREFIX}&!g;\
- s![[:<:]]doc/(dovecot-[^-]+)-example.conf[[:>:]]!${EXAMPLESDIR}/\1.conf!g;\
- s!\#sendmail_path = /usr/.*!sendmail_path = /usr/sbin/sendmail!g;
+CDB_CONFIGURE_WITH= cdb
+CDB_LIB_DEPENDS= libcdb.so:${PORTSDIR}/databases/tinycdb
-.if ${PORT_OPTIONS:MDOCS}
-DOCS= AUTHORS COPYING COPYING.LGPL COPYING.MIT INSTALL NEWS TODO README
-PORTDOCS= *
-.else
-CONFIGURE_ARGS+= --without-docs
-.endif
+GC_CONFIGURE_WITH= gc
+GC_LIB_DEPENDS= libgc.so:${PORTSDIR}/devel/boehm-gc
-PORTEXAMPLES= *
+GSSAPI_NONE_CONFIGURE_ON= --without-gssapi
+GSSAPI_BASE_USES= gssapi
+GSSAPI_BASE_CONFIGURE_ON= --with-gssapi ${GSSAPI_CONFIGURE_ARGS}
+GSSAPI_HEIMDAL_USES= gssapi:heimdal
+GSSAPI_HEIMDAL_CONFIGURE_ON= --with-gssapi ${GSSAPI_CONFIGURE_ARGS}
+GSSAPI_MIT_USES= gssapi:mit
+GSSAPI_MIT_CONFIGURE_ON= --with-gssapi ${GSSAPI_CONFIGURE_ARGS}
-## kqueue(2) support
-#
-.if ${PORT_OPTIONS:MKQUEUE}
-CONFIGURE_ARGS+=--with-ioloop=kqueue
-.else
-CONFIGURE_ARGS+=--with-ioloop=poll
-.endif
+ICU_CONFIGURE_WITH= icu
+ICU_LIB_DEPENDS= libicui18n.so:${PORTSDIR}/devel/icu
+ICU_USES= pkgconfig
-## SSL support
-#
-.if ${PORT_OPTIONS:MSSL}
-PROTOCOLS+= imaps pop3s
-PLIST_SUB+= SSL=""
-.else
-PLIST_SUB+= SSL="@comment "
-CONFIGURE_ARGS+=--without-ssl
-.endif
+KQUEUE_CONFIGURE_OFF= --with-ioloop=poll --with-notify=none
+KQUEUE_CONFIGURE_ON= --with-ioloop=kqueue --with-notify=kqueue
-## GSSAPI support
-#
-.if ${PORT_OPTIONS:MGSSAPI}
-CONFIGURE_ARGS+=--with-gssapi
-.else
-CONFIGURE_ARGS+=--without-gssapi
-.endif
+LDAP_USE= OPENLDAP=yes
+LDAP_CONFIGURE_WITH= ldap
+LDAP_RC_REQUIRE= slapd
-## VPopMail Support
-#
-.if ${PORT_OPTIONS:MVPOPMAIL}
-BUILD_DEPENDS+= ${LOCALBASE}/vpopmail/bin/vchkpw:${PORTSDIR}/mail/vpopmail
-CONFIGURE_ARGS+=--with-vpopmail
-.else
-CONFIGURE_ARGS+=--without-vpopmail
-.endif
+LIBWRAP_CONFIGURE_WITH= libwrap
-## OpenLDAP Support
-#
-.if ${PORT_OPTIONS:MLDAP}
-USE_OPENLDAP= yes
-CONFIGURE_ARGS+=--with-ldap
-PLIST_SUB+= LDAP=""
-_REQUIRE+= slapd
-.else
-CONFIGURE_ARGS+=--without-ldap
-PLIST_SUB+= LDAP="@comment "
-.endif
+LUCENE_CONFIGURE_WITH= lucene
+LUCENE_LIB_DEPENDS= libclucene-core.so:${PORTSDIR}/textproc/clucene
-## CLucene FTS support
-#
-.if ${PORT_OPTIONS:MLUCENE}
-CONFIGURE_ARGS+=--with-lucene
-LIB_DEPENDS+= clucene-core:${PORTSDIR}/textproc/clucene
-PLIST_SUB+= LUCENE=""
-.else
-CONFIGURE_ARGS+=--without-lucene
-PLIST_SUB+= LUCENE="@comment "
-.endif
+LZ4_LIB_DEPENDS= liblz4.so:${PORTSDIR}/archivers/liblz4
-## PostgreSQL Support
-#
-.if ${PORT_OPTIONS:MPGSQL}
-USE_PGSQL= yes
-CONFIGURE_ARGS+=--with-pgsql
-PLIST_SUB+= SQL=""
-_REQUIRE+= postgresql
-.else
-CONFIGURE_ARGS+=--without-pgsql
-PLIST_SUB+= SQL="@comment "
-.endif
+MYSQL_USE= MYSQL=yes
+MYSQL_CONFIGURE_WITH= mysql
+MYSQL_RC_REQUIRE= mysql
-## MySQL Support
-#
-.if ${PORT_OPTIONS:MMYSQL}
-USE_MYSQL= yes
-CONFIGURE_ARGS+=--with-mysql
-PLIST_SUB+= SQL=""
-_REQUIRE+= mysql
-.else
-CONFIGURE_ARGS+=--without-mysql
-PLIST_SUB+= SQL="@comment "
-.endif
+PGSQL_USES= pgsql
+PGSQL_CONFIGURE_WITH= pgsql
+PGSQL_RC_REQUIRE= postgresql
-## SQLite Support
-#
-.if ${PORT_OPTIONS:MSQLITE}
-USE_SQLITE= 3
-CONFIGURE_ARGS+=--with-sqlite
-PLIST_SUB+= SQL=""
-.else
-CONFIGURE_ARGS+=--without-sqlite
-PLIST_SUB+= SQL="@comment "
-.endif
+SOLR_CONFIGURE_WITH= solr
+SOLR_BUILD_DEPENDS= curl:${PORTSDIR}/ftp/curl
+SOLR_LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2
-## SOLR support
-#
-.if ${PORT_OPTIONS:MSOLR}
-CONFIGURE_ARGS+=--with-solr
-BUILD_DEPENDS+= curl:${PORTSDIR}/ftp/curl
-LIB_DEPENDS+= expat:${PORTSDIR}/textproc/expat2
-PLIST_SUB+= SOLR=""
-.else
-CONFIGURE_ARGS+=--without-solr
-PLIST_SUB+= SOLR="@comment "
-.endif
+SQLITE_USE= SQLITE=3
+SQLITE_CONFIGURE_WITH= sqlite
-## libwrap support
-#
-.if ${PORT_OPTIONS:MLIBWRAP}
-CONFIGURE_ARGS+=--with-libwrap
-PLIST_SUB+= LIBWRAP=""
-.else
-CONFIGURE_ARGS+=--without-libwrap
-PLIST_SUB+= LIBWRAP="@comment "
-.endif
+SSL_CONFIGURE_WITH= ssl=openssl
-SUB_LIST= REQUIRE="${_REQUIRE}"
-SUB_FILES= pkg-deinstall pkg-message
+TEXTCAT_CONFIGURE_WITH= textcat
+TEXTCAT_LIB_DEPENDS= libtextcat.so:${PORTSDIR}/textproc/libtextcat
+VPOPMAIL_BUILD_DEPENDS= ${LOCALBASE}/vpopmail/bin/vchkpw:${PORTSDIR}/mail/vpopmail
+VPOPMAIL_CONFIGURE_WITH=vpopmail
+
+DOCS= AUTHORS COPYING COPYING.LGPL COPYING.MIT INSTALL NEWS TODO README
+PORTDOCS= *
+PORTEXAMPLES= *
+
+.include <bsd.mport.options.mk>
+
+CPPFLAGS+= -I${LOCALBASE}/include -I${OPENSSLINC}
+LDFLAGS+= -L${LOCALBASE}/lib -I${OPENSSLLIB}
+
+# Default requirement for dovecot rc script
+_REQUIRE= LOGIN
+
+.for opt in ${PORT_OPTIONS}
+_REQUIRE+= ${${opt}_RC_REQUIRE}
+.endfor
+
+SUB_LIST+= REQUIRE="${_REQUIRE}"
+SUB_FILES+= pkg-message
+
post-patch:
- @${REINPLACE_CMD} -E -e '${REINPLACE}' \
- ${WRKSRC}/doc/example-config/dovecot.conf
- @${REINPLACE_CMD} -E -e'\
- s!-example\.conf[[:>:]]!.conf!g;\
- s!^(confdir[[:space:]]+=[[:space:]]+)\$$\(sysconfdir\)!\1${EXAMPLESDIR}!g;\
- ' ${WRKSRC}/*/Makefile.in ${WRKSRC}/Makefile.in
+ @${REINPLACE_CMD} -e 's,/etc/dovecot,${PREFIX}/etc/dovecot,g; \
+ s,sysconfdir=/etc,sysconfdir=${PREFIX}/etc,g' \
+ ${WRKSRC}/doc/example-config/*.conf ${WRKSRC}/doc/example-config/conf.d/*
+ @${REINPLACE_CMD} -e '/^LIBS =/s/$$/ @LTLIBICONV@/' \
+ ${WRKSRC}/src/lib-mail/Makefile.in
+ # Install the sample config files into ETCDIR/example-config/
+ @${REINPLACE_CMD} -e '/^exampledir =/s|\$$(docdir)|${ETCDIR}|' \
+ ${WRKSRC}/doc/example-config/Makefile.in \
+ ${WRKSRC}/doc/example-config/conf.d/Makefile.in
post-install:
- @${MKDIR} ${EXAMPLESDIR}
- cd ${WRKSRC}/doc && ${INSTALL_SCRIPT} dovecot-openssl.cnf mkcert.sh ${EXAMPLESDIR}
-.if ${PORT_OPTIONS:MDOCS}
- cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
-.endif
+ @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${STAGEDIR}${DOCSDIR}
+ ${MV} ${STAGEDIR}${DOCSDIR}/dovecot-openssl.cnf ${STAGEDIR}${EXAMPLESDIR}
+ ${MV} ${STAGEDIR}${DOCSDIR}/mkcert.sh ${STAGEDIR}${EXAMPLESDIR}
+ (cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR})
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
Modified: trunk/mail/dovecot2/distinfo
===================================================================
--- trunk/mail/dovecot2/distinfo 2015-10-31 16:42:51 UTC (rev 20582)
+++ trunk/mail/dovecot2/distinfo 2015-10-31 16:44:44 UTC (rev 20583)
@@ -1,2 +1,2 @@
-SHA256 (dovecot-2.2.15.tar.gz) = d10e7769e2367d635c93fd6589efdd05f2e3acf13c7911a40167faedf23c399f
-SIZE (dovecot-2.2.15.tar.gz) = 4747444
+SHA256 (dovecot-2.2.18.tar.gz) = b6d8468cea47f1227f47b80618f7fb872e2b2e9d3302adc107a005dd083865bb
+SIZE (dovecot-2.2.18.tar.gz) = 5100040
Modified: trunk/mail/dovecot2/files/dovecot.in
===================================================================
--- trunk/mail/dovecot2/files/dovecot.in 2015-10-31 16:42:51 UTC (rev 20582)
+++ trunk/mail/dovecot2/files/dovecot.in 2015-10-31 16:44:44 UTC (rev 20583)
@@ -26,6 +26,7 @@
start_precmd="start_precmd"
stop_postcmd="stop_postcmd"
restart_cmd="restart_cmd"
+extra_commands="reload"
start_precmd()
{ # Ensure runtime directories exist with correct permissions
@@ -48,12 +49,12 @@
# To start multiple instances of dovecot set dovecot_config to
# a space seperated list of configuration files.
-if checkyesno ${name}_enable; then
- for config in ${dovecot_config}; do
- required_files="${config}"
- command_args="-c ${config}"
+for config in ${dovecot_config}; do
+ required_files="${config}"
+ command_args="-c ${config}"
+ if [ -f ${config} ]; then
base_dir=$(${command} ${command_args} -a | /usr/bin/awk -F '= ' '/^base_dir =/ { print $2 }')
pidfile="${base_dir}/master.pid"
run_rc_command "$1"
- done
-fi
+ fi
+done
Modified: trunk/mail/dovecot2/files/pkg-message.in
===================================================================
--- trunk/mail/dovecot2/files/pkg-message.in 2015-10-31 16:42:51 UTC (rev 20582)
+++ trunk/mail/dovecot2/files/pkg-message.in 2015-10-31 16:44:44 UTC (rev 20583)
@@ -1,17 +1,17 @@
- You can get basic IMAP and POP3 services running by enabling
- dovecot in the /etc/rc.conf file.
+---------------------------------------------------------------------
+
+ You must create the configuration files yourself. Copy them over
+ to %%ETCDIR%% and edit them as desired:
- dovecot_enable
- (bool) If set to ``YES'', run the dovecot command
- at boot time.
+ cp -R %%ETCDIR%%/example-config/* \
+ %%ETCDIR%%
- In the basic configuration Dovecot will authenticate users against
- the system's passwd file and use the default /var/mail/$USER mbox
- files.
+ The default configuration includes IMAP and POP3 services, will
+ authenticate users agains the system's passwd file, and will use
+ the default /var/mail/$USER mbox files.
- dovecot_config
- (str) Path to dovecot configuration file(s).
- Default %%PREFIX%%/etc/dovecot/dovecot.conf.
+ Next, enable dovecot in /etc/rc.conf:
- To start multiple instances of dovecot set dovecot_config to
- a space separated list of configuration files.
+ dovecot_enable="YES"
+
+---------------------------------------------------------------------
Modified: trunk/mail/dovecot2/pkg-plist
===================================================================
--- trunk/mail/dovecot2/pkg-plist 2015-10-31 16:42:51 UTC (rev 20582)
+++ trunk/mail/dovecot2/pkg-plist 2015-10-31 16:44:44 UTC (rev 20583)
@@ -1,6 +1,36 @@
bin/doveadm
bin/doveconf
bin/dsync
+%%ETCDIR%%/example-config/conf.d/10-auth.conf
+%%ETCDIR%%/example-config/conf.d/10-director.conf
+%%ETCDIR%%/example-config/conf.d/10-logging.conf
+%%ETCDIR%%/example-config/conf.d/10-mail.conf
+%%ETCDIR%%/example-config/conf.d/10-master.conf
+%%ETCDIR%%/example-config/conf.d/10-ssl.conf
+%%ETCDIR%%/example-config/conf.d/15-lda.conf
+%%ETCDIR%%/example-config/conf.d/15-mailboxes.conf
+%%ETCDIR%%/example-config/conf.d/20-imap.conf
+%%ETCDIR%%/example-config/conf.d/20-lmtp.conf
+%%ETCDIR%%/example-config/conf.d/20-pop3.conf
+%%ETCDIR%%/example-config/conf.d/90-acl.conf
+%%ETCDIR%%/example-config/conf.d/90-plugin.conf
+%%ETCDIR%%/example-config/conf.d/90-quota.conf
+%%ETCDIR%%/example-config/conf.d/auth-checkpassword.conf.ext
+%%ETCDIR%%/example-config/conf.d/auth-deny.conf.ext
+%%ETCDIR%%/example-config/conf.d/auth-dict.conf.ext
+%%ETCDIR%%/example-config/conf.d/auth-ldap.conf.ext
+%%ETCDIR%%/example-config/conf.d/auth-master.conf.ext
+%%ETCDIR%%/example-config/conf.d/auth-passwdfile.conf.ext
+%%ETCDIR%%/example-config/conf.d/auth-sql.conf.ext
+%%ETCDIR%%/example-config/conf.d/auth-static.conf.ext
+%%ETCDIR%%/example-config/conf.d/auth-system.conf.ext
+%%ETCDIR%%/example-config/conf.d/auth-vpopmail.conf.ext
+%%ETCDIR%%/example-config/dovecot-dict-auth.conf.ext
+%%ETCDIR%%/example-config/dovecot-dict-sql.conf.ext
+%%ETCDIR%%/example-config/dovecot-ldap.conf.ext
+%%ETCDIR%%/example-config/dovecot-sql.conf.ext
+%%ETCDIR%%/example-config/dovecot.conf
+%%ETCDIR%%/README
include/dovecot/abspath.h
include/dovecot/access-lookup.h
include/dovecot/anvil-client.h
@@ -29,6 +59,7 @@
include/dovecot/auth-worker-server.h
include/dovecot/auth.h
include/dovecot/backtrace-string.h
+include/dovecot/base32.h
include/dovecot/base64.h
include/dovecot/bits.h
include/dovecot/bsearch-insert-pos.h
@@ -65,6 +96,7 @@
include/dovecot/dict-transaction-memory.h
include/dovecot/dict.h
include/dovecot/dns-lookup.h
+include/dovecot/doveadm-cmd.h
include/dovecot/doveadm-dsync.h
include/dovecot/doveadm-dump.h
include/dovecot/doveadm-mail-iter.h
@@ -99,6 +131,12 @@
include/dovecot/fs-api.h
include/dovecot/fs-sis-common.h
include/dovecot/fsync-mode.h
+include/dovecot/fts-api-private.h
+include/dovecot/fts-api.h
+include/dovecot/fts-expunge-log.h
+include/dovecot/fts-indexer.h
+include/dovecot/fts-parser.h
+include/dovecot/fts-user.h
include/dovecot/guid.h
include/dovecot/hash-decl.h
include/dovecot/hash-format.h
@@ -139,6 +177,7 @@
include/dovecot/imap-expunge.h
include/dovecot/imap-fetch.h
include/dovecot/imap-id.h
+include/dovecot/imap-keepalive.h
include/dovecot/imap-list.h
include/dovecot/imap-match.h
include/dovecot/imap-metadata.h
@@ -168,6 +207,7 @@
include/dovecot/imapc-list.h
include/dovecot/imapc-mail.h
include/dovecot/imapc-msgmap.h
+include/dovecot/imapc-search.h
include/dovecot/imapc-settings.h
include/dovecot/imapc-storage.h
include/dovecot/imapc-sync.h
@@ -208,6 +248,7 @@
include/dovecot/istream-concat.h
include/dovecot/istream-crlf.h
include/dovecot/istream-dot.h
+include/dovecot/istream-file-private.h
include/dovecot/istream-fs-file.h
include/dovecot/istream-hash.h
include/dovecot/istream-header-filter.h
@@ -223,9 +264,11 @@
include/dovecot/istream-sized.h
include/dovecot/istream-tee.h
include/dovecot/istream-timeout.h
+include/dovecot/istream-unix.h
include/dovecot/istream-zlib.h
include/dovecot/istream.h
include/dovecot/json-parser.h
+include/dovecot/json-tree.h
include/dovecot/lda-settings.h
include/dovecot/lib-signals.h
include/dovecot/lib.h
@@ -241,6 +284,7 @@
include/dovecot/mail-copy.h
include/dovecot/mail-deliver.h
include/dovecot/mail-error.h
+include/dovecot/mail-html2text.h
include/dovecot/mail-index-alloc-cache.h
include/dovecot/mail-index-modseq.h
include/dovecot/mail-index-private.h
@@ -269,6 +313,8 @@
include/dovecot/mail-types.h
include/dovecot/mail-user-hash.h
include/dovecot/mail-user.h
+include/dovecot/mailbox-attribute-private.h
+include/dovecot/mailbox-attribute.h
include/dovecot/mailbox-guid-cache.h
include/dovecot/mailbox-list-delete.h
include/dovecot/mailbox-list-fs.h
@@ -337,6 +383,7 @@
include/dovecot/message-part-serialize.h
include/dovecot/message-search.h
include/dovecot/message-size.h
+include/dovecot/message-snippet.h
include/dovecot/mkdir-parents.h
include/dovecot/mmap-util.h
include/dovecot/module-context.h
@@ -350,6 +397,7 @@
include/dovecot/notify-plugin.h
include/dovecot/numpack.h
include/dovecot/ostream-cmp.h
+include/dovecot/ostream-dot.h
include/dovecot/ostream-hash.h
include/dovecot/ostream-metawrap.h
include/dovecot/ostream-private.h
@@ -374,6 +422,7 @@
include/dovecot/printf-format-fix.h
include/dovecot/priorityq.h
include/dovecot/process-title.h
+include/dovecot/qp-decoder.h
include/dovecot/quota-fs.h
include/dovecot/quota-plugin.h
include/dovecot/quota-private.h
@@ -408,8 +457,11 @@
include/dovecot/sql-api.h
include/dovecot/sql-db-cache.h
include/dovecot/ssl-proxy.h
+include/dovecot/stats-parser.h
+include/dovecot/stats.h
include/dovecot/str-find.h
include/dovecot/str-sanitize.h
+include/dovecot/str-table.h
include/dovecot/str.h
include/dovecot/strescape.h
include/dovecot/strfuncs.h
@@ -477,6 +529,8 @@
lib/dovecot/lib20_mail_log_plugin.so
lib/dovecot/lib20_mailbox_alias_plugin.a
lib/dovecot/lib20_mailbox_alias_plugin.so
+lib/dovecot/lib20_quota_clone_plugin.a
+lib/dovecot/lib20_quota_clone_plugin.so
lib/dovecot/lib20_replication_plugin.a
lib/dovecot/lib20_replication_plugin.so
lib/dovecot/lib20_virtual_plugin.a
@@ -519,6 +573,10 @@
lib/dovecot/libdovecot.so
lib/dovecot/libdovecot.so.0
lib/dovecot/libdovecot.so.0.0.0
+lib/dovecot/libfs_compress.a
+lib/dovecot/libfs_compress.so
+lib/dovecot/stats/libstats_mail.a
+lib/dovecot/stats/libstats_mail.so
libexec/dovecot/aggregator
libexec/dovecot/anvil
libexec/dovecot/auth
@@ -599,7 +657,9 @@
man/man7/doveadm-search-query.7.gz
sbin/dovecot
share/aclocal/dovecot.m4
-%%PORTDOCS%%%%ETCDIR%%/README
+%%DATADIR%%/stopwords/stopwords_en.txt
+%%DATADIR%%/stopwords/stopwords_fi.txt
+%%DATADIR%%/stopwords/stopwords_fr.txt
%%LIBWRAP%%libexec/dovecot/tcpwrap
%%LUCENE%%lib/dovecot/doveadm/lib20_doveadm_fts_lucene_plugin.a
%%LUCENE%%lib/dovecot/doveadm/lib20_doveadm_fts_lucene_plugin.so
More information about the Midnightbsd-cvs
mailing list