forked from OwlCyberDefense/refpolicy-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevolution.te
529 lines (399 loc) · 19.9 KB
/
evolution.te
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
policy_module(evolution, 2.7.1)
########################################
#
# Declarations
#
## <desc>
## <p>
## Allow evolution to create and write
## user certificates in addition to
## being able to read them
## </p>
## </desc>
gen_tunable(evolution_manage_user_certs, false)
attribute_role evolution_roles;
type evolution_t;
type evolution_exec_t;
typealias evolution_t alias { user_evolution_t staff_evolution_t sysadm_evolution_t };
typealias evolution_t alias { auditadm_evolution_t secadm_evolution_t };
userdom_user_application_domain(evolution_t, evolution_exec_t)
role evolution_roles types evolution_t;
optional_policy(`
wm_application_domain(evolution_t, evolution_exec_t)
')
type evolution_alarm_t;
type evolution_alarm_exec_t;
typealias evolution_alarm_t alias { user_evolution_alarm_t staff_evolution_alarm_t sysadm_evolution_alarm_t };
typealias evolution_alarm_t alias { auditadm_evolution_alarm_t secadm_evolution_alarm_t };
userdom_user_application_domain(evolution_alarm_t, evolution_alarm_exec_t)
role evolution_roles types evolution_alarm_t;
type evolution_alarm_tmpfs_t;
typealias evolution_alarm_tmpfs_t alias { user_evolution_alarm_tmpfs_t staff_evolution_alarm_tmpfs_t sysadm_evolution_alarm_tmpfs_t };
typealias evolution_alarm_tmpfs_t alias { auditadm_evolution_alarm_tmpfs_t secadm_evolution_alarm_tmpfs_t };
userdom_user_tmpfs_file(evolution_alarm_tmpfs_t)
type evolution_alarm_orbit_tmp_t;
typealias evolution_alarm_orbit_tmp_t alias { user_evolution_alarm_orbit_tmp_t staff_evolution_alarm_orbit_tmp_t sysadm_evolution_alarm_orbit_tmp_t };
typealias evolution_alarm_orbit_tmp_t alias { auditadm_evolution_alarm_orbit_tmp_t secadm_evolution_alarm_orbit_tmp_t };
userdom_user_tmp_file(evolution_alarm_orbit_tmp_t)
type evolution_exchange_t;
type evolution_exchange_exec_t;
typealias evolution_exchange_t alias { user_evolution_exchange_t staff_evolution_exchange_t sysadm_evolution_exchange_t };
typealias evolution_exchange_t alias { auditadm_evolution_exchange_t secadm_evolution_exchange_t };
userdom_user_application_domain(evolution_exchange_t, evolution_exchange_exec_t)
role evolution_roles types evolution_exchange_t;
type evolution_exchange_tmpfs_t;
typealias evolution_exchange_tmpfs_t alias { user_evolution_exchange_tmpfs_t staff_evolution_exchange_tmpfs_t sysadm_evolution_exchange_tmpfs_t };
typealias evolution_exchange_tmpfs_t alias { auditadm_evolution_exchange_tmpfs_t secadm_evolution_exchange_tmpfs_t };
userdom_user_tmpfs_file(evolution_exchange_tmpfs_t)
type evolution_exchange_tmp_t;
typealias evolution_exchange_tmp_t alias { user_evolution_exchange_tmp_t staff_evolution_exchange_tmp_t sysadm_evolution_exchange_tmp_t };
typealias evolution_exchange_tmp_t alias { auditadm_evolution_exchange_tmp_t secadm_evolution_exchange_tmp_t };
userdom_user_tmp_file(evolution_exchange_tmp_t)
type evolution_exchange_orbit_tmp_t;
typealias evolution_exchange_orbit_tmp_t alias { user_evolution_exchange_orbit_tmp_t staff_evolution_exchange_orbit_tmp_t sysadm_evolution_exchange_orbit_tmp_t };
typealias evolution_exchange_orbit_tmp_t alias { auditadm_evolution_exchange_orbit_tmp_t secadm_evolution_exchange_orbit_tmp_t };
userdom_user_tmp_file(evolution_exchange_orbit_tmp_t)
type evolution_home_t;
typealias evolution_home_t alias { user_evolution_home_t staff_evolution_home_t sysadm_evolution_home_t };
typealias evolution_home_t alias { auditadm_evolution_home_t secadm_evolution_home_t };
userdom_user_home_content(evolution_home_t)
type evolution_orbit_tmp_t;
typealias evolution_home_t alias { user_evolution_orbit_tmp_t staff_evolution_orbit_tmp_t sysadm_evolution_orbit_tmp_t };
typealias evolution_home_t alias { auditadm_evolution_orbit_tmp_t secadm_evolution_orbit_tmp_t };
userdom_user_tmp_file(evolution_orbit_tmp_t)
type evolution_server_t;
type evolution_server_exec_t;
typealias evolution_server_t alias { user_evolution_server_t staff_evolution_server_t sysadm_evolution_server_t };
typealias evolution_server_t alias { auditadm_evolution_server_t secadm_evolution_server_t };
userdom_user_application_domain(evolution_server_t, evolution_server_exec_t)
role evolution_roles types evolution_server_t;
type evolution_server_orbit_tmp_t;
typealias evolution_server_orbit_tmp_t alias { user_evolution_server_orbit_tmp_t staff_evolution_server_orbit_tmp_t sysadm_evolution_server_orbit_tmp_t };
typealias evolution_server_orbit_tmp_t alias { auditadm_evolution_server_orbit_tmp_t secadm_evolution_server_orbit_tmp_t };
userdom_user_tmp_file(evolution_server_orbit_tmp_t)
type evolution_tmpfs_t;
typealias evolution_tmpfs_t alias { user_evolution_tmpfs_t staff_evolution_tmpfs_t sysadm_evolution_tmpfs_t };
typealias evolution_tmpfs_t alias { auditadm_evolution_tmpfs_t secadm_evolution_tmpfs_t };
userdom_user_tmpfs_file(evolution_tmpfs_t)
type evolution_webcal_t;
type evolution_webcal_exec_t;
typealias evolution_webcal_t alias { user_evolution_webcal_t staff_evolution_webcal_t sysadm_evolution_webcal_t };
typealias evolution_webcal_t alias { auditadm_evolution_webcal_t secadm_evolution_webcal_t };
userdom_user_application_domain(evolution_webcal_t, evolution_webcal_exec_t)
role evolution_roles types evolution_webcal_t;
type evolution_webcal_tmpfs_t;
typealias evolution_webcal_tmpfs_t alias { user_evolution_webcal_tmpfs_t staff_evolution_webcal_tmpfs_t sysadm_evolution_webcal_tmpfs_t };
typealias evolution_webcal_tmpfs_t alias { auditadm_evolution_webcal_tmpfs_t secadm_evolution_webcal_tmpfs_t };
userdom_user_tmpfs_file(evolution_webcal_tmpfs_t)
########################################
#
# Local policy
#
allow evolution_t self:capability { setgid setuid sys_nice };
allow evolution_t self:process { execmem getsched setsched signal signull };
allow evolution_t self:fifo_file rw_file_perms;
allow evolution_t evolution_home_t:dir manage_dir_perms;
allow evolution_t evolution_home_t:file manage_file_perms;
allow evolution_t evolution_home_t:lnk_file manage_lnk_file_perms;
userdom_user_home_dir_filetrans(evolution_t, evolution_home_t, dir, ".evolution")
userdom_user_home_dir_filetrans(evolution_t, evolution_home_t, dir, ".camel_certs")
allow evolution_t evolution_orbit_tmp_t:dir manage_dir_perms;
allow evolution_t evolution_orbit_tmp_t:file manage_file_perms;
files_tmp_filetrans(evolution_t, evolution_orbit_tmp_t, { dir file })
allow evolution_server_t evolution_orbit_tmp_t:dir manage_dir_perms;
allow evolution_server_t evolution_orbit_tmp_t:file manage_file_perms;
files_tmp_filetrans(evolution_server_t, evolution_orbit_tmp_t, { dir file })
allow evolution_t evolution_tmpfs_t:dir rw_dir_perms;
allow evolution_t evolution_tmpfs_t:file manage_file_perms;
allow evolution_t evolution_tmpfs_t:lnk_file manage_lnk_file_perms;
allow evolution_t evolution_tmpfs_t:sock_file manage_sock_file_perms;
allow evolution_t evolution_tmpfs_t:fifo_file manage_fifo_file_perms;
fs_tmpfs_filetrans(evolution_t, evolution_tmpfs_t, { dir file lnk_file sock_file fifo_file })
allow evolution_t { evolution_alarm_t evolution_server_t }:dir search_dir_perms;
allow evolution_t { evolution_alarm_t evolution_server_t }:file read_file_perms;
stream_connect_pattern(evolution_t, evolution_alarm_orbit_tmp_t, evolution_alarm_orbit_tmp_t, evolution_alarm_t)
stream_connect_pattern(evolution_t, evolution_exchange_orbit_tmp_t, evolution_exchange_orbit_tmp_t, evolution_exchange_t)
stream_connect_pattern(evolution_t, evolution_server_orbit_tmp_t, evolution_server_orbit_tmp_t, evolution_server_t)
can_exec(evolution_t, { evolution_alarm_exec_t evolution_server_exec_t })
kernel_read_kernel_sysctls(evolution_t)
kernel_read_system_state(evolution_t)
kernel_read_network_state(evolution_t)
kernel_read_net_sysctls(evolution_t)
corecmd_exec_bin(evolution_t)
corecmd_exec_shell(evolution_t)
corenet_all_recvfrom_unlabeled(evolution_t)
corenet_all_recvfrom_netlabel(evolution_t)
corenet_tcp_sendrecv_generic_if(evolution_t)
corenet_udp_sendrecv_generic_if(evolution_t)
corenet_raw_sendrecv_generic_if(evolution_t)
corenet_tcp_sendrecv_generic_node(evolution_t)
corenet_udp_sendrecv_generic_node(evolution_t)
corenet_tcp_sendrecv_all_ports(evolution_t)
corenet_udp_sendrecv_all_ports(evolution_t)
corenet_sendrecv_pop_client_packets(evolution_t)
corenet_tcp_connect_pop_port(evolution_t)
corenet_sendrecv_smtp_client_packets(evolution_t)
corenet_tcp_connect_smtp_port(evolution_t)
corenet_sendrecv_innd_client_packets(evolution_t)
corenet_tcp_connect_innd_port(evolution_t)
corenet_sendrecv_ldap_client_packets(evolution_t)
corenet_tcp_connect_ldap_port(evolution_t)
corenet_sendrecv_ipp_client_packets(evolution_t)
corenet_tcp_connect_ipp_port(evolution_t)
dev_read_rand(evolution_t)
dev_read_urand(evolution_t)
domain_dontaudit_read_all_domains_state(evolution_t)
files_map_usr_files(evolution_t)
files_read_usr_files(evolution_t)
fs_dontaudit_getattr_xattr_fs(evolution_t)
fs_getattr_tmpfs(evolution_t)
fs_search_auto_mountpoints(evolution_t)
fs_search_cgroup_dirs(evolution_t)
auth_use_nsswitch(evolution_t)
logging_send_syslog_msg(evolution_t)
miscfiles_read_generic_certs(evolution_t)
miscfiles_read_localization(evolution_t)
udev_read_state(evolution_t)
userdom_use_user_terminals(evolution_t)
tunable_policy(`evolution_manage_user_certs',`
userdom_manage_user_certs(evolution_t)
',`
userdom_dontaudit_manage_user_certs(evolution_t)
userdom_read_user_certs(evolution_t)
')
userdom_manage_user_tmp_dirs(evolution_t)
userdom_manage_user_tmp_files(evolution_t)
userdom_manage_user_home_content_dirs(evolution_t)
userdom_manage_user_home_content_files(evolution_t)
userdom_user_home_dir_filetrans_user_home_content(evolution_t, { dir file })
userdom_write_user_tmp_sockets(evolution_t)
mta_read_config(evolution_t)
xserver_user_x_domain_template(evolution, evolution_t, evolution_tmpfs_t)
xserver_read_xdm_tmp_files(evolution_t)
ifndef(`enable_mls',`
fs_list_dos(evolution_t)
fs_read_dos_files(evolution_t)
fs_search_removable(evolution_t)
fs_read_removable_files(evolution_t)
fs_read_removable_symlinks(evolution_t)
fs_read_iso9660_files(evolution_t)
')
tunable_policy(`use_nfs_home_dirs',`
fs_manage_nfs_dirs(evolution_t)
fs_manage_nfs_files(evolution_t)
fs_manage_nfs_symlinks(evolution_t)
')
tunable_policy(`use_samba_home_dirs',`
fs_manage_cifs_dirs(evolution_t)
fs_manage_cifs_files(evolution_t)
fs_manage_cifs_symlinks(evolution_t)
')
optional_policy(`
automount_read_state(evolution_t)
')
optional_policy(`
cups_read_rw_config(evolution_t)
')
optional_policy(`
dbus_system_bus_client(evolution_t)
dbus_all_session_bus_client(evolution_t)
')
optional_policy(`
gnome_stream_connect_gconf(evolution_t)
')
optional_policy(`
gpg_domtrans(evolution_t)
gpg_signal(evolution_t)
')
optional_policy(`
lpd_run_lpr(evolution_t, evolution_roles)
')
optional_policy(`
mozilla_read_user_home_files(evolution_t)
mozilla_domtrans(evolution_t)
')
optional_policy(`
ooffice_domtrans(evolution_t)
ooffice_rw_tmp_files(evolution_t)
')
optional_policy(`
spamassassin_exec_spamd(evolution_t)
spamassassin_domtrans_client(evolution_t)
spamassassin_domtrans_local_client(evolution_t)
spamassassin_read_spamd_tmp_files(evolution_t)
spamassassin_signal_spamd(evolution_t)
spamassassin_dontaudit_getattr_spamd_tmp_sockets(evolution_t)
')
########################################
#
# Alarm local policy
#
allow evolution_alarm_t self:process { signal getsched };
allow evolution_alarm_t self:fifo_file rw_fifo_file_perms;
allow evolution_alarm_t evolution_alarm_tmpfs_t:dir rw_dir_perms;
allow evolution_alarm_t evolution_alarm_tmpfs_t:file manage_file_perms;
allow evolution_alarm_t evolution_alarm_tmpfs_t:lnk_file manage_lnk_file_perms;
allow evolution_alarm_t evolution_alarm_tmpfs_t:sock_file manage_sock_file_perms;
allow evolution_alarm_t evolution_alarm_tmpfs_t:fifo_file manage_fifo_file_perms;
fs_tmpfs_filetrans(evolution_alarm_t, evolution_alarm_tmpfs_t, { dir file lnk_file sock_file fifo_file })
allow evolution_alarm_t evolution_home_t:dir manage_dir_perms;
allow evolution_alarm_t evolution_home_t:file manage_file_perms;
allow evolution_alarm_t evolution_home_t:lnk_file manage_lnk_file_perms;
userdom_user_home_dir_filetrans(evolution_alarm_t, evolution_home_t, dir, ".evolution")
userdom_user_home_dir_filetrans(evolution_alarm_t, evolution_home_t, dir, ".camel_certs")
stream_connect_pattern(evolution_alarm_t, evolution_orbit_tmp_t, evolution_orbit_tmp_t, evolution_t)
stream_connect_pattern(evolution_alarm_t, evolution_exchange_orbit_tmp_t, evolution_exchange_orbit_tmp_t, evolution_exchange_t)
stream_connect_pattern(evolution_alarm_t, evolution_server_orbit_tmp_t, evolution_server_orbit_tmp_t, evolution_server_t)
kernel_dontaudit_read_system_state(evolution_alarm_t)
dev_read_urand(evolution_alarm_t)
files_read_usr_files(evolution_alarm_t)
fs_dontaudit_getattr_xattr_fs(evolution_alarm_t)
fs_search_auto_mountpoints(evolution_alarm_t)
auth_use_nsswitch(evolution_alarm_t)
miscfiles_read_localization(evolution_alarm_t)
userdom_dontaudit_read_user_home_content_files(evolution_alarm_t)
xserver_user_x_domain_template(evolution_alarm, evolution_alarm_t, evolution_alarm_tmpfs_t)
tunable_policy(`use_nfs_home_dirs',`
fs_manage_nfs_dirs(evolution_alarm_t)
fs_manage_nfs_files(evolution_alarm_t)
fs_manage_nfs_symlinks(evolution_alarm_t)
')
tunable_policy(`use_samba_home_dirs',`
fs_manage_cifs_dirs(evolution_alarm_t)
fs_manage_cifs_files(evolution_alarm_t)
fs_manage_cifs_symlinks(evolution_alarm_t)
')
optional_policy(`
dbus_all_session_bus_client(evolution_alarm_t)
dbus_connect_all_session_bus(evolution_alarm_t)
optional_policy(`
evolution_dbus_chat(evolution_alarm_t)
')
')
optional_policy(`
gnome_stream_connect_gconf(evolution_alarm_t)
')
########################################
#
# Exchange local policy
#
allow evolution_exchange_t self:process getsched;
allow evolution_exchange_t self:fifo_file rw_fifo_file_perms;
allow evolution_exchange_t evolution_home_t:dir manage_dir_perms;
allow evolution_exchange_t evolution_home_t:file manage_file_perms;
allow evolution_exchange_t evolution_home_t:lnk_file manage_lnk_file_perms;
userdom_user_home_dir_filetrans(evolution_exchange_t, evolution_home_t, dir, ".evolution")
userdom_user_home_dir_filetrans(evolution_exchange_t, evolution_home_t, dir, ".camel_certs")
allow evolution_exchange_t evolution_exchange_tmp_t:dir manage_dir_perms;
allow evolution_exchange_t evolution_exchange_tmp_t:file manage_file_perms;
files_tmp_filetrans(evolution_exchange_t, evolution_exchange_tmp_t, { file dir })
allow evolution_exchange_t evolution_exchange_tmpfs_t:dir rw_dir_perms;
allow evolution_exchange_t evolution_exchange_tmpfs_t:file manage_file_perms;
allow evolution_exchange_t evolution_exchange_tmpfs_t:lnk_file manage_lnk_file_perms;
allow evolution_exchange_t evolution_exchange_tmpfs_t:sock_file manage_sock_file_perms;
allow evolution_exchange_t evolution_exchange_tmpfs_t:fifo_file manage_fifo_file_perms;
fs_tmpfs_filetrans(evolution_exchange_t, evolution_exchange_tmpfs_t, { dir file lnk_file sock_file fifo_file })
stream_connect_pattern(evolution_exchange_t, evolution_orbit_tmp_t, evolution_orbit_tmp_t, evolution_t)
stream_connect_pattern(evolution_exchange_t, evolution_server_orbit_tmp_t, evolution_server_orbit_tmp_t, evolution_server_t)
stream_connect_pattern(evolution_exchange_t, evolution_alarm_orbit_tmp_t, evolution_alarm_orbit_tmp_t, evolution_alarm_t)
kernel_read_network_state(evolution_exchange_t)
kernel_read_net_sysctls(evolution_exchange_t)
corecmd_exec_bin(evolution_exchange_t)
dev_read_urand(evolution_exchange_t)
files_read_usr_files(evolution_exchange_t)
fs_search_auto_mountpoints(evolution_exchange_t)
auth_use_nsswitch(evolution_exchange_t)
miscfiles_read_localization(evolution_exchange_t)
userdom_dontaudit_read_user_home_content_files(evolution_exchange_t)
userdom_write_user_tmp_sockets(evolution_exchange_t)
xserver_user_x_domain_template(evolution_exchange, evolution_exchange_t, evolution_exchange_tmpfs_t)
tunable_policy(`use_nfs_home_dirs',`
fs_manage_nfs_dirs(evolution_exchange_t)
fs_manage_nfs_files(evolution_exchange_t)
fs_manage_nfs_symlinks(evolution_exchange_t)
')
tunable_policy(`use_samba_home_dirs',`
fs_manage_cifs_dirs(evolution_exchange_t)
fs_manage_cifs_files(evolution_exchange_t)
fs_manage_cifs_symlinks(evolution_exchange_t)
')
optional_policy(`
gnome_stream_connect_gconf(evolution_exchange_t)
')
########################################
#
# Server local policy
#
allow evolution_server_t self:process { getsched signal };
allow evolution_server_t self:fifo_file { read write };
allow evolution_server_t self:unix_stream_socket { accept connectto listen };
allow evolution_server_t evolution_home_t:dir manage_dir_perms;
allow evolution_server_t evolution_home_t:file manage_file_perms;
allow evolution_server_t evolution_home_t:lnk_file manage_lnk_file_perms;
userdom_user_home_dir_filetrans(evolution_server_t, evolution_home_t, dir, ".evolution")
userdom_user_home_dir_filetrans(evolution_server_t, evolution_home_t, dir, ".camel_certs")
stream_connect_pattern(evolution_server_t, evolution_orbit_tmp_t, evolution_orbit_tmp_t, evolution_t)
stream_connect_pattern(evolution_server_t, evolution_exchange_orbit_tmp_t, evolution_exchange_orbit_tmp_t, evolution_exchange_t)
stream_connect_pattern(evolution_server_t, evolution_alarm_orbit_tmp_t, evolution_alarm_orbit_tmp_t, evolution_alarm_t)
kernel_read_system_state(evolution_server_t)
corecmd_exec_shell(evolution_server_t)
corenet_all_recvfrom_unlabeled(evolution_server_t)
corenet_all_recvfrom_netlabel(evolution_server_t)
corenet_tcp_sendrecv_generic_if(evolution_server_t)
corenet_tcp_sendrecv_generic_node(evolution_server_t)
corenet_sendrecv_http_cache_client_packets(evolution_server_t)
corenet_tcp_sendrecv_http_cache_port(evolution_server_t)
corenet_tcp_connect_http_cache_port(evolution_server_t)
corenet_sendrecv_http_client_packets(evolution_server_t)
corenet_tcp_sendrecv_http_port(evolution_server_t)
corenet_tcp_connect_http_port(evolution_server_t)
dev_read_urand(evolution_server_t)
files_read_usr_files(evolution_server_t)
fs_search_auto_mountpoints(evolution_server_t)
auth_use_nsswitch(evolution_server_t)
miscfiles_read_localization(evolution_server_t)
miscfiles_read_generic_certs(evolution_server_t)
userdom_dontaudit_read_user_home_content_files(evolution_server_t)
tunable_policy(`evolution_manage_user_certs',`
userdom_manage_user_certs(evolution_server_t)
',`
userdom_dontaudit_manage_user_certs(evolution_server_t)
userdom_read_user_certs(evolution_server_t)
')
tunable_policy(`use_nfs_home_dirs',`
fs_manage_nfs_dirs(evolution_server_t)
fs_manage_nfs_files(evolution_server_t)
fs_manage_nfs_symlinks(evolution_server_t)
')
tunable_policy(`use_samba_home_dirs',`
fs_manage_cifs_dirs(evolution_server_t)
fs_manage_cifs_files(evolution_server_t)
fs_manage_cifs_symlinks(evolution_server_t)
')
optional_policy(`
gnome_stream_connect_gconf(evolution_server_t)
')
########################################
#
# Webcal local policy
#
allow evolution_webcal_t evolution_webcal_tmpfs_t:dir rw_dir_perms;
allow evolution_webcal_t evolution_webcal_tmpfs_t:file manage_file_perms;
allow evolution_webcal_t evolution_webcal_tmpfs_t:lnk_file manage_lnk_file_perms;
allow evolution_webcal_t evolution_webcal_tmpfs_t:sock_file manage_sock_file_perms;
allow evolution_webcal_t evolution_webcal_tmpfs_t:fifo_file manage_fifo_file_perms;
fs_tmpfs_filetrans(evolution_webcal_t, evolution_webcal_tmpfs_t, { dir file lnk_file sock_file fifo_file })
corenet_all_recvfrom_unlabeled(evolution_webcal_t)
corenet_all_recvfrom_netlabel(evolution_webcal_t)
corenet_tcp_sendrecv_generic_if(evolution_webcal_t)
corenet_tcp_sendrecv_generic_node(evolution_webcal_t)
corenet_tcp_sendrecv_http_port(evolution_webcal_t)
corenet_tcp_connect_http_port(evolution_webcal_t)
corenet_sendrecv_http_client_packets(evolution_webcal_t)
corenet_tcp_sendrecv_http_cache_port(evolution_webcal_t)
corenet_tcp_connect_http_cache_port(evolution_webcal_t)
corenet_sendrecv_http_cache_client_packets(evolution_webcal_t)
auth_use_nsswitch(evolution_webcal_t)
userdom_search_user_home_dirs(evolution_webcal_t)
userdom_dontaudit_read_user_home_content_files(evolution_webcal_t)
xserver_user_x_domain_template(evolution_webcal, evolution_webcal_t, evolution_webcal_tmpfs_t)