1 # .caffrc -- vim:ft=perl:
 2 # This file is in perl(1) format - see caff(1) for details.
 3
 4 $CONFIG{'owner'} = '';
 5 #$CONFIG{'email'} = 'sdk@enzyan.xxzz.de';
 6 #$CONFIG{'reply-to'} = 'foo@bla.org';
 7
 8 # You can get your long keyid from
 9 #   gpg --with-colons --list-key <yourkeyid|name|emailaddress..>
10 #
11 # If you have a v4 key, it will simply be the last 16 digits of
12 # your fingerprint.
13 #
14 # Example:
15 #   $CONFIG{'keyid'} = [ qw{FEDCBA9876543210} ];
16 #  or, if you have more than one key:
17 #   $CONFIG{'keyid'} = [ qw{0123456789ABCDEF 89ABCDEF76543210} ];
18 #$CONFIG{'keyid'} = [ qw{0123456789abcdef 89abcdef76543210} ];
19
20 # Select this/these keys to sign with
21 #$CONFIG{'local-user'} = [ qw{0123456789abcdef 89abcdef76543210} ];
22
23 # Additionally encrypt messages for these keyids
24 #$CONFIG{'also-encrypt-to'} = [ qw{0123456789abcdef 89abcdef76543210} ];
25
26 # Mail template to use for the encrypted part
27 #$CONFIG{'mail-template'} = << 'EOM';
28 #Hi,
29 #
30 #please find attached the user id{(scalar @uids >= 2 ? 's' : '')}
31 #{foreach $uid (@uids) {
32 #    $OUT .= "\t".$uid."\n";
33 #};}of your key {$key} signed by me.
34 #
35 #If you have multiple user ids, I sent the signature for each user id
36 #separately to that user id's associated email address. You can import
37 #the signatures by running each through `gpg --import`.
38 #
39 #Note that I did not upload your key to any keyservers. If you want this
40 #new signature to be available to others, please upload it yourself.
41 #With GnuPG this can be done using
42 #   gpg --keyserver subkeys.pgp.net --send-key {$key}
43 #
44 #If you have any questions, don't hesitate to ask.
45 #
46 #Regards,
47 #{$owner}
48 #EOM