From: jgg <> Date: Tue, 24 Apr 2001 02:13:26 +0000 (+0000) Subject: Mutt brokenness fixes X-Git-Tag: debian_userdir-ldap_0-3-7~108 X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fuserdir-ldap.git;a=commitdiff_plain;h=701528fc8153f150dae52787cca172d8ab4f4bfb Mutt brokenness fixes --- 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: