Set mail-template in caffrc.sample
[pgp-tools.git] / caff / caffrc.sample
1 # $Id$
2 # vim: syntax=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 $CONFIG{'keyid'} = [ qw{DE7AAF6E94C09C7F 62AF4031C82E0039} ];
14 $CONFIG{'also-encrypt-to'} = 'DE7AAF6E94C09C7F';
15 $CONFIG{'caffhome'} = $ENV{'HOME'}.'/.caff';
16
17 # The options below need not be changed for normal operation.
18
19 # Paths to GnuPG binaries:
20 # $CONFIG{'gpg'} = 'gpg';
21 # $CONFIG{'gpg-sign'} = $CONFIG{'gpg'};
22 # $CONFIG{'gpg-delsig'} = '/home/weasel/tmp/gpg/gnupg-1.3.92/g10/gpg';
23
24 # defaults to ~/.gnupg/secring.gpg
25 # $CONFIG{'secret-keyring'} = '/tmp/gpg/secring.gpg';
26
27 # Don't export UIDs by default, on which your latest signature is older than this age.
28 # $CONFIG{'export-sig-age'} = 24*60*60;
29
30 # Keyserver to download keys from. Default: subkeys.pgp.net.
31 # $CONFIG{'keyserver'} = 'keyserver.kjsl.com';
32
33 # If true, then skip the step of fetching keys from the keyserver, or the signing.
34 # Default: 0
35 # $CONFIG{'no-download'} = 1;
36 # $CONFIG{'no-sign'} = 1;
37
38
39 # $CONFIG{'mail-template'} = <<'EOM'
40 # Hi,
41 #
42 # please find attached the user id{(scalar @uids >= 2 ? 's' : '')}.
43 # {foreach $uid (@uids) {
44 # $OUT .= "\t".$uid."\n";
45 # };} of your key {$key} signed by me.
46 #
47 # Note that I did not upload your key to any keyservers. If you want this
48 # new signature to be available to others, please upload it yourself.
49 # With GnuPG this can be done using
50 # gpg --keyserver subkeys.pgp.net --send-key {$key}
51 #
52 # If you have any questions, don't hesitate to ask.
53 #
54 # Regards,
55 # {$owner}
56 # EOM