Ticket #39362: patch-thunderbird-fix.diff
File patch-thunderbird-fix.diff, 633 bytes (added by wjb+macport@…, 11 years ago) |
---|
-
crypt.c
a b 393 393 */ 394 394 if (!ascii_strcasecmp (m->description, "S/MIME Encrypted Message")) 395 395 return SMIMEENCRYPT; 396 complain = 1; 396 397 /* Thunderbird 2.0.0.19 doesn't seem to be adding a Content-Description 398 * If we make it all the way here, we know it's not signed as Thunderbird 399 * sets the signed-data correctly, so we're going to assuming it's 400 * encrypted 401 */ 402 403 return SMIMEENCRYPT; 397 404 } 398 405 else if (ascii_strcasecmp (m->subtype, "octet-stream")) 399 406 return 0;