Wed May 11 09:26:58 2022 UTC ()
dovecot2: updated to 2.3.19

v2.3.19

+ Added mail_user_session_finished event, which is emitted when the mail
  user session is finished (e.g. imap, pop3, lmtp). It also includes
  fields with some process statistics information.
  See https://doc.dovecot.org/admin_manual/list_of_events/ for more
  information.
+ Added process_shutdown_filter setting. When an event matches the filter,
  the process will be shutdown after the current connection(s) have
  finished. This is intended to reduce memory usage of long-running imap
  processes that keep a lot of memory allocated instead of freeing it to
  the OS.
+ auth: Add cache hit indicator to auth passdb/userdb finished events.
  See https://doc.dovecot.org/admin_manual/list_of_events/ for more
  information.
+ doveadm deduplicate: Performance is improved significantly.
+ imapc: COPY commands were sent one mail at a time to the remote IMAP
  server. Now the copying is buffered, so multiple mails can be copied
  with a single COPY command.
+ lib-lua: Add a Lua interface to Dovecot's HTTP client library. See
  https://doc.dovecot.org/admin_manual/lua/ for more information.
- auth: Cache lookup would use incorrect cache key after username change.
- auth: Improve handling unexpected LDAP connection errors/hangs.
  Try to fix up these cases by reconnecting to the LDAP server and
  aborting LDAP requests earlier.
- auth: Process crashed if userdb iteration was attempted while auth-workers
  were already full handling auth requests.
- auth: db-oauth2: Using %{oauth2:name} variables caused unnecessary
  introspection requests.
- dict: Timeouts may have been leaked at deinit.
- director: Ring may have become unstable if a backend's tag was changed.
  It could also have caused director process to crash.
- doveadm kick: Numeric parameter was treated as IP address.
- doveadm: Proxying can panic when flushing print output. Fixes
  Panic: file ioloop.c: line 865 (io_loop_destroy): assertion failed:
  (ioloop == current_ioloop).
- doveadm sync: BROKENCHAR was wrongly changed to '_' character when
  migrating mailboxes. This was set by default to %, so any mailbox
  names containing % characters were modified to "_25".
- imapc: Copying or moving mails with doveadm to an imapc mailbox could
  have produced "Error: Syncing mailbox '[...]' failed" Errors. The
  operation itself succeeded but attempting to sync the destination
  mailbox failed.
- imapc: Prevent index log synchronization errors when two or more imapc
  sessions are adding messages to the same mailbox index files, i.e.
  INDEX=MEMORY is not used.
- indexer: Process was slowly leaking memory for each indexing request.
- lib-fts: fts header filters caused binary content to be sent to the
  indexer with non-default configuration.
- doveadm-server: Process could hang in some situations when printing
  output to TCP client, e.g. when printing doveadm sync state.
- lib-index: dovecot.index.log files were often read and parsed entirely,
  rather than only the parts that were actually necessary. This mainly
  increased CPU usage.
- lmtp-proxy: Session ID forwarding would cause same session IDs being
  used when delivering same mail to multiple backends.
- log: Log prefix update may have been lost if log process was busy.
  This could have caused log prefixes to be empty or in some cases
  reused between sessions, i.e. log lines could have been logged for the
  wrong user/session.
- mail_crypt: Plugin crashes if it's loaded only for some users. Fixes
  Panic: Module context mail_crypt_user_module missing.
- mail_crypt: When LMTP was delivering mails to both recipients with mail
  encryption enabled and not enabled, the non-encrypted recipients may
  have gotten mails encrypted anyway. This happened when the first
  recipient was encrypted (mail_crypt_save_version=2) and the 2nd
  recipient was not encrypted (mail_crypt_save_version=0).
- pop3: Session would crash if empty line was sent.
- stats: HTTP server leaked memory.
- submission-login: Long credentials, such as OAUTH2 tokens, were refused
  during SASL interactive due to submission server applying line length
  limits.
- submission-login: When proxying to remote host, authentication was not
  using interactive SASL when logging in using long credentials such as
  OAUTH2 tokens. This caused authentication to fail due to line length
  constraints in SMTP protocol.
- submission: Terminating the client connection with QUIT command after
  mail transaction is started with MAIL command and before it is
  finished with DATA/BDAT can cause a segfault crash.
- virtual: doveadm search queries with mailbox-guid as the only parameter
  crashes: Panic: file virtual-search.c: line 77 (virtual_search_get_records):
  assertion failed: (result != 0)


(adam)
diff -r1.48 -r1.49 pkgsrc/mail/dovecot2/Makefile.common
diff -r1.75 -r1.76 pkgsrc/mail/dovecot2/PLIST
diff -r1.117 -r1.118 pkgsrc/mail/dovecot2/distinfo
diff -r1.29 -r1.30 pkgsrc/mail/dovecot2-sqlite/Makefile

cvs diff -r1.48 -r1.49 pkgsrc/mail/dovecot2/Makefile.common (switch to unified diff)

--- pkgsrc/mail/dovecot2/Makefile.common 2022/02/03 21:02:04 1.48
+++ pkgsrc/mail/dovecot2/Makefile.common 2022/05/11 09:26:57 1.49
@@ -1,63 +1,63 @@ @@ -1,63 +1,63 @@
1# $NetBSD: Makefile.common,v 1.48 2022/02/03 21:02:04 adam Exp $ 1# $NetBSD: Makefile.common,v 1.49 2022/05/11 09:26:57 adam Exp $
2# 2#
3# when updating to a new release, update ABI depends in 3# when updating to a new release, update ABI depends in
4# the buildlink3.mk file as well, since the plugins' version 4# the buildlink3.mk file as well, since the plugins' version
5# must match (see PR 49563). 5# must match (see PR 49563).
6# 6#
7# used by mail/dovecot2/Makefile 7# used by mail/dovecot2/Makefile
8# used by mail/dovecot2-gssapi/Makefile 8# used by mail/dovecot2-gssapi/Makefile
9# used by mail/dovecot2-ldap/Makefile 9# used by mail/dovecot2-ldap/Makefile
10# used by mail/dovecot2-mysql/Makefile 10# used by mail/dovecot2-mysql/Makefile
11# used by mail/dovecot2-pgsql/Makefile 11# used by mail/dovecot2-pgsql/Makefile
12# used by mail/dovecot2-sqlite/Makefile 12# used by mail/dovecot2-sqlite/Makefile
13 13
14DISTNAME= dovecot-2.3.18 14DISTNAME= dovecot-2.3.19
15CATEGORIES= mail 15CATEGORIES= mail
16MASTER_SITES= https://dovecot.org/releases/${PKGVERSION_NOREV:R}/ 16MASTER_SITES= https://dovecot.org/releases/${PKGVERSION_NOREV:R}/
17 17
18MAINTAINER= adam@NetBSD.org 18MAINTAINER= adam@NetBSD.org
19HOMEPAGE= https://www.dovecot.org/ 19HOMEPAGE= https://www.dovecot.org/
20COMMENT= Secure IMAP and POP3 server 20COMMENT= Secure IMAP and POP3 server
21LICENSE= mit AND gnu-lgpl-v2.1 AND modified-bsd 21LICENSE= mit AND gnu-lgpl-v2.1 AND modified-bsd
22 22
23DISTINFO_FILE= ${.CURDIR}/../../mail/dovecot2/distinfo 23DISTINFO_FILE= ${.CURDIR}/../../mail/dovecot2/distinfo
24PATCHDIR= ${.CURDIR}/../../mail/dovecot2/patches 24PATCHDIR= ${.CURDIR}/../../mail/dovecot2/patches
25 25
26USE_LIBTOOL= yes 26USE_LIBTOOL= yes
27USE_TOOLS+= gmake pkg-config rpcgen bash:run 27USE_TOOLS+= gmake pkg-config rpcgen bash:run
28GNU_CONFIGURE= yes 28GNU_CONFIGURE= yes
29 29
30BUILD_DEFS+= VARBASE 30BUILD_DEFS+= VARBASE
31 31
32.include "../../mk/bsd.prefs.mk" 32.include "../../mk/bsd.prefs.mk"
33 33
34.if "${PKGPATH}" != "mail/dovecot2" 34.if "${PKGPATH}" != "mail/dovecot2"
35DEPENDS+= dovecot>=${PKGVERSION_NOREV}{nb*,}:../../mail/dovecot2 35DEPENDS+= dovecot>=${PKGVERSION_NOREV}{nb*,}:../../mail/dovecot2
36.endif 36.endif
37 37
38CONFIGURE_ARGS+= --localstatedir=${VARBASE} 38CONFIGURE_ARGS+= --localstatedir=${VARBASE}
39CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} 39CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
40CONFIGURE_ARGS+= --with-ssldir=${SSLDIR} 40CONFIGURE_ARGS+= --with-ssldir=${SSLDIR}
41CONFIGURE_ARGS+= --without-gssapi 41CONFIGURE_ARGS+= --without-gssapi
42CONFIGURE_ARGS+= --without-ldap 42CONFIGURE_ARGS+= --without-ldap
43 43
44# Leave pkgsrc to enable compiler security features as appropriate. 44# Leave pkgsrc to enable compiler security features as appropriate.
45CONFIGURE_ARGS+= --disable-hardening 45CONFIGURE_ARGS+= --disable-hardening
46 46
47# Enable generic SQL backend support 47# Enable generic SQL backend support
48CONFIGURE_ARGS+= --with-sql 48CONFIGURE_ARGS+= --with-sql
49 49
50TEST_TARGET= check 50TEST_TARGET= check
51 51
52# Explicitly disable epoll/inotify on illumos, dovecot assumes Linux-specific 52# Explicitly disable epoll/inotify on illumos, dovecot assumes Linux-specific
53# implementation details. 53# implementation details.
54CONFIGURE_ARGS.SunOS+= --with-ioloop=poll 54CONFIGURE_ARGS.SunOS+= --with-ioloop=poll
55CONFIGURE_ARGS.SunOS+= --with-notify=none 55CONFIGURE_ARGS.SunOS+= --with-notify=none
56 56
57.include "options.mk" 57.include "options.mk"
58 58
59.include "../../archivers/bzip2/buildlink3.mk" 59.include "../../archivers/bzip2/buildlink3.mk"
60.include "../../archivers/lz4/buildlink3.mk" 60.include "../../archivers/lz4/buildlink3.mk"
61.include "../../archivers/xz/buildlink3.mk" 61.include "../../archivers/xz/buildlink3.mk"
62.include "../../archivers/zstd/buildlink3.mk" 62.include "../../archivers/zstd/buildlink3.mk"
63.include "../../devel/zlib/buildlink3.mk" 63.include "../../devel/zlib/buildlink3.mk"

cvs diff -r1.75 -r1.76 pkgsrc/mail/dovecot2/PLIST (switch to unified diff)

