# .caffrc -- vim:ft=perl: # This file is in perl(1) format - see caff(1) for details. $CONFIG{'owner'} = 'Firstname Lastname'; $CONFIG{'email'} = 'myname@foo.org'; $CONFIG{'bcc'} = 'myname@foo.org'; #$CONFIG{'reply-to'} = 'foo@bla.org'; # You can get your long keyid from # gpg --with-colons --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{D1AB6707D408DA1F} ]; # Select this/these keys to sign with $CONFIG{'local-user'} = [ qw{D1AB6707D408DA1F} ]; # Additionally encrypt messages for these keyids #$CONFIG{'also-encrypt-to'} = [ qw{662F72D41427727E 0368C2EEBA6C2CB9 B43870502900FEF9 266C3DF770FABD82 53C4E1F2490CA60E B3A27D38C3CEC44F FA920973992A4B3F D6BCC3B1B970940F 3D8AF1B209AC0A6A 8B85073727B464EA 14B24766281A810E 886C9B20F5E61E60 ACBB164BCF73EC4C BB8BA4532B5EDCB0 A97F4B1619BC72F6 B67A978F281CD54F 39EAA4C46D328B75 37A9DBE529B0D14D 54094EE5EC6EF71F 7637654281CFE75D B0FEEB9E71EC9367 F2FD791372ADEBB9 DE701F6CA326CF89 EF6BEEDB696D5811 FA4BE626C9453B41 2956C1AC442DAB27 5BAA47808740B8E3 9418C122B4E24219 02BC42B743E25D1E 63A9C78A56A3416B 307F03201B220AB8 BFFCDDC631816D93 30C5DB032D9BD842 23874C60511A8AE9 57FC96E64900CF83 1076BF61BBAAF270 EFFEE8DABA30F609 8A59C223A4ECDB51 4B9A8F9B12316E99 A5DC96CD0E5BE5C9 DD15A8A31636D1C2 401C3E66D28EBD32 B5C86C84317D28D6 1651620E87256085 0162E9B3B06B6003 2B83E814F8FD1F73 4D8723E5DF5BAA3A E47F8A7DEAD56742 2B9A2218BA3D01C6 53B9C59E2825AA29 848FA9B685CEE68C 9205FEEBEE250ACE F10DE42A6352C545 B9DB2BE83D77A6AB BBD6B58A65CF740F 997A9F17ED7DAEA6 66729DF9CB711CCA DD45D40015E2AFD6 94A792DF8B81EB69 217819A91B3C2A13 98EE733A9DE1EEB1 A395550B9D8235C4 7F0EEF9D539DA29B} ]; $CONFIG{'smtphost'} = 'smtp.host.com' ; $CONFIG{'smtphelo'} = 'myhost.org' ; $CONFIG{'smtpport'} = '1234' ; $CONFIG{'smtpuser'} = 'username' ; $CONFIG{'smtppassword'} = 'password' ; $CONFIG{'smtptls'} = 1 ; # Mail template to use for the encrypted part #$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. # #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`. # #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