X-Git-Url: https://git.deb.at/w?a=blobdiff_plain;f=README;h=90527c8e0b8079ef4ebf12908974280c49e4dcc0;hb=4b744c0e82294ef5453f998f2c3b5aac5ee368b8;hp=fe1eac8a0231b82a7dd51c7fdc5761d60fd7b914;hpb=3319969a89bb47afbd35da55d8c0d62a33be9ca7;p=pkg%2Ft-prot.git diff --git a/README b/README index fe1eac8..90527c8 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ - t-prot -- TOFU protection - ========================= +T-PROT -- TOFU protection +========================= 1. What the hell is TOFU? As the man page says: @@ -10,15 +10,16 @@ text at the top; obviously they think that quoted text must not be changed at all. This is quite annoying as it needlessly sends a lot of data even when it is not required. Some editing of messages is desired. - Please point these people to the page http://learn.to/edit_messages - - thank you! + Please point these people to the page + http://www.river.com/users/share/etiquette/edit.html + Thank you! 2. What does the script do? - It detects, and when demanded hides annoying parts in rfc822 messages: + It detects, and when demanded hides annoying parts in rfc5322 messages: TOFU, huge quoted blocks, signatures (especially when they are too long), excessive punktuation, blocks of empty lines, trailing spaces and tabs. - For use inside of MTAs or MDAs it may exit with appropriate libc exit - codes, so annoying messages may be bounced easily. + For use inside of MTAs or MDAs it exits with appropriate libc exit codes, + so annoying messages may be bounced easily. 3. For what can I use it? There are several possibilities. One is to filter your email or news @@ -43,3 +44,28 @@ entire inspiration for this hack came from the "TOFU protection" line of his script on many usenet postings. + +T-PROT AND SUPPORT FOR GETOPT::LONG +=================================== + +Most distributions (it seems to me) are quite eager to abandon Getopt::Mixed, +having Getopt::Long in the official Perl package, which does everything the +former module did. Getopt::Mixed is unmaintained and marked deprecated by +its author, so why keep it? + +The answer is simple: because it's much faster (GNU time(1) tells me 28% +faster for running my complete t-prot release test suite consisting of +real-life emails) than anything I could get out of Getopt::Long. Plus, +from my point of view, there are no problems having a package installed +that is well-tested and just works fine (you don't need updates and more +new shiny features if the software just does what you want it to do). + +So we have the choice between easy maintainance and better performance. + +For the time being, I made my choice and keep sticking to Getopt::Mixed as +long as it works as-is with current stable perl versions. That does not mean +I don't see the merits of a well-maintained standard module, which is already +available on any perl system out there. Thus, a patch is provided to allow +easy migration to Getopt::Long for anyone who likes this better. I hope +this solution is fine for everyone. +