Strona główna
 

[ Pobierz całość w formacie PDF ]

|request|bounce|serv(ices?|er))([^.!:a-z0-9]|$)))
Don't freak out over this, it is simpler than it seems at first glance. This condition tells Procmail to look at the
header of a message, and see if it is from one of the administrative addresses like root or postmaster, and
also check to see if it is from a mailer-daemon (the thing that sends you mail when you bounce a message). If
a message IS
from one of those addresses, the recipe will put the message into your inbox and not delete it.
Advanced User Note: Those of you who are familiar with Procmail are probably wondering why I require
the user to type in that whole long line of commands, instead of using the FROM_MAILER command. Well,
it looked like a good idea at first, but I just found out a few days ago that FROM_MAILER also checks the
Precedence: header for the words junk, bulk, and list. Many (if not all) mailing-list servers have either
Precedence: bulk or Precedence: list, so if someone subscribes you to several hundred lists,
FROM_MAILER would let most of the messages through, which is NOT what we want.
Condition 2:
* ! ^From:.*(listproc|majordomo|cmeinel|johnb)
This condition does some more checking of the From: line in the header. In this example, it checks for the
words listproc, majordomo, cmeinel, and johnb. If it is from any of those people, it gets passed on to your
Inbox. If not, it's a goner. This is where you would put the usernames
of people who normally email you, and also the usernames of mailing-list servers, such as listproc and
majordomo. When editing this line, remember to: only put the username in the condition, not a persons full
email address, and remember to put a | between each name.
Condition 3:
* ! ^TO(netnews|crypto-stuff|pcgames)
This final condition is where you would put the usernames of the mailing lists that you are subscribed to (if
any). For example, I am subscribed to the netnews, crypto-stuff, and pcgames lists. When you get a
message from most mailing lists, most of the time the list address will be in the
To: or Cc: part of the header, rather than the From: part. This line will check for those usernames and pass
them through to your Inbox if they match. Editing instructions are the same as the ones for Condition 2.
The final line, /dev/null, is essentially the trash can of your system. If a piece of email does not match any of
the conditions, (i.e. it isn't from a mail administrator, it is n't from a listserver or someone you write to, and it's
not a message from one of your usual mailing lists) Procmail dumps the message into /dev/null, never to be
seen again.
Ok. Now you should have created two files: .procmailrc and rc.noebomb. We need one more before
everything will work properly. Save rc.noebomb and exit your editor, and go to your home directory. Once
there, start your editor up with the no word wrapping command.
> cd
> pico -w .forward
We now go to an excerpt from Nancy M.'s Mail Filtering FAQ:
Enter a modified version of the following in your ~/.forward:
"|IFS=' ' && exec /usr/local/bin/procmail -f- || exit 75 #nancym"
== IMPORTANT NOTES ==
* Make sure you include all the quotes, both double (") and single (').
* The vertical bar (|) is a pipe.
* Replace /usr/local/bin with the correct path for procmail (see step 1).
* Replace `nancym' with your userid. You need to put our userid in your .forward so that it will be
different than anyother .forward ile on your system.
* Do NOT use ~ or environment variables, like $HOME, in your .forward file. If procmail resides below
your home directory write out the *full* path.
On many systems you need to make your .forward world
readable and your home directory world searchable in order for the mail transport agent to "see" it. To do
this type:
cd
chmod 644 .forward
chmod a+x .
If the .forward template above doesn't work the following alternatives might be helpful:
In a perfect world:
"|exec /usr/local/bin/procmail #nancym"
In an almost perfect world:
"|exec /usr/local/bin/procmail USER=nancym"
In another world:
"|IFS=' ';exec /usr/local/bin/procmail #nancym"
In a different world:
"|IFS=' ';exec /usr/local/bin/procmail USER=nancym"
In a smrsh world:
"|/usr/local/bin/procmail #nancym"
Now that you have all the necessary files made, it's time to test this filter. Go into your mailreader and create
a new folder called Ebombtest. This procedure differs from program to program, so you may have to
experiment a little. Then open up the rc.noebomb file and change /dev/null to Ebombtest. (You should have
already changed Conditions 2 and 3 to what you want; if not, go do it now!) Finally, open up .procmailrc
and remove the # from the last line.
You will need to leave this on for a bit to test it. Ask some of the people in Condition 2 to send you some
test messages. If the messages make it through to your Inbox, then that condition is working fine. Send
yourself some fake email under a different name and check to see if it
ends up in the Ebombtest folder. Also, send yourself some fakemail from root@wherever.com to make sure
that Condition 1 works. If you're on any mailing lists, those messages should be ending up in your Inbox as
well.
If all of these test out fine, then congratulations! You now have a working defense against email bombs.
For the moment, change the Ebombtest line in the rc.noebomb file back to /dev/null, and put the # in front of
the INCLUDERC line in the .procmailrc file. If someone ever decides to emailbomb you, you only need to
remove the #, and you will have greatly cut down on the amount of messages coming into your Inbox,
giving you a little bit of breathing room to start unsubscribing to all those lists, or start tracking down those
idiots who did it and get their
asses kicked off their ISP's.
If you have any comments or questions about this, email me at zachb@netcom.com. Emailbombs WILL go
to /dev/null, so don't bother!
Disclaimer: When you activate this program, it is inevitable that a small amount of wanted mail MAY get put
into /dev/null, due to the fact that it is nearly impossible to know the names of all the people that may write
to you. Therefore, I assume no responsibility for any email which
may get lost, and any damages which may come from those lost messages.
********************
Don t have procmail? If you have a Unix box, you can download procmail from ftp://ftp.informatik.rwth-
aachen.de/pub/packages/procmail/
*******************
A note of thanks goes to Damien Sorder (jericho@dimensional.com) for his assistance in reviewing this
guide.
And now, just to make certain you can get this invaluable Perl script to automatically unsubscribe email
lists, here is the listing:
#!/usr/local/bin/perl
# unsubscribe
#
# A perl script by Kim Holburn, University of Canberra 1996.
# kim@canberra.edu.au
# Feel free to use this and adjust it. If you make any useful adjustments or
# additions send them back to me.
#
# This script will unsubscribe users in bulk from whatever mail lists they are
# subscribed to. It also mails them that it has done this.
# It is useful for sys admins of large systems with many accounts and
# floating populations, like student servers.
# This script must be run by root although I don't check for this.
# You have to be root to read someone else's mailbox and to
# su to their account, both of which this script need to do.
#
# This script when applied to a mailbox will look through it to find [ Pobierz całość w formacie PDF ]
  • zanotowane.pl
  • doc.pisz.pl
  • pdf.pisz.pl
  • alternate.pev.pl


  •  Podstrony
     : Indeks
     : Boys of the Zodiac 06 Virgo The Warrior Prince Pepper Espinoza [AQ MM] (pdf)
     : Dr Who New Adventures 35 Set Piece, by Kate Orman (v1.0) (pdf)
     : Cerise DeLand [Stanhope Challenge 02] Lady Featherstone's Fervent Affair (pdf)
     : Alan Burt Akers [Dray Prescot 11] Armada of Antares (pdf)
     : Delilah Hunt Wyoming Triple Heat [Siren Menage Amour] (pdf)
     : Bill Brooks [Dakota Lawman 02] Killing Mr Sunday (pdf)
     : Alan Burt Akers [Dray Prescot 17] Captive Scorpio (pdf)
     : Dana Marie Bell [True Destiny 02] Eye of the Beholder (pdf)
     : Bethea Creese Glorious Haven (Patient in Love) [HR 697] (pdf)
     : Dalton Reed [All Things Impossible 01] Crown of the Realm 2e (pdf)
  • zanotowane.pl
  • doc.pisz.pl
  • pdf.pisz.pl
  • yours.opx.pl
  •  . : : .
    Copyright (c) 2008 Poznając bez końca, bez końca doznajemy błogosławieństwa; wiedzieć wszystko byłoby przekleństwem. | Designed by Elegant WPT