You are not logged in.
Hi all,
When I log into gnome evolution can check my mail without problem. In KDE it keeps asking for my accounts passwords even when I check "save password". Any idea?
Offline
I think the problem is with gnome-keyring-daemon. Can someone tell me how to start this gnome service with kde?
Offline
SOLVED.
Offline
SOLVED.
Please add how thx!
Offline
This is my howto:
kwrite /opt/kde/env/gnome-keyring.sh
chmod +x /opt/kde/env/gnome-keyring.sh
kwrite /opt/kde/shutdown/gnome-keyring.sh
chmod +x /opt/kde/sutdown/gnome-keyring.sh
In the first, I put:
#!/bin/sh
eval `gnome-keyring-daemon`
export GNOME_KEYRING_PID GNOME_KEYRING_SOCKET
set | grep GNOME
And in the second file I put:
#!/bin/sh
if [ -n "$GNOME_KEYRING_PID" ]; then
echo killing gnome-keyring-daemon $GNOME_KEYRING_PID
kill $GNOME_KEYRING_PID fi spencer@jtfc ~ $
Then restart kde.
I noticed that evolution has lost its icons (I had X instead), so now I added this to autostart:
dbus-launch /opt/gnome/libexec/gnome-settings-daemon &
All is good now.
Offline