2006-04-05 18:07:51 +00:00
|
|
|
## <summary>Postfix grey-listing server</summary>
|
2006-07-28 15:13:58 +00:00
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
2008-12-03 19:16:20 +00:00
|
|
|
## Write to postgrey socket
|
2006-07-28 15:13:58 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2008-12-03 19:16:20 +00:00
|
|
|
## <summary>
|
|
|
|
## Domain allowed to talk to postgrey
|
|
|
|
## </summary>
|
2006-07-28 15:13:58 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`postgrey_stream_connect',`
|
2008-12-03 18:33:19 +00:00
|
|
|
gen_require(`
|
|
|
|
type postgrey_var_run_t, postgrey_t, postgrey_spool_t;
|
|
|
|
')
|
2006-07-28 15:13:58 +00:00
|
|
|
|
2008-11-11 16:38:34 +00:00
|
|
|
stream_connect_pattern($1, postgrey_var_run_t, postgrey_var_run_t, postgrey_t)
|
|
|
|
stream_connect_pattern($1, postgrey_spool_t, postgrey_spool_t, postgrey_t)
|
2006-07-28 15:13:58 +00:00
|
|
|
files_search_pids($1)
|
|
|
|
')
|
2008-11-11 16:38:34 +00:00
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
2008-12-03 19:16:20 +00:00
|
|
|
## Search the spool directory
|
2008-11-11 16:38:34 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2008-12-03 19:16:20 +00:00
|
|
|
## <summary>
|
|
|
|
## Domain allowed access
|
|
|
|
## </summary>
|
2008-11-11 16:38:34 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`postgrey_search_spool',`
|
2008-12-03 18:33:19 +00:00
|
|
|
gen_require(`
|
|
|
|
type postgrey_spool_t;
|
|
|
|
')
|
2008-11-11 16:38:34 +00:00
|
|
|
|
|
|
|
allow $1 postgrey_spool_t:dir search_dir_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## All of the rules required to administrate
|
|
|
|
## an postgrey environment
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
## <param name="role">
|
|
|
|
## <summary>
|
|
|
|
## The role to be allowed to manage the postgrey domain.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
## <rolecap/>
|
|
|
|
#
|
|
|
|
interface(`postgrey_admin',`
|
|
|
|
gen_require(`
|
|
|
|
type postgrey_t, postgrey_etc_t;
|
|
|
|
type postgrey_var_lib_t, postgrey_var_run_t;
|
|
|
|
type postgrey_initrc_exec_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 postgrey_t:process { ptrace signal_perms };
|
|
|
|
ps_process_pattern($1, postgrey_t)
|
|
|
|
|
|
|
|
init_labeled_script_domtrans($1, postgrey_initrc_exec_t)
|
|
|
|
domain_system_change_exemption($1)
|
|
|
|
role_transition $2 postgrey_initrc_exec_t system_r;
|
|
|
|
allow $2 system_r;
|
|
|
|
|
|
|
|
files_list_etc($1)
|
|
|
|
admin_pattern($1, postgrey_etc_t)
|
|
|
|
|
|
|
|
files_list_var_lib($1)
|
|
|
|
admin_pattern($1, postgrey_var_lib_t)
|
|
|
|
|
|
|
|
files_list_pids($1)
|
|
|
|
admin_pattern($1, postgrey_var_run_t)
|
|
|
|
')
|