]> granicus.if.org Git - mutt/commitdiff
Make GPGME key selection behavior the same as classic-PGP. (see #3950)
authorKevin McCarthy <kevin@8t8.us>
Tue, 13 Jun 2017 00:57:05 +0000 (17:57 -0700)
committerKevin McCarthy <kevin@8t8.us>
Tue, 13 Jun 2017 00:57:05 +0000 (17:57 -0700)
Classic-PGP key selection auto-selected a match if there was a single
strong, valid, address-match result, even if there were other weak
matches.

GPGME was prompting in the same situation, if there were other weak
matches.

Change GPGME to match the classic behavior, as this is more useful and
matches the manual description.

crypt-gpgme.c

index 885509c853517478b1c0c5888dc5a2c596cb7fcf..61f8d8a7719935b44f2ec8de31842d5a2b3746c4 100644 (file)
@@ -4154,14 +4154,9 @@ static crypt_key_t *crypt_getkeybyaddr (ADDRESS * a, short abilities,
   ADDRESS *r, *p;
   LIST *hints = NULL;
 
-  int weak    = 0;
-  int invalid = 0;
-  int addr_match = 0;
   int multi   = 0;
   int this_key_has_strong;
   int this_key_has_addr_match;
-  int this_key_has_weak;
-  int this_key_has_invalid;
   int match;
 
   crypt_key_t *keys, *k;
@@ -4201,8 +4196,6 @@ static crypt_key_t *crypt_getkeybyaddr (ADDRESS * a, short abilities,
           continue;
         }
 
-      this_key_has_weak    = 0;        /* weak but valid match   */
-      this_key_has_invalid = 0;   /* invalid match          */
       this_key_has_strong  = 0;        /* strong and valid match */
       this_key_has_addr_match = 0;
       match                = 0;   /* any match                   */
@@ -4216,9 +4209,8 @@ static crypt_key_t *crypt_getkeybyaddr (ADDRESS * a, short abilities,
           {
             match = 1;
 
-            if (validity & CRYPT_KV_VALID)
-            {
-              if (validity & CRYPT_KV_ADDR)
+            if ((validity & CRYPT_KV_VALID) &&
+                (validity & CRYPT_KV_ADDR))
               {
                 if (validity & CRYPT_KV_STRONGID)
                 {
@@ -4230,11 +4222,6 @@ static crypt_key_t *crypt_getkeybyaddr (ADDRESS * a, short abilities,
                 else
                   this_key_has_addr_match = 1;
               }
-              else
-                this_key_has_weak = 1;
-            }
-            else
-              this_key_has_invalid = 1;
           }
         }
       rfc822_free_address (&r);
@@ -4249,14 +4236,7 @@ static crypt_key_t *crypt_getkeybyaddr (ADDRESS * a, short abilities,
           if (this_key_has_strong)
             the_strong_valid_key = tmp;
           else if (this_key_has_addr_match)
-          {
-            addr_match = 1;
             a_valid_addrmatch_key = tmp;
-          }
-          else if (this_key_has_invalid)
-            invalid = 1;
-          else if (this_key_has_weak)
-            weak = 1;
         }
     }
   
@@ -4273,13 +4253,10 @@ static crypt_key_t *crypt_getkeybyaddr (ADDRESS * a, short abilities,
           else
             k = NULL;
         }
-      else if (the_strong_valid_key && !multi && !weak && !addr_match
-          && !(invalid && option (OPTPGPSHOWUNUSABLE)))
+      else if (the_strong_valid_key && !multi)
         {      
           /* 
-           * There was precisely one strong match on a valid ID, there
-           * were no valid keys with weak matches, and we aren't
-           * interested in seeing invalid keys.
+           * There was precisely one strong match on a valid ID.
            * 
            * Proceed without asking the user.
            */