All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
3 $CONFIG{'owner'} = 'martin f. krafft';
4 $CONFIG{'email'} = 'caff@pobox.madduck.net';
6 # you can get your long keyid from
7 # gpg --with-colons --list-key <yourkeyid|name|emailaddress..>
9 # if you have a v4 key, it will simply be the last 16 digits of
12 #$CONFIG{'keyid'} = [ qw{220BC883330C4A75} ];
13 #$CONFIG{'also-encrypt-to'} = '220BC883330C4A75';
14 $CONFIG{'keyid'} = [ qw{55C9882D999BBCC4} ];
15 $CONFIG{'also-encrypt-to'} = '55C9882D999BBCC4';
16 $CONFIG{'caffhome'} = $ENV{'VARDIR'}.'/caff';
18 # The options below need not be changed for normal operation.
20 # Paths to GnuPG binaries:
21 # $CONFIG{'gpg'} = 'gpg';
22 # $CONFIG{'gpg-sign'} = $CONFIG{'gpg'};
23 # $CONFIG{'gpg-delsig'} = '/home/weasel/tmp/gpg/gnupg-1.3.92/g10/gpg';
25 # defaults to ~/.gnupg/secring.gpg
26 # $CONFIG{'secret-keyring'} = '/tmp/gpg/secring.gpg';
28 # Don't export UIDs by default, on which your latest signature is older than this age.
29 # $CONFIG{'export-sig-age'} = 24*60*60;
31 # Keyserver to download keys from. Default: subkeys.pgp.net.
32 $CONFIG{'keyserver'} = 'x-hkp://pool.sks-keyservers.net';
34 #$CONFIG{'key-files'} = [ $ENV{'HOME'}.'/.gnupg/pubring.gpg' ];
36 # Boolean options, all default to false (0).
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;
45 # $CONFIG{'mail-template'} = <<'EOM'
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.
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`.
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 subkeys.pgp.net --send-key {$key}
62 # If you have any questions, don't hesitate to ask.