Make pool.sks-keyservers.net the default keyserver (closes: #527941).
[pgp-tools.git] / caff / caffrc.sample
1 # $Id$
2 # vim:ft=perl:
3
4 $CONFIG{'owner'} = 'John Doe';
5 $CONFIG{'email'} = 'user@example.com';
6
7 # you can get your long keyid from
8 # gpg --with-colons --list-key <yourkeyid|name|emailaddress..>
9 #
10 # if you have a v4 key, it will simply be the last 16 digits of
11 # your fingerprint.
12
13 # You can define multiple keys below, but be aware that caff will use
14 # the first key defined by default and will not use the second one
15 # unless you explicitly mention it through the -u option on the command-line
16 $CONFIG{'keyid'} = [ qw{DE7AAF6E94C09C7F 62AF4031C82E0039} ];
17 $CONFIG{'also-encrypt-to'} = [ qw{DE7AAF6E94C09C7F} ];
18 $CONFIG{'caffhome'} = $ENV{'HOME'}.'/.caff';
19
20 # The options below need not be changed for normal operation.
21
22 # Paths to GnuPG binaries:
23 # $CONFIG{'gpg'} = 'gpg';
24 # $CONFIG{'gpg-sign'} = $CONFIG{'gpg'};
25 # $CONFIG{'gpg-delsig'} = '/home/weasel/tmp/gpg/gnupg-1.3.92/g10/gpg';
26
27 # defaults to ~/.gnupg/secring.gpg
28 # $CONFIG{'secret-keyring'} = '/tmp/gpg/secring.gpg';
29
30 # Don't export UIDs by default, on which your latest signature is older than this age.
31 # $CONFIG{'export-sig-age'} = 24*60*60;
32
33 # Keyserver to download keys from. Default: pool.sks-keyservers.net.
34 # $CONFIG{'keyserver'} = 'keyserver.kjsl.com';
35
36 # Boolean options, all default to false (0).
37 #
38 # Skip fetching the keys from the keyserver.
39 # $CONFIG{'no-download'} = 1;
40 # Skip signing the keys.
41 # $CONFIG{'no-sign'} = 1;
42 # Ask to continue before starting the signing (for offline signing).
43 # $CONFIG{'ask-sign'} = 1;
44
45 # $CONFIG{'mail-template'} = <<'EOM'
46 # Hi,
47 #
48 # please find attached the user id{(scalar @uids >= 2 ? 's' : '')}
49 # {foreach $uid (@uids) {
50 # $OUT .= "\t".$uid."\n";
51 # };}of your key {$key} signed by me.
52 #
53 # Note that I did not upload your key to any keyservers.
54 # If you have multiple user ids, I sent the signature for each user id
55 # separately to that user id's associated email address. You can import
56 # the signatures by running each through `gpg --import`.
57 #
58 # If you want this new signature to be available to others, please upload
59 # it yourself. With GnuPG this can be done using
60 # gpg --keyserver pool.sks-keyservers.net --send-key {$key}
61 #
62 # If you have any questions, don't hesitate to ask.
63 #
64 # Regards,
65 # {$owner}
66 # EOM