#! perl <-- get vim to syntax highlight properly ##$CONFIG{'owner'} = 'YOUR NAME'; ##$CONFIG{'email'} = 'sender@some.domain.tld'; # 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. $CONFIG{'keyid'} = [ qw{XXXXXXXXXXXXXXXX} ]; $CONFIG{'also-encrypt-to'} = 'XXXXXXXXXXXXXXXX'; $CONFIG{'caffhome'} = $ENV{'HOME'}.'/.caff'; $CONFIG{'gpg'} = 'agpg'; $CONFIG{'gpg-delsig'} = '/usr/local/gnupg/bin/gpg'; $CONFIG{'secret-keyring'} = '/mnt/secret/.gnupg/secring.gpg'; $CONFIG{'no-download'} = '1'; $CONFIG{'bcc'} = 'SOME@ADRESS_YOU_USE.tld'; $CONFIG{'smtphost'} = 'smtpserver.some.domain.tld' ; $CONFIG{'smtphelo'} = 'yourhost.some.domain.tld' ; #for testing: use nc -l -p 3000 and speak smtp ;) #$CONFIG{'smtphost'} = 'localhost' ; #$CONFIG{'smtpport'} = '3000' ; #For testing: dont send mail to keyholder but to you: #$CONFIG{'smtpforceto'} = 'user@some.domain.tld' ; $CONFIG{'mail-template'} = <<'EOM' Hi, (english version below) im Anhang findest Du die User-Id {(scalar @uids >= 2 ? 's' : '')}. {foreach $uid (@uids) { $OUT .= "\t".$uid."\n"; };} Deines Schluessels {$key}, durch mich unterschrieben. Bitte beachte, dass ich Deinen Schluessel auf keinen Keyserver hochgeladen habe. Wenn Du mehrere User-Ids in Deinem Schluessel hast, bekommst du fuer jede eine separate Email an die angegebene Adresse. Du kannst die Signaturen importieren, indem Du jede mit dem Kommando gpg --import einliest. Wenn Du meine Signaturen veroeffentlichen willst, musst Du Sie selbst hochladen. Dies geht mit GnuPG wie folgt: gpg --keyserver subkeys.pgp.net --send-key {$key} Wenn Du Fragen hast schreibe mir ruhig eine Email! Diese Email wurde mit einer angepassten Version von caff erzeugt, welche direkt mit remote-mailservern per smtp kommunizieren kann. Bei Problemen bitte nicht an die Autoren der Originalversion schreiben. Siehe: http://user.cs.tu-berlin.de/~mutax/mycaff/ ciao, {$owner} =================8<==== ENGLISH VERSION ====8<============================ please find attached the user id{(scalar @uids >= 2 ? 's' : '')}. {foreach $uid (@uids) { $OUT .= "\t".$uid."\n"; };} 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 separately to that user id's associated email address. You can import the signatures by running each through `gpg --import`. 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. This message was sent with a Version of caff by Peter Palfrader that was modified to directly connect to smtp-servers. If you experience any problems please contact me instead of the original authors. See: http://user.cs.tu-berlin.de/~mutax/mycaff/ Regards, {$owner} EOM