home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume35 / procmail / part01 / procmail280 / examples / 1procmailrc next >
Text File  |  1993-02-05  |  635b  |  24 lines

  1. # Please check if all the paths in PATH are reachable, remove the ones that
  2. # are not.
  3.  
  4. PATH=$HOME/bin:/usr/bin:/usr/ucb:/bin:/usr/local/bin:.
  5. MAILDIR=$HOME/Mail    # You'd better make sure it exists
  6. DEFAULT=$MAILDIR/mbox
  7. LOGFILE=$MAILDIR/from
  8. LOCKFILE=$HOME/.lockmail
  9.  
  10. :                # Anything from thf
  11. ^From.*thf@somewhere.someplace
  12. todd                # will go to $MAILDIR/todd
  13.  
  14. :                # Anything from people at uunet
  15. ^From.*@uunet
  16. uunetbox            # will go to $MAILDIR/uunetbox
  17.  
  18. :                # Anything from Henry
  19. ^From.*henry
  20. henries                # will go to $MAILDIR/henries
  21.  
  22. # Anything that has not been delivered by now will go to $DEFAULT
  23. # using LOCKFILE=$DEFAULT$LOCKEXT
  24.