Escaping of - starting lines
authorjgg <>
Mon, 10 Jan 2000 05:02:51 +0000 (05:02 +0000)
committerjgg <>
Mon, 10 Jan 2000 05:02:51 +0000 (05:02 +0000)
ud-echelon
userdir_gpg.py

index a58c0ec..6d4c38f 100755 (executable)
@@ -24,7 +24,7 @@ def TryGPG(Email):
 
    if string.find(Msg[0],"-----BEGIN PGP SIGNED MESSAGE-----") == -1:
       return None;
-      
+
    Res = GPGCheckSig(Msg[0]);
 
    # Failed to find a matching sig
index d19130d..e0f3feb 100644 (file)
@@ -88,7 +88,7 @@ def GetClearSig(Msg):
       if Msg.getparam('micalg') != None:
           Output = Output + "Hash: %s\r\n"%(string.upper(Msg.getparam('micalg')[4:]));
       Output = Output + "\r\n";
-      Output = Output + Signed.getvalue() + Signature;
+      Output = Output +  string.replace(Signed.getvalue(),"\n---","\n- ---") + Signature;
       return (Output,1);
    else:
       # Just return the message body