diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-06-01 04:37:06 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-06-01 04:37:06 +0800 |
commit | e6b36266c76dcdd4eca1c0e2e6f682ca0b9f7dcc (patch) | |
tree | dea3949c456568b65e35be3a4d688ca9841ce9c7 /mail/mail-format.c | |
parent | fb099f5619f60f6c47658c052fae8d9a597b86d6 (diff) | |
download | gsoc2013-evolution-e6b36266c76dcdd4eca1c0e2e6f682ca0b9f7dcc.tar.gz gsoc2013-evolution-e6b36266c76dcdd4eca1c0e2e6f682ca0b9f7dcc.tar.zst gsoc2013-evolution-e6b36266c76dcdd4eca1c0e2e6f682ca0b9f7dcc.zip |
Removed the code to check for the validity of an S/MIME part. Stuff works
2001-05-31 Jeffrey Stedfast <fejj@ximian.com>
* mail-format.c (handle_multipart_signed): Removed the code to
check for the validity of an S/MIME part. Stuff works differently
now.
* mail-crypto.c: Rewrote how the S/MIME stuff is going to work.
svn path=/trunk/; revision=10066
Diffstat (limited to 'mail/mail-format.c')
-rw-r--r-- | mail/mail-format.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mail/mail-format.c b/mail/mail-format.c index af6a870b22..d7d66bed49 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -1576,8 +1576,6 @@ handle_multipart_signed (CamelMimePart *part, const char *mime_type, if (camel_pgp_mime_is_rfc2015_signed (part)) { valid = mail_crypto_pgp_mime_part_verify (part, ex); - } else if (camel_smime_is_smime_v3_signed (part)) { - valid = mail_crypto_smime_part_verify (part, ex); } else { camel_exception_free (ex); return handle_multipart_mixed (part, mime_type, md); |