mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 16:35:02 +01:00

dovecot-lda needs - the attach_disconnected flags - read access to /usr/share/dovecot/protocols.d/ - rw for /run/dovecot/auth-userdb References: https://bugs.launchpad.net/bugs/1650827 Acked-by: Steve Beattie <steve@nxnw.org> for 2.9, 2.10 and trunk.
90 lines
2.6 KiB
Text
90 lines
2.6 KiB
Text
# ------------------------------------------------------------------
|
|
#
|
|
# Copyright (C) 2013-2016 Christian Boltz
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of version 2 of the GNU General Public
|
|
# License published by the Free Software Foundation.
|
|
#
|
|
# ------------------------------------------------------------------
|
|
# vim: ft=apparmor
|
|
|
|
#include <tunables/global>
|
|
#include <tunables/dovecot>
|
|
|
|
/usr/lib/dovecot/dovecot-lda flags=(attach_disconnected) {
|
|
#include <abstractions/base>
|
|
#include <abstractions/nameservice>
|
|
#include <abstractions/dovecot-common>
|
|
|
|
capability setuid,
|
|
|
|
@{DOVECOT_MAILSTORE}/ rw,
|
|
@{DOVECOT_MAILSTORE}/** rwkl,
|
|
|
|
/etc/dovecot/** r,
|
|
/proc/*/mounts r,
|
|
owner /tmp/dovecot.lda.* rw,
|
|
/{var/,}run/dovecot/mounts r,
|
|
/run/dovecot/auth-userdb rw,
|
|
/usr/bin/doveconf mrix,
|
|
/usr/lib/dovecot/dovecot-lda mrix,
|
|
/usr/sbin/sendmail Cx,
|
|
/usr/share/dovecot/protocols.d/ r,
|
|
|
|
# Site-specific additions and overrides. See local/README for details.
|
|
#include <local/usr.lib.dovecot.dovecot-lda>
|
|
|
|
|
|
profile /usr/sbin/sendmail flags=(attach_disconnected) {
|
|
# this profile is based on the usr.sbin.sendmail profile in extras
|
|
# and should support both postfix' and sendmail's sendmail binary
|
|
|
|
#include <abstractions/base>
|
|
#include <abstractions/consoles>
|
|
#include <abstractions/nameservice>
|
|
#include <abstractions/user-tmp>
|
|
#include <abstractions/postfix-common>
|
|
|
|
capability sys_ptrace,
|
|
|
|
/etc/aliases rw, # newaliases is a symlink to sendmail, so it's
|
|
/etc/aliases.db rw, # actually the same binary
|
|
/etc/fstab r,
|
|
/etc/hosts.allow r,
|
|
/etc/hosts.deny r,
|
|
/etc/mail/* r,
|
|
/etc/mail/statistics rw,
|
|
/etc/mtab r,
|
|
/etc/postfix/aliases r,
|
|
/etc/postfix/aliases.db rw, # newaliases again
|
|
/etc/sendmail.cf r,
|
|
/etc/sendmail.cw r,
|
|
/etc/shells r,
|
|
/proc/loadavg r,
|
|
/proc/net/if_inet6 r,
|
|
/root/.forward r,
|
|
/root/dead.letter w,
|
|
/usr/bin/procmail Px,
|
|
/usr/lib/postfix/master Px,
|
|
/usr/lib/postfix/showq Px,
|
|
/usr/lib/postfix/smtpd Px,
|
|
/usr/sbin/postalias Px,
|
|
/usr/sbin/postdrop Px,
|
|
/usr/sbin/postfix Px,
|
|
/usr/sbin/postqueue Px,
|
|
/usr/sbin/sendmail mrix,
|
|
/usr/sbin/sendmail.postfix mrix,
|
|
/usr/sbin/sendmail.sendmail mrix,
|
|
/{var/,}run/sendmail.pid rwl,
|
|
/{var/,}run/sm-client.pid rwl,
|
|
/{var/,}run/utmp rw,
|
|
/var/spool/clientmqueue/* rwl,
|
|
/var/spool/mail/* rwl,
|
|
/var/spool/mqueue/* rwl,
|
|
/var/spool/postfix/maildrop/* rwl,
|
|
/var/spool/postfix/public/pickup w,
|
|
/var/spool/postfix/public/qmgr w,
|
|
/var/spool/postfix/public/showq w,
|
|
}
|
|
}
|