--- pkgsrc/mail/dovecot2/PLIST 2021/12/21 17:28:51 1.75
+++ pkgsrc/mail/dovecot2/PLIST 2022/05/11 09:26:57 1.76
@@ -1,1063 +1,1065 @@ @@ -1,1063 +1,1065 @@
1@comment $NetBSD: PLIST,v 1.75 2021/12/21 17:28:51 adam Exp $ 1@comment $NetBSD: PLIST,v 1.76 2022/05/11 09:26:57 adam Exp $
2bin/doveadm 2bin/doveadm
3bin/doveconf 3bin/doveconf
4bin/dovecot-sysreport 4bin/dovecot-sysreport
5bin/dsync 5bin/dsync
6include/dovecot/access-lookup.h 6include/dovecot/access-lookup.h
7include/dovecot/acl-api-private.h 7include/dovecot/acl-api-private.h
8include/dovecot/acl-api.h 8include/dovecot/acl-api.h
9include/dovecot/acl-cache.h 9include/dovecot/acl-cache.h
10include/dovecot/acl-global-file.h 10include/dovecot/acl-global-file.h
11include/dovecot/acl-lookup-dict.h 11include/dovecot/acl-lookup-dict.h
12include/dovecot/acl-plugin.h 12include/dovecot/acl-plugin.h
13include/dovecot/acl-storage.h 13include/dovecot/acl-storage.h
14include/dovecot/anvil-client.h 14include/dovecot/anvil-client.h
15include/dovecot/aqueue.h 15include/dovecot/aqueue.h
16include/dovecot/array-decl.h 16include/dovecot/array-decl.h
17include/dovecot/array.h 17include/dovecot/array.h
18include/dovecot/askpass.h 18include/dovecot/askpass.h
19include/dovecot/auth-cache.h 19include/dovecot/auth-cache.h
20include/dovecot/auth-client-connection.h 20include/dovecot/auth-client-connection.h
21include/dovecot/auth-client-interface.h 21include/dovecot/auth-client-interface.h
22include/dovecot/auth-client-private.h 22include/dovecot/auth-client-private.h
23include/dovecot/auth-client.h 23include/dovecot/auth-client.h
24include/dovecot/auth-common.h 24include/dovecot/auth-common.h
25include/dovecot/auth-fields.h 25include/dovecot/auth-fields.h
26include/dovecot/auth-master-connection.h 26include/dovecot/auth-master-connection.h
27include/dovecot/auth-master.h 27include/dovecot/auth-master.h
28include/dovecot/auth-penalty.h 28include/dovecot/auth-penalty.h
29include/dovecot/auth-policy.h 29include/dovecot/auth-policy.h
30include/dovecot/auth-request-handler-private.h 30include/dovecot/auth-request-handler-private.h
31include/dovecot/auth-request-handler.h 31include/dovecot/auth-request-handler.h
32include/dovecot/auth-request-stats.h 32include/dovecot/auth-request-stats.h
33include/dovecot/auth-request-var-expand.h 33include/dovecot/auth-request-var-expand.h
34include/dovecot/auth-request.h 34include/dovecot/auth-request.h
35include/dovecot/auth-settings.h 35include/dovecot/auth-settings.h
36include/dovecot/auth-stats.h 36include/dovecot/auth-stats.h
37include/dovecot/auth-token.h 37include/dovecot/auth-token.h
38include/dovecot/auth-worker-client.h 38include/dovecot/auth-worker-client.h
39include/dovecot/auth-worker-server.h 39include/dovecot/auth-worker-server.h
40include/dovecot/auth.h 40include/dovecot/auth.h
41include/dovecot/backtrace-string.h 41include/dovecot/backtrace-string.h
42include/dovecot/base32.h 42include/dovecot/base32.h
43include/dovecot/base64.h 43include/dovecot/base64.h
44include/dovecot/bits.h 44include/dovecot/bits.h
45include/dovecot/bsearch-insert-pos.h 45include/dovecot/bsearch-insert-pos.h
46include/dovecot/buffer.h 46include/dovecot/buffer.h
47include/dovecot/byteorder.h 47include/dovecot/byteorder.h
48include/dovecot/charset-utf8-private.h 48include/dovecot/charset-utf8-private.h
49include/dovecot/charset-utf8.h 49include/dovecot/charset-utf8.h
50include/dovecot/child-wait.h 50include/dovecot/child-wait.h
51include/dovecot/client-common.h 51include/dovecot/client-common.h
52include/dovecot/compat.h 52include/dovecot/compat.h
53include/dovecot/compression.h 53include/dovecot/compression.h
54include/dovecot/config-filter.h 54include/dovecot/config-filter.h
55include/dovecot/config-parser-private.h 55include/dovecot/config-parser-private.h
56include/dovecot/config-parser.h 56include/dovecot/config-parser.h
57include/dovecot/config-request.h 57include/dovecot/config-request.h
58include/dovecot/config.h 58include/dovecot/config.h
59include/dovecot/connection.h 59include/dovecot/connection.h
60include/dovecot/cpu-limit.h 60include/dovecot/cpu-limit.h
61include/dovecot/crc32.h 61include/dovecot/crc32.h
62include/dovecot/data-stack.h 62include/dovecot/data-stack.h
63include/dovecot/db-checkpassword.h 63include/dovecot/db-checkpassword.h
64include/dovecot/db-dict.h 64include/dovecot/db-dict.h
65include/dovecot/db-ldap.h 65include/dovecot/db-ldap.h
66include/dovecot/db-oauth2.h 66include/dovecot/db-oauth2.h
67include/dovecot/db-passwd-file.h 67include/dovecot/db-passwd-file.h
68include/dovecot/db-sql.h 68include/dovecot/db-sql.h
69include/dovecot/dbox-attachment.h 69include/dovecot/dbox-attachment.h
70include/dovecot/dbox-file.h 70include/dovecot/dbox-file.h
71include/dovecot/dbox-mail.h 71include/dovecot/dbox-mail.h
72include/dovecot/dbox-save.h 72include/dovecot/dbox-save.h
73include/dovecot/dbox-storage.h 73include/dovecot/dbox-storage.h
74include/dovecot/dcrypt-iostream.h 74include/dovecot/dcrypt-iostream.h
75include/dovecot/dcrypt-private.h 75include/dovecot/dcrypt-private.h
76include/dovecot/dcrypt.h 76include/dovecot/dcrypt.h
77include/dovecot/dict-client.h 77include/dovecot/dict-client.h
78include/dovecot/dict-private.h 78include/dovecot/dict-private.h
79include/dovecot/dict-transaction-memory.h 79include/dovecot/dict-transaction-memory.h
80include/dovecot/dict.h 80include/dovecot/dict.h
81include/dovecot/dns-lookup.h 81include/dovecot/dns-lookup.h
82include/dovecot/dns-util.h 82include/dovecot/dns-util.h
83include/dovecot/doveadm-cmd.h 83include/dovecot/doveadm-cmd.h
84include/dovecot/doveadm-dsync.h 84include/dovecot/doveadm-dsync.h
85include/dovecot/doveadm-dump.h 85include/dovecot/doveadm-dump.h
86include/dovecot/doveadm-mail-iter.h 86include/dovecot/doveadm-mail-iter.h
87include/dovecot/doveadm-mail.h 87include/dovecot/doveadm-mail.h
88include/dovecot/doveadm-mailbox-list-iter.h 88include/dovecot/doveadm-mailbox-list-iter.h
89include/dovecot/doveadm-print-private.h 89include/dovecot/doveadm-print-private.h
90include/dovecot/doveadm-print.h 90include/dovecot/doveadm-print.h
91include/dovecot/doveadm-settings.h 91include/dovecot/doveadm-settings.h
92include/dovecot/doveadm-util.h 92include/dovecot/doveadm-util.h
93include/dovecot/doveadm.h 93include/dovecot/doveadm.h
94include/dovecot/dovecot-version.h 94include/dovecot/dovecot-version.h
95include/dovecot/dsasl-client-private.h 95include/dovecot/dsasl-client-private.h
96include/dovecot/dsasl-client.h 96include/dovecot/dsasl-client.h
97include/dovecot/dsync-brain.h 97include/dovecot/dsync-brain.h
98include/dovecot/dsync-ibc.h 98include/dovecot/dsync-ibc.h
99include/dovecot/eacces-error.h 99include/dovecot/eacces-error.h
100include/dovecot/env-util.h 100include/dovecot/env-util.h
101include/dovecot/event-filter-parser.h 101include/dovecot/event-filter-parser.h
102include/dovecot/event-filter-private.h 102include/dovecot/event-filter-private.h
103include/dovecot/event-filter.h 103include/dovecot/event-filter.h
104include/dovecot/event-log.h 104include/dovecot/event-log.h
105include/dovecot/execv-const.h 105include/dovecot/execv-const.h
106include/dovecot/fail-mail-storage.h 106include/dovecot/fail-mail-storage.h
107include/dovecot/failures-private.h 107include/dovecot/failures-private.h
108include/dovecot/failures.h 108include/dovecot/failures.h
109include/dovecot/fd-util.h 109include/dovecot/fd-util.h
110include/dovecot/fdatasync-path.h 110include/dovecot/fdatasync-path.h
111include/dovecot/fdpass.h 111include/dovecot/fdpass.h
112include/dovecot/file-cache.h 112include/dovecot/file-cache.h
113include/dovecot/file-copy.h 113include/dovecot/file-copy.h
114include/dovecot/file-create-locked.h 114include/dovecot/file-create-locked.h
115include/dovecot/file-dotlock.h 115include/dovecot/file-dotlock.h
116include/dovecot/file-lock.h 116include/dovecot/file-lock.h
117include/dovecot/file-set-size.h 117include/dovecot/file-set-size.h
118include/dovecot/fs-api-private.h 118include/dovecot/fs-api-private.h
119include/dovecot/fs-api.h 119include/dovecot/fs-api.h
120include/dovecot/fs-sis-common.h 120include/dovecot/fs-sis-common.h
121include/dovecot/fs-test.h 121include/dovecot/fs-test.h
122include/dovecot/fs-wrapper.h 122include/dovecot/fs-wrapper.h
123include/dovecot/fsync-mode.h 123include/dovecot/fsync-mode.h
124include/dovecot/fts-api-private.h 124include/dovecot/fts-api-private.h
125include/dovecot/fts-api.h 125include/dovecot/fts-api.h
126include/dovecot/fts-common.h 126include/dovecot/fts-common.h
127include/dovecot/fts-expunge-log.h 127include/dovecot/fts-expunge-log.h
128include/dovecot/fts-filter-common.h 128include/dovecot/fts-filter-common.h
129include/dovecot/fts-filter-private.h 129include/dovecot/fts-filter-private.h
130include/dovecot/fts-filter.h 130include/dovecot/fts-filter.h
131include/dovecot/fts-icu.h 131include/dovecot/fts-icu.h
132include/dovecot/fts-indexer.h 132include/dovecot/fts-indexer.h
133include/dovecot/fts-language.h 133include/dovecot/fts-language.h
134include/dovecot/fts-library.h 134include/dovecot/fts-library.h
135include/dovecot/fts-parser.h 135include/dovecot/fts-parser.h
136include/dovecot/fts-storage.h 136include/dovecot/fts-storage.h
137include/dovecot/fts-tokenizer-common.h 137include/dovecot/fts-tokenizer-common.h
138include/dovecot/fts-tokenizer-generic-private.h 138include/dovecot/fts-tokenizer-generic-private.h
139include/dovecot/fts-tokenizer-private.h 139include/dovecot/fts-tokenizer-private.h
140include/dovecot/fts-tokenizer.h 140include/dovecot/fts-tokenizer.h
141include/dovecot/fts-user.h 141include/dovecot/fts-user.h
142include/dovecot/fuzzer.h 142include/dovecot/fuzzer.h
143include/dovecot/guid.h 143include/dovecot/guid.h
144include/dovecot/hash-decl.h 144include/dovecot/hash-decl.h
145include/dovecot/hash-format.h 145include/dovecot/hash-format.h
146include/dovecot/hash-method.h 146include/dovecot/hash-method.h
147include/dovecot/hash.h 147include/dovecot/hash.h
148include/dovecot/hash2.h 148include/dovecot/hash2.h
149include/dovecot/hex-binary.h 149include/dovecot/hex-binary.h
150include/dovecot/hex-dec.h 150include/dovecot/hex-dec.h
151include/dovecot/hmac-cram-md5.h 151include/dovecot/hmac-cram-md5.h
152include/dovecot/hmac.h 152include/dovecot/hmac.h
153include/dovecot/home-expand.h 153include/dovecot/home-expand.h
154include/dovecot/hook-build.h 154include/dovecot/hook-build.h
155include/dovecot/hostpid.h 155include/dovecot/hostpid.h
156include/dovecot/http-auth.h 156include/dovecot/http-auth.h
157include/dovecot/http-client-private.h 157include/dovecot/http-client-private.h
158include/dovecot/http-client.h 158include/dovecot/http-client.h
159include/dovecot/http-common.h 159include/dovecot/http-common.h
160include/dovecot/http-date.h 160include/dovecot/http-date.h
161include/dovecot/http-header-parser.h 161include/dovecot/http-header-parser.h
162include/dovecot/http-header.h 162include/dovecot/http-header.h
163include/dovecot/http-message-parser.h 163include/dovecot/http-message-parser.h
164include/dovecot/http-parser.h 164include/dovecot/http-parser.h
165include/dovecot/http-request-parser.h 165include/dovecot/http-request-parser.h
166include/dovecot/http-request.h 166include/dovecot/http-request.h
167include/dovecot/http-response-parser.h 167include/dovecot/http-response-parser.h
168include/dovecot/http-response.h 168include/dovecot/http-response.h
169include/dovecot/http-server-private.h 169include/dovecot/http-server-private.h
170include/dovecot/http-server.h 170include/dovecot/http-server.h
171include/dovecot/http-transfer.h 171include/dovecot/http-transfer.h
172include/dovecot/http-url.h 172include/dovecot/http-url.h
173include/dovecot/imap-arg.h 173include/dovecot/imap-arg.h
174include/dovecot/imap-base-subject.h 174include/dovecot/imap-base-subject.h
175include/dovecot/imap-bodystructure.h 175include/dovecot/imap-bodystructure.h
176include/dovecot/imap-client.h 176include/dovecot/imap-client.h
177include/dovecot/imap-commands-util.h 177include/dovecot/imap-commands-util.h
178include/dovecot/imap-commands.h 178include/dovecot/imap-commands.h
179include/dovecot/imap-common.h 179include/dovecot/imap-common.h
180include/dovecot/imap-date.h 180include/dovecot/imap-date.h
181include/dovecot/imap-envelope.h 181include/dovecot/imap-envelope.h
182include/dovecot/imap-expunge.h 182include/dovecot/imap-expunge.h
183include/dovecot/imap-feature.h 183include/dovecot/imap-feature.h
184include/dovecot/imap-fetch.h 184include/dovecot/imap-fetch.h
185include/dovecot/imap-id.h 185include/dovecot/imap-id.h
186include/dovecot/imap-keepalive.h 186include/dovecot/imap-keepalive.h
187include/dovecot/imap-list.h 187include/dovecot/imap-list.h
188include/dovecot/imap-login-client.h 188include/dovecot/imap-login-client.h
189include/dovecot/imap-login-commands.h 189include/dovecot/imap-login-commands.h
190include/dovecot/imap-login-settings.h 190include/dovecot/imap-login-settings.h
191include/dovecot/imap-master-client.h 191include/dovecot/imap-master-client.h
192include/dovecot/imap-match.h 192include/dovecot/imap-match.h
193include/dovecot/imap-metadata.h 193include/dovecot/imap-metadata.h
194include/dovecot/imap-msgpart-url.h 194include/dovecot/imap-msgpart-url.h
195include/dovecot/imap-msgpart.h 195include/dovecot/imap-msgpart.h
196include/dovecot/imap-notify.h 196include/dovecot/imap-notify.h
197include/dovecot/imap-parser.h 197include/dovecot/imap-parser.h
198include/dovecot/imap-quote.h 198include/dovecot/imap-quote.h
199include/dovecot/imap-resp-code.h 199include/dovecot/imap-resp-code.h
200include/dovecot/imap-search-args.h 200include/dovecot/imap-search-args.h
201include/dovecot/imap-search.h 201include/dovecot/imap-search.h
202include/dovecot/imap-seqset.h 202include/dovecot/imap-seqset.h
203include/dovecot/imap-settings.h 203include/dovecot/imap-settings.h
204include/dovecot/imap-state.h 204include/dovecot/imap-state.h
205include/dovecot/imap-status.h 205include/dovecot/imap-status.h
206include/dovecot/imap-sync-private.h 206include/dovecot/imap-sync-private.h
207include/dovecot/imap-sync.h 207include/dovecot/imap-sync.h
208include/dovecot/imap-url.h 208include/dovecot/imap-url.h
209include/dovecot/imap-urlauth-backend.h 209include/dovecot/imap-urlauth-backend.h
210include/dovecot/imap-urlauth-connection.h 210include/dovecot/imap-urlauth-connection.h
211include/dovecot/imap-urlauth-fetch.h 211include/dovecot/imap-urlauth-fetch.h
212include/dovecot/imap-urlauth-private.h 212include/dovecot/imap-urlauth-private.h
213include/dovecot/imap-urlauth.h 213include/dovecot/imap-urlauth.h
214include/dovecot/imap-utf7.h 214include/dovecot/imap-utf7.h
215include/dovecot/imap-util.h 215include/dovecot/imap-util.h
216include/dovecot/imapc-client-private.h 216include/dovecot/imapc-client-private.h
217include/dovecot/imapc-client.h 217include/dovecot/imapc-client.h
218include/dovecot/imapc-connection.h 218include/dovecot/imapc-connection.h
219include/dovecot/imapc-list.h 219include/dovecot/imapc-list.h
220include/dovecot/imapc-mail.h 220include/dovecot/imapc-mail.h
221include/dovecot/imapc-msgmap.h 221include/dovecot/imapc-msgmap.h
222include/dovecot/imapc-search.h 222include/dovecot/imapc-search.h
223include/dovecot/imapc-settings.h 223include/dovecot/imapc-settings.h
224include/dovecot/imapc-storage.h 224include/dovecot/imapc-storage.h
225include/dovecot/imapc-sync.h 225include/dovecot/imapc-sync.h
226include/dovecot/imem.h 226include/dovecot/imem.h
227include/dovecot/index-attachment.h 227include/dovecot/index-attachment.h
228include/dovecot/index-mail.h 228include/dovecot/index-mail.h
229include/dovecot/index-mailbox-size.h 229include/dovecot/index-mailbox-size.h
230include/dovecot/index-pop3-uidl.h 230include/dovecot/index-pop3-uidl.h
231include/dovecot/index-rebuild.h 231include/dovecot/index-rebuild.h
232include/dovecot/index-search-private.h 232include/dovecot/index-search-private.h
233include/dovecot/index-search-result.h 233include/dovecot/index-search-result.h
234include/dovecot/index-sort-private.h 234include/dovecot/index-sort-private.h
235include/dovecot/index-sort.h 235include/dovecot/index-sort.h
236include/dovecot/index-storage.h 236include/dovecot/index-storage.h
237include/dovecot/index-sync-changes.h 237include/dovecot/index-sync-changes.h
238include/dovecot/index-sync-private.h 238include/dovecot/index-sync-private.h
239include/dovecot/index-thread-private.h 239include/dovecot/index-thread-private.h
240include/dovecot/ioloop-iolist.h 240include/dovecot/ioloop-iolist.h
241include/dovecot/ioloop-notify-fd.h 241include/dovecot/ioloop-notify-fd.h
242include/dovecot/ioloop-private.h 242include/dovecot/ioloop-private.h
243include/dovecot/ioloop.h 243include/dovecot/ioloop.h
244include/dovecot/iostream-lz4.h 244include/dovecot/iostream-lz4.h
245include/dovecot/iostream-openssl.h 245include/dovecot/iostream-openssl.h
246include/dovecot/iostream-private.h 246include/dovecot/iostream-private.h
247include/dovecot/iostream-proxy.h 247include/dovecot/iostream-proxy.h
248include/dovecot/iostream-pump.h 248include/dovecot/iostream-pump.h
249include/dovecot/iostream-rawlog-private.h 249include/dovecot/iostream-rawlog-private.h
250include/dovecot/iostream-rawlog.h 250include/dovecot/iostream-rawlog.h
251include/dovecot/iostream-ssl-private.h 251include/dovecot/iostream-ssl-private.h
252include/dovecot/iostream-ssl-test.h 252include/dovecot/iostream-ssl-test.h
253include/dovecot/iostream-ssl.h 253include/dovecot/iostream-ssl.h
254include/dovecot/iostream-temp.h 254include/dovecot/iostream-temp.h
255include/dovecot/iostream.h 255include/dovecot/iostream.h
256include/dovecot/ipc-client.h 256include/dovecot/ipc-client.h
257include/dovecot/ipc-server.h 257include/dovecot/ipc-server.h
258include/dovecot/ipwd.h 258include/dovecot/ipwd.h
259include/dovecot/iso8601-date.h 259include/dovecot/iso8601-date.h
260include/dovecot/istream-attachment-connector.h 260include/dovecot/istream-attachment-connector.h
261include/dovecot/istream-attachment-extractor.h 261include/dovecot/istream-attachment-extractor.h
262include/dovecot/istream-base64.h 262include/dovecot/istream-base64.h
263include/dovecot/istream-binary-converter.h 263include/dovecot/istream-binary-converter.h
264include/dovecot/istream-callback.h 264include/dovecot/istream-callback.h
265include/dovecot/istream-chain.h 265include/dovecot/istream-chain.h
266include/dovecot/istream-concat.h 266include/dovecot/istream-concat.h
267include/dovecot/istream-crlf.h 267include/dovecot/istream-crlf.h
268include/dovecot/istream-decrypt.h 268include/dovecot/istream-decrypt.h
269include/dovecot/istream-dot.h 269include/dovecot/istream-dot.h
270include/dovecot/istream-failure-at.h 270include/dovecot/istream-failure-at.h
271include/dovecot/istream-file-private.h 271include/dovecot/istream-file-private.h
272include/dovecot/istream-fs-file.h 272include/dovecot/istream-fs-file.h
273include/dovecot/istream-fs-stats.h 273include/dovecot/istream-fs-stats.h
274include/dovecot/istream-hash.h 274include/dovecot/istream-hash.h
275include/dovecot/istream-header-filter.h 275include/dovecot/istream-header-filter.h
276include/dovecot/istream-jsonstr.h 276include/dovecot/istream-jsonstr.h
277include/dovecot/istream-mail.h 277include/dovecot/istream-mail.h
278include/dovecot/istream-metawrap.h 278include/dovecot/istream-metawrap.h
279include/dovecot/istream-multiplex.h 279include/dovecot/istream-multiplex.h
280include/dovecot/istream-nonuls.h 280include/dovecot/istream-nonuls.h
281include/dovecot/istream-private.h 281include/dovecot/istream-private.h
282include/dovecot/istream-qp.h 282include/dovecot/istream-qp.h
283include/dovecot/istream-raw-mbox.h 283include/dovecot/istream-raw-mbox.h
284include/dovecot/istream-rawlog.h 284include/dovecot/istream-rawlog.h
285include/dovecot/istream-seekable.h 285include/dovecot/istream-seekable.h
286include/dovecot/istream-sized.h 286include/dovecot/istream-sized.h
287include/dovecot/istream-tee.h 287include/dovecot/istream-tee.h
288include/dovecot/istream-timeout.h 288include/dovecot/istream-timeout.h
289include/dovecot/istream-try.h 289include/dovecot/istream-try.h
290include/dovecot/istream-unix.h 290include/dovecot/istream-unix.h
291include/dovecot/istream-zlib.h 291include/dovecot/istream-zlib.h
292include/dovecot/istream.h 292include/dovecot/istream.h
293include/dovecot/json-parser.h 293include/dovecot/json-parser.h
294include/dovecot/json-tree.h 294include/dovecot/json-tree.h
295include/dovecot/lda-settings.h 295include/dovecot/lda-settings.h
296include/dovecot/lib-event-private.h 296include/dovecot/lib-event-private.h
297include/dovecot/lib-event.h 297include/dovecot/lib-event.h
298include/dovecot/lib-signals.h 298include/dovecot/lib-signals.h
299include/dovecot/lib.h 299include/dovecot/lib.h
300include/dovecot/llist.h 300include/dovecot/llist.h
301include/dovecot/lmtp-client.h 301include/dovecot/lmtp-client.h
302include/dovecot/lmtp-commands.h 302include/dovecot/lmtp-commands.h
303include/dovecot/lmtp-common.h 303include/dovecot/lmtp-common.h
304include/dovecot/lmtp-recipient.h 304include/dovecot/lmtp-recipient.h
305include/dovecot/lmtp-settings.h 305include/dovecot/lmtp-settings.h
306include/dovecot/log-throttle.h 306include/dovecot/log-throttle.h
307include/dovecot/login-common.h 307include/dovecot/login-common.h
308include/dovecot/login-proxy-state.h 308include/dovecot/login-proxy-state.h
309include/dovecot/login-proxy.h 309include/dovecot/login-proxy.h
310include/dovecot/login-settings.h 310include/dovecot/login-settings.h
311include/dovecot/macros.h 311include/dovecot/macros.h
312include/dovecot/mail-autoexpunge.h 312include/dovecot/mail-autoexpunge.h
313include/dovecot/mail-cache-private.h 313include/dovecot/mail-cache-private.h
314include/dovecot/mail-cache.h 314include/dovecot/mail-cache.h
315include/dovecot/mail-copy.h 315include/dovecot/mail-copy.h
316include/dovecot/mail-deliver.h 316include/dovecot/mail-deliver.h
317include/dovecot/mail-duplicate.h 317include/dovecot/mail-duplicate.h
318include/dovecot/mail-error.h 318include/dovecot/mail-error.h
319include/dovecot/mail-html2text.h 319include/dovecot/mail-html2text.h
320include/dovecot/mail-index-alloc-cache.h 320include/dovecot/mail-index-alloc-cache.h
321include/dovecot/mail-index-modseq.h 321include/dovecot/mail-index-modseq.h
322include/dovecot/mail-index-private.h 322include/dovecot/mail-index-private.h
323include/dovecot/mail-index-strmap.h 323include/dovecot/mail-index-strmap.h
324include/dovecot/mail-index-sync-private.h 324include/dovecot/mail-index-sync-private.h
325include/dovecot/mail-index-transaction-private.h 325include/dovecot/mail-index-transaction-private.h
326include/dovecot/mail-index-util.h 326include/dovecot/mail-index-util.h
327include/dovecot/mail-index-view-private.h 327include/dovecot/mail-index-view-private.h
328include/dovecot/mail-index.h 328include/dovecot/mail-index.h
329include/dovecot/mail-namespace.h 329include/dovecot/mail-namespace.h
330include/dovecot/mail-search-build.h 330include/dovecot/mail-search-build.h
331include/dovecot/mail-search-mime-build.h 331include/dovecot/mail-search-mime-build.h
332include/dovecot/mail-search-mime-register.h 332include/dovecot/mail-search-mime-register.h
333include/dovecot/mail-search-mime.h 333include/dovecot/mail-search-mime.h
334include/dovecot/mail-search-parser-private.h 334include/dovecot/mail-search-parser-private.h
335include/dovecot/mail-search-parser.h 335include/dovecot/mail-search-parser.h
336include/dovecot/mail-search-register.h 336include/dovecot/mail-search-register.h
337include/dovecot/mail-search.h 337include/dovecot/mail-search.h
338include/dovecot/mail-send.h 338include/dovecot/mail-send.h
339include/dovecot/mail-storage-hooks.h 339include/dovecot/mail-storage-hooks.h
340include/dovecot/mail-storage-private.h 340include/dovecot/mail-storage-private.h
341include/dovecot/mail-storage-service.h 341include/dovecot/mail-storage-service.h
342include/dovecot/mail-storage-settings.h 342include/dovecot/mail-storage-settings.h
343include/dovecot/mail-storage.h 343include/dovecot/mail-storage.h
344include/dovecot/mail-thread.h 344include/dovecot/mail-thread.h
345include/dovecot/mail-transaction-log-private.h 345include/dovecot/mail-transaction-log-private.h
346include/dovecot/mail-transaction-log-view-private.h 346include/dovecot/mail-transaction-log-view-private.h
347include/dovecot/mail-transaction-log.h 347include/dovecot/mail-transaction-log.h
348include/dovecot/mail-types.h 348include/dovecot/mail-types.h
349include/dovecot/mail-user-hash.h 349include/dovecot/mail-user-hash.h
350include/dovecot/mail-user.h 350include/dovecot/mail-user.h
351include/dovecot/mailbox-attribute-internal.h 351include/dovecot/mailbox-attribute-internal.h
352include/dovecot/mailbox-attribute-private.h 352include/dovecot/mailbox-attribute-private.h
353include/dovecot/mailbox-attribute.h 353include/dovecot/mailbox-attribute.h
354include/dovecot/mailbox-guid-cache.h 354include/dovecot/mailbox-guid-cache.h
355include/dovecot/mailbox-list-delete.h 355include/dovecot/mailbox-list-delete.h
356include/dovecot/mailbox-list-fs.h 356include/dovecot/mailbox-list-fs.h
357include/dovecot/mailbox-list-index-storage.h 357include/dovecot/mailbox-list-index-storage.h
358include/dovecot/mailbox-list-index-sync.h 358include/dovecot/mailbox-list-index-sync.h
359include/dovecot/mailbox-list-index.h 359include/dovecot/mailbox-list-index.h
360include/dovecot/mailbox-list-iter-private.h 360include/dovecot/mailbox-list-iter-private.h
361include/dovecot/mailbox-list-iter.h 361include/dovecot/mailbox-list-iter.h
362include/dovecot/mailbox-list-maildir.h 362include/dovecot/mailbox-list-maildir.h
363include/dovecot/mailbox-list-notify-tree.h 363include/dovecot/mailbox-list-notify-tree.h
364include/dovecot/mailbox-list-notify.h 364include/dovecot/mailbox-list-notify.h
365include/dovecot/mailbox-list-private.h 365include/dovecot/mailbox-list-private.h
366include/dovecot/mailbox-list-subscriptions.h 366include/dovecot/mailbox-list-subscriptions.h
367include/dovecot/mailbox-list.h 367include/dovecot/mailbox-list.h
368include/dovecot/mailbox-log.h 368include/dovecot/mailbox-log.h
369include/dovecot/mailbox-match-plugin.h 369include/dovecot/mailbox-match-plugin.h
370include/dovecot/mailbox-recent-flags.h 370include/dovecot/mailbox-recent-flags.h
371include/dovecot/mailbox-search-result-private.h 371include/dovecot/mailbox-search-result-private.h
372include/dovecot/mailbox-tree.h 372include/dovecot/mailbox-tree.h
373include/dovecot/mailbox-uidvalidity.h 373include/dovecot/mailbox-uidvalidity.h
374include/dovecot/mailbox-watch.h 374include/dovecot/mailbox-watch.h
375include/dovecot/maildir-filename-flags.h 375include/dovecot/maildir-filename-flags.h
376include/dovecot/maildir-filename.h 376include/dovecot/maildir-filename.h
377include/dovecot/maildir-keywords.h 377include/dovecot/maildir-keywords.h
378include/dovecot/maildir-settings.h 378include/dovecot/maildir-settings.h
379include/dovecot/maildir-storage.h 379include/dovecot/maildir-storage.h
380include/dovecot/maildir-sync.h 380include/dovecot/maildir-sync.h
381include/dovecot/maildir-uidlist.h 381include/dovecot/maildir-uidlist.h
382include/dovecot/malloc-overflow.h 382include/dovecot/malloc-overflow.h
383include/dovecot/master-auth.h 383include/dovecot/master-auth.h
384include/dovecot/master-instance.h 384include/dovecot/master-instance.h
385include/dovecot/master-interface.h 385include/dovecot/master-interface.h
386include/dovecot/master-login-auth.h 386include/dovecot/master-login-auth.h
387include/dovecot/master-login.h 387include/dovecot/master-login.h
388include/dovecot/master-service-private.h 388include/dovecot/master-service-private.h
389include/dovecot/master-service-settings-cache.h 389include/dovecot/master-service-settings-cache.h
390include/dovecot/master-service-settings.h 390include/dovecot/master-service-settings.h
391include/dovecot/master-service-ssl-settings.h 391include/dovecot/master-service-ssl-settings.h
392include/dovecot/master-service-ssl.h 392include/dovecot/master-service-ssl.h
393include/dovecot/master-service.h 393include/dovecot/master-service.h
394include/dovecot/mbox-file.h 394include/dovecot/mbox-file.h
395include/dovecot/mbox-from.h 395include/dovecot/mbox-from.h
396include/dovecot/mbox-lock.h 396include/dovecot/mbox-lock.h
397include/dovecot/mbox-md5.h 397include/dovecot/mbox-md5.h
398include/dovecot/mbox-settings.h 398include/dovecot/mbox-settings.h
399include/dovecot/mbox-storage.h 399include/dovecot/mbox-storage.h
400include/dovecot/mbox-sync-private.h 400include/dovecot/mbox-sync-private.h
401include/dovecot/md4.h 401include/dovecot/md4.h
402include/dovecot/md5.h 402include/dovecot/md5.h
403include/dovecot/mdbox-file.h 403include/dovecot/mdbox-file.h
404include/dovecot/mdbox-map-private.h 404include/dovecot/mdbox-map-private.h
405include/dovecot/mdbox-map.h 405include/dovecot/mdbox-map.h
406include/dovecot/mdbox-settings.h 406include/dovecot/mdbox-settings.h
407include/dovecot/mdbox-storage-rebuild.h 407include/dovecot/mdbox-storage-rebuild.h
408include/dovecot/mdbox-storage.h 408include/dovecot/mdbox-storage.h
409include/dovecot/mdbox-sync.h 409include/dovecot/mdbox-sync.h
410include/dovecot/mech-digest-md5-private.h 410include/dovecot/mech-digest-md5-private.h
411include/dovecot/mech-otp-common.h 411include/dovecot/mech-otp-common.h
412include/dovecot/mech-plain-common.h 412include/dovecot/mech-plain-common.h
413include/dovecot/mech-scram.h 413include/dovecot/mech-scram.h
414include/dovecot/mech.h 414include/dovecot/mech.h
415include/dovecot/memarea.h 415include/dovecot/memarea.h
416include/dovecot/mempool.h 416include/dovecot/mempool.h
417include/dovecot/message-address.h 417include/dovecot/message-address.h
418include/dovecot/message-binary-part.h 418include/dovecot/message-binary-part.h
419include/dovecot/message-date.h 419include/dovecot/message-date.h
420include/dovecot/message-decoder.h 420include/dovecot/message-decoder.h
421include/dovecot/message-header-decode.h 421include/dovecot/message-header-decode.h
422include/dovecot/message-header-encode.h 422include/dovecot/message-header-encode.h
423include/dovecot/message-header-hash.h 423include/dovecot/message-header-hash.h
424include/dovecot/message-header-parser.h 424include/dovecot/message-header-parser.h
425include/dovecot/message-id.h 425include/dovecot/message-id.h
426include/dovecot/message-parser.h 426include/dovecot/message-parser.h
427include/dovecot/message-part-data.h 427include/dovecot/message-part-data.h
428include/dovecot/message-part-serialize.h 428include/dovecot/message-part-serialize.h
429include/dovecot/message-part.h 429include/dovecot/message-part.h
430include/dovecot/message-search.h 430include/dovecot/message-search.h
431include/dovecot/message-size.h 431include/dovecot/message-size.h
432include/dovecot/message-snippet.h 432include/dovecot/message-snippet.h
433include/dovecot/mkdir-parents.h 433include/dovecot/mkdir-parents.h
434include/dovecot/mmap-util.h 434include/dovecot/mmap-util.h
435include/dovecot/module-context.h 435include/dovecot/module-context.h
436include/dovecot/module-dir.h 436include/dovecot/module-dir.h
437include/dovecot/mountpoint.h 437include/dovecot/mountpoint.h
438include/dovecot/mycrypt.h 438include/dovecot/mycrypt.h
439include/dovecot/net.h 439include/dovecot/net.h
440include/dovecot/nfs-workarounds.h 440include/dovecot/nfs-workarounds.h
441include/dovecot/notify-plugin-private.h 441include/dovecot/notify-plugin-private.h
442include/dovecot/notify-plugin.h 442include/dovecot/notify-plugin.h
443include/dovecot/numpack.h 443include/dovecot/numpack.h
444include/dovecot/oauth2.h 444include/dovecot/oauth2.h
445include/dovecot/ostream-cmp.h 445include/dovecot/ostream-cmp.h
446include/dovecot/ostream-dot.h 446include/dovecot/ostream-dot.h
447include/dovecot/ostream-encrypt.h 447include/dovecot/ostream-encrypt.h
448include/dovecot/ostream-failure-at.h 448include/dovecot/ostream-failure-at.h
449include/dovecot/ostream-file-private.h 449include/dovecot/ostream-file-private.h
450include/dovecot/ostream-hash.h 450include/dovecot/ostream-hash.h
451include/dovecot/ostream-metawrap.h 451include/dovecot/ostream-metawrap.h
452include/dovecot/ostream-multiplex.h 452include/dovecot/ostream-multiplex.h
453include/dovecot/ostream-null.h 453include/dovecot/ostream-null.h
454include/dovecot/ostream-private.h 454include/dovecot/ostream-private.h
455include/dovecot/ostream-rawlog.h 455include/dovecot/ostream-rawlog.h
456include/dovecot/ostream-unix.h 456include/dovecot/ostream-unix.h
457include/dovecot/ostream-wrapper.h 457include/dovecot/ostream-wrapper.h
458include/dovecot/ostream-zlib.h 458include/dovecot/ostream-zlib.h
459include/dovecot/ostream.h 459include/dovecot/ostream.h
460include/dovecot/passdb-blocking.h 460include/dovecot/passdb-blocking.h
461include/dovecot/passdb-cache.h 461include/dovecot/passdb-cache.h
462include/dovecot/passdb-template.h 462include/dovecot/passdb-template.h
463include/dovecot/passdb.h 463include/dovecot/passdb.h
464include/dovecot/password-scheme.h 464include/dovecot/password-scheme.h
465include/dovecot/path-util.h 465include/dovecot/path-util.h
466include/dovecot/pkcs5.h 466include/dovecot/pkcs5.h
467include/dovecot/pop3-capability.h 467include/dovecot/pop3-capability.h
468include/dovecot/pop3-client.h 468include/dovecot/pop3-client.h
469include/dovecot/pop3-commands.h 469include/dovecot/pop3-commands.h
470include/dovecot/pop3-common.h 470include/dovecot/pop3-common.h
471include/dovecot/pop3-settings.h 471include/dovecot/pop3-settings.h
472include/dovecot/pop3c-client.h 472include/dovecot/pop3c-client.h
473include/dovecot/pop3c-settings.h 473include/dovecot/pop3c-settings.h
474include/dovecot/pop3c-storage.h 474include/dovecot/pop3c-storage.h
475include/dovecot/pop3c-sync.h 475include/dovecot/pop3c-sync.h
476include/dovecot/primes.h 476include/dovecot/primes.h
477include/dovecot/printf-format-fix.h 477include/dovecot/printf-format-fix.h
478include/dovecot/priorityq.h 478include/dovecot/priorityq.h
 479include/dovecot/process-stat.h
