From 701528fc8153f150dae52787cca172d8ab4f4bfb Mon Sep 17 00:00:00 2001 From: jgg <> Date: Tue, 24 Apr 2001 02:13:26 +0000 Subject: [PATCH] Mutt brokenness fixes --- userdir_gpg.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/userdir_gpg.py b/userdir_gpg.py index 3abc05c..6319d58 100644 --- a/userdir_gpg.py +++ b/userdir_gpg.py @@ -116,9 +116,9 @@ def GetClearSig(Msg,Paranoid = 0): Output = "-----BEGIN PGP SIGNED MESSAGE-----\r\n"; # Semi-evil hack to get the proper hash type inserted in the message if Msg.getparam('micalg') != None: - Output = Output + "Hash: %s\r\n"%(string.upper(Msg.getparam('micalg')[4:])); + Output = Output + "Hash: MD5,SHA1,%s\r\n"%(string.upper(Msg.getparam('micalg')[4:])); Output = Output + "\r\n"; - Output = Output + string.replace(Signed.getvalue(),"\n---","\n- ---") + Signature; + Output = Output + string.replace(Signed.getvalue(),"\n-","\n- -") + Signature; return (Output,1); else: if Paranoid == 0: -- 2.20.1