SA Bugzilla – Bug 1287
Deduction for digital signature
Last modified: 2002-12-18 21:47:57 UTC
SpamAssassin should deduct for a S/MIME Cryptographic Signature (Digital Signature) Since they require a digital certificate from someone like Thawte or VeriSign, it's a drag for a spammer to have. I don't think bulkmailers support them anyway.
Yes, good idea. Please attach a sample mail so we know what to look for ;)
Created attachment 484 [details] Sample email
I'm not sure 100% what to look for, but I'm pretty sure they will all carry something like: application/x-pkcs7-signature; name="smime.p7s"
thanks Robert, now in CVS.
Great! Not to litter this bug or anything... But when will this and other fixes make an actual release... what I mean to say is, when is the next release?
Subject: Re: [SAdev] Deduction for digital signature > actual release... what I mean to say is, when is the next release? Should happen really soon now. (Jan 2003?)
I searched CVS for this bug, although I'm not to familiar with the source.... What exactly is SpamAssassin looking for? Is it the line: application/x-pkcs7-signature; name="smime.p7s" ? And what is it deducting?
Subject: Re: [SAdev] Deduction for digital signature > I searched CVS for this bug, although I'm not to familiar with the source.... > What exactly is SpamAssassin looking for? Is it the line: no, it's looking for the Content-Type and the attachment type... header __SMIME_SIGNED_HDR Content-Type =~ /multipart\/signed;.*protocol=/i full __SMIME_SIGNED_BODY /\nContent-Type: application\/x-pkcs7-signature;/ meta T_SMIME_SIGNATURE (__SMIME_SIGNED_HDR && __SMIME_SIGNED_BODY) --j.