mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-05 00:41:03 +01:00

Add #include <abstractions/dovecot-common> to the usr.sbin.dovecot profile. Effectively this adds "deny capability block_suspend," which is the only missing part from https://bugs.launchpad.net/apparmor/+bug/1296667/ Also remove "capability setgid," (covered by abstractions/dovecot-common) and "@{PROC}/filesystems r," (part of abstractions/base). Acked-by: John Johansen <john.johansen@canonical.com> (backport of trunk r2840)
66 lines
1.9 KiB
Text
66 lines
1.9 KiB
Text
# ------------------------------------------------------------------
|
|
#
|
|
# Copyright (C) 2009-2013 Canonical Ltd.
|
|
# Copyright (C) 2011-2013 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>
|
|
|
|
/usr/sbin/dovecot {
|
|
#include <abstractions/authentication>
|
|
#include <abstractions/base>
|
|
#include <abstractions/dovecot-common>
|
|
#include <abstractions/mysql>
|
|
#include <abstractions/nameservice>
|
|
#include <abstractions/ssl_certs>
|
|
#include <abstractions/ssl_keys>
|
|
|
|
capability chown,
|
|
capability dac_override,
|
|
capability fsetid,
|
|
capability kill,
|
|
capability net_bind_service,
|
|
capability setuid,
|
|
capability sys_chroot,
|
|
|
|
/etc/dovecot/** r,
|
|
/etc/mtab r,
|
|
/etc/lsb-release r,
|
|
/etc/SuSE-release r,
|
|
@{PROC}/@{pid}/mounts r,
|
|
/usr/bin/doveconf rix,
|
|
/usr/lib/dovecot/anvil Px,
|
|
/usr/lib/dovecot/auth Px,
|
|
/usr/lib/dovecot/config Px,
|
|
/usr/lib/dovecot/dict Px,
|
|
/usr/lib/dovecot/dovecot-auth Pxmr,
|
|
/usr/lib/dovecot/imap Pxmr,
|
|
/usr/lib/dovecot/imap-login Pxmr,
|
|
/usr/lib/dovecot/lmtp Px,
|
|
/usr/lib/dovecot/log Px,
|
|
/usr/lib/dovecot/managesieve Px,
|
|
/usr/lib/dovecot/managesieve-login Pxmr,
|
|
/usr/lib/dovecot/pop3 Px,
|
|
/usr/lib/dovecot/pop3-login Pxmr,
|
|
/usr/lib/dovecot/ssl-build-param rix,
|
|
/usr/lib/dovecot/ssl-params Px,
|
|
/usr/sbin/dovecot mrix,
|
|
/usr/share/dovecot/protocols.d/ r,
|
|
/usr/share/dovecot/protocols.d/** r,
|
|
/var/lib/dovecot/ w,
|
|
/var/lib/dovecot/* rwkl,
|
|
/var/spool/postfix/private/auth w,
|
|
/var/spool/postfix/private/dovecot-lmtp w,
|
|
/{,var/}run/dovecot/ rw,
|
|
/{,var/}run/dovecot/** rw,
|
|
link /{,var/}run/dovecot/** -> /var/lib/dovecot/**,
|
|
|
|
# Site-specific additions and overrides. See local/README for details.
|
|
#include <local/usr.sbin.dovecot>
|
|
}
|