Alejandro Colomar
Alejandro Colomar
My first guess was that it would have to do with the number of different IDs that a PGP key has. For example, my key has 3 IDs, and I...
Let's try this: ```sh git clone [email protected]:gpg/gpgme.git; cd gpgme; ./autogen.sh; mkdir .tmp; cd .tmp; ../configure --enable-maintainer-mode; make -j4; make check; cd tests; ./run-keylist your-email-here ``` With the different emails that...
Hmmmm, I think it's more or less this:    I'll check it.
I've applied this diff: ```diff diff --git a/ncrypt/crypt_gpgme.c b/ncrypt/crypt_gpgme.c index 020c2392d..064cd349a 100644 --- a/ncrypt/crypt_gpgme.c +++ b/ncrypt/crypt_gpgme.c @@ -3122,6 +3122,7 @@ static struct CryptKeyInfo *get_candidates(struct ListHead *hints, SecurityFlags while ((err =...
Also, it would be interesting if you can apply that diff to your neomutt, and run it, to see what it prints to stderr.
From what I can see in , I don't see why it's showing 3 lines in your case, but maybe applying the diff reveals something.
> Also, it would be interesting if you can apply that diff to your neomutt, and run it, to see what it prints to stderr. Hi @CaveSven , Did you...
Please don't merge soon. It's already finished, and ready for review, but I want to review it myself again after you review it. I may have accidentally broken something, and...
> A quick skim of the changes and they look rational :-) > > How did you make the changes? Manually, [Coccinelle](https://github.com/neomutt/coccinelle), or some other tool? > > Edit: I'd...
Hi @gahr ! First of all, sorry! I want to write detailed commit messages that document why these macros are necessary, and how they address every of those concerns that...