Non-ascii characters in SSID crashes NM

2006-01-06 Thread Martin Høy
Hello,

A user reported to me that NM crashes when the SSID of on of the
detected wireless networks contained non-ascii characters, in this
case the Norwegian letters å and ø.
(In Norwegian, wireless is trådløs.)

The mentioned user runs FC3 and NM-0.3.4-4.1.0.fc3, but i though this
was worth mentioning anyway, in case the bug is still present in the
current versions.


Regards,

Martin
--
___
NetworkManager-list mailing list
NetworkManager-list@gnome.org
http://mail.gnome.org/mailman/listinfo/networkmanager-list


password keyring for vpn - kde

2006-01-06 Thread Terry
Is there a service that needs to run for this to work?  Under KDE, I
get a prompt to save the passwords but get this error:

** (nm-vpnc-auth-dialog:7627): WARNING **: Couldn't store password in
keyring, code 2

Any ideas?

Thanks!
___
NetworkManager-list mailing list
NetworkManager-list@gnome.org
http://mail.gnome.org/mailman/listinfo/networkmanager-list


Re: password keyring for vpn - kde

2006-01-06 Thread Will Stephenson
On Friday 06 January 2006 16:53, Robert Love wrote:
 On Fri, 2006-01-06 at 09:51 -0600, Terry wrote:
  Is there a service that needs to run for this to work?  Under KDE, I
  get a prompt to save the passwords but get this error:

 gnome-keyring.

Robert, can you explain how to start gnome-keyring-daemon outside of a gnome 
session such that gnome apps can access it?  As I understand the 
gnome-session binary, it starts gnome-keyring-daemon and then exports the 
GNOME_KEYRING_SOCKET and GNOME_KEYRING_PID that gkd outputs, then apps read 
these to find out where to talk to the daemon.  I tried doing this by hand 
but it didn't work.

Terry: we're working on a native KDE applet, watch this space.

Will
___
NetworkManager-list mailing list
NetworkManager-list@gnome.org
http://mail.gnome.org/mailman/listinfo/networkmanager-list


Re: password keyring for vpn - kde

2006-01-06 Thread Terry
Found it.  gnome-keyring-daemon.  Thanks again.



On 1/6/06, Robert Love [EMAIL PROTECTED] wrote:
 On Fri, 2006-01-06 at 09:51 -0600, Terry wrote:
  Is there a service that needs to run for this to work?  Under KDE, I
  get a prompt to save the passwords but get this error:

 gnome-keyring.

 Robert Love



___
NetworkManager-list mailing list
NetworkManager-list@gnome.org
http://mail.gnome.org/mailman/listinfo/networkmanager-list


Re: password keyring for vpn - kde

2006-01-06 Thread Robert Love
On Fri, 2006-01-06 at 17:01 +0100, Will Stephenson wrote:

 Robert, can you explain how to start gnome-keyring-daemon outside of a gnome 
 session such that gnome apps can access it?  As I understand the 
 gnome-session binary, it starts gnome-keyring-daemon and then exports the 
 GNOME_KEYRING_SOCKET and GNOME_KEYRING_PID that gkd outputs, then apps read 
 these to find out where to talk to the daemon.  I tried doing this by hand 
 but it didn't work.

The above should work, but you need to do it in a parent process of all
other applications so that they inherit the environment variables.
E.g., KDE's equivalent of gnome-session.

Running gnome-keyring-daemon by hand and manually creating the
environment variables should also work.

libgnome-keyring should run the daemon if needed -- would be a nice
feature.

Robert Love


___
NetworkManager-list mailing list
NetworkManager-list@gnome.org
http://mail.gnome.org/mailman/listinfo/networkmanager-list


Re: password keyring for vpn - kde

2006-01-06 Thread Robert Love
On Fri, 2006-01-06 at 09:51 -0600, Terry wrote:
 Is there a service that needs to run for this to work?  Under KDE, I
 get a prompt to save the passwords but get this error:

gnome-keyring.

Robert Love


___
NetworkManager-list mailing list
NetworkManager-list@gnome.org
http://mail.gnome.org/mailman/listinfo/networkmanager-list


Re: password keyring for vpn - kde

