Gnus development mailing list
 help / color / mirror / Atom feed
From: Mark Trettin <mtr-dev0@gmx.de>
Subject: pgg + "german speaking" GnuPG
Date: Wed, 09 Oct 2002 08:41:23 +0200	[thread overview]
Message-ID: <m3k7ks86v3.fsf@beldin.mt743742.dialup.rwth-aachen.de> (raw)

[-- Attachment #1: Type: text/plain, Size: 731 bytes --]

Hi,

when I switched from gpg to pgg I experienced a minor annoyance. The
security button for signed messages always said 

"[[PGP Signed Part:From unknown user]]" 

even if it was signed by myself. The problem seems to be
`mml2015-gpg-extract-signature-details' which only matches 

`"^\\(gpg: \\)?Good signature from \"\\(.*\\)\"$"'. 

This doesn't work with the "German speaking" version of GnuPG since it
says "Korrekte Unterschrift von". I attached a patch that works for
me. I don't lisp so this is probably not an elegant or even correct
way. 

Bye

	 Mark
-- 
Mark Trettin · Aachen · Germany · Where is Aachen? --> N: 50°46' E: 06°05'
BOFH excuse #424:

operation failed because: there is no message for this error (#1014)

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: mml2015.diff --]
[-- Type: text/x-patch, Size: 544 bytes --]

--- mml2015.el	Mon Oct  7 10:43:45 2002
+++ /home/mark/.xemacs/lisp/mml2015.el	Wed Oct  9 07:30:33 2002
@@ -457,7 +457,10 @@
 			  (car signer)))))
 	      (t
 	       "From unknown user")))
-    (if (re-search-forward "^\\(gpg: \\)?Good signature from \"\\(.*\\)\"$" nil t)	
+    (if (or
+	 (re-search-forward "^\\(gpg: \\)?Good signature from \"\\(.*\\)\"$" nil t)
+	 ;; German "speaking" Version of GnuPG
+	 (re-search-forward "^\\(gpg: \\)?Korrekte Unterschrift von \"\\(.*\\)\"$" nil t))
 	(match-string 2)
       "From unknown user")))
 

             reply	other threads:[~2002-10-09  6:41 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-10-09  6:41 Mark Trettin [this message]
2002-10-09  9:55 ` Florian Weimer
2002-10-10  1:23   ` Simon Josefsson
2002-10-10  6:19     ` Mark Trettin
2002-10-10 15:02       ` Simon Josefsson
2002-10-10 16:22         ` Mark Trettin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m3k7ks86v3.fsf@beldin.mt743742.dialup.rwth-aachen.de \
    --to=mtr-dev0@gmx.de \
    --cc=mtr-usenet@gmx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).