479include/dovecot/process-title.h 480include/dovecot/process-title.h
480include/dovecot/program-client.h 481include/dovecot/program-client.h
481include/dovecot/push-notification-drivers.h 482include/dovecot/push-notification-drivers.h
482include/dovecot/push-notification-event-flagsclear.h 483include/dovecot/push-notification-event-flagsclear.h
483include/dovecot/push-notification-event-flagsset.h 484include/dovecot/push-notification-event-flagsset.h
484include/dovecot/push-notification-event-mailboxcreate.h 485include/dovecot/push-notification-event-mailboxcreate.h
485include/dovecot/push-notification-event-mailboxdelete.h 486include/dovecot/push-notification-event-mailboxdelete.h
486include/dovecot/push-notification-event-mailboxrename.h 487include/dovecot/push-notification-event-mailboxrename.h
487include/dovecot/push-notification-event-mailboxsubscribe.h 488include/dovecot/push-notification-event-mailboxsubscribe.h
488include/dovecot/push-notification-event-mailboxunsubscribe.h 489include/dovecot/push-notification-event-mailboxunsubscribe.h
489include/dovecot/push-notification-event-message-common.h 490include/dovecot/push-notification-event-message-common.h
490include/dovecot/push-notification-event-messageappend.h 491include/dovecot/push-notification-event-messageappend.h
491include/dovecot/push-notification-event-messageexpunge.h 492include/dovecot/push-notification-event-messageexpunge.h
492include/dovecot/push-notification-event-messagenew.h 493include/dovecot/push-notification-event-messagenew.h
493include/dovecot/push-notification-event-messageread.h 494include/dovecot/push-notification-event-messageread.h
494include/dovecot/push-notification-event-messagetrash.h 495include/dovecot/push-notification-event-messagetrash.h
495include/dovecot/push-notification-events-rfc5423.h 496include/dovecot/push-notification-events-rfc5423.h
496include/dovecot/push-notification-events.h 497include/dovecot/push-notification-events.h
497include/dovecot/push-notification-plugin.h 498include/dovecot/push-notification-plugin.h
498include/dovecot/push-notification-triggers.h 499include/dovecot/push-notification-triggers.h
499include/dovecot/push-notification-txn-mbox.h 500include/dovecot/push-notification-txn-mbox.h
500include/dovecot/push-notification-txn-msg.h 501include/dovecot/push-notification-txn-msg.h
501include/dovecot/qp-decoder.h 502include/dovecot/qp-decoder.h
502include/dovecot/qp-encoder.h 503include/dovecot/qp-encoder.h
503include/dovecot/quota-fs.h 504include/dovecot/quota-fs.h
504include/dovecot/quota-plugin.h 505include/dovecot/quota-plugin.h
505include/dovecot/quota-private.h 506include/dovecot/quota-private.h
506include/dovecot/quota.h 507include/dovecot/quota.h
507include/dovecot/quoted-printable.h 508include/dovecot/quoted-printable.h
508include/dovecot/randgen.h 509include/dovecot/randgen.h
509include/dovecot/raw-storage.h 510include/dovecot/raw-storage.h
510include/dovecot/raw-sync.h 511include/dovecot/raw-sync.h
511include/dovecot/read-full.h 512include/dovecot/read-full.h
512include/dovecot/restrict-access.h 513include/dovecot/restrict-access.h
513include/dovecot/restrict-process-size.h 514include/dovecot/restrict-process-size.h
514include/dovecot/rfc2231-parser.h 515include/dovecot/rfc2231-parser.h
515include/dovecot/rfc822-parser.h 516include/dovecot/rfc822-parser.h
516include/dovecot/safe-memset.h 517include/dovecot/safe-memset.h
517include/dovecot/safe-mkdir.h 518include/dovecot/safe-mkdir.h
518include/dovecot/safe-mkstemp.h 519include/dovecot/safe-mkstemp.h
519include/dovecot/sasl-server.h 520include/dovecot/sasl-server.h
520include/dovecot/sdbox-file.h 521include/dovecot/sdbox-file.h
521include/dovecot/sdbox-storage.h 522include/dovecot/sdbox-storage.h
522include/dovecot/sdbox-sync.h 523include/dovecot/sdbox-sync.h
523include/dovecot/sendfile-util.h 524include/dovecot/sendfile-util.h
524include/dovecot/seq-range-array.h 525include/dovecot/seq-range-array.h
 526include/dovecot/seq-set-builder.h
