~ubuntu-branches/ubuntu/natty/signing-party/natty

« back to all changes in this revision

Viewing changes to caff/caffrc.sample

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Berg
  • Date: 2006-10-29 21:02:56 UTC
  • mfrom: (0.2.2 upstream) (1.1.5 edgy)
  • Revision ID: james.westby@ubuntu.com-20061029210256-bshdok063f9g8wdo
* caff:
  + Fix a bug with checking if we have exactly one or more keys that failed
    downloading.
  + Mention in manpage that keyserver-options is a useful setting in
    .caff/gnupghome/gpg.conf (Closes: #392811).
  + q-p-encode From: header (Closes: #366745).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# $Id: caffrc.sample 277 2006-05-01 11:12:35Z myon $
 
2
# vim:ft=perl:
 
3
 
 
4
$CONFIG{'owner'}       = 'John Doe';
 
5
$CONFIG{'email'}       = 'user@example.com';
 
6
 
 
7
# you can get your long keyid from
 
8
#   gpg --with-colons --list-key <yourkeyid|name|emailaddress..>
 
9
#
 
10
# if you have a v4 key, it will simply be the last 16 digits of
 
11
# your fingerprint.
 
12
 
 
13
$CONFIG{'keyid'}       = [ qw{DE7AAF6E94C09C7F 62AF4031C82E0039} ];
 
14
$CONFIG{'also-encrypt-to'} = [ qw{DE7AAF6E94C09C7F} ];
 
15
$CONFIG{'caffhome'}    = $ENV{'HOME'}.'/.caff';
 
16
 
 
17
# The options below need not be changed for normal operation.
 
18
 
 
19
# Paths to GnuPG binaries:
 
20
# $CONFIG{'gpg'}           = 'gpg';
 
21
# $CONFIG{'gpg-sign'}      = $CONFIG{'gpg'};
 
22
# $CONFIG{'gpg-delsig'}    = '/home/weasel/tmp/gpg/gnupg-1.3.92/g10/gpg';
 
23
 
 
24
# defaults to ~/.gnupg/secring.gpg
 
25
# $CONFIG{'secret-keyring'} = '/tmp/gpg/secring.gpg';
 
26
 
 
27
# Don't export UIDs by default, on which your latest signature is older than this age.
 
28
# $CONFIG{'export-sig-age'} = 24*60*60;
 
29
 
 
30
# Keyserver to download keys from. Default: subkeys.pgp.net.
 
31
# $CONFIG{'keyserver'}      = 'keyserver.kjsl.com';
 
32
 
 
33
# Boolean options, all default to false (0).
 
34
#
 
35
# Skip fetching the keys from the keyserver.
 
36
# $CONFIG{'no-download'}    = 1;
 
37
# Skip signing the keys.
 
38
# $CONFIG{'no-sign'}        = 1;
 
39
# Ask to continue before starting the signing (for offline signing).
 
40
# $CONFIG{'ask-sign'}       = 1;
 
41
 
 
42
# $CONFIG{'mail-template'} = <<'EOM'
 
43
# Hi,
 
44
 
45
# please find attached the user id{(scalar @uids >= 2 ? 's' : '')}
 
46
# {foreach $uid (@uids) {
 
47
#     $OUT .= "\t".$uid."\n";
 
48
# };}of your key {$key} signed by me.
 
49
 
50
# Note that I did not upload your key to any keyservers.
 
51
# If you have multiple user ids, I sent the signature for each user id
 
52
# separately to that user id's associated email address. You can import
 
53
# the signatures by running each through `gpg --import`.
 
54
 
55
# If you want this new signature to be available to others, please upload
 
56
# it yourself. With GnuPG this can be done using
 
57
#       gpg --keyserver subkeys.pgp.net --send-key {$key}
 
58
 
59
# If you have any questions, don't hesitate to ask.
 
60
 
61
# Regards,
 
62
# {$owner}
 
63
# EOM