selinux-policy/policy/modules/services/procmail.if

42 lines
798 B
Plaintext
Raw Normal View History

2005-11-15 20:17:18 +00:00
## <summary>Procmail mail delivery agent</summary>
########################################
## <summary>
## Execute procmail with a domain transition.
## </summary>
## <param name="domain">
## <summary>
2005-11-15 20:17:18 +00:00
## Domain allowed access.
## </summary>
2005-11-15 20:17:18 +00:00
## </param>
#
interface(`procmail_domtrans',`
gen_require(`
type procmail_exec_t, procmail_t;
')
files_search_usr($1)
corecmd_search_bin($1)
2006-12-12 20:08:08 +00:00
domtrans_pattern($1,procmail_exec_t,procmail_t)
2005-11-15 20:17:18 +00:00
')
2005-11-15 20:27:49 +00:00
########################################
## <summary>
## Execute procmail in the caller domain.
## </summary>
## <param name="domain">
## <summary>
2005-11-15 20:27:49 +00:00
## Domain allowed access.
## </summary>
2005-11-15 20:27:49 +00:00
## </param>
#
interface(`procmail_exec',`
gen_require(`
type procmail_exec_t;
')
files_search_usr($1)
corecmd_search_bin($1)
can_exec($1,procmail_exec_t)
')