I would like to add rules to my DBus configuration file (in /etc/dbus-1/system.d/MyConfig.conf) which include the wildcard character '*'
For example if I add the line <allow own="*"/>
then any owner is allowed. If I replace this with <allow own="com.MyDomain.MyName"/>
then this limits to a single name.
But what I would like is <allow own="com.MyDomain.*"/>
but this does not seem to work.
Does anyone have a suggestion of how to achieve this?
Thanks
I finally found the information in the dbus-daemon document
From the manual:
This covers what I was trying to achieve