# .caffrc -- vim:ft=perl: # This file is in perl(1) format - see caff(1) for details. $CONFIG{'owner'} = 'Sean Whitton'; $CONFIG{'email'} = 'spwhitton@spwhitton.name'; #$CONFIG{'reply-to'} = 'foo@bla.org'; # You can get your long keyid from # gpg --keyid-format long --list-key # # If you have a v4 key, it will simply be the last 16 digits of # your fingerprint. # # Example: # $CONFIG{'keyid'} = [ qw{FEDCBA9876543210} ]; # or, if you have more than one key: # $CONFIG{'keyid'} = [ qw{0123456789ABCDEF 89ABCDEF76543210} ]; $CONFIG{'keyid'} = [ qw{8DC2487E51ABDD90B5C4753F0F56D0553B6D411B} ]; # Select this/these keys to sign with #$CONFIG{'local-user'} = [ qw{8DC2487E51ABDD90B5C4753F0F56D0553B6D411B} ]; # Additionally encrypt messages for these keyids $CONFIG{'also-encrypt-to'} = [ qw{8DC2487E51ABDD90B5C4753F0F56D0553B6D411B} ]; # Mail template to use for the encrypted part $CONFIG{'mail-template'} = << 'EOM'; Hello, Thank you for meeting up and for the opportunity to exchange PGP signatures. Please find attached the user id{(scalar @uids >= 2 ? 's' : '')} {foreach $uid (@uids) { $OUT .= "\t".$uid."\n"; };}of your key {$key} signed by me. If you have multiple user ids, I sent the signature for each user id separately to that user id's associated email address. You can import the signatures by running each through `gpg --import`. This is a means by which I verify control of the e-mail addresses you claim to control. 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 pool.sks-keyservers.net --send-key {$key} If you have any questions, don't hesitate to ask. Regards, -- {$owner} EOM $CONFIG{'mail'} = 'yes'; # setting this means that we can't selectively sign UIDs -- to do # that, either avoid sending out the unwanted mail messagse (and # delete caff's public keyring containing the unwanted sigs) or turn # this off when need to selectively sign UIDs $CONFIG{'gpg-sign-args'} = "save";