Skip to Content.
Sympa Menu

devel - another one -- outlook and S/MIME sign + encrypt

Subject: Developers of Sympa

List archive

Chronological Thread  
  • From: address@concealed (Christian Mock)
  • To: address@concealed
  • Subject: another one -- outlook and S/MIME sign + encrypt
  • Date: Mon, 28 Jan 2002 16:56:05 +0100

hi,

sympa can't handle outlook generated signed + encrypted mails; the patch
is below.

ciao,

cm.



--- sympa.pl.cmsav Mon Jan 28 15:55:32 2002
+++ sympa.pl Mon Jan 28 16:00:38 2002
@@ -604,16 +604,17 @@
$hdr = $msg->head;
do_log('debug2', "message successfully decrypted");
# do_log('debug2', "xxxx dumped in /tmp/decrypted");
# open (XXDUMP, ">/tmp/decrypted");
# $msg->print(\*XXDUMP);
# close(XXDUMP);
}

}

## S/MIME signed messages
undef $is_signed;
- if ($Conf{'openssl'} && $hdr->get('Content-Type') =~
/multipart\/signed/i) {
+ if ($Conf{'openssl'} && $hdr->get('Content-Type') =~
+ /multipart\/signed|application\/(x-)?pkcs7-mime/i) {
$is_signed = &tools::smime_sign_check ($msg, $sender, $file);
do_log('debug2', "message is signed, signature is checked");
}


--
Christian Mock Wiedner Hauptstrasse 15
Senior Security Engineer 1040 Wien
CoreTEC IT Security Solutions GmbH +43-1-5037273


  • another one -- outlook and S/MIME sign + encrypt, Christian Mock, 01/28/2002

Archive powered by MHonArc 2.6.19+.

Top of Page