Summary | fetch keyserver fails because of exact=on |
Queue | Horde Groupware Webmail Edition |
Queue Version | 1.0.3 |
Type | Bug |
State | Not A Bug |
Priority | 1. Low |
Owners | |
Requester | skhorde (at) smail (dot) inf (dot) fh-bonn-rhein-sieg (dot) de |
Created | 02/28/2008 (6334 days ago) |
Due | |
Updated | 03/06/2008 (6327 days ago) |
Assigned | |
Resolved | 03/06/2008 (6327 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Not A Bug
1.1-RC2.
State ⇒ Unconfirmed
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ fetch keyserver fails because of exact=on
Queue ⇒ Horde Groupware Webmail Edition
handles it well, but Horde does not find no keys on the server.
The culprit is:
+++ b/var/www/horde/lib/Horde/Crypt/pgp.php Thu Feb 28 13:59:49 2008 +0100
@@ -711,7 +711,7 @@
$fprint = '0x' . $fprint;
/* Connect to the public keyserver. */
- $cmd = 'GET /pks/lookup?op=get&exact=on&search=' . $fprint .
' HTTP/1.0';
+ $cmd = 'GET /pks/lookup?op=get&search=' . $fprint . ' HTTP/1.0';
$output = $this->_connectKeyserver($cmd, $server, $timeout);
if (is_a($output, 'PEAR_Error')) {
return $output;
The implementor defined "exact=on" variables let the request fail.
Without it, it works.