## Procmail mail delivery agent.
########################################
##
## Execute procmail with a domain transition.
##
##
##
## Domain allowed to transition.
##
##
#
interface(`procmail_domtrans',`
gen_require(`
type procmail_exec_t, procmail_t;
')
corecmd_search_bin($1)
domtrans_pattern($1, procmail_exec_t, procmail_t)
')
########################################
##
## Execute procmail in the caller domain.
##
##
##
## Domain allowed access.
##
##
#
interface(`procmail_exec',`
gen_require(`
type procmail_exec_t;
')
corecmd_search_bin($1)
can_exec($1, procmail_exec_t)
')
########################################
##
## Create, read, write, and delete
## procmail home files.
##
##
##
## Domain allowed access.
##
##
#
interface(`procmail_manage_home_files',`
gen_require(`
type procmail_home_t;
')
userdom_search_user_home_dirs($1)
allow $1 procmail_home_t:file manage_file_perms;
')
########################################
##
## Read procmail user home content files.
##
##
##
## Domain allowed access.
##
##
#
interface(`procmail_read_home_files',`
gen_require(`
type procmail_home_t;
')
userdom_search_user_home_dirs($1)
allow $1 procmail_home_t:file read_file_perms;
')
########################################
##
## Relabel procmail home files.
##
##
##
## Domain allowed access.
##
##
#
interface(`procmail_relabel_home_files',`
gen_require(`
type procmail_home_t;
')
userdom_search_user_home_dirs($1)
allow $1 procmail_home_t:file relabel_file_perms;
')
########################################
##
## Create objects in user home
## directories with the procmail home type.
##
##
##
## Domain allowed access.
##
##
##
##
## Class of the object being created.
##
##
##
##
## The name of the object being created.
##
##
#
interface(`procmail_home_filetrans_procmail_home',`
gen_require(`
type procmail_home_t;
')
userdom_user_home_dir_filetrans($1, procmail_home_t, $2, $3)
')
########################################
##
## Read procmail tmp files.
##
##
##
## Domain allowed access.
##
##
#
interface(`procmail_read_tmp_files',`
gen_require(`
type procmail_tmp_t;
')
files_search_tmp($1)
allow $1 procmail_tmp_t:file read_file_perms;
')
########################################
##
## Read and write procmail tmp files.
##
##
##
## Domain allowed access.
##
##
#
interface(`procmail_rw_tmp_files',`
gen_require(`
type procmail_tmp_t;
')
files_search_tmp($1)
rw_files_pattern($1, procmail_tmp_t, procmail_tmp_t)
')