From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/47066 Path: main.gmane.org!not-for-mail From: Mark Trettin Newsgroups: gmane.emacs.gnus.general Subject: pgg + "german speaking" GnuPG Date: Wed, 09 Oct 2002 08:41:23 +0200 Organization: Aachen University of Technology (RWTH), Germany Sender: owner-ding@hpc.uh.edu Message-ID: Reply-To: Mark Trettin NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1034145947 11645 127.0.0.1 (9 Oct 2002 06:45:47 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 9 Oct 2002 06:45:47 +0000 (UTC) Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 17zAbK-00031h-00 for ; Wed, 09 Oct 2002 08:45:46 +0200 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 17zAZR-0005cf-00; Wed, 09 Oct 2002 01:43:49 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Wed, 09 Oct 2002 01:44:30 -0500 (CDT) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id BAA16007 for ; Wed, 9 Oct 2002 01:44:17 -0500 (CDT) Original-Received: (qmail 6209 invoked by alias); 9 Oct 2002 06:43:25 -0000 Original-Received: (qmail 6204 invoked from network); 9 Oct 2002 06:43:25 -0000 Original-Received: from r220-1.rz.rwth-aachen.de (134.130.3.31) by gnus.org with SMTP; 9 Oct 2002 06:43:25 -0000 Original-Received: from r220-1.rz.RWTH-Aachen.DE (relay2.RWTH-Aachen.DE [134.130.3.1]) by r220-1.rz.RWTH-Aachen.DE (8.12.1/8.11.3-2) with ESMTP id g996hN44003111 for ; Wed, 9 Oct 2002 08:43:23 +0200 (MEST) Original-Received: from beldin.mt743742.dialup.rwth-aachen.de (dialin-145-254-135-024.arcor-ip.net [145.254.135.24]) by r220-1.rz.RWTH-Aachen.DE (8.12.1/8.11.3/24) with ESMTP id g996hLrn003097 for ; Wed, 9 Oct 2002 08:43:22 +0200 (MEST) Original-Received: from beldin.mt743742.dialup.rwth-aachen.de ([127.0.0.1]) by beldin.mt743742.dialup.rwth-aachen.de (8.11.3/8.11.3/SuSE Linux 8.11.1-0.5) with ESMTP id g996fN601651 for ; Wed, 9 Oct 2002 08:41:24 +0200 Original-To: Ding X-Face: 2ng|LW~1$MclJ,} N: 50°46' E: 06°05' BOFH excuse #424: operation failed because: there is no message for this error (#1014) --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=mml2015.diff --- 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"))) --=-=-=--