Re: config to use gnome-keyring
Jethro Tull <[email protected]>
| Newsgroups | gmane.mail.getmail.user |
|---|---|
| Message-ID | <DB6PR0801MB1718E8A5F0DDBC87167B0A97AD480@DB6PR0801MB1718.eurprd08.prod.outlook.com> |
On -0600, Charles Cazabon wrote: > Jethro Tull <[email protected]> wrote: > > gnome-keyring through secret-tool works with a label and pairs of attributes > > and values to store a password. I'm already using it to make email account > > passwords accessible by msmtp. Setting up getmail to use gnome-keyring would > > create a new keyring and the content would be the same as for the previous > > keyring. It would be more convenient that getmail also uses the label and the > > corresponding pair to retrieve a password from gnome-keyring. > > getmail doesn't use a new keyring; it uses the default keyring and asks for a > secret by user, server name, and protocol. If your keyring has the password > stored under those attributes, it should work. > > Charles > -- it seems actually i don't have the right python libs to run getmail with "--store-password-in-gnome-keyring", so i'm trying to run password_command but it seems i need to know more the way it runs the program specified with the rest of the parameters. I tried the following: password_command = ("/usr/bin/secret-tool", "lookup", "host", "pop-mail.outlook.com", "user", "[email protected]") and i get the following: $ getmail -r gmail_POP getmail version 5.6 Copyright (C) 1998-2012 Charles Cazabon. Licensed under the GNU GPL version 2. SimplePOP3SSLRetriever:[email protected]@pop-mail.outlook.com:995: External password program "/usr/bin/secret-tool" wrote to stderr: secret-tool: must specfy attributes and values in pairs usage: secret-tool store --label='label' attribute value ... secret-tool lookup attribute value ... secret-tool clear attribute value ... secret-tool search [--all] [--details] attribute value ...gmail_POP: operation error (External password program error (exited 2)) i also tried putting the attribute value pairs, e.g. "host pop-mail.outlook.com" in separate fields, or all in just one, nothing worked.