Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/pius-keyring-mgr.1
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ The name of the party. Will be printed in the email sent out.
Only useful with -m.
.IP "\fB\-s\fP \fIKEY\-SERVER\fP, \fB\-\-keyservers=\fP\fIKEY\-SERVER\fP"
Try this keyserver. Specify once for each server (-s foo -s bar).
[default: pool.sks-keyservers.net, pgp.mit.edu, keys.gnupg.net]
[default: pgp.mit.edu, keys.openpgp.org]
.IP "\fB\-t\fP \fITEMP\-DIR\fP, \fB\-\-tmp\-dir=\fP\fITEMP\-DIR\fP"
Directory to put temporary stuff in. [default: \fI/tmp/pius_keyring_mgr_tmp\fP]
.IP "\fB\-T\fP, \fB\-\-print\-default\-email\fP"
Expand Down
4 changes: 2 additions & 2 deletions libpius/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@

Then, don't forget to send it to a keyserver:

gpg --keyserver pool.sks-keyservers.net --send-key %(keyid)s
gpg --keyserver keys.openpgp.org --send-key %(keyid)s

If you have any questions, let me know.

Expand All @@ -99,7 +99,7 @@

Then, don't forget to send it to a keyserver:

gpg --keyserver pool.sks-keyservers.net --send-key %(keyid)s
gpg --keyserver keys.openpgp.org --send-key %(keyid)s

If you have any questions, let me know.

Expand Down
3 changes: 1 addition & 2 deletions pius-keyring-mgr
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,8 @@ from libpius.constants import (
BADKEYS_RE = re.compile(r"00000000|12345678|no pgp key")
LIST_SEP_RE = re.compile(r"\s*,\s*")
DEFAULT_KEYSERVERS = [
"pool.sks-keyservers.net",
"pgp.mit.edu",
"keys.gnupg.net",
"keys.openpgp.org",
]
DEFAULT_GPG_PATH = "/usr/bin/gpg"
DEFAULT_CSV_DELIMITER = ","
Expand Down