* Fixed that caff did not detect all invalid keyids (Closes: #317754).
[pgp-tools.git] / caff / caffrc.sample
index b16f3a7fa9ed9645fb86c1d766c26a2b446d1924..e88bea0b43f9fd356e5527924d4becce4a30a8b7 100644 (file)
@@ -1,9 +1,8 @@
-#! perl  <-- get vim to syntax highlight properly
-
 # $Id$
+# vim: syntax=perl
 
-$CONFIG{'owner'}       = 'Peter Palfrader';
-$CONFIG{'email'}       = 'peter@palfrader.org';
+$CONFIG{'owner'}       = 'John Doe';
+$CONFIG{'email'}       = 'user@example.com';
 
 # you can get your long keyid from
 #   gpg --with-colons --list-key <yourkeyid|name|emailaddress..>
@@ -15,7 +14,43 @@ $CONFIG{'keyid'}       = [ qw{DE7AAF6E94C09C7F 62AF4031C82E0039} ];
 $CONFIG{'also-encrypt-to'} = 'DE7AAF6E94C09C7F';
 $CONFIG{'caffhome'}    = $ENV{'HOME'}.'/.caff';
 
+# The options below need not be changed for normal operation.
+
+# Paths to GnuPG binaries:
+# $CONFIG{'gpg'}           = 'gpg';
+# $CONFIG{'gpg-sign'}      = $CONFIG{'gpg'};
 # $CONFIG{'gpg-delsig'}    = '/home/weasel/tmp/gpg/gnupg-1.3.92/g10/gpg';
 
 # defaults to ~/.gnupg/secring.gpg
 # $CONFIG{'secret-keyring'} = '/tmp/gpg/secring.gpg';
+
+# Don't export UIDs by default, on which your latest signature is older than this age.
+# $CONFIG{'export-sig-age'} = 24*60*60;
+
+# Keyserver to download keys from. Default: subkeys.pgp.net.
+# $CONFIG{'keyserver'}      = 'keyserver.kjsl.com';
+
+# If true, then skip the step of fetching keys from the keyserver, or the signing.
+# Default: 0
+# $CONFIG{'no-download'}    = 1;
+# $CONFIG{'no-sign'}        = 1;
+
+
+# $CONFIG{'mail-template'} = <<'EOM'
+# Hi,
+# 
+# please find attached the user id{(scalar @uids >= 2 ? 's' : '')}.
+# {foreach $uid (@uids) {
+#     $OUT .= "\t".$uid."\n";
+# };} of your key {$key} signed by me.
+# 
+# Note that I did not upload your key to any keyservers. If you want this
+# new signature to be available to others, please upload it yourself.
+# With GnuPG this can be done using
+#         gpg --keyserver subkeys.pgp.net --send-key {$key}
+# 
+# If you have any questions, don't hesitate to ask.
+# 
+# Regards,
+# {$owner}
+# EOM