1
<!--
2
3
 This file used to be the system D-BUS configfile for LibOSSO
4
5
 It allows everything, effectively turning the system bus into a
6
 second session bus.  
7
8
 It needs to go, by fixing all system services to configure the
9
 appropriate policy for themselves.
10
11
 -->
12
13
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN"
14
 "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
15
<busconfig>
16
  <policy context="default">
17
    <!-- Allow everything to be sent -->
18
    <allow send_destination="*"/>
19
    <!-- Allow everything to be received -->
20
    <allow receive_sender="*"/>
21
    <!-- Allow anyone to own anything -->
22
    <allow own="*"/>
23
    <!-- Allow any user to connect -->
24
    <allow user="*"/>
25
  </policy>
26
</busconfig>