diff --git a/mail/dovecot24/Makefile b/mail/dovecot24/Makefile index 7b145027ee36..0f70a2fb3489 100644 --- a/mail/dovecot24/Makefile +++ b/mail/dovecot24/Makefile @@ -1,261 +1,267 @@ PORTNAME= dovecot -DISTVERSION= 2.4.4 +DISTVERSION= 2.4.5 CATEGORIES= mail MASTER_SITES= https://dovecot.org/releases/2.4/ PKGNAMESUFFIX= 24${DOVE_SUFFIX} MAINTAINER= jordan@ostreff.info COMMENT= Secure, fast and powerful IMAP and POP3 server WWW= https://www.dovecot.org/ LICENSE= LGPL21 MIT LICENSE_COMB= dual LIB_DEPENDS= libpcre2-32.so:devel/pcre2 \ libstemmer.so:textproc/snowballstemmer \ libxapian.so:databases/xapian-core \ libzstd.so:archivers/zstd FLAVORS= default mysql pgsql sqlite3 ldap cdb FLAVOR?= default USES= cpe gmake iconv libtool perl5 pkgconfig python shebangfix ssl USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME} USE_RC_SUBR= ${PORTNAME} .if ${FLAVOR} == mysql DOVE_SUFFIX= -mysql .elif ${FLAVOR} == pgsql DOVE_SUFFIX= -pgsql .elif ${FLAVOR} == sqlite3 DOVE_SUFFIX= -sqlite3 .elif ${FLAVOR} == ldap DOVE_SUFFIX= -ldap .elif ${FLAVOR} == cdb DOVE_SUFFIX= -cdb .else DOVE_SUFFIX= .endif SHEBANG_FILES= src/lib-settings/settings-history.py GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=/var \ --sysconfdir=${PREFIX}/etc \ --with-ssldir=${PREFIX}/etc/ssl \ --with-statedir=/var/db/${PORTNAME} \ --without-systemd INSTALL_TARGET= install-strip CPPFLAGS+= -I${LOCALBASE}/include -I${OPENSSLINC} -D_GNU_SOURCE LDFLAGS+= -L${LOCALBASE}/lib -L${OPENSSLLIB} CONFLICTS_INSTALL= dovecot dovecot-cdb dovecot-ldap dovecot-mysql \ dovecot-pgsql dovecot-sqlite3 .if ${FLAVOR} == default CONFLICTS_INSTALL+= dovecot24-cdb dovecot24-ldap dovecot24-mysql \ dovecot24-pgsql dovecot24-sqlite3 .elif ${FLAVOR} == mysql CONFLICTS_INSTALL+= dovecot24 dovecot24-cdb dovecot24-ldap dovecot24-pgsql \ dovecot24-sqlite3 .elif ${FLAVOR} == pgsql CONFLICTS_INSTALL+= dovecot24 dovecot24-cdb dovecot24-ldap dovecot24-mysql \ dovecot24-sqlite3 .elif ${FLAVOR} == sqlite3 CONFLICTS_INSTALL+= dovecot24 dovecot24-cdb dovecot24-ldap dovecot24-mysql \ dovecot24-pgsql .elif ${FLAVOR} == ldap CONFLICTS_INSTALL+= dovecot24 dovecot24-cdb dovecot24-mysql dovecot24-pgsql \ dovecot24-sqlite3 .elif ${FLAVOR} == cdb CONFLICTS_INSTALL+= dovecot24 dovecot24-ldap dovecot24-mysql \ dovecot24-pgsql dovecot24-sqlite3 .endif DOCSDIR= ${PREFIX}/share/doc/dovecot EXAMPLESDIR= ${PREFIX}/share/examples/dovecot DOCS= AUTHORS COPYING NEWS TODO SUB_FILES= dovecot pkg-message SUB_LIST+= DISTVERSION=${DISTVERSION} \ RC_SUBR=/etc/rc.subr \ REQUIRE="${_REQUIRE}" USERS= ${PORTNAME} dovenull GROUPS= ${USERS} PORTDOCS= * PORTEXAMPLES= * OPTIONS_DEFINE= DOCS EXAMPLES IMAP4REV2 LIBSODIUM LIBUNWIND LUA LZ4 \ UTF8 OPTIONS_DEFAULT= DOCS EXAMPLES GSSAPI_NONE LUA UTF8 # The DB group (CDB/LDAP/MYSQL/PGSQL/SQLITE) is only a real, toggleable # OPTIONS group for the default flavor. For the mysql/pgsql/sqlite3/ldap/ # cdb flavors the backend is fixed by the flavor itself and injected # further below via plain USES/CONFIGURE_ARGS/LIB_DEPENDS - NOT via # PORT_OPTIONS+= after the fact, since that does not reliably re-run the # option's _USES/_CONFIGURE_WITH/_LIB_DEPENDS machinery. .if ${FLAVOR} == default OPTIONS_GROUP= DB FTS OPTIONS_GROUP_DB= CDB LDAP MYSQL PGSQL SQLITE .else OPTIONS_GROUP= FTS .endif OPTIONS_GROUP_FTS= ICU SOLR TEXTCAT OPTIONS_SINGLE= GSSAPI OPTIONS_SINGLE_GSSAPI= GSSAPI_BASE GSSAPI_HEIMDAL GSSAPI_MIT GSSAPI_NONE OPTIONS_FILE= ${PORT_DBDIR}/mail_dovecot24${DOVE_SUFFIX}/options OPTIONS_SUB= yes CDB_DESC= CDB database support DB_DESC= Database support FTS_DESC= Full text search plugins 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 GSSAPI_NONE_DESC= Build without GSSAPI support ICU_DESC= Use libicu for FTS unicode normalization IMAP4REV2_DESC= Enable experimental IMAP4REV2 support LIBSODIUM_DESC= Support libsodium based crypts (ARGON2I/ARGON2ID) LIBUNWIND_DESC= Get backtraces using libunwind SOLR_DESC= Solr FTS support (untested and NOT recommended) TEXTCAT_DESC= Libexttextcat FTS support UTF8_DESC= Enable experimental SMTPUTF8 support CDB_LIB_DEPENDS= libcdb.so:databases/tinycdb CDB_CONFIGURE_WITH= cdb GSSAPI_BASE_USES= gssapi GSSAPI_HEIMDAL_USES= gssapi:heimdal GSSAPI_MIT_USES= gssapi:mit GSSAPI_NONE_CONFIGURE_ON= --without-gssapi GSSAPI_NONE_CONFIGURE_OFF= --with-gssapi ICU_LIB_DEPENDS= libicui18n.so:devel/icu \ libicuuc.so:devel/icu ICU_CONFIGURE_WITH= icu ICU_LDFLAGS= -licuuc IMAP4REV2_CONFIGURE_ON= --enable-experimental-imap4rev2 IMAP4REV2_CONFIGURE_OFF= --disable-experimental-imap4rev2 LDAP_USES= ldap LDAP_CONFIGURE_ON= --with-ldap=yes LDAP_CONFIGURE_OFF= --with-ldap=no LDAP_VARS= _REQUIRE+=slapd LIBSODIUM_LIB_DEPENDS= libsodium.so:security/libsodium LIBSODIUM_CONFIGURE_WITH= sodium LIBUNWIND_LIB_DEPENDS= libunwind.so:devel/libunwind LIBUNWIND_CONFIGURE_ON= --with-libunwind=yes LIBUNWIND_CONFIGURE_OFF= --with-libunwind=no LUA_USES= lua:53,54 LUA_CONFIGURE_ON= --with-lua=yes LUA_CONFIGURE_OFF= --with-lua=no LZ4_LIB_DEPENDS= liblz4.so:archivers/liblz4 LZ4_CONFIGURE_WITH= lz4 MYSQL_USES= mysql MYSQL_CONFIGURE_WITH= mysql MYSQL_VARS= _REQUIRE+=mysql PGSQL_USES= pgsql PGSQL_CONFIGURE_WITH= pgsql PGSQL_VARS= _REQUIRE+=postgresql SOLR_LIB_DEPENDS= libcurl.so:ftp/curl \ libexpat.so:textproc/expat2 SOLR_CONFIGURE_WITH= solr SQLITE_USES= sqlite SQLITE_CONFIGURE_WITH= sqlite TEXTCAT_LIB_DEPENDS= libexttextcat-2.0.so:textproc/libexttextcat TEXTCAT_CONFIGURE_WITH= textcat UTF8_CONFIGURE_ON= --enable-experimental-mail-utf8 UTF8_CONFIGURE_OFF= --disable-experimental-mail-utf8 _REQUIRE= LOGIN .include # The mysql/pgsql/sqlite3/ldap/cdb flavors bypass the OPTIONS framework # entirely for their DB backend: USES/CONFIGURE_ARGS/LIB_DEPENDS are set # directly here so they always take effect, regardless of OPTIONS # processing order. LDAP in particular requires an explicit # --with-ldap=yes or src/lib-ldap is never built at all (unlike the SQL # drivers, which dovecot auto-detects and builds regardless of any # --with-X flag). .if ${FLAVOR} == mysql USES+= mysql CONFIGURE_ARGS+= --with-mysql=yes _REQUIRE+= mysql .elif ${FLAVOR} == pgsql USES+= pgsql CONFIGURE_ARGS+= --with-pgsql=yes _REQUIRE+= postgresql .elif ${FLAVOR} == sqlite3 USES+= sqlite CONFIGURE_ARGS+= --with-sqlite=yes .elif ${FLAVOR} == ldap USES+= ldap CONFIGURE_ARGS+= --with-ldap=yes _REQUIRE+= slapd .elif ${FLAVOR} == cdb LIB_DEPENDS+= libcdb.so:databases/tinycdb CONFIGURE_ARGS+= --with-cdb=yes .endif # Because LDAP is no longer part of the OPTIONS framework for non-default # flavors, OPTIONS_SUB=yes can no longer auto-generate the %%LDAP%% plist # substitution for them - set it explicitly so pkg-plist stays correct # for every flavor. .if ${FLAVOR} == ldap PLIST_SUB+= LDAP="" .elif ${FLAVOR} != default PLIST_SUB+= LDAP="@comment " .endif # imap-hibernate does not build on FreeBSD < 15.0 due to kqueue being used for notifications .if ${OPSYS} == FreeBSD && ${OSVERSION} < 1500000 PLIST_SUB+= IMAP_HIBERNATE="@comment " .else PLIST_SUB+= IMAP_HIBERNATE="" .endif +.if ${PORT_OPTIONS:MLUA} +PLIST_SUB+= LUA="" +.else +PLIST_SUB+= LUA="@comment " +.endif + post-patch: @${REINPLACE_CMD} -e '/^LIBS =/s/$$/ @LTLIBICONV@/' \ ${WRKSRC}/src/lib-mail/Makefile.in post-configure: @${REINPLACE_CMD} -e 's/^auth_DEPENDENCIES =.*/auth_DEPENDENCIES =/' \ ${WRKSRC}/src/auth/Makefile post-install: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} @if [ -f ${STAGEDIR}${ETCDIR}/dovecot.conf ]; then \ ${MV} ${STAGEDIR}${ETCDIR}/dovecot.conf ${STAGEDIR}${ETCDIR}/dovecot.conf.sample; \ fi @if [ -f ${STAGEDIR}${DOCSDIR}/dovecot-openssl.cnf ]; then \ ${INSTALL_DATA} ${STAGEDIR}${DOCSDIR}/dovecot-openssl.cnf ${STAGEDIR}${EXAMPLESDIR}; \ fi @if [ -f ${STAGEDIR}${DOCSDIR}/mkcert.sh ]; then \ ${INSTALL_SCRIPT} ${STAGEDIR}${DOCSDIR}/mkcert.sh ${STAGEDIR}${EXAMPLESDIR}; \ fi post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} @if [ -d ${WRKSRC} ]; then \ (cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR}); \ fi .include diff --git a/mail/dovecot24/distinfo b/mail/dovecot24/distinfo index 2d19cc5979d8..7254764f9146 100644 --- a/mail/dovecot24/distinfo +++ b/mail/dovecot24/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1781870420 -SHA256 (dovecot-2.4.4.tar.gz) = 670f98d55a29b02ae6a97281e51374e553b94496480ab0a07439571ab30ca8c3 -SIZE (dovecot-2.4.4.tar.gz) = 8250124 +TIMESTAMP = 1788032910 +SHA256 (dovecot-2.4.5.tar.gz) = 868c2686a61b5f8e00a3e4721789b1ab46e6528fd773a5fbed07a6ecba7731e6 +SIZE (dovecot-2.4.5.tar.gz) = 8747733 diff --git a/mail/dovecot24/files/patch-src_imap_imap-client-hibernate.c b/mail/dovecot24/files/patch-src_imap_imap-client-hibernate.c deleted file mode 100644 index 08e84ed1e725..000000000000 --- a/mail/dovecot24/files/patch-src_imap_imap-client-hibernate.c +++ /dev/null @@ -1,12 +0,0 @@ ---- src/imap/imap-client-hibernate.c.orig 2026-08-05 21:51:45 UTC -+++ src/imap/imap-client-hibernate.c -@@ -62,7 +62,8 @@ static void imap_hibernate_write_cmd(struct client *cl - str_append_tabescaped(cmd, user->set->unexpanded_mail_log_prefix); - str_printfa(cmd, "\tidle_notify_interval=%u", - client->set->imap_idle_notify_interval); -- if (fstat(client->fd_in, &peer_st) == 0) { -+ if (fstat(client->fd_in, &peer_st) == 0 && -+ peer_st.st_dev != (dev_t)-1) { - str_printfa(cmd, "\tpeer_dev_major=%lu\tpeer_dev_minor=%lu\tpeer_ino=%llu", - (unsigned long)major(peer_st.st_dev), - (unsigned long)minor(peer_st.st_dev), diff --git a/mail/dovecot24/pkg-plist b/mail/dovecot24/pkg-plist index d7a3b38f18e1..0b3727a5ae89 100644 --- a/mail/dovecot24/pkg-plist +++ b/mail/dovecot24/pkg-plist @@ -1,872 +1,879 @@ bin/doveadm bin/doveconf bin/dovecot-sysreport %%ETCDIR%%/dovecot.conf.sample +include/dovecot/abnf.h include/dovecot/acl-api-private.h include/dovecot/acl-api.h include/dovecot/acl-cache.h include/dovecot/acl-lookup-dict.h include/dovecot/acl-plugin.h include/dovecot/acl-rights.h include/dovecot/acl-settings.h include/dovecot/acl-storage.h include/dovecot/anvil-client.h include/dovecot/aqueue.h include/dovecot/array-decl.h include/dovecot/array.h include/dovecot/askpass.h include/dovecot/auth-cache.h include/dovecot/auth-client-connection.h include/dovecot/auth-client-interface.h include/dovecot/auth-client-private.h include/dovecot/auth-client.h include/dovecot/auth-common.h include/dovecot/auth-digest.h include/dovecot/auth-fields.h include/dovecot/auth-gs2.h include/dovecot/auth-gssapi.h include/dovecot/auth-master-connection.h include/dovecot/auth-master-private.h include/dovecot/auth-master.h include/dovecot/auth-penalty.h include/dovecot/auth-policy.h include/dovecot/auth-proxy.h include/dovecot/auth-request-handler-private.h include/dovecot/auth-request-handler.h include/dovecot/auth-request-var-expand.h include/dovecot/auth-request.h include/dovecot/auth-sasl-common.h include/dovecot/auth-sasl-gssapi.h include/dovecot/auth-sasl-oauth2.h include/dovecot/auth-sasl.h include/dovecot/auth-scram-client.h include/dovecot/auth-scram-server.h include/dovecot/auth-scram.h include/dovecot/auth-settings.h include/dovecot/auth-token.h include/dovecot/auth-worker-connection.h 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/bitmap.h include/dovecot/bits.h include/dovecot/bsearch-insert-pos.h include/dovecot/buffer.h include/dovecot/byteorder.h include/dovecot/charset-utf8-private.h include/dovecot/charset-utf8.h include/dovecot/child-wait.h include/dovecot/client-common.h include/dovecot/compat.h include/dovecot/compression.h include/dovecot/config-filter.h include/dovecot/config-parser-private.h include/dovecot/config-parser.h include/dovecot/config-request.h include/dovecot/config.h include/dovecot/connection.h include/dovecot/cpu-count.h include/dovecot/cpu-limit.h include/dovecot/crc32.h include/dovecot/data-stack.h include/dovecot/db-ldap-sasl.h include/dovecot/db-ldap-settings.h include/dovecot/db-ldap.h include/dovecot/db-oauth2.h include/dovecot/db-passwd-file.h include/dovecot/db-sql.h include/dovecot/dbox-attachment.h include/dovecot/dbox-file.h include/dovecot/dbox-mail.h include/dovecot/dbox-save.h include/dovecot/dbox-storage.h include/dovecot/dcrypt-iostream.h include/dovecot/dcrypt-private.h include/dovecot/dcrypt.h include/dovecot/dict-client.h -include/dovecot/dict-lua-private.h -include/dovecot/dict-lua.h +%%LUA%%include/dovecot/dict-lua-private.h +%%LUA%%include/dovecot/dict-lua.h include/dovecot/dict-private.h include/dovecot/dict-transaction-memory.h include/dovecot/dict.h -include/dovecot/dlua-compat.h -include/dovecot/dlua-script-private.h -include/dovecot/dlua-script.h -include/dovecot/dlua-wrapper.h +%%LUA%%include/dovecot/dlua-compat.h +%%LUA%%include/dovecot/dlua-script-private.h +%%LUA%%include/dovecot/dlua-script.h +%%LUA%%include/dovecot/dlua-wrapper.h include/dovecot/dns-client-cache.h include/dovecot/dns-lookup.h -include/dovecot/dns-lua.h +%%LUA%%include/dovecot/dns-lua.h include/dovecot/dns-util.h include/dovecot/doc.h -include/dovecot/doveadm-client-lua.h +%%LUA%%include/dovecot/doveadm-client-lua.h include/dovecot/doveadm-client.h include/dovecot/doveadm-cmd-parse.h include/dovecot/doveadm-cmd.h include/dovecot/doveadm-dsync.h include/dovecot/doveadm-dump.h include/dovecot/doveadm-mail-iter.h include/dovecot/doveadm-mail.h include/dovecot/doveadm-mailbox-list-iter.h include/dovecot/doveadm-print-private.h include/dovecot/doveadm-print.h include/dovecot/doveadm-protocol.h include/dovecot/doveadm-settings.h include/dovecot/doveadm-util.h include/dovecot/doveadm.h include/dovecot/dovecot-version.h include/dovecot/dregex.h include/dovecot/dsasl-client-private.h include/dovecot/dsasl-client.h include/dovecot/dsync-brain.h include/dovecot/dsync-ibc.h include/dovecot/eacces-error.h include/dovecot/env-util.h include/dovecot/event-filter-parser.h include/dovecot/event-filter-private.h include/dovecot/event-filter.h include/dovecot/event-log.h include/dovecot/execv-const.h include/dovecot/fail-mail-storage.h include/dovecot/failures-private.h include/dovecot/failures.h include/dovecot/fd-util.h include/dovecot/fdatasync-path.h include/dovecot/fdpass.h include/dovecot/file-cache.h include/dovecot/file-copy.h include/dovecot/file-create-locked.h include/dovecot/file-dotlock.h include/dovecot/file-lock.h include/dovecot/file-set-size.h include/dovecot/fs-api-private.h include/dovecot/fs-api.h include/dovecot/fs-sis-common.h include/dovecot/fs-test.h include/dovecot/fs-wrapper.h include/dovecot/fsync-mode.h include/dovecot/fts-api-private.h include/dovecot/fts-api.h include/dovecot/fts-indexer.h include/dovecot/fts-parser.h include/dovecot/fts-settings.h include/dovecot/fts-storage.h include/dovecot/fts-user.h include/dovecot/fuzzer.h include/dovecot/guid.h include/dovecot/hash-decl.h include/dovecot/hash-format.h include/dovecot/hash-method.h include/dovecot/hash.h include/dovecot/hash2.h include/dovecot/hex-binary.h include/dovecot/hex-dec.h include/dovecot/hmac-cram-md5.h include/dovecot/hmac.h include/dovecot/home-expand.h include/dovecot/hook-build.h include/dovecot/hostpid.h include/dovecot/http-auth.h include/dovecot/http-client-private.h include/dovecot/http-client.h include/dovecot/http-common.h include/dovecot/http-date.h include/dovecot/http-header-parser.h include/dovecot/http-header.h include/dovecot/http-message-parser.h include/dovecot/http-parser.h include/dovecot/http-request-parser.h include/dovecot/http-request.h include/dovecot/http-response-parser.h include/dovecot/http-response.h include/dovecot/http-server-private.h include/dovecot/http-server.h include/dovecot/http-transfer.h include/dovecot/http-url.h +include/dovecot/idna-punycode.h +include/dovecot/idna.h include/dovecot/imap-arg.h include/dovecot/imap-base-subject.h include/dovecot/imap-bodystructure.h include/dovecot/imap-client.h include/dovecot/imap-commands-util.h include/dovecot/imap-commands.h include/dovecot/imap-common.h include/dovecot/imap-date.h include/dovecot/imap-envelope.h include/dovecot/imap-expunge.h include/dovecot/imap-feature.h include/dovecot/imap-fetch.h include/dovecot/imap-id.h include/dovecot/imap-keepalive.h include/dovecot/imap-list.h include/dovecot/imap-login-client.h include/dovecot/imap-login-commands.h include/dovecot/imap-login-settings.h include/dovecot/imap-master-client.h include/dovecot/imap-match.h include/dovecot/imap-metadata.h include/dovecot/imap-msgpart-url.h include/dovecot/imap-msgpart.h include/dovecot/imap-notify.h include/dovecot/imap-parser.h include/dovecot/imap-progress.h include/dovecot/imap-quote.h include/dovecot/imap-resp-code.h include/dovecot/imap-search-args.h include/dovecot/imap-search.h include/dovecot/imap-seqset.h include/dovecot/imap-settings.h +include/dovecot/imap-state-private.h include/dovecot/imap-state.h include/dovecot/imap-stats.h include/dovecot/imap-status.h include/dovecot/imap-storage-callbacks.h include/dovecot/imap-sync-private.h include/dovecot/imap-sync.h include/dovecot/imap-url.h include/dovecot/imap-urlauth-backend.h include/dovecot/imap-urlauth-connection.h include/dovecot/imap-urlauth-fetch.h include/dovecot/imap-urlauth-private.h include/dovecot/imap-urlauth.h include/dovecot/imap-utf7.h include/dovecot/imap-util.h include/dovecot/imapc-attribute.h include/dovecot/imapc-client-private.h include/dovecot/imapc-client.h include/dovecot/imapc-connection.h 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 include/dovecot/imem.h include/dovecot/index-attachment.h include/dovecot/index-mail.h include/dovecot/index-mailbox-size.h include/dovecot/index-pop3-uidl.h include/dovecot/index-rebuild.h include/dovecot/index-search-private.h include/dovecot/index-search-result.h include/dovecot/index-sort-private.h include/dovecot/index-sort.h include/dovecot/index-storage.h include/dovecot/index-sync-changes.h include/dovecot/index-sync-private.h include/dovecot/index-thread-private.h include/dovecot/ioloop-iolist.h include/dovecot/ioloop-notify-fd.h include/dovecot/ioloop-private.h include/dovecot/ioloop.h include/dovecot/iostream-lz4.h include/dovecot/iostream-multiplex-private.h include/dovecot/iostream-openssl.h include/dovecot/iostream-private.h include/dovecot/iostream-proxy.h include/dovecot/iostream-pump.h include/dovecot/iostream-rawlog-private.h include/dovecot/iostream-rawlog.h include/dovecot/iostream-ssl-private.h include/dovecot/iostream-ssl-test.h include/dovecot/iostream-ssl.h include/dovecot/iostream-temp.h include/dovecot/iostream.h include/dovecot/ipwd.h include/dovecot/iso8601-date.h include/dovecot/istream-attachment-connector.h include/dovecot/istream-attachment-extractor.h include/dovecot/istream-base64.h include/dovecot/istream-binary-converter.h include/dovecot/istream-callback.h include/dovecot/istream-chain.h include/dovecot/istream-concat.h include/dovecot/istream-crlf.h include/dovecot/istream-decrypt.h include/dovecot/istream-dot.h include/dovecot/istream-failure-at.h include/dovecot/istream-file-private.h include/dovecot/istream-fs-file.h include/dovecot/istream-fs-stats.h include/dovecot/istream-hash.h include/dovecot/istream-header-filter.h include/dovecot/istream-mail.h include/dovecot/istream-metawrap.h include/dovecot/istream-multiplex.h include/dovecot/istream-nonuls.h include/dovecot/istream-private.h include/dovecot/istream-qp.h include/dovecot/istream-raw-mbox.h include/dovecot/istream-rawlog.h include/dovecot/istream-seekable.h include/dovecot/istream-sized.h include/dovecot/istream-tee.h include/dovecot/istream-timeout.h include/dovecot/istream-try.h include/dovecot/istream-unix.h include/dovecot/istream-zlib.h include/dovecot/istream.h include/dovecot/json-generator.h include/dovecot/json-istream.h include/dovecot/json-ostream.h include/dovecot/json-parser.h include/dovecot/json-syntax.h include/dovecot/json-text.h include/dovecot/json-tree-io.h include/dovecot/json-tree.h include/dovecot/json-types.h include/dovecot/lang-common.h include/dovecot/lang-filter-private.h include/dovecot/lang-filter.h include/dovecot/lang-icu.h include/dovecot/lang-indexer-status.h include/dovecot/lang-library.h include/dovecot/lang-settings.h include/dovecot/lang-tokenizer-common.h include/dovecot/lang-tokenizer-generic-private.h include/dovecot/lang-tokenizer-private.h include/dovecot/lang-tokenizer.h include/dovecot/lang-user.h include/dovecot/language.h include/dovecot/lda-settings.h %%LDAP%%include/dovecot/ldap-client.h %%LDAP%%include/dovecot/ldap-utils.h include/dovecot/lib-event-private.h include/dovecot/lib-event.h include/dovecot/lib-signals.h include/dovecot/lib.h include/dovecot/llist.h include/dovecot/lmtp-client.h include/dovecot/lmtp-commands.h include/dovecot/lmtp-common.h include/dovecot/lmtp-recipient.h include/dovecot/lmtp-settings.h include/dovecot/log-error-buffer.h include/dovecot/log-throttle.h include/dovecot/login-client.h include/dovecot/login-common.h include/dovecot/login-interface.h include/dovecot/login-log.h include/dovecot/login-proxy-state.h include/dovecot/login-proxy.h include/dovecot/login-server-auth.h include/dovecot/login-server.h include/dovecot/login-settings.h include/dovecot/macros.h include/dovecot/mail-autoexpunge.h include/dovecot/mail-cache-private.h include/dovecot/mail-cache.h include/dovecot/mail-copy.h include/dovecot/mail-deliver.h include/dovecot/mail-duplicate.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 include/dovecot/mail-index-strmap.h include/dovecot/mail-index-sync-private.h include/dovecot/mail-index-transaction-private.h include/dovecot/mail-index-util.h include/dovecot/mail-index-view-private.h include/dovecot/mail-index.h -include/dovecot/mail-lua-plugin.h -include/dovecot/mail-lua-settings.h +%%LUA%%include/dovecot/mail-lua-plugin.h +%%LUA%%include/dovecot/mail-lua-settings.h include/dovecot/mail-namespace.h include/dovecot/mail-search-build.h include/dovecot/mail-search-mime-build.h include/dovecot/mail-search-mime-register.h include/dovecot/mail-search-mime.h include/dovecot/mail-search-parser-private.h include/dovecot/mail-search-parser.h include/dovecot/mail-search-register.h include/dovecot/mail-search.h include/dovecot/mail-send.h include/dovecot/mail-storage-hooks.h -include/dovecot/mail-storage-lua-private.h -include/dovecot/mail-storage-lua.h +%%LUA%%include/dovecot/mail-storage-lua-private.h +%%LUA%%include/dovecot/mail-storage-lua.h include/dovecot/mail-storage-private.h include/dovecot/mail-storage-service.h include/dovecot/mail-storage-settings.h include/dovecot/mail-storage.h include/dovecot/mail-thread.h include/dovecot/mail-transaction-log-private.h include/dovecot/mail-transaction-log-view-private.h include/dovecot/mail-transaction-log.h include/dovecot/mail-types.h include/dovecot/mail-user.h include/dovecot/mailbox-attribute-internal.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 include/dovecot/mailbox-list-index-storage.h include/dovecot/mailbox-list-index-sync.h include/dovecot/mailbox-list-index.h include/dovecot/mailbox-list-iter-private.h include/dovecot/mailbox-list-iter.h include/dovecot/mailbox-list-maildir.h include/dovecot/mailbox-list-notify-tree.h include/dovecot/mailbox-list-notify.h include/dovecot/mailbox-list-private.h include/dovecot/mailbox-list-subscriptions.h include/dovecot/mailbox-list.h include/dovecot/mailbox-log.h include/dovecot/mailbox-recent-flags.h include/dovecot/mailbox-search-result-private.h include/dovecot/mailbox-tree.h include/dovecot/mailbox-uidvalidity.h include/dovecot/mailbox-watch.h include/dovecot/maildir-filename-flags.h include/dovecot/maildir-filename.h include/dovecot/maildir-keywords.h include/dovecot/maildir-mail.h include/dovecot/maildir-settings.h include/dovecot/maildir-storage.h include/dovecot/maildir-sync.h include/dovecot/maildir-uidlist.h include/dovecot/malloc-overflow.h include/dovecot/master-admin-client.h include/dovecot/master-instance.h include/dovecot/master-interface.h include/dovecot/master-service-private.h include/dovecot/master-service-settings.h include/dovecot/master-service-ssl.h include/dovecot/master-service.h include/dovecot/mbox-file.h include/dovecot/mbox-from.h include/dovecot/mbox-lock.h include/dovecot/mbox-md5.h include/dovecot/mbox-settings.h include/dovecot/mbox-storage.h include/dovecot/mbox-sync-private.h include/dovecot/md4.h include/dovecot/md5.h include/dovecot/mdbox-file.h include/dovecot/mdbox-map-private.h include/dovecot/mdbox-map.h include/dovecot/mdbox-settings.h include/dovecot/mdbox-storage-rebuild.h include/dovecot/mdbox-storage.h include/dovecot/mdbox-sync.h include/dovecot/memarea.h include/dovecot/mempool.h include/dovecot/message-address.h include/dovecot/message-binary-part.h include/dovecot/message-date.h include/dovecot/message-decoder.h include/dovecot/message-header-decode.h include/dovecot/message-header-encode.h include/dovecot/message-header-hash.h include/dovecot/message-header-parser.h include/dovecot/message-id.h include/dovecot/message-parser.h include/dovecot/message-part-data.h include/dovecot/message-part-serialize.h include/dovecot/message-part.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 include/dovecot/module-dir.h include/dovecot/mountpoint.h include/dovecot/mycrypt.h include/dovecot/net.h include/dovecot/nfs-workarounds.h include/dovecot/notify-plugin-private.h include/dovecot/notify-plugin.h include/dovecot/numpack.h include/dovecot/oauth2.h include/dovecot/ostream-cmp.h include/dovecot/ostream-dot.h include/dovecot/ostream-encrypt.h include/dovecot/ostream-failure-at.h include/dovecot/ostream-file-private.h include/dovecot/ostream-final-trickle.h include/dovecot/ostream-hash.h include/dovecot/ostream-metawrap.h include/dovecot/ostream-multiplex.h include/dovecot/ostream-null.h include/dovecot/ostream-private.h include/dovecot/ostream-rawlog.h include/dovecot/ostream-unix.h include/dovecot/ostream-wrapper.h include/dovecot/ostream-zlib.h include/dovecot/ostream.h include/dovecot/passdb-blocking.h include/dovecot/passdb-cache.h include/dovecot/passdb.h include/dovecot/password-scheme.h include/dovecot/path-util.h include/dovecot/pkcs5.h include/dovecot/pop3-capability.h include/dovecot/pop3-client.h include/dovecot/pop3-commands.h include/dovecot/pop3-common.h include/dovecot/pop3-protocol.h include/dovecot/pop3-settings.h include/dovecot/pop3c-client.h include/dovecot/pop3c-settings.h include/dovecot/pop3c-storage.h include/dovecot/pop3c-sync.h include/dovecot/primes.h include/dovecot/printf-format-fix.h include/dovecot/priorityq.h include/dovecot/process-stat.h include/dovecot/process-title.h include/dovecot/program-client.h -include/dovecot/punycode.h include/dovecot/push-notification-drivers.h include/dovecot/push-notification-event-flagsclear.h include/dovecot/push-notification-event-flagsset.h include/dovecot/push-notification-event-mailboxcreate.h include/dovecot/push-notification-event-mailboxdelete.h include/dovecot/push-notification-event-mailboxrename.h include/dovecot/push-notification-event-mailboxsubscribe.h include/dovecot/push-notification-event-mailboxunsubscribe.h include/dovecot/push-notification-event-message-common.h include/dovecot/push-notification-event-messageappend.h include/dovecot/push-notification-event-messageexpunge.h include/dovecot/push-notification-event-messagenew.h include/dovecot/push-notification-event-messageread.h include/dovecot/push-notification-event-messagetrash.h include/dovecot/push-notification-events-rfc5423.h include/dovecot/push-notification-events.h include/dovecot/push-notification-plugin.h include/dovecot/push-notification-settings.h include/dovecot/push-notification-triggers.h include/dovecot/push-notification-txn-mbox.h include/dovecot/push-notification-txn-msg.h include/dovecot/qp-decoder.h include/dovecot/qp-encoder.h include/dovecot/quota-fs.h include/dovecot/quota-plugin.h include/dovecot/quota-private.h include/dovecot/quota-settings.h include/dovecot/quota.h include/dovecot/quoted-printable.h include/dovecot/randgen.h include/dovecot/raw-storage.h include/dovecot/raw-sync.h include/dovecot/read-full.h include/dovecot/restrict-access.h include/dovecot/restrict-process-size.h include/dovecot/rfc2231-parser.h include/dovecot/rfc822-parser.h include/dovecot/safe-memset.h include/dovecot/safe-mkdir.h include/dovecot/safe-mkstemp.h include/dovecot/sasl-common.h include/dovecot/sasl-oauth2.h +include/dovecot/sasl-proxy.h include/dovecot/sasl-server-gssapi.h include/dovecot/sasl-server-mech-scram.h include/dovecot/sasl-server-oauth2.h include/dovecot/sasl-server-private.h include/dovecot/sasl-server-protected.h include/dovecot/sasl-server.h include/dovecot/sdbox-file.h include/dovecot/sdbox-settings.h include/dovecot/sdbox-storage.h include/dovecot/sdbox-sync.h include/dovecot/sendfile-util.h include/dovecot/seq-range-array.h include/dovecot/seq-set-builder.h include/dovecot/service-settings.h include/dovecot/settings-consts.h include/dovecot/settings-history.h include/dovecot/settings-parser.h include/dovecot/settings.h include/dovecot/sha-common.h include/dovecot/sha1.h include/dovecot/sha2.h include/dovecot/sha3.h include/dovecot/shared-storage.h include/dovecot/sleep.h include/dovecot/smtp-address.h include/dovecot/smtp-client-command.h include/dovecot/smtp-client-connection.h include/dovecot/smtp-client-private.h include/dovecot/smtp-client-transaction.h include/dovecot/smtp-client.h include/dovecot/smtp-command-parser.h include/dovecot/smtp-command.h include/dovecot/smtp-common.h include/dovecot/smtp-dovecot.h include/dovecot/smtp-params.h include/dovecot/smtp-parser.h include/dovecot/smtp-reply-parser.h include/dovecot/smtp-reply.h include/dovecot/smtp-server-private.h include/dovecot/smtp-server.h include/dovecot/smtp-submit-settings.h include/dovecot/smtp-submit.h include/dovecot/smtp-syntax.h include/dovecot/sort.h include/dovecot/sql-api-private.h include/dovecot/sql-api.h include/dovecot/ssl-settings.h include/dovecot/stats-client.h include/dovecot/stats-dist.h +include/dovecot/storage-version.h include/dovecot/str-find.h include/dovecot/str-parse.h include/dovecot/str-sanitize.h include/dovecot/str-table.h include/dovecot/str.h include/dovecot/strescape.h include/dovecot/strfuncs.h include/dovecot/strnum.h include/dovecot/submission-backend-relay.h include/dovecot/submission-backend.h include/dovecot/submission-client.h include/dovecot/submission-commands.h include/dovecot/submission-common.h include/dovecot/submission-recipient.h include/dovecot/submission-settings.h include/dovecot/subscription-file.h include/dovecot/syslog-util.h include/dovecot/test-common.h include/dovecot/test-dir.h include/dovecot/test-mail-storage-common.h include/dovecot/test-private.h include/dovecot/test-subprocess.h include/dovecot/time-util.h include/dovecot/unichar.h include/dovecot/unicode-break.h include/dovecot/unicode-data-static.h include/dovecot/unicode-data-tables.h include/dovecot/unicode-data-types.h include/dovecot/unicode-data.h include/dovecot/unicode-transform.h include/dovecot/unix-socket-create.h include/dovecot/unlink-directory.h include/dovecot/unlink-old-files.h include/dovecot/uri-util.h include/dovecot/userdb-blocking.h include/dovecot/userdb.h include/dovecot/utc-mktime.h include/dovecot/utc-offset.h include/dovecot/var-expand-private.h include/dovecot/var-expand-split.h include/dovecot/var-expand.h include/dovecot/version.h include/dovecot/wildcard-match.h include/dovecot/write-full.h +include/dovecot/xxh64.h lib/dovecot/auth/libauthdb_imap.so lib/dovecot/doveadm/lib10_doveadm_acl_plugin.a lib/dovecot/doveadm/lib10_doveadm_acl_plugin.so lib/dovecot/doveadm/lib10_doveadm_quota_plugin.a lib/dovecot/doveadm/lib10_doveadm_quota_plugin.so lib/dovecot/doveadm/lib20_doveadm_fts_plugin.a lib/dovecot/doveadm/lib20_doveadm_fts_plugin.so lib/dovecot/doveadm/libdoveadm_fts_flatcurve_plugin.a lib/dovecot/doveadm/libdoveadm_fts_flatcurve_plugin.so lib/dovecot/doveadm/libdoveadm_mail_crypt_plugin.a lib/dovecot/doveadm/libdoveadm_mail_crypt_plugin.so lib/dovecot/dovecot-config lib/dovecot/lib01_acl_plugin.a lib/dovecot/lib01_acl_plugin.so -lib/dovecot/lib01_mail_lua_plugin.a -lib/dovecot/lib01_mail_lua_plugin.so +%%LUA%%lib/dovecot/lib01_mail_lua_plugin.a +%%LUA%%lib/dovecot/lib01_mail_lua_plugin.so lib/dovecot/lib02_imap_acl_plugin.a lib/dovecot/lib02_imap_acl_plugin.so lib/dovecot/lib02_lazy_expunge_plugin.a lib/dovecot/lib02_lazy_expunge_plugin.so lib/dovecot/lib05_mail_crypt_acl_plugin.a lib/dovecot/lib05_mail_crypt_acl_plugin.so lib/dovecot/lib05_pop3_migration_plugin.a lib/dovecot/lib05_pop3_migration_plugin.so lib/dovecot/lib10_last_login_plugin.a lib/dovecot/lib10_last_login_plugin.so lib/dovecot/lib10_mail_crypt_plugin.a lib/dovecot/lib10_mail_crypt_plugin.so lib/dovecot/lib10_quota_plugin.a lib/dovecot/lib10_quota_plugin.so lib/dovecot/lib11_imap_quota_plugin.a lib/dovecot/lib11_imap_quota_plugin.so lib/dovecot/lib11_trash_plugin.a lib/dovecot/lib11_trash_plugin.so lib/dovecot/lib15_notify_plugin.a lib/dovecot/lib15_notify_plugin.so lib/dovecot/lib20_charset_alias_plugin.a lib/dovecot/lib20_charset_alias_plugin.so lib/dovecot/lib20_fts_plugin.a lib/dovecot/lib20_fts_plugin.so lib/dovecot/lib20_mail_compress_plugin.a lib/dovecot/lib20_mail_compress_plugin.so lib/dovecot/lib20_mail_log_plugin.a lib/dovecot/lib20_mail_log_plugin.so lib/dovecot/lib20_notify_status_plugin.a lib/dovecot/lib20_notify_status_plugin.so lib/dovecot/lib20_push_notification_plugin.a lib/dovecot/lib20_push_notification_plugin.so lib/dovecot/lib20_quota_clone_plugin.a lib/dovecot/lib20_quota_clone_plugin.so lib/dovecot/lib20_virtual_plugin.a lib/dovecot/lib20_virtual_plugin.so lib/dovecot/lib21_fts_flatcurve_plugin.a lib/dovecot/lib21_fts_flatcurve_plugin.so %%SOLR%%lib/dovecot/lib21_fts_solr_plugin.a %%SOLR%%lib/dovecot/lib21_fts_solr_plugin.so -lib/dovecot/lib22_push_notification_lua_plugin.a -lib/dovecot/lib22_push_notification_lua_plugin.so +%%LUA%%lib/dovecot/lib22_push_notification_lua_plugin.a +%%LUA%%lib/dovecot/lib22_push_notification_lua_plugin.so lib/dovecot/lib99_welcome_plugin.a lib/dovecot/lib99_welcome_plugin.so lib/dovecot/libdcrypt_openssl.a lib/dovecot/libdcrypt_openssl.so lib/dovecot/libdovecot-compression.a lib/dovecot/libdovecot-compression.so lib/dovecot/libdovecot-compression.so.0 lib/dovecot/libdovecot-compression.so.0.0.0 lib/dovecot/libdovecot-dsync.a lib/dovecot/libdovecot-dsync.so lib/dovecot/libdovecot-dsync.so.0 lib/dovecot/libdovecot-dsync.so.0.0.0 lib/dovecot/libdovecot-language.a lib/dovecot/libdovecot-language.so lib/dovecot/libdovecot-language.so.0 lib/dovecot/libdovecot-language.so.0.0.0 lib/dovecot/libdovecot-lda.a lib/dovecot/libdovecot-lda.so lib/dovecot/libdovecot-lda.so.0 lib/dovecot/libdovecot-lda.so.0.0.0 %%LDAP%%lib/dovecot/libdovecot-ldap.a %%LDAP%%lib/dovecot/libdovecot-ldap.so %%LDAP%%lib/dovecot/libdovecot-ldap.so.0 %%LDAP%%lib/dovecot/libdovecot-ldap.so.0.0.0 lib/dovecot/libdovecot-login.a lib/dovecot/libdovecot-login.so lib/dovecot/libdovecot-login.so.0 lib/dovecot/libdovecot-login.so.0.0.0 -lib/dovecot/libdovecot-lua.a -lib/dovecot/libdovecot-lua.so -lib/dovecot/libdovecot-lua.so.0 -lib/dovecot/libdovecot-lua.so.0.0.0 +%%LUA%%lib/dovecot/libdovecot-lua.a +%%LUA%%lib/dovecot/libdovecot-lua.so +%%LUA%%lib/dovecot/libdovecot-lua.so.0 +%%LUA%%lib/dovecot/libdovecot-lua.so.0.0.0 lib/dovecot/libdovecot-sql.a lib/dovecot/libdovecot-sql.so lib/dovecot/libdovecot-sql.so.0 lib/dovecot/libdovecot-sql.so.0.0.0 -lib/dovecot/libdovecot-storage-lua.a -lib/dovecot/libdovecot-storage-lua.so -lib/dovecot/libdovecot-storage-lua.so.0 -lib/dovecot/libdovecot-storage-lua.so.0.0.0 +%%LUA%%lib/dovecot/libdovecot-storage-lua.a +%%LUA%%lib/dovecot/libdovecot-storage-lua.so +%%LUA%%lib/dovecot/libdovecot-storage-lua.so.0 +%%LUA%%lib/dovecot/libdovecot-storage-lua.so.0.0.0 lib/dovecot/libdovecot-storage.a lib/dovecot/libdovecot-storage.so lib/dovecot/libdovecot-storage.so.0 lib/dovecot/libdovecot-storage.so.0.0.0 lib/dovecot/libdovecot.a 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/libfs_crypt.a lib/dovecot/libfs_crypt.so lib/dovecot/libssl_iostream_openssl.a lib/dovecot/libssl_iostream_openssl.so lib/dovecot/var_expand_crypt.a lib/dovecot/var_expand_crypt.so libexec/dovecot/anvil libexec/dovecot/auth libexec/dovecot/config libexec/dovecot/deliver libexec/dovecot/dict libexec/dovecot/dict-expire libexec/dovecot/dns-client libexec/dovecot/doveadm-server libexec/dovecot/dovecot-lda libexec/dovecot/gdbhelper libexec/dovecot/health-check.sh libexec/dovecot/imap %%IMAP_HIBERNATE%%libexec/dovecot/imap-hibernate libexec/dovecot/imap-login libexec/dovecot/imap-urlauth libexec/dovecot/imap-urlauth-login libexec/dovecot/imap-urlauth-worker libexec/dovecot/indexer libexec/dovecot/indexer-worker libexec/dovecot/lmtp libexec/dovecot/log libexec/dovecot/pop3 libexec/dovecot/pop3-login libexec/dovecot/quota-status libexec/dovecot/rawlog libexec/dovecot/script libexec/dovecot/script-login libexec/dovecot/settings-history.py libexec/dovecot/stats libexec/dovecot/submission libexec/dovecot/submission-login libexec/dovecot/xml2text sbin/dovecot share/aclocal/dovecot.m4 %%DATADIR%%/stopwords/stopwords_da.txt %%DATADIR%%/stopwords/stopwords_de.txt %%DATADIR%%/stopwords/stopwords_en.txt %%DATADIR%%/stopwords/stopwords_es.txt %%DATADIR%%/stopwords/stopwords_fi.txt %%DATADIR%%/stopwords/stopwords_fr.txt %%DATADIR%%/stopwords/stopwords_it.txt %%DATADIR%%/stopwords/stopwords_nl.txt %%DATADIR%%/stopwords/stopwords_no.txt %%DATADIR%%/stopwords/stopwords_pt.txt %%DATADIR%%/stopwords/stopwords_ro.txt %%DATADIR%%/stopwords/stopwords_ru.txt %%DATADIR%%/stopwords/stopwords_sv.txt %%DATADIR%%/stopwords/stopwords_tr.txt share/man/man1/deliver.1.gz share/man/man1/doveadm-acl.1.gz share/man/man1/doveadm-altmove.1.gz share/man/man1/doveadm-auth.1.gz share/man/man1/doveadm-backup.1.gz share/man/man1/doveadm-compress-connect.1.gz share/man/man1/doveadm-config.1.gz share/man/man1/doveadm-copy.1.gz share/man/man1/doveadm-deduplicate.1.gz share/man/man1/doveadm-dict.1.gz share/man/man1/doveadm-dump.1.gz share/man/man1/doveadm-exec.1.gz share/man/man1/doveadm-expunge.1.gz share/man/man1/doveadm-fetch.1.gz share/man/man1/doveadm-flags.1.gz share/man/man1/doveadm-force-resync.1.gz share/man/man1/doveadm-fs.1.gz share/man/man1/doveadm-fts.1.gz share/man/man1/doveadm-help.1.gz share/man/man1/doveadm-import.1.gz share/man/man1/doveadm-index.1.gz share/man/man1/doveadm-indexer.1.gz share/man/man1/doveadm-instance.1.gz share/man/man1/doveadm-kick.1.gz share/man/man1/doveadm-log.1.gz share/man/man1/doveadm-mail-dict.1.gz share/man/man1/doveadm-mail-fs.1.gz share/man/man1/doveadm-mailbox-cryptokey.1.gz share/man/man1/doveadm-mailbox.1.gz share/man/man1/doveadm-move.1.gz share/man/man1/doveadm-penalty.1.gz share/man/man1/doveadm-process-status.1.gz share/man/man1/doveadm-proxy.1.gz share/man/man1/doveadm-purge.1.gz share/man/man1/doveadm-pw.1.gz share/man/man1/doveadm-quota.1.gz share/man/man1/doveadm-rebuild.1.gz share/man/man1/doveadm-reload.1.gz share/man/man1/doveadm-save.1.gz share/man/man1/doveadm-search.1.gz share/man/man1/doveadm-service-status.1.gz share/man/man1/doveadm-service-stop.1.gz share/man/man1/doveadm-stats.1.gz share/man/man1/doveadm-stop.1.gz share/man/man1/doveadm-sync.1.gz share/man/man1/doveadm-user.1.gz share/man/man1/doveadm-who.1.gz share/man/man1/doveadm.1.gz share/man/man1/doveconf.1.gz share/man/man1/dovecot-lda.1.gz share/man/man1/dovecot-sysreport.1.gz share/man/man1/dovecot.1.gz share/man/man7/doveadm-search-query.7.gz @dir %%DATADIR%%/stopwords @dir %%DATADIR%%