Hi David,
thanks, I could strace one of the pids of dbus-broker.
That did the job.
https://github.com/cryptomator/cryptomator/issues/935#issuecomment-518551419
Kind regards,
Ralph
Yeah, some time ago SASL-EXTERNAL authentication with user-names was
disabled, since it allows clients to deadlock the system. dbus-broker
never even supported it for those reasons. Unfortunately, the
dbus-java client-implementation sometimes falls back to user-names.
This happens when this module is not available:
Class c = Class.forName("com.sun.security.auth.module.UnixSystem");
If you want to verify that this is indeed the issue, you can try
running this snippet manually in the AppImage module and see whether
it fails:
Class c = Class.forName("com.sun.security.auth.module.UnixSystem");
Method m = c.getMethod("getUid");
Object o = c.newInstance();
long uid = (Long) m.invoke(o);