| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
GNU Anubis supports remailers of type I. The support is written
entirely in Scheme. To enable it you need to specify the following
in the GUILE section of your configuration file:
guile-load-program remailer.scm |
To send the message via a remailer, use the following command
in the RULE section:
The keyword-arguments specify the various parameters for the remailer. These are:
#:rrt stringThis is the only required keyword argument. It sets the value for the Request Remailing To line. string should be your actual recipient's email address.
#:post news-groupAdds the ‘Anon-Post-To: news-group’ line, and prepares the message for sending it to the Usenet via a remailer. Note, that this is only possible with remailers that support ‘Anon-Post-To:’ header.
#:latent timeAdds the ‘Latent-Time:’ line, that causes a remailer to keep your message for specified time before forwarding it.
#:randomAdds random suffix to the latent time.
#:header stringAdds an extra header line to the remailed message.
Example:
trigger "remail:(.*)/(.*)"
guile-process remailer-I \
#:rrt antonius_block@helsingor.net \
#:post \1 \
#:latent \2 \
#:header "X-Processed-By: GNU Anubis & Remailer-I"
done
|
Some remailers require the message to be GPG encrypted or signed.
You can achieve this by placing gpg-encrypt or gpg-sign
statement right after the invocation of remailer-I, for
example:
trigger "remail:(.*)/(.*)"
guile-process remailer-I \
#:rrt antonius_block@helsingor.net \
#:post \1 \
#:latent \2 \
#:header "X-Processed-By: GNU Anubis & Remailer-I"
gpg-sign mykey
done
|
See section Mail Encryption, for more information on mail encryption in GNU Anubis.
This document was generated by Sergey Poznyakoff on December, 20 2008 using texi2html 1.78.