525include/dovecot/service-settings.h 527include/dovecot/service-settings.h
526include/dovecot/settings-parser.h 528include/dovecot/settings-parser.h
527include/dovecot/settings.h 529include/dovecot/settings.h
528include/dovecot/sha-common.h 530include/dovecot/sha-common.h
529include/dovecot/sha1.h 531include/dovecot/sha1.h
530include/dovecot/sha2.h 532include/dovecot/sha2.h
531include/dovecot/sha3.h 533include/dovecot/sha3.h
532include/dovecot/shared-storage.h 534include/dovecot/shared-storage.h
533include/dovecot/sleep.h 535include/dovecot/sleep.h
534include/dovecot/smtp-address.h 536include/dovecot/smtp-address.h
535include/dovecot/smtp-client-command.h 537include/dovecot/smtp-client-command.h
536include/dovecot/smtp-client-connection.h 538include/dovecot/smtp-client-connection.h
537include/dovecot/smtp-client-private.h 539include/dovecot/smtp-client-private.h
538include/dovecot/smtp-client-transaction.h 540include/dovecot/smtp-client-transaction.h
539include/dovecot/smtp-client.h 541include/dovecot/smtp-client.h
540include/dovecot/smtp-command-parser.h 542include/dovecot/smtp-command-parser.h
541include/dovecot/smtp-command.h 543include/dovecot/smtp-command.h
542include/dovecot/smtp-common.h 544include/dovecot/smtp-common.h
543include/dovecot/smtp-params.h 545include/dovecot/smtp-params.h
544include/dovecot/smtp-parser.h 546include/dovecot/smtp-parser.h
545include/dovecot/smtp-reply-parser.h 547include/dovecot/smtp-reply-parser.h
546include/dovecot/smtp-reply.h 548include/dovecot/smtp-reply.h
547include/dovecot/smtp-server-private.h 549include/dovecot/smtp-server-private.h
548include/dovecot/smtp-server.h 550include/dovecot/smtp-server.h
549include/dovecot/smtp-submit-settings.h 551include/dovecot/smtp-submit-settings.h
550include/dovecot/smtp-submit.h 552include/dovecot/smtp-submit.h
551include/dovecot/smtp-syntax.h 553include/dovecot/smtp-syntax.h
552include/dovecot/sort.h 554include/dovecot/sort.h
553include/dovecot/sql-api-private.h 555include/dovecot/sql-api-private.h
554include/dovecot/sql-api.h 556include/dovecot/sql-api.h
555include/dovecot/sql-db-cache.h 557include/dovecot/sql-db-cache.h
556include/dovecot/stats-client.h 558include/dovecot/stats-client.h
557include/dovecot/stats-connection.h 559include/dovecot/stats-connection.h
558include/dovecot/stats-dist.h 560include/dovecot/stats-dist.h
559include/dovecot/stats-parser.h 561include/dovecot/stats-parser.h
560include/dovecot/stats.h 562include/dovecot/stats.h
561include/dovecot/str-find.h 563include/dovecot/str-find.h
562include/dovecot/str-sanitize.h 564include/dovecot/str-sanitize.h
563include/dovecot/str-table.h 565include/dovecot/str-table.h
564include/dovecot/str.h 566include/dovecot/str.h
565include/dovecot/strescape.h 567include/dovecot/strescape.h
566include/dovecot/strfuncs.h 568include/dovecot/strfuncs.h
567include/dovecot/strnum.h 569include/dovecot/strnum.h
568include/dovecot/submission-backend-relay.h 570include/dovecot/submission-backend-relay.h
569include/dovecot/submission-backend.h 571include/dovecot/submission-backend.h
570include/dovecot/submission-client.h 572include/dovecot/submission-client.h
571include/dovecot/submission-commands.h 573include/dovecot/submission-commands.h
572include/dovecot/submission-common.h 574include/dovecot/submission-common.h
573include/dovecot/submission-recipient.h 575include/dovecot/submission-recipient.h
574include/dovecot/submission-settings.h 576include/dovecot/submission-settings.h
575include/dovecot/subscription-file.h 577include/dovecot/subscription-file.h
576include/dovecot/syslog-util.h 578include/dovecot/syslog-util.h
577include/dovecot/test-common.h 579include/dovecot/test-common.h
578include/dovecot/test-mail-storage-common.h 580include/dovecot/test-mail-storage-common.h
579include/dovecot/test-subprocess.h 581include/dovecot/test-subprocess.h
580include/dovecot/time-util.h 582include/dovecot/time-util.h
581include/dovecot/unichar.h 583include/dovecot/unichar.h
582include/dovecot/unix-socket-create.h 584include/dovecot/unix-socket-create.h
583include/dovecot/unlink-directory.h 585include/dovecot/unlink-directory.h
584include/dovecot/unlink-old-files.h 586include/dovecot/unlink-old-files.h
585include/dovecot/uri-util.h 587include/dovecot/uri-util.h
586include/dovecot/userdb-blocking.h 588include/dovecot/userdb-blocking.h
587include/dovecot/userdb-template.h 589include/dovecot/userdb-template.h
588include/dovecot/userdb.h 590include/dovecot/userdb.h
589include/dovecot/utc-mktime.h 591include/dovecot/utc-mktime.h
590include/dovecot/utc-offset.h 592include/dovecot/utc-offset.h
591include/dovecot/var-expand-private.h 593include/dovecot/var-expand-private.h
592include/dovecot/var-expand.h 594include/dovecot/var-expand.h
593include/dovecot/wildcard-match.h 595include/dovecot/wildcard-match.h
594include/dovecot/write-full.h 596include/dovecot/write-full.h
595lib/dovecot/auth/lib20_auth_var_expand_crypt.la 597lib/dovecot/auth/lib20_auth_var_expand_crypt.la
596lib/dovecot/auth/libauthdb_imap.la 598lib/dovecot/auth/libauthdb_imap.la
597lib/dovecot/doveadm/lib10_doveadm_acl_plugin.la 599lib/dovecot/doveadm/lib10_doveadm_acl_plugin.la
598lib/dovecot/doveadm/lib10_doveadm_quota_plugin.la 600lib/dovecot/doveadm/lib10_doveadm_quota_plugin.la
599lib/dovecot/doveadm/lib20_doveadm_fts_plugin.la 601lib/dovecot/doveadm/lib20_doveadm_fts_plugin.la
600lib/dovecot/doveadm/libdoveadm_mail_crypt_plugin.la 602lib/dovecot/doveadm/libdoveadm_mail_crypt_plugin.la
601lib/dovecot/dovecot-config 603lib/dovecot/dovecot-config
602lib/dovecot/lib01_acl_plugin.la 604lib/dovecot/lib01_acl_plugin.la
603lib/dovecot/lib02_imap_acl_plugin.la 605lib/dovecot/lib02_imap_acl_plugin.la
604lib/dovecot/lib02_lazy_expunge_plugin.la 606lib/dovecot/lib02_lazy_expunge_plugin.la
605lib/dovecot/lib05_mail_crypt_acl_plugin.la 607lib/dovecot/lib05_mail_crypt_acl_plugin.la
606lib/dovecot/lib05_pop3_migration_plugin.la 608lib/dovecot/lib05_pop3_migration_plugin.la
607lib/dovecot/lib10_last_login_plugin.la 609lib/dovecot/lib10_last_login_plugin.la
608lib/dovecot/lib10_mail_crypt_plugin.la 610lib/dovecot/lib10_mail_crypt_plugin.la
609lib/dovecot/lib10_quota_plugin.la 611lib/dovecot/lib10_quota_plugin.la
610lib/dovecot/lib11_imap_quota_plugin.la 612lib/dovecot/lib11_imap_quota_plugin.la
611lib/dovecot/lib11_trash_plugin.la 613lib/dovecot/lib11_trash_plugin.la
612lib/dovecot/lib15_notify_plugin.la 614lib/dovecot/lib15_notify_plugin.la
613lib/dovecot/lib20_charset_alias_plugin.la 615lib/dovecot/lib20_charset_alias_plugin.la
614lib/dovecot/lib20_fts_plugin.la 616lib/dovecot/lib20_fts_plugin.la
615lib/dovecot/lib20_listescape_plugin.la 617lib/dovecot/lib20_listescape_plugin.la
616lib/dovecot/lib20_mail_log_plugin.la 618lib/dovecot/lib20_mail_log_plugin.la
617lib/dovecot/lib20_mailbox_alias_plugin.la 619lib/dovecot/lib20_mailbox_alias_plugin.la
618lib/dovecot/lib20_notify_status_plugin.la 620lib/dovecot/lib20_notify_status_plugin.la
619lib/dovecot/lib20_push_notification_plugin.la 621lib/dovecot/lib20_push_notification_plugin.la
620lib/dovecot/lib20_quota_clone_plugin.la 622lib/dovecot/lib20_quota_clone_plugin.la
621lib/dovecot/lib20_replication_plugin.la 623lib/dovecot/lib20_replication_plugin.la
622lib/dovecot/lib20_var_expand_crypt.la 624lib/dovecot/lib20_var_expand_crypt.la
623lib/dovecot/lib20_virtual_plugin.la 625lib/dovecot/lib20_virtual_plugin.la
624lib/dovecot/lib20_zlib_plugin.la 626lib/dovecot/lib20_zlib_plugin.la
625lib/dovecot/lib21_fts_squat_plugin.la 627lib/dovecot/lib21_fts_squat_plugin.la
626lib/dovecot/lib30_imap_zlib_plugin.la 628lib/dovecot/lib30_imap_zlib_plugin.la
627lib/dovecot/lib90_old_stats_plugin.la 629lib/dovecot/lib90_old_stats_plugin.la
628lib/dovecot/lib95_imap_old_stats_plugin.la 630lib/dovecot/lib95_imap_old_stats_plugin.la
629lib/dovecot/lib99_welcome_plugin.la 631lib/dovecot/lib99_welcome_plugin.la
630${PLIST.ssl}lib/dovecot/libdcrypt_openssl.la 632${PLIST.ssl}lib/dovecot/libdcrypt_openssl.la
631lib/dovecot/libdovecot-compression.la 633lib/dovecot/libdovecot-compression.la
632lib/dovecot/libdovecot-dsync.la 634lib/dovecot/libdovecot-dsync.la
633lib/dovecot/libdovecot-fts.la 635lib/dovecot/libdovecot-fts.la
634lib/dovecot/libdovecot-lda.la 636lib/dovecot/libdovecot-lda.la
635lib/dovecot/libdovecot-login.la 637lib/dovecot/libdovecot-login.la
636lib/dovecot/libdovecot-sql.la 638lib/dovecot/libdovecot-sql.la
637lib/dovecot/libdovecot-storage.la 639lib/dovecot/libdovecot-storage.la
638lib/dovecot/libdovecot.la 640lib/dovecot/libdovecot.la
639lib/dovecot/libfs_compress.la 641lib/dovecot/libfs_compress.la
640lib/dovecot/libfs_crypt.la 642lib/dovecot/libfs_crypt.la
641lib/dovecot/libfs_mail_crypt.la 643lib/dovecot/libfs_mail_crypt.la
642${PLIST.ssl}lib/dovecot/libssl_iostream_openssl.la 644${PLIST.ssl}lib/dovecot/libssl_iostream_openssl.la
643lib/dovecot/old-stats/libold_stats_mail.la 645lib/dovecot/old-stats/libold_stats_mail.la
644lib/dovecot/old-stats/libstats_auth.la 646lib/dovecot/old-stats/libstats_auth.la
645libexec/dovecot/aggregator 647libexec/dovecot/aggregator
646libexec/dovecot/anvil 648libexec/dovecot/anvil
647libexec/dovecot/auth 649libexec/dovecot/auth
648libexec/dovecot/checkpassword-reply 650libexec/dovecot/checkpassword-reply
649libexec/dovecot/config 651libexec/dovecot/config
650libexec/dovecot/decode2text.sh 652libexec/dovecot/decode2text.sh
651libexec/dovecot/deliver 653libexec/dovecot/deliver
652libexec/dovecot/dict 654libexec/dovecot/dict
653libexec/dovecot/director 655libexec/dovecot/director
654libexec/dovecot/dns-client 656libexec/dovecot/dns-client
655libexec/dovecot/doveadm-server 657libexec/dovecot/doveadm-server
656libexec/dovecot/dovecot-lda 658libexec/dovecot/dovecot-lda
657libexec/dovecot/gdbhelper 659libexec/dovecot/gdbhelper
658libexec/dovecot/health-check.sh 660libexec/dovecot/health-check.sh
659libexec/dovecot/imap 661libexec/dovecot/imap
660libexec/dovecot/imap-hibernate 662libexec/dovecot/imap-hibernate
661libexec/dovecot/imap-login 663libexec/dovecot/imap-login
662libexec/dovecot/imap-urlauth 664libexec/dovecot/imap-urlauth
663libexec/dovecot/imap-urlauth-login 665libexec/dovecot/imap-urlauth-login
664libexec/dovecot/imap-urlauth-worker 666libexec/dovecot/imap-urlauth-worker
665libexec/dovecot/indexer 667libexec/dovecot/indexer
666libexec/dovecot/indexer-worker 668libexec/dovecot/indexer-worker
667libexec/dovecot/ipc 669libexec/dovecot/ipc
668libexec/dovecot/lmtp 670libexec/dovecot/lmtp
669libexec/dovecot/log 671libexec/dovecot/log
670libexec/dovecot/maildirlock 672libexec/dovecot/maildirlock
671libexec/dovecot/old-stats 673libexec/dovecot/old-stats
672libexec/dovecot/pop3 674libexec/dovecot/pop3
673libexec/dovecot/pop3-login 675libexec/dovecot/pop3-login
674libexec/dovecot/quota-status 676libexec/dovecot/quota-status
675libexec/dovecot/rawlog 677libexec/dovecot/rawlog
676libexec/dovecot/replicator 678libexec/dovecot/replicator
677libexec/dovecot/script 679libexec/dovecot/script
678libexec/dovecot/script-login 680libexec/dovecot/script-login
679libexec/dovecot/stats 681libexec/dovecot/stats
680libexec/dovecot/submission 682libexec/dovecot/submission
681libexec/dovecot/submission-login 683libexec/dovecot/submission-login
682${PLIST.tcpwrappers}libexec/dovecot/tcpwrap 684${PLIST.tcpwrappers}libexec/dovecot/tcpwrap
683libexec/dovecot/xml2text 685libexec/dovecot/xml2text
684man/man1/deliver.1 686man/man1/deliver.1
685man/man1/doveadm-acl.1 687man/man1/doveadm-acl.1
686man/man1/doveadm-altmove.1 688man/man1/doveadm-altmove.1
687man/man1/doveadm-auth.1 689man/man1/doveadm-auth.1
688man/man1/doveadm-backup.1 690man/man1/doveadm-backup.1
689man/man1/doveadm-batch.1 691man/man1/doveadm-batch.1
690man/man1/doveadm-config.1 692man/man1/doveadm-config.1
691man/man1/doveadm-copy.1 693man/man1/doveadm-copy.1
692man/man1/doveadm-deduplicate.1 694man/man1/doveadm-deduplicate.1
693man/man1/doveadm-director.1 695man/man1/doveadm-director.1
694man/man1/doveadm-dump.1 696man/man1/doveadm-dump.1
695man/man1/doveadm-exec.1 697man/man1/doveadm-exec.1
696man/man1/doveadm-expunge.1 698man/man1/doveadm-expunge.1
697man/man1/doveadm-fetch.1 699man/man1/doveadm-fetch.1
698man/man1/doveadm-flags.1 700man/man1/doveadm-flags.1
699man/man1/doveadm-force-resync.1 701man/man1/doveadm-force-resync.1
700man/man1/doveadm-fs.1 702man/man1/doveadm-fs.1
701man/man1/doveadm-fts.1 703man/man1/doveadm-fts.1
702man/man1/doveadm-help.1 704man/man1/doveadm-help.1
703man/man1/doveadm-import.1 705man/man1/doveadm-import.1
704man/man1/doveadm-index.1 706man/man1/doveadm-index.1
705man/man1/doveadm-instance.1 707man/man1/doveadm-instance.1
706man/man1/doveadm-kick.1 708man/man1/doveadm-kick.1
707man/man1/doveadm-log.1 709man/man1/doveadm-log.1
708man/man1/doveadm-mailbox-cryptokey.1 710man/man1/doveadm-mailbox-cryptokey.1
709man/man1/doveadm-mailbox.1 711man/man1/doveadm-mailbox.1
710man/man1/doveadm-move.1 712man/man1/doveadm-move.1
711man/man1/doveadm-penalty.1 713man/man1/doveadm-penalty.1
712man/man1/doveadm-proxy.1 714man/man1/doveadm-proxy.1
713man/man1/doveadm-purge.1 715man/man1/doveadm-purge.1
714man/man1/doveadm-pw.1 716man/man1/doveadm-pw.1
715man/man1/doveadm-quota.1 717man/man1/doveadm-quota.1
716man/man1/doveadm-rebuild.1 718man/man1/doveadm-rebuild.1
717man/man1/doveadm-reload.1 719man/man1/doveadm-reload.1
718man/man1/doveadm-replicator.1 720man/man1/doveadm-replicator.1
719man/man1/doveadm-save.1 721man/man1/doveadm-save.1
720man/man1/doveadm-search.1 722man/man1/doveadm-search.1
721man/man1/doveadm-stats.1 723man/man1/doveadm-stats.1
722man/man1/doveadm-stop.1 724man/man1/doveadm-stop.1
723man/man1/doveadm-sync.1 725man/man1/doveadm-sync.1
724man/man1/doveadm-user.1 726man/man1/doveadm-user.1
725man/man1/doveadm-who.1 727man/man1/doveadm-who.1
726man/man1/doveadm.1 728man/man1/doveadm.1
727man/man1/doveconf.1 729man/man1/doveconf.1
728man/man1/dovecot-lda.1 730man/man1/dovecot-lda.1
729man/man1/dovecot-sysreport.1 731man/man1/dovecot-sysreport.1
730man/man1/dovecot.1 732man/man1/dovecot.1
731man/man1/dsync.1 733man/man1/dsync.1
732man/man7/doveadm-search-query.7 734man/man7/doveadm-search-query.7
733sbin/dovecot 735sbin/dovecot
734share/aclocal/dovecot.m4 736share/aclocal/dovecot.m4
735share/doc/dovecot/documentation.txt 737share/doc/dovecot/documentation.txt
736share/doc/dovecot/dovecot-openssl.cnf 738share/doc/dovecot/dovecot-openssl.cnf
737share/doc/dovecot/mkcert.sh 739share/doc/dovecot/mkcert.sh
738share/doc/dovecot/securecoding.txt 740share/doc/dovecot/securecoding.txt
739share/doc/dovecot/solr-config-7.7.0.xml 741share/doc/dovecot/solr-config-7.7.0.xml
740share/doc/dovecot/solr-schema-7.7.0.xml 742share/doc/dovecot/solr-schema-7.7.0.xml
741share/doc/dovecot/solr-schema.xml 743share/doc/dovecot/solr-schema.xml
742share/doc/dovecot/thread-refs.txt 744share/doc/dovecot/thread-refs.txt
743share/doc/dovecot/wiki/ACL.txt 745share/doc/dovecot/wiki/ACL.txt
744share/doc/dovecot/wiki/AixPluginsSupport.txt 746share/doc/dovecot/wiki/AixPluginsSupport.txt
745share/doc/dovecot/wiki/AttachmentIndicator.txt 747share/doc/dovecot/wiki/AttachmentIndicator.txt
746share/doc/dovecot/wiki/AuthDatabase.CheckPassword.txt 748share/doc/dovecot/wiki/AuthDatabase.CheckPassword.txt
747share/doc/dovecot/wiki/AuthDatabase.Dict.txt 749share/doc/dovecot/wiki/AuthDatabase.Dict.txt
748share/doc/dovecot/wiki/AuthDatabase.LDAP.AuthBinds.txt 750share/doc/dovecot/wiki/AuthDatabase.LDAP.AuthBinds.txt
749share/doc/dovecot/wiki/AuthDatabase.LDAP.PasswordLookups.txt 751share/doc/dovecot/wiki/AuthDatabase.LDAP.PasswordLookups.txt
750share/doc/dovecot/wiki/AuthDatabase.LDAP.Userdb.txt 752share/doc/dovecot/wiki/AuthDatabase.LDAP.Userdb.txt
751share/doc/dovecot/wiki/AuthDatabase.LDAP.txt 753share/doc/dovecot/wiki/AuthDatabase.LDAP.txt
752share/doc/dovecot/wiki/AuthDatabase.Lua.txt 754share/doc/dovecot/wiki/AuthDatabase.Lua.txt
753share/doc/dovecot/wiki/AuthDatabase.Passwd.txt 755share/doc/dovecot/wiki/AuthDatabase.Passwd.txt
754share/doc/dovecot/wiki/AuthDatabase.PasswdFile.txt 756share/doc/dovecot/wiki/AuthDatabase.PasswdFile.txt
755share/doc/dovecot/wiki/AuthDatabase.SQL.txt 757share/doc/dovecot/wiki/AuthDatabase.SQL.txt
756share/doc/dovecot/wiki/AuthDatabase.VPopMail.txt 758share/doc/dovecot/wiki/AuthDatabase.VPopMail.txt
757share/doc/dovecot/wiki/AuthDatabase.txt 759share/doc/dovecot/wiki/AuthDatabase.txt
758share/doc/dovecot/wiki/Authentication.Caching.txt 760share/doc/dovecot/wiki/Authentication.Caching.txt
759share/doc/dovecot/wiki/Authentication.Kerberos.txt 761share/doc/dovecot/wiki/Authentication.Kerberos.txt
760share/doc/dovecot/wiki/Authentication.MasterUsers.txt 762share/doc/dovecot/wiki/Authentication.MasterUsers.txt
761share/doc/dovecot/wiki/Authentication.Mechanisms.DigestMD5.txt 763share/doc/dovecot/wiki/Authentication.Mechanisms.DigestMD5.txt
762share/doc/dovecot/wiki/Authentication.Mechanisms.NTLM.txt 764share/doc/dovecot/wiki/Authentication.Mechanisms.NTLM.txt
763share/doc/dovecot/wiki/Authentication.Mechanisms.Winbind.txt 765share/doc/dovecot/wiki/Authentication.Mechanisms.Winbind.txt
764share/doc/dovecot/wiki/Authentication.Mechanisms.txt 766share/doc/dovecot/wiki/Authentication.Mechanisms.txt
765share/doc/dovecot/wiki/Authentication.MultipleDatabases.txt 767share/doc/dovecot/wiki/Authentication.MultipleDatabases.txt
766share/doc/dovecot/wiki/Authentication.PasswordSchemes.txt 768share/doc/dovecot/wiki/Authentication.PasswordSchemes.txt
767share/doc/dovecot/wiki/Authentication.Penalty.txt 769share/doc/dovecot/wiki/Authentication.Penalty.txt
768share/doc/dovecot/wiki/Authentication.Policy.txt 770share/doc/dovecot/wiki/Authentication.Policy.txt
769share/doc/dovecot/wiki/Authentication.RestrictAccess.txt 771share/doc/dovecot/wiki/Authentication.RestrictAccess.txt
770share/doc/dovecot/wiki/Authentication.txt 772share/doc/dovecot/wiki/Authentication.txt
771share/doc/dovecot/wiki/BasicConfiguration.txt 773share/doc/dovecot/wiki/BasicConfiguration.txt
772share/doc/dovecot/wiki/Chrooting.txt 774share/doc/dovecot/wiki/Chrooting.txt
773share/doc/dovecot/wiki/Clients.NegativeUIDs.txt 775share/doc/dovecot/wiki/Clients.NegativeUIDs.txt
774share/doc/dovecot/wiki/Clients.txt 776share/doc/dovecot/wiki/Clients.txt
775share/doc/dovecot/wiki/CompilingSource.txt 777share/doc/dovecot/wiki/CompilingSource.txt
776share/doc/dovecot/wiki/ConfigFile.txt 778share/doc/dovecot/wiki/ConfigFile.txt
777share/doc/dovecot/wiki/Debugging.Authentication.txt 779share/doc/dovecot/wiki/Debugging.Authentication.txt
778share/doc/dovecot/wiki/Debugging.ProcessTracing.txt 780share/doc/dovecot/wiki/Debugging.ProcessTracing.txt
779share/doc/dovecot/wiki/Debugging.Rawlog.txt 781share/doc/dovecot/wiki/Debugging.Rawlog.txt
780share/doc/dovecot/wiki/Debugging.Thunderbird.txt 782share/doc/dovecot/wiki/Debugging.Thunderbird.txt
781share/doc/dovecot/wiki/Design.Arrays.txt 783share/doc/dovecot/wiki/Design.Arrays.txt
782share/doc/dovecot/wiki/Design.AuthProcess.txt 784share/doc/dovecot/wiki/Design.AuthProcess.txt
783share/doc/dovecot/wiki/Design.AuthProtocol.txt 785share/doc/dovecot/wiki/Design.AuthProtocol.txt
784share/doc/dovecot/wiki/Design.Buffers.txt 786share/doc/dovecot/wiki/Design.Buffers.txt
785share/doc/dovecot/wiki/Design.Code.txt 787share/doc/dovecot/wiki/Design.Code.txt
786share/doc/dovecot/wiki/Design.Dcrypt.txt 788share/doc/dovecot/wiki/Design.Dcrypt.txt
787share/doc/dovecot/wiki/Design.DoveadmProtocol.HTTP.txt 789share/doc/dovecot/wiki/Design.DoveadmProtocol.HTTP.txt
788share/doc/dovecot/wiki/Design.DoveadmProtocol.txt 790share/doc/dovecot/wiki/Design.DoveadmProtocol.txt
789share/doc/dovecot/wiki/Design.Dsync.txt 791share/doc/dovecot/wiki/Design.Dsync.txt
790share/doc/dovecot/wiki/Design.Events.txt 792share/doc/dovecot/wiki/Design.Events.txt
791share/doc/dovecot/wiki/Design.Indexes.Cache.txt 793share/doc/dovecot/wiki/Design.Indexes.Cache.txt
792share/doc/dovecot/wiki/Design.Indexes.MailIndexApi.txt 794share/doc/dovecot/wiki/Design.Indexes.MailIndexApi.txt
793share/doc/dovecot/wiki/Design.Indexes.MainIndex.txt 795share/doc/dovecot/wiki/Design.Indexes.MainIndex.txt
794share/doc/dovecot/wiki/Design.Indexes.TransactionLog.txt 796share/doc/dovecot/wiki/Design.Indexes.TransactionLog.txt
795share/doc/dovecot/wiki/Design.Indexes.txt 797share/doc/dovecot/wiki/Design.Indexes.txt
796share/doc/dovecot/wiki/Design.InputStreams.txt 798share/doc/dovecot/wiki/Design.InputStreams.txt
797share/doc/dovecot/wiki/Design.Lua.txt 799share/doc/dovecot/wiki/Design.Lua.txt
798share/doc/dovecot/wiki/Design.MailProcess.txt 800share/doc/dovecot/wiki/Design.MailProcess.txt
799share/doc/dovecot/wiki/Design.Memory.txt 801share/doc/dovecot/wiki/Design.Memory.txt
800share/doc/dovecot/wiki/Design.OutputStreams.txt 802share/doc/dovecot/wiki/Design.OutputStreams.txt
801share/doc/dovecot/wiki/Design.ParameterForwarding.txt 803share/doc/dovecot/wiki/Design.ParameterForwarding.txt
802share/doc/dovecot/wiki/Design.Plugins.txt 804share/doc/dovecot/wiki/Design.Plugins.txt
803share/doc/dovecot/wiki/Design.Processes.txt 805share/doc/dovecot/wiki/Design.Processes.txt
804share/doc/dovecot/wiki/Design.Storage.ErrorHandling.txt 806share/doc/dovecot/wiki/Design.Storage.ErrorHandling.txt
805share/doc/dovecot/wiki/Design.Storage.Mail.txt 807share/doc/dovecot/wiki/Design.Storage.Mail.txt
806share/doc/dovecot/wiki/Design.Storage.MailNamespace.txt 808share/doc/dovecot/wiki/Design.Storage.MailNamespace.txt
807share/doc/dovecot/wiki/Design.Storage.MailStorage.txt 809share/doc/dovecot/wiki/Design.Storage.MailStorage.txt
808share/doc/dovecot/wiki/Design.Storage.MailUser.txt 810share/doc/dovecot/wiki/Design.Storage.MailUser.txt
809share/doc/dovecot/wiki/Design.Storage.Mailbox.Save.txt 811share/doc/dovecot/wiki/Design.Storage.Mailbox.Save.txt
810share/doc/dovecot/wiki/Design.Storage.Mailbox.Search.txt 812share/doc/dovecot/wiki/Design.Storage.Mailbox.Search.txt
811share/doc/dovecot/wiki/Design.Storage.Mailbox.Sync.txt 813share/doc/dovecot/wiki/Design.Storage.Mailbox.Sync.txt
812share/doc/dovecot/wiki/Design.Storage.Mailbox.Transaction.txt 814share/doc/dovecot/wiki/Design.Storage.Mailbox.Transaction.txt
813share/doc/dovecot/wiki/Design.Storage.Mailbox.txt 815share/doc/dovecot/wiki/Design.Storage.Mailbox.txt
814share/doc/dovecot/wiki/Design.Storage.MailboxList.txt 816share/doc/dovecot/wiki/Design.Storage.MailboxList.txt
815share/doc/dovecot/wiki/Design.Storage.Plugins.txt 817share/doc/dovecot/wiki/Design.Storage.Plugins.txt
816share/doc/dovecot/wiki/Design.Strings.txt 818share/doc/dovecot/wiki/Design.Strings.txt
817share/doc/dovecot/wiki/Design.txt 819share/doc/dovecot/wiki/Design.txt
818share/doc/dovecot/wiki/Dict.txt 820share/doc/dovecot/wiki/Dict.txt
819share/doc/dovecot/wiki/Dictionary.txt 821share/doc/dovecot/wiki/Dictionary.txt
820share/doc/dovecot/wiki/Director.txt 822share/doc/dovecot/wiki/Director.txt
821share/doc/dovecot/wiki/DomainLost.txt 823share/doc/dovecot/wiki/DomainLost.txt
822share/doc/dovecot/wiki/Errors.ChgrpNoPerm.txt 824share/doc/dovecot/wiki/Errors.ChgrpNoPerm.txt
823share/doc/dovecot/wiki/Events.txt 825share/doc/dovecot/wiki/Events.txt
824share/doc/dovecot/wiki/FindMailLocation.txt 826share/doc/dovecot/wiki/FindMailLocation.txt
825share/doc/dovecot/wiki/FinishBasicConfiguration.txt 827share/doc/dovecot/wiki/FinishBasicConfiguration.txt
826share/doc/dovecot/wiki/HAProxy.txt 828share/doc/dovecot/wiki/HAProxy.txt
827share/doc/dovecot/wiki/HowTo.AntispamWithSieve.txt 829share/doc/dovecot/wiki/HowTo.AntispamWithSieve.txt
828share/doc/dovecot/wiki/HowTo.EximAndDovecotSASL.txt 830share/doc/dovecot/wiki/HowTo.EximAndDovecotSASL.txt
829share/doc/dovecot/wiki/HowTo.ImapcProxy.txt 831share/doc/dovecot/wiki/HowTo.ImapcProxy.txt
830share/doc/dovecot/wiki/HowTo.PopBSMTPAndDovecot.txt 832share/doc/dovecot/wiki/HowTo.PopBSMTPAndDovecot.txt
831share/doc/dovecot/wiki/HowTo.PopRelay.txt 833share/doc/dovecot/wiki/HowTo.PopRelay.txt
832share/doc/dovecot/wiki/HowTo.PostfixAndDovecotSASL.txt 834share/doc/dovecot/wiki/HowTo.PostfixAndDovecotSASL.txt
833share/doc/dovecot/wiki/HowTo.Rootless.txt 835share/doc/dovecot/wiki/HowTo.Rootless.txt
834share/doc/dovecot/wiki/HowTo.SimpleVirtualInstall.txt 836share/doc/dovecot/wiki/HowTo.SimpleVirtualInstall.txt
835share/doc/dovecot/wiki/HowTo.WriteConfiguration.txt 837share/doc/dovecot/wiki/HowTo.WriteConfiguration.txt
836share/doc/dovecot/wiki/HowTo.txt 838share/doc/dovecot/wiki/HowTo.txt
837share/doc/dovecot/wiki/IMAPServer.Hibernation.txt 839share/doc/dovecot/wiki/IMAPServer.Hibernation.txt
838share/doc/dovecot/wiki/IMAPServer.txt 840share/doc/dovecot/wiki/IMAPServer.txt
839share/doc/dovecot/wiki/ImapMetadata.txt 841share/doc/dovecot/wiki/ImapMetadata.txt
840share/doc/dovecot/wiki/IndexFiles.txt 842share/doc/dovecot/wiki/IndexFiles.txt
841share/doc/dovecot/wiki/LDA.Exim.txt 843share/doc/dovecot/wiki/LDA.Exim.txt
842share/doc/dovecot/wiki/LDA.Indexing.txt 844share/doc/dovecot/wiki/LDA.Indexing.txt
843share/doc/dovecot/wiki/LDA.Postfix.txt 845share/doc/dovecot/wiki/LDA.Postfix.txt
844share/doc/dovecot/wiki/LDA.Qmail.txt 846share/doc/dovecot/wiki/LDA.Qmail.txt
845share/doc/dovecot/wiki/LDA.Sendmail.txt 847share/doc/dovecot/wiki/LDA.Sendmail.txt
846share/doc/dovecot/wiki/LDA.txt 848share/doc/dovecot/wiki/LDA.txt
847share/doc/dovecot/wiki/LMTP.Exim.txt 849share/doc/dovecot/wiki/LMTP.Exim.txt
848share/doc/dovecot/wiki/LMTP.txt 850share/doc/dovecot/wiki/LMTP.txt
849share/doc/dovecot/wiki/Logging.txt 851share/doc/dovecot/wiki/Logging.txt
850share/doc/dovecot/wiki/LoginProcess.txt 852share/doc/dovecot/wiki/LoginProcess.txt
851share/doc/dovecot/wiki/MDA.txt 853share/doc/dovecot/wiki/MDA.txt
852share/doc/dovecot/wiki/MTA.txt 854share/doc/dovecot/wiki/MTA.txt
853share/doc/dovecot/wiki/MailLocation.LocalDisk.txt 855share/doc/dovecot/wiki/MailLocation.LocalDisk.txt
854share/doc/dovecot/wiki/MailLocation.Maildir.txt 856share/doc/dovecot/wiki/MailLocation.Maildir.txt
855share/doc/dovecot/wiki/MailLocation.SharedDisk.txt 857share/doc/dovecot/wiki/MailLocation.SharedDisk.txt
856share/doc/dovecot/wiki/MailLocation.dbox.txt 858share/doc/dovecot/wiki/MailLocation.dbox.txt
857share/doc/dovecot/wiki/MailLocation.mbox.txt 859share/doc/dovecot/wiki/MailLocation.mbox.txt
858share/doc/dovecot/wiki/MailLocation.txt 860share/doc/dovecot/wiki/MailLocation.txt
859share/doc/dovecot/wiki/MailboxFormat.Cydir.txt 861share/doc/dovecot/wiki/MailboxFormat.Cydir.txt
860share/doc/dovecot/wiki/MailboxFormat.MH.txt 862share/doc/dovecot/wiki/MailboxFormat.MH.txt
861share/doc/dovecot/wiki/MailboxFormat.Maildir.txt 863share/doc/dovecot/wiki/MailboxFormat.Maildir.txt
862share/doc/dovecot/wiki/MailboxFormat.dbox.txt 864share/doc/dovecot/wiki/MailboxFormat.dbox.txt
863share/doc/dovecot/wiki/MailboxFormat.imapc.txt 865share/doc/dovecot/wiki/MailboxFormat.imapc.txt
864share/doc/dovecot/wiki/MailboxFormat.mailstore.txt 866share/doc/dovecot/wiki/MailboxFormat.mailstore.txt
865share/doc/dovecot/wiki/MailboxFormat.mbox.txt 867share/doc/dovecot/wiki/MailboxFormat.mbox.txt
866share/doc/dovecot/wiki/MailboxFormat.mbx.txt 868share/doc/dovecot/wiki/MailboxFormat.mbx.txt
867share/doc/dovecot/wiki/MailboxFormat.txt 869share/doc/dovecot/wiki/MailboxFormat.txt
868share/doc/dovecot/wiki/MailboxSettings.txt 870share/doc/dovecot/wiki/MailboxSettings.txt
869share/doc/dovecot/wiki/MboxChildFolders.txt 871share/doc/dovecot/wiki/MboxChildFolders.txt
870share/doc/dovecot/wiki/MboxLocking.txt 872share/doc/dovecot/wiki/MboxLocking.txt
871share/doc/dovecot/wiki/MboxProblems.txt 873share/doc/dovecot/wiki/MboxProblems.txt
872share/doc/dovecot/wiki/Migration.BincIMAP.txt 874share/doc/dovecot/wiki/Migration.BincIMAP.txt
873share/doc/dovecot/wiki/Migration.Courier.txt 875share/doc/dovecot/wiki/Migration.Courier.txt
874share/doc/dovecot/wiki/Migration.Cyrus.txt 876share/doc/dovecot/wiki/Migration.Cyrus.txt
875share/doc/dovecot/wiki/Migration.Dsync.txt 877share/doc/dovecot/wiki/Migration.Dsync.txt
876share/doc/dovecot/wiki/Migration.Gmail.txt 878share/doc/dovecot/wiki/Migration.Gmail.txt
877share/doc/dovecot/wiki/Migration.Linuxconf.txt 879share/doc/dovecot/wiki/Migration.Linuxconf.txt
878share/doc/dovecot/wiki/Migration.MailFormat.txt 880share/doc/dovecot/wiki/Migration.MailFormat.txt
879share/doc/dovecot/wiki/Migration.Online.txt 881share/doc/dovecot/wiki/Migration.Online.txt
880share/doc/dovecot/wiki/Migration.Teapop.txt 882share/doc/dovecot/wiki/Migration.Teapop.txt
881share/doc/dovecot/wiki/Migration.UW.txt 883share/doc/dovecot/wiki/Migration.UW.txt
882share/doc/dovecot/wiki/Migration.Vm-pop3d.txt 884share/doc/dovecot/wiki/Migration.Vm-pop3d.txt
883share/doc/dovecot/wiki/Migration.txt 885share/doc/dovecot/wiki/Migration.txt
884share/doc/dovecot/wiki/MissingMailboxes.txt 886share/doc/dovecot/wiki/MissingMailboxes.txt
885share/doc/dovecot/wiki/Mountpoints.txt 887share/doc/dovecot/wiki/Mountpoints.txt
886share/doc/dovecot/wiki/NFS.txt 888share/doc/dovecot/wiki/NFS.txt
887share/doc/dovecot/wiki/Namespaces.txt 889share/doc/dovecot/wiki/Namespaces.txt
888share/doc/dovecot/wiki/OSCompatibility.txt 890share/doc/dovecot/wiki/OSCompatibility.txt
889share/doc/dovecot/wiki/POP3Server.txt 891share/doc/dovecot/wiki/POP3Server.txt
890share/doc/dovecot/wiki/PasswordDatabase.BSDAuth.txt 892share/doc/dovecot/wiki/PasswordDatabase.BSDAuth.txt
891share/doc/dovecot/wiki/PasswordDatabase.ExtraFields.AllowNets.txt 893share/doc/dovecot/wiki/PasswordDatabase.ExtraFields.AllowNets.txt
892share/doc/dovecot/wiki/PasswordDatabase.ExtraFields.Host.txt 894share/doc/dovecot/wiki/PasswordDatabase.ExtraFields.Host.txt
893share/doc/dovecot/wiki/PasswordDatabase.ExtraFields.NoDelay.txt 895share/doc/dovecot/wiki/PasswordDatabase.ExtraFields.NoDelay.txt
894share/doc/dovecot/wiki/PasswordDatabase.ExtraFields.NoLogin.txt 896share/doc/dovecot/wiki/PasswordDatabase.ExtraFields.NoLogin.txt
895share/doc/dovecot/wiki/PasswordDatabase.ExtraFields.Proxy.txt 897share/doc/dovecot/wiki/PasswordDatabase.ExtraFields.Proxy.txt
896share/doc/dovecot/wiki/PasswordDatabase.ExtraFields.User.txt 898share/doc/dovecot/wiki/PasswordDatabase.ExtraFields.User.txt
897share/doc/dovecot/wiki/PasswordDatabase.ExtraFields.txt 899share/doc/dovecot/wiki/PasswordDatabase.ExtraFields.txt
898share/doc/dovecot/wiki/PasswordDatabase.IMAP.txt 900share/doc/dovecot/wiki/PasswordDatabase.IMAP.txt
899share/doc/dovecot/wiki/PasswordDatabase.PAM.txt 901share/doc/dovecot/wiki/PasswordDatabase.PAM.txt
900share/doc/dovecot/wiki/PasswordDatabase.Shadow.txt 902share/doc/dovecot/wiki/PasswordDatabase.Shadow.txt
901share/doc/dovecot/wiki/PasswordDatabase.Static.txt 903share/doc/dovecot/wiki/PasswordDatabase.Static.txt
902share/doc/dovecot/wiki/PasswordDatabase.oauth2.txt 904share/doc/dovecot/wiki/PasswordDatabase.oauth2.txt
903share/doc/dovecot/wiki/PasswordDatabase.txt 905share/doc/dovecot/wiki/PasswordDatabase.txt
904share/doc/dovecot/wiki/PerformanceTuning.txt 906share/doc/dovecot/wiki/PerformanceTuning.txt
905share/doc/dovecot/wiki/Pigeonhole.Installation.txt 907share/doc/dovecot/wiki/Pigeonhole.Installation.txt
906share/doc/dovecot/wiki/Pigeonhole.ManageSieve.Clients.txt 908share/doc/dovecot/wiki/Pigeonhole.ManageSieve.Clients.txt
907share/doc/dovecot/wiki/Pigeonhole.ManageSieve.Configuration.txt 909share/doc/dovecot/wiki/Pigeonhole.ManageSieve.Configuration.txt
908share/doc/dovecot/wiki/Pigeonhole.ManageSieve.Install.txt 910share/doc/dovecot/wiki/Pigeonhole.ManageSieve.Install.txt
909share/doc/dovecot/wiki/Pigeonhole.ManageSieve.Troubleshooting.txt 911share/doc/dovecot/wiki/Pigeonhole.ManageSieve.Troubleshooting.txt
910share/doc/dovecot/wiki/Pigeonhole.ManageSieve.txt 912share/doc/dovecot/wiki/Pigeonhole.ManageSieve.txt
911share/doc/dovecot/wiki/Pigeonhole.Sieve.Configuration.Dict.txt 913share/doc/dovecot/wiki/Pigeonhole.Sieve.Configuration.Dict.txt
912share/doc/dovecot/wiki/Pigeonhole.Sieve.Configuration.File.txt 914share/doc/dovecot/wiki/Pigeonhole.Sieve.Configuration.File.txt
913share/doc/dovecot/wiki/Pigeonhole.Sieve.Configuration.LDAP.txt 915share/doc/dovecot/wiki/Pigeonhole.Sieve.Configuration.LDAP.txt
914share/doc/dovecot/wiki/Pigeonhole.Sieve.Configuration.txt 916share/doc/dovecot/wiki/Pigeonhole.Sieve.Configuration.txt
915share/doc/dovecot/wiki/Pigeonhole.Sieve.Examples.txt 917share/doc/dovecot/wiki/Pigeonhole.Sieve.Examples.txt
916share/doc/dovecot/wiki/Pigeonhole.Sieve.Extensions.Duplicate.txt 918share/doc/dovecot/wiki/Pigeonhole.Sieve.Extensions.Duplicate.txt
917share/doc/dovecot/wiki/Pigeonhole.Sieve.Extensions.Editheader.txt 919share/doc/dovecot/wiki/Pigeonhole.Sieve.Extensions.Editheader.txt
918share/doc/dovecot/wiki/Pigeonhole.Sieve.Extensions.Include.txt 920share/doc/dovecot/wiki/Pigeonhole.Sieve.Extensions.Include.txt
919share/doc/dovecot/wiki/Pigeonhole.Sieve.Extensions.SpamtestVirustest.txt 921share/doc/dovecot/wiki/Pigeonhole.Sieve.Extensions.SpamtestVirustest.txt
920share/doc/dovecot/wiki/Pigeonhole.Sieve.Extensions.Vacation.txt 922share/doc/dovecot/wiki/Pigeonhole.Sieve.Extensions.Vacation.txt
921share/doc/dovecot/wiki/Pigeonhole.Sieve.Extensions.Variables.txt 923share/doc/dovecot/wiki/Pigeonhole.Sieve.Extensions.Variables.txt
922share/doc/dovecot/wiki/Pigeonhole.Sieve.Extensions.txt 924share/doc/dovecot/wiki/Pigeonhole.Sieve.Extensions.txt
923share/doc/dovecot/wiki/Pigeonhole.Sieve.Plugins.Extdata.txt 925share/doc/dovecot/wiki/Pigeonhole.Sieve.Plugins.Extdata.txt
924share/doc/dovecot/wiki/Pigeonhole.Sieve.Plugins.Extprograms.txt 926share/doc/dovecot/wiki/Pigeonhole.Sieve.Plugins.Extprograms.txt
925share/doc/dovecot/wiki/Pigeonhole.Sieve.Plugins.IMAPFilterSieve.txt 927share/doc/dovecot/wiki/Pigeonhole.Sieve.Plugins.IMAPFilterSieve.txt
926share/doc/dovecot/wiki/Pigeonhole.Sieve.Plugins.IMAPSieve.txt 928share/doc/dovecot/wiki/Pigeonhole.Sieve.Plugins.IMAPSieve.txt
927share/doc/dovecot/wiki/Pigeonhole.Sieve.Plugins.Pipe.txt 929share/doc/dovecot/wiki/Pigeonhole.Sieve.Plugins.Pipe.txt
928share/doc/dovecot/wiki/Pigeonhole.Sieve.Plugins.txt 930share/doc/dovecot/wiki/Pigeonhole.Sieve.Plugins.txt
929share/doc/dovecot/wiki/Pigeonhole.Sieve.Troubleshooting.txt 931share/doc/dovecot/wiki/Pigeonhole.Sieve.Troubleshooting.txt
930share/doc/dovecot/wiki/Pigeonhole.Sieve.Usage.txt 932share/doc/dovecot/wiki/Pigeonhole.Sieve.Usage.txt
931share/doc/dovecot/wiki/Pigeonhole.Sieve.txt 933share/doc/dovecot/wiki/Pigeonhole.Sieve.txt
932share/doc/dovecot/wiki/Pigeonhole.txt 934share/doc/dovecot/wiki/Pigeonhole.txt
933share/doc/dovecot/wiki/Plugins.Apparmor.txt 935share/doc/dovecot/wiki/Plugins.Apparmor.txt
934share/doc/dovecot/wiki/Plugins.Autocreate.txt 936share/doc/dovecot/wiki/Plugins.Autocreate.txt
935share/doc/dovecot/wiki/Plugins.CharsetAlias.txt 937share/doc/dovecot/wiki/Plugins.CharsetAlias.txt
936share/doc/dovecot/wiki/Plugins.Compress.txt 938share/doc/dovecot/wiki/Plugins.Compress.txt
937share/doc/dovecot/wiki/Plugins.Expire.txt 939share/doc/dovecot/wiki/Plugins.Expire.txt
938share/doc/dovecot/wiki/Plugins.FTS.Lucene.txt 940share/doc/dovecot/wiki/Plugins.FTS.Lucene.txt
939share/doc/dovecot/wiki/Plugins.FTS.Solr.txt 941share/doc/dovecot/wiki/Plugins.FTS.Solr.txt
940share/doc/dovecot/wiki/Plugins.FTS.Squat.txt 942share/doc/dovecot/wiki/Plugins.FTS.Squat.txt
941share/doc/dovecot/wiki/Plugins.FTS.txt 943share/doc/dovecot/wiki/Plugins.FTS.txt
942share/doc/dovecot/wiki/Plugins.LastLogin.txt 944share/doc/dovecot/wiki/Plugins.LastLogin.txt
943share/doc/dovecot/wiki/Plugins.Lazyexpunge.txt 945share/doc/dovecot/wiki/Plugins.Lazyexpunge.txt
944share/doc/dovecot/wiki/Plugins.Listescape.txt 946share/doc/dovecot/wiki/Plugins.Listescape.txt
945share/doc/dovecot/wiki/Plugins.MailCrypt.txt 947share/doc/dovecot/wiki/Plugins.MailCrypt.txt
946share/doc/dovecot/wiki/Plugins.MailFilter.txt 948share/doc/dovecot/wiki/Plugins.MailFilter.txt
947share/doc/dovecot/wiki/Plugins.MailLog.txt 949share/doc/dovecot/wiki/Plugins.MailLog.txt
948share/doc/dovecot/wiki/Plugins.MailboxAlias.txt 950share/doc/dovecot/wiki/Plugins.MailboxAlias.txt
949share/doc/dovecot/wiki/Plugins.Notify.txt 951share/doc/dovecot/wiki/Plugins.Notify.txt
950share/doc/dovecot/wiki/Plugins.NotifyStatus.txt 952share/doc/dovecot/wiki/Plugins.NotifyStatus.txt
951share/doc/dovecot/wiki/Plugins.PushNotification.txt 953share/doc/dovecot/wiki/Plugins.PushNotification.txt
952share/doc/dovecot/wiki/Plugins.QuotaClone.txt 954share/doc/dovecot/wiki/Plugins.QuotaClone.txt
953share/doc/dovecot/wiki/Plugins.Snarf.txt 955share/doc/dovecot/wiki/Plugins.Snarf.txt
954share/doc/dovecot/wiki/Plugins.Stats.txt 956share/doc/dovecot/wiki/Plugins.Stats.txt
955share/doc/dovecot/wiki/Plugins.Trash.txt 957share/doc/dovecot/wiki/Plugins.Trash.txt
956share/doc/dovecot/wiki/Plugins.VarExpandCrypt.txt 958share/doc/dovecot/wiki/Plugins.VarExpandCrypt.txt
957share/doc/dovecot/wiki/Plugins.Virtual.txt 959share/doc/dovecot/wiki/Plugins.Virtual.txt
958share/doc/dovecot/wiki/Plugins.Welcome.txt 960share/doc/dovecot/wiki/Plugins.Welcome.txt
959share/doc/dovecot/wiki/Plugins.Zlib.txt 961share/doc/dovecot/wiki/Plugins.Zlib.txt
960share/doc/dovecot/wiki/Plugins.txt 962share/doc/dovecot/wiki/Plugins.txt
961share/doc/dovecot/wiki/PostLoginScripting.txt 963share/doc/dovecot/wiki/PostLoginScripting.txt
962share/doc/dovecot/wiki/PreAuth.txt 964share/doc/dovecot/wiki/PreAuth.txt
963share/doc/dovecot/wiki/QuickConfiguration.txt 965share/doc/dovecot/wiki/QuickConfiguration.txt
964share/doc/dovecot/wiki/Quota.Configuration.txt 966share/doc/dovecot/wiki/Quota.Configuration.txt
965share/doc/dovecot/wiki/Quota.Count.txt 967share/doc/dovecot/wiki/Quota.Count.txt
966share/doc/dovecot/wiki/Quota.Dict.txt 968share/doc/dovecot/wiki/Quota.Dict.txt
967share/doc/dovecot/wiki/Quota.Dirsize.txt 969share/doc/dovecot/wiki/Quota.Dirsize.txt
968share/doc/dovecot/wiki/Quota.FS.txt 970share/doc/dovecot/wiki/Quota.FS.txt
969share/doc/dovecot/wiki/Quota.Maildir.txt 971share/doc/dovecot/wiki/Quota.Maildir.txt
970share/doc/dovecot/wiki/Quota.txt 972share/doc/dovecot/wiki/Quota.txt
971share/doc/dovecot/wiki/Replication.txt 973share/doc/dovecot/wiki/Replication.txt
972share/doc/dovecot/wiki/RunningDovecot.txt 974share/doc/dovecot/wiki/RunningDovecot.txt
973share/doc/dovecot/wiki/SSL.CertificateClientImporting.txt 975share/doc/dovecot/wiki/SSL.CertificateClientImporting.txt
974share/doc/dovecot/wiki/SSL.CertificateCreation.txt 976share/doc/dovecot/wiki/SSL.CertificateCreation.txt
975share/doc/dovecot/wiki/SSL.DovecotConfiguration.txt 977share/doc/dovecot/wiki/SSL.DovecotConfiguration.txt
976share/doc/dovecot/wiki/SSL.SNIClientSupport.txt 978share/doc/dovecot/wiki/SSL.SNIClientSupport.txt
977share/doc/dovecot/wiki/SSL.txt 979share/doc/dovecot/wiki/SSL.txt
978share/doc/dovecot/wiki/Sasl.txt 980share/doc/dovecot/wiki/Sasl.txt
979share/doc/dovecot/wiki/SecurityTuning.txt 981share/doc/dovecot/wiki/SecurityTuning.txt
980share/doc/dovecot/wiki/Services.txt 982share/doc/dovecot/wiki/Services.txt
981share/doc/dovecot/wiki/SharedMailboxes.ClusterSetup.txt 983share/doc/dovecot/wiki/SharedMailboxes.ClusterSetup.txt
982share/doc/dovecot/wiki/SharedMailboxes.Permissions.txt 984share/doc/dovecot/wiki/SharedMailboxes.Permissions.txt
983share/doc/dovecot/wiki/SharedMailboxes.Public.txt 985share/doc/dovecot/wiki/SharedMailboxes.Public.txt
984share/doc/dovecot/wiki/SharedMailboxes.Shared.txt 986share/doc/dovecot/wiki/SharedMailboxes.Shared.txt
985share/doc/dovecot/wiki/SharedMailboxes.Symlinks.txt 987share/doc/dovecot/wiki/SharedMailboxes.Symlinks.txt
986share/doc/dovecot/wiki/SharedMailboxes.txt 988share/doc/dovecot/wiki/SharedMailboxes.txt
987share/doc/dovecot/wiki/SocketUnavailable.txt 989share/doc/dovecot/wiki/SocketUnavailable.txt
988share/doc/dovecot/wiki/Statistics.Old.txt 990share/doc/dovecot/wiki/Statistics.Old.txt
989share/doc/dovecot/wiki/Statistics.txt 991share/doc/dovecot/wiki/Statistics.txt
990share/doc/dovecot/wiki/Submission.txt 992share/doc/dovecot/wiki/Submission.txt
991share/doc/dovecot/wiki/SystemUsers.txt 993share/doc/dovecot/wiki/SystemUsers.txt
992share/doc/dovecot/wiki/TestInstallation.txt 994share/doc/dovecot/wiki/TestInstallation.txt
993share/doc/dovecot/wiki/TestPop3Installation.txt 995share/doc/dovecot/wiki/TestPop3Installation.txt
994share/doc/dovecot/wiki/TimeMovedBackwards.txt 996share/doc/dovecot/wiki/TimeMovedBackwards.txt
995share/doc/dovecot/wiki/Timeouts.txt 997share/doc/dovecot/wiki/Timeouts.txt
996share/doc/dovecot/wiki/Upgrading.1.0.txt 998share/doc/dovecot/wiki/Upgrading.1.0.txt
997share/doc/dovecot/wiki/Upgrading.1.1.txt 999share/doc/dovecot/wiki/Upgrading.1.1.txt
998share/doc/dovecot/wiki/Upgrading.1.2.txt 1000share/doc/dovecot/wiki/Upgrading.1.2.txt
999share/doc/dovecot/wiki/Upgrading.2.0.txt 1001share/doc/dovecot/wiki/Upgrading.2.0.txt
1000share/doc/dovecot/wiki/Upgrading.2.1.txt 1002share/doc/dovecot/wiki/Upgrading.2.1.txt
1001share/doc/dovecot/wiki/Upgrading.2.2.txt 1003share/doc/dovecot/wiki/Upgrading.2.2.txt
1002share/doc/dovecot/wiki/Upgrading.2.3.txt 1004share/doc/dovecot/wiki/Upgrading.2.3.txt
1003share/doc/dovecot/wiki/Upgrading.txt 1005share/doc/dovecot/wiki/Upgrading.txt
1004share/doc/dovecot/wiki/UserDatabase.ExtraFields.txt 1006share/doc/dovecot/wiki/UserDatabase.ExtraFields.txt
1005share/doc/dovecot/wiki/UserDatabase.NSS.txt 1007share/doc/dovecot/wiki/UserDatabase.NSS.txt
1006share/doc/dovecot/wiki/UserDatabase.Prefetch.txt 1008share/doc/dovecot/wiki/UserDatabase.Prefetch.txt
1007share/doc/dovecot/wiki/UserDatabase.Static.txt 1009share/doc/dovecot/wiki/UserDatabase.Static.txt
1008share/doc/dovecot/wiki/UserDatabase.txt 1010share/doc/dovecot/wiki/UserDatabase.txt
1009share/doc/dovecot/wiki/UserIds.txt 1011share/doc/dovecot/wiki/UserIds.txt
1010share/doc/dovecot/wiki/Variables.txt 1012share/doc/dovecot/wiki/Variables.txt
1011share/doc/dovecot/wiki/VirtualUsers.Home.txt 1013share/doc/dovecot/wiki/VirtualUsers.Home.txt
1012share/doc/dovecot/wiki/VirtualUsers.txt 1014share/doc/dovecot/wiki/VirtualUsers.txt
1013share/doc/dovecot/wiki/WhyDoesItNotWork.txt 1015share/doc/dovecot/wiki/WhyDoesItNotWork.txt
1014share/doc/dovecot/wiki/maildrop.txt 1016share/doc/dovecot/wiki/maildrop.txt
1015share/doc/dovecot/wiki/mutt.txt 1017share/doc/dovecot/wiki/mutt.txt
1016share/doc/dovecot/wiki/uw2dovecot.sh.txt 1018share/doc/dovecot/wiki/uw2dovecot.sh.txt
1017share/dovecot/stopwords/stopwords_da.txt 1019share/dovecot/stopwords/stopwords_da.txt
1018share/dovecot/stopwords/stopwords_de.txt 1020share/dovecot/stopwords/stopwords_de.txt
1019share/dovecot/stopwords/stopwords_en.txt 1021share/dovecot/stopwords/stopwords_en.txt
1020share/dovecot/stopwords/stopwords_es.txt 1022share/dovecot/stopwords/stopwords_es.txt
1021share/dovecot/stopwords/stopwords_fi.txt 1023share/dovecot/stopwords/stopwords_fi.txt
1022share/dovecot/stopwords/stopwords_fr.txt 1024share/dovecot/stopwords/stopwords_fr.txt
1023share/dovecot/stopwords/stopwords_it.txt 1025share/dovecot/stopwords/stopwords_it.txt
1024share/dovecot/stopwords/stopwords_nl.txt 1026share/dovecot/stopwords/stopwords_nl.txt
1025share/dovecot/stopwords/stopwords_no.txt 1027share/dovecot/stopwords/stopwords_no.txt
1026share/dovecot/stopwords/stopwords_pt.txt 1028share/dovecot/stopwords/stopwords_pt.txt
1027share/dovecot/stopwords/stopwords_ro.txt 1029share/dovecot/stopwords/stopwords_ro.txt
1028share/dovecot/stopwords/stopwords_ru.txt 1030share/dovecot/stopwords/stopwords_ru.txt
1029share/dovecot/stopwords/stopwords_sv.txt 1031share/dovecot/stopwords/stopwords_sv.txt
1030share/dovecot/stopwords/stopwords_tr.txt 1032share/dovecot/stopwords/stopwords_tr.txt
1031share/examples/dovecot/conf.d/10-auth.conf 1033share/examples/dovecot/conf.d/10-auth.conf
1032share/examples/dovecot/conf.d/10-director.conf 1034share/examples/dovecot/conf.d/10-director.conf
1033share/examples/dovecot/conf.d/10-logging.conf 1035share/examples/dovecot/conf.d/10-logging.conf
1034share/examples/dovecot/conf.d/10-mail.conf 1036share/examples/dovecot/conf.d/10-mail.conf
1035share/examples/dovecot/conf.d/10-master.conf 1037share/examples/dovecot/conf.d/10-master.conf
1036share/examples/dovecot/conf.d/10-metrics.conf 1038share/examples/dovecot/conf.d/10-metrics.conf
1037share/examples/dovecot/conf.d/10-ssl.conf 1039share/examples/dovecot/conf.d/10-ssl.conf
1038share/examples/dovecot/conf.d/15-lda.conf 1040share/examples/dovecot/conf.d/15-lda.conf
1039share/examples/dovecot/conf.d/15-mailboxes.conf 1041share/examples/dovecot/conf.d/15-mailboxes.conf
1040share/examples/dovecot/conf.d/20-imap.conf 1042share/examples/dovecot/conf.d/20-imap.conf
1041share/examples/dovecot/conf.d/20-lmtp.conf 1043share/examples/dovecot/conf.d/20-lmtp.conf
1042share/examples/dovecot/conf.d/20-pop3.conf 1044share/examples/dovecot/conf.d/20-pop3.conf
1043share/examples/dovecot/conf.d/20-submission.conf 1045share/examples/dovecot/conf.d/20-submission.conf
1044share/examples/dovecot/conf.d/90-acl.conf 1046share/examples/dovecot/conf.d/90-acl.conf
1045share/examples/dovecot/conf.d/90-plugin.conf 1047share/examples/dovecot/conf.d/90-plugin.conf
1046share/examples/dovecot/conf.d/90-quota.conf 1048share/examples/dovecot/conf.d/90-quota.conf
1047share/examples/dovecot/conf.d/auth-checkpassword.conf.ext 1049share/examples/dovecot/conf.d/auth-checkpassword.conf.ext
1048share/examples/dovecot/conf.d/auth-deny.conf.ext 1050share/examples/dovecot/conf.d/auth-deny.conf.ext
1049share/examples/dovecot/conf.d/auth-dict.conf.ext 1051share/examples/dovecot/conf.d/auth-dict.conf.ext
1050share/examples/dovecot/conf.d/auth-ldap.conf.ext 1052share/examples/dovecot/conf.d/auth-ldap.conf.ext
1051share/examples/dovecot/conf.d/auth-master.conf.ext 1053share/examples/dovecot/conf.d/auth-master.conf.ext
1052share/examples/dovecot/conf.d/auth-passwdfile.conf.ext 1054share/examples/dovecot/conf.d/auth-passwdfile.conf.ext
1053share/examples/dovecot/conf.d/auth-sql.conf.ext 1055share/examples/dovecot/conf.d/auth-sql.conf.ext
1054share/examples/dovecot/conf.d/auth-static.conf.ext 1056share/examples/dovecot/conf.d/auth-static.conf.ext
1055share/examples/dovecot/conf.d/auth-system.conf.ext 1057share/examples/dovecot/conf.d/auth-system.conf.ext
1056share/examples/dovecot/dovecot-dict-auth.conf.ext 1058share/examples/dovecot/dovecot-dict-auth.conf.ext
1057share/examples/dovecot/dovecot-dict-sql.conf.ext 1059share/examples/dovecot/dovecot-dict-sql.conf.ext
1058share/examples/dovecot/dovecot-ldap.conf.ext 1060share/examples/dovecot/dovecot-ldap.conf.ext
1059share/examples/dovecot/dovecot-oauth2.conf.ext 1061share/examples/dovecot/dovecot-oauth2.conf.ext
1060share/examples/dovecot/dovecot-openssl.cnf 1062share/examples/dovecot/dovecot-openssl.cnf
1061share/examples/dovecot/dovecot-sql.conf.ext 1063share/examples/dovecot/dovecot-sql.conf.ext
1062share/examples/dovecot/dovecot.conf 1064share/examples/dovecot/dovecot.conf
1063share/examples/dovecot/mkcert.sh 1065share/examples/dovecot/mkcert.sh

