Add a changelog
[pgp-tools.git] / caff / caffrc.sample
index cadc44ee032ac7c5a70fc2de3f5674084e694b9f..c453d5faef7afb1744777df44b69f5a8512b760a 100644 (file)
@@ -1,5 +1,5 @@
 # $Id$
-# vim: syntax=perl
+# vim:ft=perl:
 
 $CONFIG{'owner'}       = 'John Doe';
 $CONFIG{'email'}       = 'user@example.com';
@@ -10,8 +10,11 @@ $CONFIG{'email'}       = 'user@example.com';
 # if you have a v4 key, it will simply be the last 16 digits of
 # your fingerprint.
 
+# You can define multiple keys below, but be aware that caff will use
+# the first key defined by default and will not use the second one
+# unless you explicitly mention it through the -u option on the command-line
 $CONFIG{'keyid'}       = [ qw{DE7AAF6E94C09C7F 62AF4031C82E0039} ];
-$CONFIG{'also-encrypt-to'} = 'DE7AAF6E94C09C7F';
+$CONFIG{'also-encrypt-to'} = [ qw{DE7AAF6E94C09C7F} ];
 $CONFIG{'caffhome'}    = $ENV{'HOME'}.'/.caff';
 
 # The options below need not be changed for normal operation.
@@ -27,8 +30,8 @@ $CONFIG{'caffhome'}    = $ENV{'HOME'}.'/.caff';
 # 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';
+# Keyserver to download keys from. Default: pool.sks-keyservers.net.
+# $CONFIG{'keyserver'}      = 'pgp.surfnet.nl';
 
 # Boolean options, all default to false (0).
 #
@@ -42,10 +45,10 @@ $CONFIG{'caffhome'}    = $ENV{'HOME'}.'/.caff';
 # $CONFIG{'mail-template'} = <<'EOM'
 # Hi,
 # 
-# please find attached the user id{(scalar @uids >= 2 ? 's' : '')}.
+# please find attached the user id{(scalar @uids >= 2 ? 's' : '')}
 # {foreach $uid (@uids) {
 #     $OUT .= "\t".$uid."\n";
-# };} of your key {$key} signed by me.
+# };}of your key {$key} signed by me.
 # 
 # Note that I did not upload your key to any keyservers.
 # If you have multiple user ids, I sent the signature for each user id
@@ -54,7 +57,7 @@ $CONFIG{'caffhome'}    = $ENV{'HOME'}.'/.caff';
 # 
 # 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}
+#      gpg --keyserver pool.sks-keyservers.net --send-key {$key}
 # 
 # If you have any questions, don't hesitate to ask.
 #