Antoine Beaupré <[email protected]> writes: > Can you try this patch? > > diff --git a/monkeysign/ui.py b/monkeysign/ui.py > index ef2b7f6..6c24fe6 100644 > --- a/monkeysign/ui.py > +++ b/monkeysign/ui.py > @@ -344,8 +344,8 @@ expects an EmailFactory email, but will not mail if > nomail is set""" > self.warn(_("""\ > not sending email to %s, as requested, here's the email message: > > -%s""") % (msg.mailto, msg)) > - > +%s""") % (msg.mailto, > msg.create_mail_from_block(msg.tmpkeyring.export_data(msg.keyfpr)))) > + > > class EmailFactory: > """email generator > > If it does what you want I'll create a cleaner interface and factor this > into 1.1.
With that patch I see the unencrypted text of the mail, but it is still base64 encoded, so this patch has removed one step of the process, but for a regular human decoding base64 is probably not ideal. micah -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

