1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-19 00:13:33 +00:00

. Add a port of the 2.x series of Dovecot:

Dovecot is a secure and compact IMAP server which is in the early stages
of development. It supports Maildirs and mbox formats and much of the
IMAP v4 protocol including SSL/TLS. IPv6 support is also included.
Dovecot supports authentication with OpenLDAP, PostgreSQL, MySQL, vpopmail
and PAM.

WWW: http://www.dovecot.org/

PR:		150789
Submitted by:	"Nagy, Attila" <bra@fsn.hu>
This commit is contained in:
Greg Lewis 2010-11-27 05:53:35 +00:00
parent 9a1a289d96
commit fe409c4811
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=265251
11 changed files with 906 additions and 0 deletions

1
GIDs
View File

@ -74,6 +74,7 @@ shellinabox:*:139:
amanda:*:140:operator
ladvd:*:142:
dovecot:*:143:
dovenull:*:144:
rbldns:*:153:
sfs:*:171:
agk:*:172:

1
UIDs
View File

@ -83,6 +83,7 @@ amanda:*:140:140::0:0:Amanda Daemon:/nonexistent:/usr/sbin/nologin
cricket:*:141:80::0:0:Cricket Monitoring User:/usr/local/cricket:/usr/sbin/nologin
ladvd:*:142:142::0:0:Ladvd User:/var/empty:/usr/sbin/nologin
dovecot:*:143:143::0:0:Dovecot User:/var/empty:/usr/sbin/nologin
dovenull:*:144:144::0:0:Dovecot login User:/var/empty:/usr/sbin/nologin
rbldns:*:153:153::0:0:rbldnsd pseudo-user:/nonexistent:/usr/sbin/nologin
sfs:*:171:171::0:0:Self-Certifying File System:/nonexistent:/usr/sbin/nologin
agk:*:172:172::0:0:AquaGateKeeper:/nonexistent:/nonexistent

View File

@ -100,6 +100,7 @@
SUBDIR += dovecot-antispam
SUBDIR += dovecot-managesieve
SUBDIR += dovecot-sieve
SUBDIR += dovecot2
SUBDIR += drac
SUBDIR += drbl
SUBDIR += dsbl-testers

227
mail/dovecot2/Makefile Normal file
View File

