From: joey <> Date: Sat, 6 Nov 2004 11:55:16 +0000 (+0000) Subject: Update from samosa: be less conservative when looking for an encrypted message X-Git-Tag: debian_userdir-ldap_0-3-7~34 X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fuserdir-ldap.git;a=commitdiff_plain;h=ccefaf217aab5f1898175f8b48d80d1f88e2fa2f Update from samosa: be less conservative when looking for an encrypted message --- diff --git a/ud-mailgate b/ud-mailgate index 680b14d..ede45ac 100755 --- a/ud-mailgate +++ b/ud-mailgate @@ -360,7 +360,8 @@ try: Msg = GetClearSig(Email); ErrMsg = "Message is not PGP signed:" - if string.find(Msg[0],"-----BEGIN PGP SIGNED MESSAGE-----") == -1: + if string.find(Msg[0],"-----BEGIN PGP SIGNED MESSAGE-----") == -1 and \ + string.find(Msg[0],"-----BEGIN PGP MESSAGE-----") == -1: raise Error, "No PGP signature"; # Check the signature