Initial commit

This commit is contained in:
Eric Renfro 2015-11-13 23:16:19 -05:00
commit 46d21f7099
4 changed files with 30 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
Makefile
tmp
*.pp

0
kolab-local.fc Normal file
View File

1
kolab-local.if Normal file
View File

@ -0,0 +1 @@
## <summary></summary>

26
kolab-local.te Normal file
View File

@ -0,0 +1,26 @@
module kolab-local 1.0.5;
require {
type cyrus_t;
type spamc_exec_t;
type spamd_var_lib_t;
type etc_mail_t;
type var_log_t;
type init_t;
type postfix_master_t;
class file { read write append open execute execute_no_trans getattr ioctl };
class dir { search };
}
#============= cyrus_t ==============
allow cyrus_t init_t:file { read open };
allow cyrus_t etc_mail_t:dir search;
allow cyrus_t spamc_exec_t:file { read open execute execute_no_trans getattr ioctl };
allow cyrus_t spamd_var_lib_t:dir search;
#============= postfix_master_t ==============
#allow postfix_master_t var_log_t:file { append open };
allow postfix_master_t var_log_t:file { write open };