Taking a look at the code, it would require to adjust
- Queries
- All Stories
- Search
- Advanced Search
- Transactions
- Transaction Logs
Advanced Search
Jan 30 2010
Jan 29 2010
Fixed in SVN 5253. Thanks.
Jan 22 2010
Patch attached.
May I ask for the status? Seems, there were no objections.
Agreed.
Dec 21 2009
Well, should be implemented.
2.0.14 released thus closing.
2.0.14 has been released - closing.
Thanks. Applied to SVN.
Dec 17 2009
Fixed in all branches. rev. 5236. Patch for 1.4.10 below:
Dec 16 2009
I don't think it is wise to change results returned from the backend engine too
much in GPGME. It makes it more confusing to see what's going on by giving
different results for essentially the same operation.
Dec 15 2009
This patch fixes it for me. The problem is the order in that the home directory
is created. Usually it is done while creating a new keyring. Due to
--no-default-keyring no keyring is created and thus when we need to check the
trust the code there creates the directory and failed. I am not sure why I was
not able to replicate it yesterday.
- g10/tdbio.c (revision 5221)
+++ g10/tdbio.c (working copy)
@@ -521,7 +521,8 @@
*p = 0; if( access( fname, F_OK ) ) { try_make_homedir( fname );
- log_fatal( _("%s: directory does not exist!\n"), fname );
+ if (access (fname, F_OK ))
+ log_fatal (_("%s: directory does not exist!\n"), fname);
} *p = save_slash;
I don't understand the code either. I introduced it 10 years ago on Dec 4 when
I consolidated the make home directory logic. Obviously that code path was
never tested. The previous code called log_fatal only if the home directory
name did not end in ".gnupg". A simple fix would be to add another access test
after try_make_homedir.
Dec 14 2009
And the difference is made by the --no-default-keyring switch. Removing it from
the command makes it work too.
In g10/tdbio.c the code is:
It is reproducible here. But the result depends. First what you asked for:
Tested with gpg 1.4.8 and the current SVN versions of 1.4.x and 2.1.x.
All yield the same output.
Sorry, I can't replicate this:
Dec 13 2009
Sorry, you already fixed this. Closing myself.
Dec 11 2009
Dec 4 2009
I don't think this is a proper solution. --default-key has the same problem as
--local-user. What we can do is to fail if a key has been specified in a
non-unique way. Selecting one by chance is a Bad Thing.
These bug reports are sometimes mixing two different issues: The
debian-keyring and r/o keyrings for other purposes.
Sep 15 2009
Sep 8 2009
There is further an "it's" which must be "its". Patch attached.
Patch for 2.
Patch for 1.4.
Sep 6 2009
Sep 3 2009
Wen can look into this during the development of 2.1.
We will do this in 2.1 and maybe backport it later
We need to review the purpose of gpgkey2ssh. It might be easier to integrate
this into one of the other tools.