[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Nmh-workers] Forwarding MIME messages?
From: |
Philip Kizer |
Subject: |
Re: [Nmh-workers] Forwarding MIME messages? |
Date: |
Tue, 25 May 2004 21:18:50 -0500 |
Nathan Bailey <address@hidden> wrote:
>Next dev requests/ideas:
> * S/MIME certificate support (decrypting or verifying
> signatures in show/mhl, encrypting in whatnow/post)
It's not "built-in", but I just use the existing tools...when
editing/viewing, I pipe the messages to some scripts that just
call the following, which has worked find for my CLI needs:
Signing:
openssl smime -sign -inkey $KEYS/rsa.key -signer $KEYS/my.crt -certfile
$KEYS/CA.cert
Verifying:
openssl smime -verify -CAfile $KEYS/ca-bundle.crt
Or, like someone else suggested, one of the GUI apps that can tie into the
IMAP/#mh namespace for viewing/sending like Mail.app or Mozilla/Thunderbird.
-philip