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{55C9882D999BBCC4} ];
13 $CONFIG{'also-encrypt-to'} = '55C9882D999BBCC4';
14 $CONFIG{'caffhome'} = $ENV{'VARDIR'}.'/caff';
16 # The options below need not be changed for normal operation.
18 # Paths to GnuPG binaries:
19 # $CONFIG{'gpg'} = 'gpg';
20 # $CONFIG{'gpg-sign'} = $CONFIG{'gpg'};
21 # $CONFIG{'gpg-delsig'} = '/home/weasel/tmp/gpg/gnupg-1.3.92/g10/gpg';
23 # defaults to ~/.gnupg/secring.gpg
24 # $CONFIG{'secret-keyring'} = '/tmp/gpg/secring.gpg';
26 # Don't export UIDs by default, on which your latest signature is older than this age.
27 # $CONFIG{'export-sig-age'} = 24*60*60;
29 # Keyserver to download keys from. Default: subkeys.pgp.net.
30 $CONFIG{'keyserver'} = 'x-hkp://pool.sks-keyservers.net';
32 # Boolean options, all default to false (0).
34 # Skip fetching the keys from the keyserver.
35 # $CONFIG{'no-download'} = 1;
36 # Skip signing the keys.
37 # $CONFIG{'no-sign'} = 1;
38 # Ask to continue before starting the signing (for offline signing).
39 # $CONFIG{'ask-sign'} = 1;
41 # $CONFIG{'mail-template'} = <<'EOM'
44 # please find attached the user id{(scalar @uids >= 2 ? 's' : '')}.
45 # {foreach $uid (@uids) {
46 # $OUT .= "\t".$uid."\n";
47 # };} of your key {$key} signed by me.
49 # Note that I did not upload your key to any keyservers.
50 # If you have multiple user ids, I sent the signature for each user id
51 # separately to that user id's associated email address. You can import
52 # the signatures by running each through `gpg --import`.
54 # If you want this new signature to be available to others, please upload
55 # it yourself. With GnuPG this can be done using
56 # gpg --keyserver subkeys.pgp.net --send-key {$key}
58 # If you have any questions, don't hesitate to ask.