From d0b081ebce6fc5364fcb4d206e5a7985557b54d3 Mon Sep 17 00:00:00 2001 From: jgg <> Date: Sat, 3 Mar 2001 03:13:25 +0000 Subject: [PATCH] Fixed gpg splitting --- ud-mailgate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ud-mailgate b/ud-mailgate index 7a70f66..3cd2f00 100755 --- a/ud-mailgate +++ b/ud-mailgate @@ -204,7 +204,7 @@ def DoDNS(Str,Attrs,DnRecord): # Handle an [almost] arbitary change def HandleChange(Reply,DnRecord,Key): global PlainText; - Lines = string.split(PlainText,"\r\n"); + Lines = re.split("\n *\r",PlainText); Result = ""; Attrs = []; -- 2.20.1