This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new ef1fe1d Don't use keys.openpgp.org - hides too much info by default
ef1fe1d is described below
commit ef1fe1def1f042217cd381ba5ecc1dd67c814328
Author: Sebb <[email protected]>
AuthorDate: Sun Jul 28 20:55:41 2019 +0100
Don't use keys.openpgp.org - hides too much info by default
---
www/secretary/workbench/views/actions/check-signature.json.rb | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/www/secretary/workbench/views/actions/check-signature.json.rb
b/www/secretary/workbench/views/actions/check-signature.json.rb
index 226e305..f3ad27d 100644
--- a/www/secretary/workbench/views/actions/check-signature.json.rb
+++ b/www/secretary/workbench/views/actions/check-signature.json.rb
@@ -7,7 +7,8 @@ ENV['GNUPGHOME'] = GNUPGHOME if GNUPGHOME
#KEYSERVER = 'pgpkeys.mit.edu'
# Perhaps also try keyserver.pgp.com
# see WHIMSY-274 for secure servers
-KEYSERVERS = %w{keys.openpgp.org sks-keyservers.net keyserver.ubuntu.com}
+# Removed keys.openpgp.org as it does not return data such as email unless
user specifically allows this
+KEYSERVERS = %w{sks-keyservers.net keyserver.ubuntu.com}
# N.B. ensure the keyserver URI is known below
MAX_KEY_SIZE = 5000 # don't import if the ascii keyfile is larger than this
message = Mailbox.find(@message)