cvs diff -r1.117 -r1.118 pkgsrc/mail/dovecot2/distinfo (switch to unified diff)

--- pkgsrc/mail/dovecot2/distinfo 2022/02/03 21:02:04 1.117
+++ pkgsrc/mail/dovecot2/distinfo 2022/05/11 09:26:57 1.118
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1$NetBSD: distinfo,v 1.117 2022/02/03 21:02:04 adam Exp $ 1$NetBSD: distinfo,v 1.118 2022/05/11 09:26:57 adam Exp $
2 2
3BLAKE2s (dovecot-2.3.18.tar.gz) = 3d840ea7a1370eaa5cb00c52704f472c81b811ec0fa7ec7411cfc60703fe6004 3BLAKE2s (dovecot-2.3.19.tar.gz) = f2e4c7ddb77e3e604c255b904208d50c6cc7b9bde68a3b3d94c894cc8937e01f
4SHA512 (dovecot-2.3.18.tar.gz) = b5eccf790a3960614876f122efb6296fe49ab7c523b08c10347fd4d10ed293fbd327279511c227b420f7c0786975186157eaa0fb5cd3aab1f3be9a4c5c3ad233 4SHA512 (dovecot-2.3.19.tar.gz) = a61ce88b53c4f24faddf4951f16cb75dfe52aa7057d072c727566a7c9a683cc487d26cea9a83ad8aca161a053949d2f2196ba6a58015e3d33be897094aabf887
5Size (dovecot-2.3.18.tar.gz) = 7763230 bytes 5Size (dovecot-2.3.19.tar.gz) = 7790661 bytes
6SHA1 (patch-aa) = 3af01aa4a8cea1a3fb840b6243a744de77069611 6SHA1 (patch-aa) = 3af01aa4a8cea1a3fb840b6243a744de77069611
7SHA1 (patch-ab) = 685ab3d0e21515bf157e9897ebdebf484f0ece96 7SHA1 (patch-ab) = 685ab3d0e21515bf157e9897ebdebf484f0ece96
8SHA1 (patch-ae) = c1e76d75fab4b13d3b9b33af800bac18c90989da 8SHA1 (patch-ae) = c1e76d75fab4b13d3b9b33af800bac18c90989da
9SHA1 (patch-af) = 15aa10e75845ef258cd6934b8209a7744eb5aa4c 9SHA1 (patch-af) = 15aa10e75845ef258cd6934b8209a7744eb5aa4c
10SHA1 (patch-src_imap_imap-client.h) = 1a2bf95ab6af57d88862a1512624bf263f4c2ce7 10SHA1 (patch-src_imap_imap-client.h) = 1a2bf95ab6af57d88862a1512624bf263f4c2ce7
11SHA1 (patch-src_lib-ldap_ldap-private.h) = 2d5ce32330ad4164cc75f8d209ba499d37ed01fc 11SHA1 (patch-src_lib-ldap_ldap-private.h) = 2d5ce32330ad4164cc75f8d209ba499d37ed01fc
12SHA1 (patch-src_lib_connection.h) = c147511f4ff50e4b5a048c3a363f0af90ee4c6ad 12SHA1 (patch-src_lib_connection.h) = c147511f4ff50e4b5a048c3a363f0af90ee4c6ad
13SHA1 (patch-src_lib_test-file-cache.c) = 7eb5cf9d3a44be141ab1597b270f20bf36547b6c 13SHA1 (patch-src_lib_test-file-cache.c) = 7eb5cf9d3a44be141ab1597b270f20bf36547b6c
14SHA1 (patch-src_old-stats_mail-stats.h) = 0d40c618445c089af2646a6864c3e909812282af 14SHA1 (patch-src_old-stats_mail-stats.h) = 0d40c618445c089af2646a6864c3e909812282af

