1<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-Bus Bus Configuration 1.0//EN"
2 "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
3<busconfig>
4
5  <!-- Our well-known bus type, do not change this -->
6  <type>system</type>
7
8  <!-- Only allow socket-credentials-based authentication -->
9  <auth>EXTERNAL</auth>
10
11  <!-- Only listen on a local socket. (abstract=/path/to/socket 
12       means use abstract namespace, don't really create filesystem 
13       file; only Linux supports this. Use path=/whatever on other 
14       systems.) -->
15  <listen>unix:path=/dev/socket/dbus</listen>
16
17  <!-- Allow everything, D-Bus socket is protected by unix filesystem
18       permissions -->
19  <policy context="default">
20    <allow send_interface="*"/>
21    <allow receive_interface="*"/>
22    <allow own="*"/>
23    <allow user="*"/>
24    <allow send_requested_reply="true"/>
25    <allow receive_requested_reply="true"/>
26  </policy>
27</busconfig>
28