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
6 changes: 3 additions & 3 deletions caff/caff
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ Keyserver to download keys from, passed to gpg(1) as argument to the
"--keyserver" option. (Optional keyserver configuration options may be
provided after the keyserver name.)
Default: the keyserver and keyserver-options defined in
~/.gnupg/gpg.conf if found, otherwise B<pool.sks-keyservers.net>.
~/.gnupg/gpg.conf if found, otherwise B<keys.openpgp.org>.

=item B<no-download> [boolean]

Expand Down Expand Up @@ -1454,7 +1454,7 @@ if ($CONFIG{'no-download'}) {
close $fh;
}
}
$CONFIG{'keyserver'} //= 'pool.sks-keyservers.net';
$CONFIG{'keyserver'} //= 'keys.openpgp.org';
notice("Fetching keys from ".($CONFIG{keyserver} =~ s/\s.*//r).", this may take a while...");

my $gpg = mkGnuPG( homedir => $GNUPGHOME, extra_args => ['--keyserver='.$CONFIG{'keyserver'}] );
Expand Down Expand Up @@ -1920,7 +1920,7 @@ the signatures by running each through `gpg --import`.
Note that I did not upload your key to any keyservers. If you want this
new signature to be available to others, please upload it yourself.
With GnuPG this can be done using
gpg --keyserver pool.sks-keyservers.net --send-key {$key}
gpg --keyserver keys.openpgp.org --send-key {$key}

If you have any questions, don't hesitate to ask.

Expand Down
4 changes: 2 additions & 2 deletions caff/caffrc.sample
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ $CONFIG{'caffhome'} = $ENV{'HOME'}.'/.caff';
# Don't export UIDs by default, on which your latest signature is older than this age.
# $CONFIG{'export-sig-age'} = 24*60*60;

# Keyserver to download keys from. Default: pool.sks-keyservers.net.
# Keyserver to download keys from. Default: keys.openpgp.org.
# $CONFIG{'keyserver'} = 'pgp.surfnet.nl';

# Boolean options, all default to false (0).
Expand All @@ -57,7 +57,7 @@ $CONFIG{'caffhome'} = $ENV{'HOME'}.'/.caff';
#
# If you want this new signature to be available to others, please upload
# it yourself. With GnuPG this can be done using
# gpg --keyserver pool.sks-keyservers.net --send-key {$key}
# gpg --keyserver keys.openpgp.org --send-key {$key}
#
# If you have any questions, don't hesitate to ask.
#
Expand Down