mutt stable branch with some hacks
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix build failure with GPGME 1.8: do not steal the gpgme_ prefix.

+3 -3
+1 -1
crypt-gpgme.c
··· 4944 4944 return verify_sender (h, GPGME_PROTOCOL_CMS); 4945 4945 } 4946 4946 4947 - void gpgme_set_sender (const char *sender) 4947 + void mutt_gpgme_set_sender (const char *sender) 4948 4948 { 4949 4949 mutt_error ("[setting sender] mailbox: %s\n", sender); 4950 4950 FREE (&current_sender);
+1 -1
crypt-gpgme.h
··· 53 53 54 54 int smime_gpgme_verify_sender (HEADER *h); 55 55 56 - void gpgme_set_sender (const char *sender); 56 + void mutt_gpgme_set_sender (const char *sender); 57 57 58 58 #endif
+1 -1
crypt-mod-pgp-gpgme.c
··· 104 104 105 105 static void crypt_mod_pgp_set_sender (const char *sender) 106 106 { 107 - gpgme_set_sender (sender); 107 + mutt_gpgme_set_sender (sender); 108 108 } 109 109 110 110 struct crypt_module_specs crypt_mod_pgp_gpgme =