@ -0,0 +1,227 @@
# New ports collection makefile for: dovecot
# Date created: 12/08/2002
# Whom: Dominic Marks <dominic.marks@btinternet.com>
#
# $FreeBSD$
#
PORTNAME= dovecot
PORTVERSION= 2.0.7
CATEGORIES= mail ipv6
MASTER_SITES= http://www.dovecot.org/releases/${DOVECOTVERSION}/
MAINTAINER= bra@fsn.hu
COMMENT= Secure and compact IMAP and POP3 servers
LATEST_LINK= dovecot2
CONFLICTS= dovecot-1.*
DOVECOTVERSION= 2.0
######################################################################
# Anytime PORTVERSION changes please bump PORTREVISION of #
# mail/dovecot20-pigeonhole. Please see ports/135311 and #
# ports/146029 for an explanation. #
# #
# Please be careful when updating this port as changes to this port #
# can break mail/dovecot20-pigeonhole. In order to ensure the least #
# amount of breakage possible please consult the maintainer of that #
# port before updating this one. #
######################################################################
USE_ICONV= yes
USE_RC_SUBR= dovecot.sh
MAKE_JOBS_SAFE= yes
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ARGS= --localstatedir=/var \
--with-statedir=/var/db/dovecot \
--without-shadow
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
USE_LDCONFIG= ${PREFIX}/lib/dovecot
.if defined(NOPORTDOCS)
CONFIGURE_ARGS+= --without-docs
.else
DOCS= AUTHORS COPYING COPYING.LGPL COPYING.MIT INSTALL NEWS TODO README
PORTDOCS= *
.endif
.if !defined(NOPORTEXAMPLES)
PORTEXAMPLES= *
.endif
DOVECOT_UID?= 143
DOVECOT_GID?= 143
DOVENULL_UID?= 144
DOVENULL_GID?= 144
PROTOCOLS= imap pop3
OPTIONS= KQUEUE "kqueue(2) support" on \
SSL "SSL support" on \
GSSAPI "GSSAPI support" off \
LDAP "OpenLDAP support" off \
PGSQL "PostgreSQL support" off \
MYSQL "MySQL support" off \
SQLITE "SQLite support" off
.include <bsd.port.pre.mk>
# Default requirement for dovecot rc script
_REQUIRE= LOGIN
# sed script for dovecot.conf
REINPLACE= s!%%PROTOCOLS%%!${PROTOCOLS}!g;\
s!/usr/!${PREFIX}/!g;\
s!=/usr!=${PREFIX}!g;\
s!=/etc !=${PREFIX}/etc !g;\
s!/etc/dovecot!${PREFIX}&!g;\
s![[:<:]]doc/(dovecot-[^-]+)-example.conf[[:>:]]!${EXAMPLESDIR}/\1.conf!g;\
s!\#sendmail_path = /usr/.*!sendmail_path = /usr/sbin/sendmail!g;
## kqueue(2) support
#
.if !defined(WITHOUT_KQUEUE)
CONFIGURE_ARGS+= --with-ioloop=kqueue
.endif
## SSL support
#
.if defined(WITH_SSL) && !defined(WITHOUT_SSL)
PROTOCOLS+= imaps pop3s
.else
CONFIGURE_ARGS+= --without-ssl
.endif
## GSSAPI support
#
.if defined(WITH_GSSAPI) && !defined(WITHOUT_GSSAPI)
CONFIGURE_ARGS+= --with-gssapi
.else
CONFIGURE_ARGS+= --without-gssapi
.endif
## VPopMail Support
# support is currently disabled
#.if defined(WITH_VPOPMAIL) && !defined(WITHOUT_VPOPMAIL)
#VPOPMAIL= ${LOCALBASE}/vpopmail/bin/vchkpw
#BUILD_DEPENDS+= ${VPOPMAIL}:${PORTSDIR}/mail/vpopmail
#CONFIGURE_ARGS+= --with-vpopmail
#.else
#CONFIGURE_ARGS+= --without-vpopmail
#.endif
## OpenLDAP Support
#
.if defined(WITH_LDAP) && !defined(WITHOUT_LDAP)
USE_OPENLDAP= yes
CONFIGURE_ARGS+= --with-ldap
PLIST_SUB+= LDAP=""
_REQUIRE+= slapd
.else
CONFIGURE_ARGS+= --without-ldap
PLIST_SUB+= LDAP="@comment "
.endif
## PostgreSQL Support
#
.if defined(WITH_PGSQL) && !defined(WITHOUT_PGSQL)
USE_PGSQL= yes
CONFIGURE_ARGS+= --with-pgsql
PLIST_SUB+= SQL=""
_REQUIRE+= postgresql
.else
CONFIGURE_ARGS+= --without-pgsql
PLIST_SUB+= SQL="@comment "
.endif
## MySQL Support
#
.if defined(WITH_MYSQL) && !defined(WITHOUT_MYSQL)
USE_MYSQL= yes
CONFIGURE_ARGS+= --with-mysql
PLIST_SUB+= SQL=""
_REQUIRE+= mysql
.else
CONFIGURE_ARGS+= --without-mysql
PLIST_SUB+= SQL="@comment "
.endif
## SQLite Support
#
.if defined(WITH_SQLITE) && !defined(WITHOUT_SQLITE)
USE_SQLITE= 3
CONFIGURE_ARGS+= --with-sqlite
PLIST_SUB+= SQL=""
.else
CONFIGURE_ARGS+= --without-sqlite
PLIST_SUB+= SQL="@comment "
.endif
SUB_LIST+= REQUIRE="${_REQUIRE}" DOVECOT_UID=${DOVECOT_UID} DOVECOT_GID=${DOVECOT_GID} DOVENULL_UID=${DOVENULL_UID} DOVENULL_GID=${DOVENULL_GID}
SUB_FILES+= pkg-install pkg-deinstall pkg-message
MAN1= deliver.1 \
doveadm-altmove.1 \
doveadm-auth.1 \
doveadm-config.1 \
doveadm-director.1 \
doveadm-dump.1 \
doveadm-expunge.1 \
doveadm-fetch.1 \
doveadm-force-resync.1 \
doveadm-help.1 \
doveadm-kick.1 \
doveadm-import.1 \
doveadm-log.1 \
doveadm-mailbox.1 \
doveadm-penalty.1 \
doveadm-purge.1 \
doveadm-pw.1 \
doveadm-quota.1 \
doveadm-reload.1 \
doveadm-search.1 \
doveadm-stop.1 \
doveadm-user.1 \
doveadm-who.1 \
doveadm.1 \
doveconf.1 \
dovecot-lda.1 \
dovecot.1 \
dsync.1
MAN7= doveadm-search-query.7
post-patch:
@${REINPLACE_CMD} -E -e '${REINPLACE}' \
${WRKSRC}/doc/example-config/dovecot.conf
@${REINPLACE_CMD} -E -e'\
s!-example\.conf[[:>:]]!.conf!g;\
s!^(confdir[[:space:]]+=[[:space:]]+)\$$\(sysconfdir\)!\1${EXAMPLESDIR}!g;\
' ${WRKSRC}/*/Makefile.in ${WRKSRC}/Makefile.in
.if defined(WITH_GSSAPI)
@${REINPLACE_CMD} -e '\
s!<gssapi/gssapi\.h>!<gssapi.h>!;\
' ${WRKSRC}/src/auth/mech-gssapi.c ${WRKSRC}/configure
.endif
pre-su-install:
@${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
post-install:
.if !defined(NOPORTEXAMPLES)
@${MKDIR} ${EXAMPLESDIR}
${INSTALL_SCRIPT} ${WRKSRC}/doc/mkcert.sh ${EXAMPLESDIR}
${INSTALL_SCRIPT} ${WRKSRC}/doc/dovecot-openssl.cnf ${EXAMPLESDIR}
.endif
.if !defined(NOPORTDOCS)
.for f in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
.endfor
.endif
@${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>

2
mail/dovecot2/distinfo Normal file
View File

@ -0,0 +1,2 @@
SHA256 (dovecot-2.0.7.tar.gz) = d862ca1bf5aaa3bc15f5962058351517b8f42fa6947feeb634f4d085ec0f4ce3
SIZE (dovecot-2.0.7.tar.gz) = 3174912

View File

@ -0,0 +1,59 @@
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: dovecot
# REQUIRE: %%REQUIRE%%
# KEYWORD: shutdown
# Define dovecot_* variables in one of these files:
# /etc/rc.conf
# /etc/rc.conf.local
# /etc/rc.conf.d/dovecot
. /etc/rc.subr
name=dovecot
rcvar=`set_rcvar`
# read configuration and set defaults
load_rc_config ${name}
: ${dovecot_enable:="NO"}
: ${dovecot_config:="%%PREFIX%%/etc/dovecot/${name}.conf"}
command="%%PREFIX%%/sbin/${name}"
start_precmd="start_precmd"
stop_postcmd="stop_postcmd"
restart_cmd="restart_cmd"
start_precmd()
{ # Ensure runtime directories exist with correct permissions
local login_user login_gid
login_user=$(${command} ${command_args} -a | /usr/bin/awk -F '= ' '/^default_login_user =/ { print $2 }')
login_gid=$(/usr/sbin/pw usershow -n "${login_user}" 2>/dev/null | /usr/bin/cut -d: -f4)
/usr/bin/install -o root -g wheel -m 0755 -d ${base_dir}
}
stop_postcmd()
{ # Cleanup runtime directories
rm -rf ${base_dir} 2>/dev/null
}
restart_cmd()
{ # Overriding makes rc.subr run this once for each instance
run_rc_command stop
run_rc_command start
}
# To start multiple instances of dovecot set dovecot_config to
# a space seperated list of configuration files.
if checkyesno ${name}_enable; then
for config in ${dovecot_config}; do
required_files="${config}"
command_args="-c ${config}"
base_dir=$(${command} ${command_args} -a | /usr/bin/awk -F '= ' '/^base_dir =/ { print $2 }')
pidfile="${base_dir}/master.pid"
run_rc_command "$1"
done
fi

View File

@ -0,0 +1,65 @@
#! /bin/sh
#
# $FreeBSD: /tmp/pcvs/ports/mail/dovecot2/files/pkg-deinstall.in,v 1.1 2010-11-27 05:53:35 glewis Exp $
#
PKG_PREFIX=${PKG_PREFIX:=/usr/local}
ask() {
local question default answer
question=$1
default=$2
if [ -z "${PACKAGE_BUILDING}" -a -z "${BATCH}" ]; then
read -p "${question} [${default}]? " answer
fi
echo ${answer:-${default}}
}
yesno() {
local question default answer
question=$1
default=$2
while :; do
answer=$(ask "${question}" "${default}")
case "${answer}" in
[Yy]*) return 0;;
[Nn]*) return 1;;
esac
echo "Please answer yes or no."
done
}
delete_account() {
local port user uid group gid
port=$1
user=${2%:*}
uid=${2#*:}
group=${3%:*}
gid=${3#*:}
echo "If you do not intend to reinstall ${port}, you should manually"
echo "remove user '${user}' (uid='${uid}') and group '${group}' (gid='${gid}')."
}
case $2 in
DEINSTALL)
if ps -axc | grep -qw dovecot; then
if yesno "Dovecot is still running. Shall I stop it?" y; then
${PKG_PREFIX}/etc/rc.d/dovecot stop
sleep 2
else
echo "OK ... I hope you know what you are doing."
fi
fi
delete_account Dovecot dovecot:${DOVECOT_UID:-%%DOVECOT_UID%%} dovecot:${DOVECOT_GID:-%%DOVECOT_GID%%}
delete_account Dovecot dovenull:${DOVENULL_UID:-%%DOVENULL_UID%%} dovenull:${DOVENULL_GID:-%%DOVENULL_GID%%}
echo "Also manually 'rm -rf /var/db/dovecot' if anything was stored there."
;;
esac

View File

@ -0,0 +1,93 @@
#!/bin/sh
#
# $FreeBSD: /tmp/pcvs/ports/mail/dovecot2/files/Attic/pkg-install.in,v 1.1 2010-11-27 05:53:35 glewis Exp $
#
PKG_PREFIX=${PKG_PREFIX:=/usr/local}
ask() {
local question default answer
question=$1
default=$2
if [ -z "${PACKAGE_BUILDING}" -a -z "${BATCH}" ]; then
read -p "${question} [${default}]? " answer
fi
echo ${answer:-${default}}
}
yesno() {
local question default answer
question=$1
default=$2
while :; do
answer=$(ask "${question}" "${default}")
case "${answer}" in
[Yy]*) return 0;;
[Nn]*) return 1;;
esac
echo "Please answer yes or no."
done
}
create_account() {
local port user uid group gid gcos home shell
port=$1
user=${2%:*}
uid=${2#*:}
group=${3%:*}
gid=${3#*:}
gcos=$4
home=$5
shell=$6
pw_user_uid=$(pw usershow -n "${user}" 2>/dev/null | cut -d: -f3)
pw_uid_user=$(pw usershow -u "${uid}" 2>/dev/null | cut -d: -f1)
pw_group_gid=$(pw groupshow -n "${group}" 2>/dev/null | cut -d: -f3)
pw_gid_group=$(pw groupshow -g "${gid}" 2>/dev/null | cut -d: -f1)
if [ -z "${pw_group_gid}" -a -z "${pw_gid_group}" ]; then
echo "You need a ${group} group; creating it..."
pw groupadd "${group}" -g "${gid}" || exit
echo "Done."
elif [ "${gid}" = "${pw_group_gid}" -a "${group}" = "${pw_gid_group}" ]; then
echo "Using existing ${group} group."
else
echo "${port} has reserved the groupname '${group}' and gid '${gid}':"
[ -n "${pw_group_gid}" -a "${gid}" != "${pw_group_gid}" ] \
&& echo "ERROR: groupname '${group}' already in use by gid '${pw_group_gid}'"
[ -n "${pw_gid_group}" -a "${group}" != "${pw_gid_group}" ] \
&& echo "ERROR: gid '${gid}' already in use by group '${pw_gid_group}'"
echo "Please resolve these issues and try again:"
echo "Either remove the conflicting group or if you wish to continue using a legacy group override DOVECOT_GID."
exit 1
fi
if [ -z "${pw_user_uid}" -a -z "${pw_uid_user}" ]; then
echo "You need a ${user} user; creating it..."
pw useradd "${user}" -u "${uid}" -g "${group}" -c "${gcos}" -d "${home}" -s "${shell}"
echo "Done."
elif [ "${uid}" = "${pw_user_uid}" -a "${user}" = "${pw_uid_user}" ]; then
echo "Using existing ${user} user."
else
echo "${port} has reserved the username '${user}' and uid '${uid}':"
[ -n "${pw_user_uid}" -a "${uid}" != "${pw_user_uid}" ] \
&& echo "ERROR: username '${user}' already in use by uid '${pw_user_uid}'"
[ -n "${pw_uid_user}" -a "${user}" != "${pw_uid_user}" ] \
&& echo "ERROR: uid '${uid}' already in use by user '${pw_uid_user}'"
echo "Please resolve these issues and try again:"
echo "Either remove the conflicting user or if you wish to continue using a legacy user override DOVECOT_UID."
exit 1
fi
}
case $2 in
PRE-INSTALL)
create_account Dovecot dovecot:${DOVECOT_UID:-%%DOVECOT_UID%%} dovecot:${DOVECOT_GID:-%%DOVECOT_GID%%} "Dovecot User" /var/empty /usr/sbin/nologin
create_account Dovecot dovenull:${DOVENULL_UID:-%%DOVENULL_UID%%} dovenull:${DOVENULL_GID:-%%DOVENULL_GID%%} "Dovecot login User" /var/empty /usr/sbin/nologin
;;
esac

View File

@ -0,0 +1,21 @@
---------------------------------------------------------------------
You can get basic IMAP and POP3 services running by enabling
dovecot in the /etc/rc.conf file.
dovecot_enable
(bool) If set to ``YES'', run the dovecot command
at boot time.
In the basic configuration Dovecot will authenticate users against
the system's passwd file and use the default /var/mail/$USER mbox
files.
dovecot_config
(str) Path to dovecot configuration file(s).
Default %%PREFIX%%/etc/dovecot/dovecot.conf.
To start multiple instances of dovecot set dovecot_config to
a space seperated list of configuration files.
---------------------------------------------------------------------

7
mail/dovecot2/pkg-descr Normal file
View File

@ -0,0 +1,7 @@
Dovecot is a secure and compact IMAP server which is in the early stages
of development. It supports Maildirs and mbox formats and much of the
IMAP v4 protocol including SSL/TLS. IPv6 support is also included.
Dovecot supports authentication with OpenLDAP, PostgreSQL, MySQL, vpopmail
and PAM.
WWW: http://www.dovecot.org/

429
mail/dovecot2/pkg-plist Normal file
View File

@ -0,0 +1,429 @@
bin/doveadm
bin/doveconf
bin/dsync
etc/dovecot/README
include/dovecot/abspath.h
include/dovecot/access-lookup.h
include/dovecot/anvil-client.h
include/dovecot/aqueue.h
include/dovecot/array-decl.h
include/dovecot/array.h
include/dovecot/askpass.h
include/dovecot/auth-cache.h
include/dovecot/auth-client-connection.h
include/dovecot/auth-client-interface.h
include/dovecot/auth-client-private.h
include/dovecot/auth-client-request.h
include/dovecot/auth-client.h
include/dovecot/auth-common.h
include/dovecot/auth-master-connection.h
include/dovecot/auth-master.h
include/dovecot/auth-penalty.h
include/dovecot/auth-request-handler.h
include/dovecot/auth-request.h
include/dovecot/auth-server-connection.h
include/dovecot/auth-settings.h
include/dovecot/auth-stream.h
include/dovecot/auth-worker-client.h
include/dovecot/auth-worker-server.h
include/dovecot/auth.h
include/dovecot/backtrace-string.h
include/dovecot/base64.h
include/dovecot/bsearch-insert-pos.h
include/dovecot/buffer.h
include/dovecot/charset-utf8.h
include/dovecot/child-wait.h
include/dovecot/client-common.h
include/dovecot/close-keep-errno.h
include/dovecot/compat.h
include/dovecot/config-filter.h
include/dovecot/config-parser-private.h
include/dovecot/config-parser.h
include/dovecot/config-request.h
include/dovecot/config.h
include/dovecot/crc32.h
include/dovecot/cydir-storage.h
include/dovecot/cydir-sync.h
include/dovecot/data-stack.h
include/dovecot/db-checkpassword.h
include/dovecot/db-ldap.h
include/dovecot/db-passwd-file.h
include/dovecot/db-sql.h
include/dovecot/dbox-attachment.h
include/dovecot/dbox-file.h
include/dovecot/dbox-mail.h
include/dovecot/dbox-save.h
include/dovecot/dbox-storage.h
include/dovecot/dbox-sync-rebuild.h
include/dovecot/dict-client.h
include/dovecot/dict-private.h
include/dovecot/dict-sql-settings.h
include/dovecot/dict-sql.h
include/dovecot/dict.h
include/dovecot/dns-lookup.h
include/dovecot/dovecot-version.h
include/dovecot/duplicate.h
include/dovecot/eacces-error.h
include/dovecot/env-util.h
include/dovecot/execv-const.h
include/dovecot/failures.h
include/dovecot/fd-close-on-exec.h
include/dovecot/fd-set-nonblock.h
include/dovecot/fdatasync-path.h
include/dovecot/fdpass.h
include/dovecot/file-cache.h
include/dovecot/file-copy.h
include/dovecot/file-dotlock.h
include/dovecot/file-lock.h
include/dovecot/file-set-size.h
include/dovecot/fs-api-private.h
include/dovecot/fs-api.h
include/dovecot/fs-sis-common.h
include/dovecot/fsync-mode.h
include/dovecot/hash-format.h
include/dovecot/hash-method.h
include/dovecot/hash.h
include/dovecot/hash2.h
include/dovecot/hex-binary.h
include/dovecot/hex-dec.h
include/dovecot/hmac-md5.h
include/dovecot/home-expand.h
include/dovecot/hostpid.h
include/dovecot/imap-arg.h
include/dovecot/imap-base-subject.h
include/dovecot/imap-bodystructure.h
include/dovecot/imap-client.h
include/dovecot/imap-commands-util.h
include/dovecot/imap-commands.h
include/dovecot/imap-common.h
include/dovecot/imap-date.h
include/dovecot/imap-envelope.h
include/dovecot/imap-expunge.h
include/dovecot/imap-fetch.h
include/dovecot/imap-id.h
include/dovecot/imap-match.h
include/dovecot/imap-parser.h
include/dovecot/imap-quote.h
include/dovecot/imap-resp-code.h
include/dovecot/imap-search-args.h
include/dovecot/imap-search.h
include/dovecot/imap-seqset.h
include/dovecot/imap-settings.h
include/dovecot/imap-status.h
include/dovecot/imap-sync.h
include/dovecot/imap-utf7.h
include/dovecot/imap-util.h
include/dovecot/imem.h
include/dovecot/index-attachment.h
include/dovecot/index-mail.h
include/dovecot/index-mailbox-list.h
include/dovecot/index-search-result.h
include/dovecot/index-sort-private.h
include/dovecot/index-sort.h
include/dovecot/index-storage.h
include/dovecot/index-sync-changes.h
include/dovecot/index-sync-private.h
include/dovecot/index-thread-private.h
include/dovecot/ioloop-internal.h
include/dovecot/ioloop-iolist.h
include/dovecot/ioloop-notify-fd.h
include/dovecot/ioloop.h
include/dovecot/iostream-internal.h
include/dovecot/istream-attachment.h
include/dovecot/istream-base64-encoder.h
include/dovecot/istream-concat.h
include/dovecot/istream-crlf.h
include/dovecot/istream-dot.h
include/dovecot/istream-header-filter.h
include/dovecot/istream-internal.h
include/dovecot/istream-mail-stats.h
include/dovecot/istream-raw-mbox.h
include/dovecot/istream-seekable.h
include/dovecot/istream-tee.h
include/dovecot/istream.h
include/dovecot/lda-settings.h
include/dovecot/lib-signals.h
include/dovecot/lib.h
include/dovecot/llist.h
include/dovecot/lmtp-client.h
include/dovecot/login-common.h
include/dovecot/login-proxy-state.h
include/dovecot/login-proxy.h
include/dovecot/login-settings.h
include/dovecot/macros.h
include/dovecot/mail-cache-private.h
include/dovecot/mail-cache.h
include/dovecot/mail-copy.h
include/dovecot/mail-deliver.h
include/dovecot/mail-error.h
include/dovecot/mail-index-alloc-cache.h
include/dovecot/mail-index-modseq.h
include/dovecot/mail-index-private.h
include/dovecot/mail-index-strmap.h
include/dovecot/mail-index-sync-private.h
include/dovecot/mail-index-transaction-private.h
include/dovecot/mail-index-util.h
include/dovecot/mail-index-view-private.h
include/dovecot/mail-index.h
include/dovecot/mail-namespace.h
include/dovecot/mail-search-build.h
include/dovecot/mail-search-parser-private.h
include/dovecot/mail-search-parser.h
include/dovecot/mail-search-register.h
include/dovecot/mail-search.h
include/dovecot/mail-send.h
include/dovecot/mail-storage-hooks.h
include/dovecot/mail-storage-private.h
include/dovecot/mail-storage-service.h
include/dovecot/mail-storage-settings.h
include/dovecot/mail-storage.h
include/dovecot/mail-thread.h
include/dovecot/mail-transaction-log-private.h
include/dovecot/mail-transaction-log-view-private.h
include/dovecot/mail-transaction-log.h
include/dovecot/mail-types.h
include/dovecot/mail-user.h
include/dovecot/mailbox-list-delete.h
include/dovecot/mailbox-list-fs.h
include/dovecot/mailbox-list-index-private.h
include/dovecot/mailbox-list-index.h
include/dovecot/mailbox-list-maildir.h
include/dovecot/mailbox-list-private.h
include/dovecot/mailbox-list-subscriptions.h
include/dovecot/mailbox-list.h
include/dovecot/mailbox-log.h
include/dovecot/mailbox-search-result-private.h
include/dovecot/mailbox-tree.h
include/dovecot/mailbox-uidvalidity.h
include/dovecot/maildir-filename.h
include/dovecot/maildir-keywords.h
include/dovecot/maildir-settings.h
include/dovecot/maildir-storage.h
include/dovecot/maildir-sync.h
include/dovecot/maildir-uidlist.h
include/dovecot/master-auth.h
include/dovecot/master-interface.h
include/dovecot/master-login-auth.h
include/dovecot/master-login.h
include/dovecot/master-service-private.h
include/dovecot/master-service-settings-cache.h
include/dovecot/master-service-settings.h
include/dovecot/master-service.h
include/dovecot/mbox-file.h
include/dovecot/mbox-from.h
include/dovecot/mbox-lock.h
include/dovecot/mbox-md5.h
include/dovecot/mbox-settings.h
include/dovecot/mbox-storage.h
include/dovecot/mbox-sync-private.h
include/dovecot/md4.h
include/dovecot/md5.h
include/dovecot/mdbox-file.h
include/dovecot/mdbox-map-private.h
include/dovecot/mdbox-map.h
include/dovecot/mdbox-settings.h
include/dovecot/mdbox-storage-rebuild.h
include/dovecot/mdbox-storage.h
include/dovecot/mdbox-sync.h
include/dovecot/mech-otp-skey-common.h
include/dovecot/mech-plain-common.h
include/dovecot/mech.h
include/dovecot/mempool.h
include/dovecot/message-address.h
include/dovecot/message-date.h
include/dovecot/message-decoder.h
include/dovecot/message-header-decode.h
include/dovecot/message-header-encode.h
include/dovecot/message-header-parser.h
include/dovecot/message-id.h
include/dovecot/message-parser.h
include/dovecot/message-part-serialize.h
include/dovecot/message-search.h
include/dovecot/message-send.h
include/dovecot/message-size.h
include/dovecot/mkdir-parents.h
include/dovecot/mmap-util.h
include/dovecot/module-context.h
include/dovecot/module-dir.h
include/dovecot/mountpoint.h
include/dovecot/mycrypt.h
include/dovecot/network.h
include/dovecot/nfs-workarounds.h
include/dovecot/notify-plugin-private.h
include/dovecot/notify-plugin.h
include/dovecot/ostream-cmp.h
include/dovecot/ostream-internal.h
include/dovecot/ostream.h
include/dovecot/passdb-blocking.h
include/dovecot/passdb-cache.h
include/dovecot/passdb.h
include/dovecot/password-scheme.h
include/dovecot/pop3-capability.h
include/dovecot/pop3-client.h
include/dovecot/pop3-commands.h
include/dovecot/pop3-common.h
include/dovecot/pop3-settings.h
include/dovecot/primes.h
include/dovecot/printf-format-fix.h
include/dovecot/priorityq.h
include/dovecot/process-title.h
include/dovecot/quoted-printable.h
include/dovecot/randgen.h
include/dovecot/raw-storage.h
include/dovecot/raw-sync.h
include/dovecot/read-full.h
include/dovecot/restrict-access.h
include/dovecot/restrict-process-size.h
include/dovecot/rfc2231-parser.h
include/dovecot/rfc822-parser.h
include/dovecot/safe-memset.h
include/dovecot/safe-mkdir.h
include/dovecot/safe-mkstemp.h
include/dovecot/sasl-server.h
include/dovecot/sdbox-file.h
include/dovecot/sdbox-storage.h
include/dovecot/sdbox-sync.h
include/dovecot/sendfile-util.h
include/dovecot/seq-range-array.h
include/dovecot/service-settings.h
include/dovecot/settings-parser.h
include/dovecot/settings.h
include/dovecot/sha1.h
include/dovecot/sha2.h
include/dovecot/shared-storage.h
include/dovecot/smtp-client.h
include/dovecot/sql-api-private.h
include/dovecot/sql-api.h
include/dovecot/sql-db-cache.h
include/dovecot/ssl-proxy.h
include/dovecot/str-find.h
include/dovecot/str-sanitize.h
include/dovecot/str.h
include/dovecot/strescape.h
include/dovecot/strfuncs.h
include/dovecot/strnum.h
include/dovecot/subscription-file.h
include/dovecot/syslog-util.h
include/dovecot/test-common.h
include/dovecot/time-util.h
include/dovecot/unichar.h
include/dovecot/unix-socket-create.h
include/dovecot/unlink-directory.h
include/dovecot/unlink-old-files.h
include/dovecot/userdb-blocking.h
include/dovecot/userdb-static.h
include/dovecot/userdb-vpopmail.h
include/dovecot/userdb.h
include/dovecot/utc-mktime.h
include/dovecot/utc-offset.h
include/dovecot/var-expand.h
include/dovecot/wildcard-match.h
include/dovecot/write-full.h
lib/dovecot/doveadm/lib10_doveadm_expire_plugin.a
lib/dovecot/doveadm/lib10_doveadm_expire_plugin.la
lib/dovecot/doveadm/lib10_doveadm_expire_plugin.so
lib/dovecot/doveadm/lib10_doveadm_quota_plugin.a
lib/dovecot/doveadm/lib10_doveadm_quota_plugin.la
lib/dovecot/doveadm/lib10_doveadm_quota_plugin.so
lib/dovecot/doveadm/lib10_doveadm_zlib_plugin.a
lib/dovecot/doveadm/lib10_doveadm_zlib_plugin.la
lib/dovecot/doveadm/lib10_doveadm_zlib_plugin.so
lib/dovecot/dovecot-config
lib/dovecot/lib01_acl_plugin.a
lib/dovecot/lib01_acl_plugin.la
lib/dovecot/lib01_acl_plugin.so
lib/dovecot/lib02_imap_acl_plugin.a
lib/dovecot/lib02_imap_acl_plugin.la
lib/dovecot/lib02_imap_acl_plugin.so
lib/dovecot/lib02_lazy_expunge_plugin.a
lib/dovecot/lib02_lazy_expunge_plugin.la
lib/dovecot/lib02_lazy_expunge_plugin.so
lib/dovecot/lib10_quota_plugin.a
lib/dovecot/lib10_quota_plugin.la
lib/dovecot/lib10_quota_plugin.so
lib/dovecot/lib11_imap_quota_plugin.a
lib/dovecot/lib11_imap_quota_plugin.la
lib/dovecot/lib11_imap_quota_plugin.so
lib/dovecot/lib11_trash_plugin.a
lib/dovecot/lib11_trash_plugin.la
lib/dovecot/lib11_trash_plugin.so
lib/dovecot/lib15_notify_plugin.a
lib/dovecot/lib15_notify_plugin.la
lib/dovecot/lib15_notify_plugin.so
lib/dovecot/lib20_autocreate_plugin.a
lib/dovecot/lib20_autocreate_plugin.la
lib/dovecot/lib20_autocreate_plugin.so
lib/dovecot/lib20_expire_plugin.a
lib/dovecot/lib20_expire_plugin.la
lib/dovecot/lib20_expire_plugin.so
lib/dovecot/lib20_fts_plugin.a
lib/dovecot/lib20_fts_plugin.la
lib/dovecot/lib20_fts_plugin.so
lib/dovecot/lib20_listescape_plugin.a
lib/dovecot/lib20_listescape_plugin.la
lib/dovecot/lib20_listescape_plugin.so
lib/dovecot/lib20_mail_log_plugin.a
lib/dovecot/lib20_mail_log_plugin.la
lib/dovecot/lib20_mail_log_plugin.so
lib/dovecot/lib20_mbox_snarf_plugin.a
lib/dovecot/lib20_mbox_snarf_plugin.la
lib/dovecot/lib20_mbox_snarf_plugin.so
lib/dovecot/lib20_virtual_plugin.a
lib/dovecot/lib20_virtual_plugin.la
lib/dovecot/lib20_virtual_plugin.so
lib/dovecot/lib20_zlib_plugin.a
lib/dovecot/lib20_zlib_plugin.la
lib/dovecot/lib20_zlib_plugin.so
lib/dovecot/lib21_fts_squat_plugin.a
lib/dovecot/lib21_fts_squat_plugin.la
lib/dovecot/lib21_fts_squat_plugin.so
lib/dovecot/lib30_imap_zlib_plugin.a
lib/dovecot/lib30_imap_zlib_plugin.la
lib/dovecot/lib30_imap_zlib_plugin.so
lib/dovecot/libdovecot-lda.a
lib/dovecot/libdovecot-lda.la
lib/dovecot/libdovecot-lda.so
lib/dovecot/libdovecot-lda.so.0
lib/dovecot/libdovecot-login.a
lib/dovecot/libdovecot-login.la
lib/dovecot/libdovecot-login.so
lib/dovecot/libdovecot-login.so.0
lib/dovecot/libdovecot-storage.a
lib/dovecot/libdovecot-storage.la
lib/dovecot/libdovecot-storage.so
lib/dovecot/libdovecot-storage.so.0
lib/dovecot/libdovecot.a
lib/dovecot/libdovecot.la
lib/dovecot/libdovecot.so
lib/dovecot/libdovecot.so.0
libexec/dovecot/anvil
libexec/dovecot/auth
libexec/dovecot/checkpassword-reply
libexec/dovecot/config
libexec/dovecot/deliver
libexec/dovecot/dict
libexec/dovecot/director
libexec/dovecot/dns-client
libexec/dovecot/doveadm-server
libexec/dovecot/dovecot-lda
libexec/dovecot/gdbhelper
libexec/dovecot/imap
libexec/dovecot/imap-login
libexec/dovecot/listview
libexec/dovecot/lmtp
libexec/dovecot/log
libexec/dovecot/maildirlock
libexec/dovecot/pop3
libexec/dovecot/pop3-login
libexec/dovecot/rawlog
libexec/dovecot/script
libexec/dovecot/script-login
libexec/dovecot/ssl-params
sbin/dovecot
share/aclocal/dovecot.m4
@dirrm libexec/dovecot
@dirrm lib/dovecot/doveadm
@dirrm lib/dovecot/auth
@dirrm lib/dovecot
@dirrm include/dovecot
@dirrmtry etc/dovecot