The ROT-13 transformation is a simple form of encryption where the letters A-M are transposed with the letters L-Z. It is often used in Usenet postings/mailing lists to prevent people from accidentally reading a disturbing message.
GNU Anubis supports ROT-13 via a loadable Guile function. To enable
this support, add the following to your GUILE
section:
guile-load-program rot-13.scm
Then, in your RULE section use:
The command accepts the following keyword-arguments:
#:bodyEncrypt the entire body of the message
#:subjectEncrypt the ‘Subject’ header.
For example:
trigger "rot-13.*body" guile-process rot-13 #:body done trigger "rot-13.*subj" guile-process rot-13 #:subject done
This document was generated on January 6, 2024 using texi2html 5.0.