diff options
author | David Shaw <[email protected]> | 2002-04-29 13:18:53 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2002-04-29 13:18:53 +0000 |
commit | 3d63a818a30a759701cccedf563f40c1b5570f05 (patch) | |
tree | 8e1886ee98f1135362a672668de694f23291bd97 | |
parent | * faq.raw: Inserted Douglas Calvert as new maintainer. Acknowledge (diff) | |
download | gnupg-3d63a818a30a759701cccedf563f40c1b5570f05.tar.gz gnupg-3d63a818a30a759701cccedf563f40c1b5570f05.zip |
* gpgkeys_mailto.in: Properly handle key requests in full fingerprint
form.
-rw-r--r-- | keyserver/ChangeLog | 8 | ||||
-rwxr-xr-x | keyserver/gpgkeys_mailto.in | 4 |
2 files changed, 9 insertions, 3 deletions
diff --git a/keyserver/ChangeLog b/keyserver/ChangeLog index 696b7437f..24871bb57 100644 --- a/keyserver/ChangeLog +++ b/keyserver/ChangeLog @@ -1,6 +1,12 @@ +2002-04-29 David Shaw <[email protected]> + + * gpgkeys_mailto.in: Properly handle key requests in full + fingerprint form. + 2002-03-29 David Shaw <[email protected]> - * gpgkeys_ldap.c (printquoted): Quote backslashes + * gpgkeys_ldap.c (printquoted): Quote backslashes within keyserver + search responses. 2002-02-25 David Shaw <[email protected]> diff --git a/keyserver/gpgkeys_mailto.in b/keyserver/gpgkeys_mailto.in index d978a6797..c31048360 100755 --- a/keyserver/gpgkeys_mailto.in +++ b/keyserver/gpgkeys_mailto.in @@ -1,7 +1,7 @@ #!@PERL@ -w # gpgkeys_mailto - talk to a email keyserver -# Copyright (C) 2001 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002 Free Software Foundation, Inc. # # This file is part of GnuPG. # @@ -104,7 +104,7 @@ if($command=~/get/i || $command=~/search/i) if(length($key)>8) { - $key=substr($key,8); + $key=substr($key,-8); } print MAIL "Subject: GET 0x$key\n\n"; |