|
Chris PeBenito |
6f8cda |
## <summary>Courier IMAP and POP3 email servers</summary>
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
########################################
|
|
Chris PeBenito |
6f8cda |
## <summary>
|
|
Chris PeBenito |
6f8cda |
## Template for creating courier server processes.
|
|
Chris PeBenito |
6f8cda |
## </summary>
|
|
Chris PeBenito |
6f8cda |
## <param name="prefix">
|
|
Chris PeBenito |
6f8cda |
## <summary>
|
|
Chris PeBenito |
6f8cda |
## Prefix name of the server process.
|
|
Chris PeBenito |
6f8cda |
## </summary>
|
|
Chris PeBenito |
6f8cda |
## </param>
|
|
Chris PeBenito |
6f8cda |
#
|
|
Chris PeBenito |
6f8cda |
template(`courier_domain_template',`
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
##############################
|
|
Chris PeBenito |
6f8cda |
#
|
|
Chris PeBenito |
6f8cda |
# Declarations
|
|
Chris PeBenito |
6f8cda |
#
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
type courier_$1_t;
|
|
Chris PeBenito |
6f8cda |
type courier_$1_exec_t;
|
|
Chris PeBenito |
6f8cda |
init_daemon_domain(courier_$1_t,courier_$1_exec_t)
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
##############################
|
|
Chris PeBenito |
6f8cda |
#
|
|
Chris PeBenito |
6f8cda |
# Declarations
|
|
Chris PeBenito |
6f8cda |
#
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
allow courier_$1_t self:capability dac_override;
|
|
Chris PeBenito |
6f8cda |
dontaudit courier_$1_t self:capability sys_tty_config;
|
|
Chris PeBenito |
6f8cda |
allow courier_$1_t self:process { setpgid signal_perms };
|
|
Chris PeBenito |
6f8cda |
allow courier_$1_t self:fifo_file { read write getattr };
|
|
Chris PeBenito |
6f8cda |
allow courier_$1_t self:tcp_socket create_stream_socket_perms;
|
|
Chris PeBenito |
6f8cda |
allow courier_$1_t self:udp_socket create_socket_perms;
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
can_exec(courier_$1_t, courier_$1_exec_t)
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
allow courier_$1_t courier_etc_t:file r_file_perms;
|
|
Chris PeBenito |
6f8cda |
allow courier_$1_t courier_etc_t:dir r_dir_perms;
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
allow courier_$1_t courier_var_run_t:dir rw_dir_perms;
|
|
Chris PeBenito |
6f8cda |
allow courier_$1_t courier_var_run_t:file create_file_perms;
|
|
Chris PeBenito |
6f8cda |
allow courier_$1_t courier_var_run_t:lnk_file create_lnk_perms;
|
|
Chris PeBenito |
6f8cda |
allow courier_$1_t courier_var_run_t:sock_file create_file_perms;
|
|
Chris PeBenito |
6f8cda |
files_search_pids(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
kernel_read_system_state(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
kernel_read_kernel_sysctls(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
corecmd_exec_bin(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
b516e8 |
corenet_non_ipsec_sendrecv(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
corenet_tcp_sendrecv_generic_if(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
corenet_udp_sendrecv_generic_if(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
corenet_tcp_sendrecv_all_nodes(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
corenet_udp_sendrecv_all_nodes(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
corenet_tcp_sendrecv_all_ports(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
corenet_udp_sendrecv_all_ports(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
dev_read_sysfs(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
domain_use_interactive_fds(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
files_read_etc_files(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
files_read_etc_runtime_files(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
files_read_usr_files(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
fs_getattr_xattr_fs(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
fs_search_auto_mountpoints(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
term_dontaudit_use_console(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
init_use_fds(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
init_use_script_ptys(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
libs_use_ld_so(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
libs_use_shared_libs(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
logging_send_syslog_msg(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
sysnet_read_config(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
userdom_dontaudit_use_unpriv_user_fds(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
ifdef(`targeted_policy',`
|
|
Chris PeBenito |
6f8cda |
term_dontaudit_use_unallocated_ttys(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
term_dontaudit_use_generic_ptys(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
files_dontaudit_read_root_files(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
')
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
optional_policy(`
|
|
Chris PeBenito |
6f8cda |
seutil_sigchld_newrole(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
')
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
optional_policy(`
|
|
Chris PeBenito |
6f8cda |
udev_read_db(courier_$1_t)
|
|
Chris PeBenito |
6f8cda |
')
|
|
Chris PeBenito |
6f8cda |
')
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
########################################
|
|
Chris PeBenito |
6f8cda |
## <summary>
|
|
Chris PeBenito |
6f8cda |
## Execute the courier authentication daemon with
|
|
Chris PeBenito |
6f8cda |
## a domain transition.
|
|
Chris PeBenito |
6f8cda |
## </summary>
|
|
Chris PeBenito |
6f8cda |
## <param name="prefix">
|
|
Chris PeBenito |
6f8cda |
## <summary>
|
|
Chris PeBenito |
6f8cda |
## Domain allowed access.
|
|
Chris PeBenito |
6f8cda |
## </summary>
|
|
Chris PeBenito |
6f8cda |
## </param>
|
|
Chris PeBenito |
6f8cda |
#
|
|
Chris PeBenito |
6f8cda |
interface(`courier_domtrans_authdaemon',`
|
|
Chris PeBenito |
6f8cda |
gen_require(`
|
|
Chris PeBenito |
6f8cda |
type courier_authdaemon_t, courier_authdaemon_exec_t;
|
|
Chris PeBenito |
6f8cda |
')
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
domain_auto_trans($1, courier_authdaemon_exec_t, courier_authdaemon_t)
|
|
Chris PeBenito |
6f8cda |
allow courier_authdaemon_t $1:fd use;
|
|
Chris PeBenito |
6f8cda |
allow courier_authdaemon_t $1:fifo_file rw_file_perms;
|
|
Chris PeBenito |
6f8cda |
allow courier_authdaemon_t $1:process sigchld;
|
|
Chris PeBenito |
6f8cda |
')
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
########################################
|
|
Chris PeBenito |
6f8cda |
## <summary>
|
|
Chris PeBenito |
6f8cda |
## Execute the courier POP3 and IMAP server with
|
|
Chris PeBenito |
6f8cda |
## a domain transition.
|
|
Chris PeBenito |
6f8cda |
## </summary>
|
|
Chris PeBenito |
6f8cda |
## <param name="prefix">
|
|
Chris PeBenito |
6f8cda |
## <summary>
|
|
Chris PeBenito |
6f8cda |
## Domain allowed access.
|
|
Chris PeBenito |
6f8cda |
## </summary>
|
|
Chris PeBenito |
6f8cda |
## </param>
|
|
Chris PeBenito |
6f8cda |
#
|
|
Chris PeBenito |
6f8cda |
interface(`courier_domtrans_pop',`
|
|
Chris PeBenito |
6f8cda |
gen_require(`
|
|
Chris PeBenito |
6f8cda |
type courier_pop_t, courier_pop_exec_t;
|
|
Chris PeBenito |
6f8cda |
')
|
|
Chris PeBenito |
6f8cda |
|
|
Chris PeBenito |
6f8cda |
domain_auto_trans($1, courier_pop_exec_t, courier_pop_t)
|
|
Chris PeBenito |
6f8cda |
allow courier_pop_t $1:fd use;
|
|
Chris PeBenito |
6f8cda |
allow courier_pop_t $1:fifo_file rw_file_perms;
|
|
Chris PeBenito |
6f8cda |
allow courier_pop_t $1:process sigchld;
|
|
Chris PeBenito |
6f8cda |
')
|