.caffrc 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # .caffrc -- vim:ft=perl:
  2. # This file is in perl(1) format - see caff(1) for details.
  3. $CONFIG{'owner'} = 'Emmanuel Bouthenot';
  4. $CONFIG{'email'} = 'kolter@openics.org';
  5. #$CONFIG{'reply-to'} = 'foo@bla.org';
  6. # You can get your long keyid from
  7. # gpg --with-colons --list-key <yourkeyid|name|emailaddress..>
  8. #
  9. # If you have a v4 key, it will simply be the last 16 digits of
  10. # your fingerprint.
  11. #
  12. # Example:
  13. # $CONFIG{'keyid'} = [ qw{FEDCBA9876543210} ];
  14. # or, if you have more than one key:
  15. # $CONFIG{'keyid'} = [ qw{0123456789ABCDEF 89ABCDEF76543210} ];
  16. #$CONFIG{'keyid'} = [ qw{A475EA19414EC36E 4B077723929D42C3} ];
  17. $CONFIG{'keyid'} = [ qw{4B077723929D42C3} ];
  18. # Select this/these keys to sign with
  19. #$CONFIG{'local-user'} = [ qw{A475EA19414EC36E 4B077723929D42C3} ];
  20. # Additionally encrypt messages for these keyids
  21. #$CONFIG{'also-encrypt-to'} = [ qw{A475EA19414EC36E 4B077723929D42C3} ];
  22. # Mail template to use for the encrypted part
  23. #$CONFIG{'mail-template'} = << 'EOM';
  24. #Hi,
  25. #
  26. #please find attached the user id{(scalar @uids >= 2 ? 's' : '')}
  27. #{foreach $uid (@uids) {
  28. # $OUT .= "\t".$uid."\n";
  29. #};}of your key {$key} signed by me.
  30. #
  31. #If you have multiple user ids, I sent the signature for each user id
  32. #separately to that user id's associated email address. You can import
  33. #the signatures by running each through `gpg --import`.
  34. #
  35. #Note that I did not upload your key to any keyservers. If you want this
  36. #new signature to be available to others, please upload it yourself.
  37. #With GnuPG this can be done using
  38. # gpg --keyserver pool.sks-keyservers.net --send-key {$key}
  39. #
  40. #If you have any questions, don't hesitate to ask.
  41. #
  42. #Regards,
  43. #{$owner}
  44. #EOM