diff options
author | Havoc Pennington <hp@redhat.com> | 2003-08-20 14:48:04 +0000 |
---|---|---|
committer | Havoc Pennington <hp@redhat.com> | 2003-08-20 14:48:04 +0000 |
commit | d0c588575e3e2911eacb098fac26f02d1010cbfd (patch) | |
tree | ae33b122f0e28611117ad1d8f90c2611c3f99041 /bus/system.conf.in | |
parent | 68a3c593b9e77b33614726363c7b6fd85d113021 (diff) | |
download | dbus-d0c588575e3e2911eacb098fac26f02d1010cbfd.tar.gz |
2003-08-19 Havoc Pennington <hp@pobox.com>
* dbus/dbus-message.c (decode_string_field): support FIELD_SENDER
(dbus_message_is_error): fix this function
* bus/dbus-daemon-1.1: clarify logic on when <deny>/<allow> rules
match
* bus/policy.c (bus_client_policy_check_can_receive): fix code to
reflect clarified man page
(bus_client_policy_check_can_send): ditto
* bus/session.conf.in: fixup
* bus/system.conf.in: fixup
Diffstat (limited to 'bus/system.conf.in')
-rw-r--r-- | bus/system.conf.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bus/system.conf.in b/bus/system.conf.in index bd454ff3..96513a75 100644 --- a/bus/system.conf.in +++ b/bus/system.conf.in @@ -34,16 +34,16 @@ <policy context="default"> <!-- Deny everything then punch holes --> - <deny send="*"/> - <deny receive="*"/> + <deny send_interface="*"/> + <deny receive_interface="*"/> <deny own="*"/> <!-- But allow all users to connect --> <allow user="*"/> <!-- Allow anyone to talk to the message bus --> <!-- FIXME I think currently these allow rules are always implicit even if they aren't in here --> - <allow send_to="org.freedesktop.DBus"/> - <allow receive_from="org.freedesktop.DBus"/> + <allow send_service="org.freedesktop.DBus"/> + <allow receive_service="org.freedesktop.DBus"/> </policy> <!-- Config files are placed here that among other things, punch |