cvs diff -r1.29 -r1.30 pkgsrc/mail/dovecot2-sqlite/Makefile (switch to unified diff)

--- pkgsrc/mail/dovecot2-sqlite/Makefile 2022/04/18 19:11:33 1.29
+++ pkgsrc/mail/dovecot2-sqlite/Makefile 2022/05/11 09:26:57 1.30
@@ -1,24 +1,23 @@ @@ -1,24 +1,23 @@
1# $NetBSD: Makefile,v 1.29 2022/04/18 19:11:33 adam Exp $ 1# $NetBSD: Makefile,v 1.30 2022/05/11 09:26:57 adam Exp $
2 2
3PKGREVISION= 2 
4.include "../../mail/dovecot2/Makefile.common" 3.include "../../mail/dovecot2/Makefile.common"
5 4
6PKGNAME= ${DISTNAME:S/dovecot/dovecot-sqlite/} 5PKGNAME= ${DISTNAME:S/dovecot/dovecot-sqlite/}
7COMMENT+= (SQLite plugin) 6COMMENT+= (SQLite plugin)
8 7
9CONFIGURE_ARGS+= --with-sql=plugin 8CONFIGURE_ARGS+= --with-sql=plugin
10CONFIGURE_ARGS+= --with-sqlite 9CONFIGURE_ARGS+= --with-sqlite
11 10
12INSTALLATION_DIRS+= lib/dovecot/auth lib/dovecot/dict 11INSTALLATION_DIRS+= lib/dovecot/auth lib/dovecot/dict
13 12
14do-install: 13do-install:
15 cd ${WRKSRC} && ${LIBTOOL} --mode=install ${INSTALL_LIB} \ 14 cd ${WRKSRC} && ${LIBTOOL} --mode=install ${INSTALL_LIB} \
16 src/lib-sql/libdriver_sqlite.la \ 15 src/lib-sql/libdriver_sqlite.la \
17 ${DESTDIR}${PREFIX}/lib/dovecot 16 ${DESTDIR}${PREFIX}/lib/dovecot
18 ${LN} -s ../libdriver_sqlite.so \ 17 ${LN} -s ../libdriver_sqlite.so \
19 ${DESTDIR}${PREFIX}/lib/dovecot/auth/libdriver_sqlite.so 18 ${DESTDIR}${PREFIX}/lib/dovecot/auth/libdriver_sqlite.so
20 ${LN} -s ../libdriver_sqlite.so \ 19 ${LN} -s ../libdriver_sqlite.so \
21 ${DESTDIR}${PREFIX}/lib/dovecot/dict/libdriver_sqlite.so 20 ${DESTDIR}${PREFIX}/lib/dovecot/dict/libdriver_sqlite.so
22 21
23.include "../../databases/sqlite3/buildlink3.mk" 22.include "../../databases/sqlite3/buildlink3.mk"
24.include "../../mk/bsd.pkg.mk" 23.include "../../mk/bsd.pkg.mk"