2006-01-06 Thread David Zeuthen
On Fri, 2006-01-06 at 11:08 -0500, Robert Love wrote:
 libgnome-keyring should run the daemon if needed -- would be a nice
 feature.

In my view, it should just use D-BUS and activation on the session bus.

Of course, this only reduces the problem to getting vendors to spawn the
session message bus (that also uses an environment variable with the
socket address) from gnome-session etc.

David


___
NetworkManager-list mailing list
NetworkManager-list@gnome.org
http://mail.gnome.org/mailman/listinfo/networkmanager-list


Re: password keyring for vpn - kde

2006-01-06 Thread Neal Becker
On Friday 06 January 2006 11:01 am, Will Stephenson wrote:
 On Friday 06 January 2006 16:53, Robert Love wrote:
  On Fri, 2006-01-06 at 09:51 -0600, Terry wrote:
   Is there a service that needs to run for this to work?  Under KDE, I
   get a prompt to save the passwords but get this error:
 
  gnome-keyring.

 Robert, can you explain how to start gnome-keyring-daemon outside of a
 gnome session such that gnome apps can access it?  As I understand the
 gnome-session binary, it starts gnome-keyring-daemon and then exports the
 GNOME_KEYRING_SOCKET and GNOME_KEYRING_PID that gkd outputs, then apps read
 these to find out where to talk to the daemon.  I tried doing this by hand
 but it didn't work.

 Terry: we're working on a native KDE applet, watch this space.


In .kde/env:

#!/bin/sh
#

# gnome keyring daemon
# set env vars, much like ssh-agent
eval `gnome-keyring-daemon`
export GNOME_KEYRING_PID GNOME_KEYRING_SOCKET
set | grep GNOME

# start-custom.sh

In .kde/shutdown:

#!/bin/sh
#

# kill any gnome keyring daemons that we were using
if [ -n $GNOME_KEYRING_PID ]; then
   echo killing gnome-keyring-damon $GNOME_KEYRING_PID
   kill $GNOME_KEYRING_PID
fi
___
NetworkManager-list mailing list
NetworkManager-list@gnome.org
http://mail.gnome.org/mailman/listinfo/networkmanager-list


Re: password keyring for vpn - kde

2006-01-06 Thread Terry
On 1/6/06, Neal Becker [EMAIL PROTECTED] wrote:
 On Friday 06 January 2006 11:01 am, Will Stephenson wrote:
  On Friday 06 January 2006 16:53, Robert Love wrote:
   On Fri, 2006-01-06 at 09:51 -0600, Terry wrote:
Is there a service that needs to run for this to work?  Under KDE, I
get a prompt to save the passwords but get this error:
  
   gnome-keyring.
 
  Robert, can you explain how to start gnome-keyring-daemon outside of a
  gnome session such that gnome apps can access it?  As I understand the
  gnome-session binary, it starts gnome-keyring-daemon and then exports the
  GNOME_KEYRING_SOCKET and GNOME_KEYRING_PID that gkd outputs, then apps read
  these to find out where to talk to the daemon.  I tried doing this by hand
  but it didn't work.
 
  Terry: we're working on a native KDE applet, watch this space.
 

 In .kde/env:

 #!/bin/sh
 #

 # gnome keyring daemon
 # set env vars, much like ssh-agent
 eval `gnome-keyring-daemon`
 export GNOME_KEYRING_PID GNOME_KEYRING_SOCKET
 set | grep GNOME

 # start-custom.sh

 In .kde/shutdown:

 #!/bin/sh
 #

 # kill any gnome keyring daemons that we were using
 if [ -n $GNOME_KEYRING_PID ]; then
echo killing gnome-keyring-damon $GNOME_KEYRING_PID
kill $GNOME_KEYRING_PID
 fi
 ___

You would then have links to these scripts in .kde/Autostart/ ?
___
NetworkManager-list mailing list
NetworkManager-list@gnome.org
http://mail.gnome.org/mailman/listinfo/networkmanager-list


Re: password keyring for vpn - kde

2006-01-06 Thread Neal Becker
On Friday 06 January 2006 2:39 pm, Terry wrote:
[...]

 You would then have links to these scripts in .kde/Autostart/ ?

No.  That's all.
___
NetworkManager-list mailing list
NetworkManager-list@gnome.org
http://mail.gnome.org/mailman/listinfo/networkmanager-list