procmailrc 756 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. ##
  2. ## procmailrc -- Global Procmail Configuration
  3. ##
  4. # make sure we can find programs
  5. PATH=@l_prefix@/bin:@l_prefix@/sbin:/bin:/sbin:/usr/bin:/usr/sbin
  6. # the Sendmail program
  7. SENDMAIL=@l_prefix@/sbin/sendmail
  8. # location of the folder directory
  9. MAILDIR=$HOME/.mail
  10. # location of the incoming mail folders
  11. ORGMAIL=/var/mail/$LOGNAME
  12. DEFAULT=$HOME/.mail/inbox
  13. # logging configuration
  14. LOGABSTRACT=no
  15. # lockfile configuration
  16. LOCKFILE=$HOME/.mail.lock
  17. LOCKEXT=.lock
  18. # filesystem permissions
  19. UMASK=077
  20. # no comsat/biff notification
  21. COMSAT=no
  22. # the "ourname+ident@" support of Sendmail
  23. IDENT=$1
  24. # make sure the MAILDIR exists before delivering
  25. :0 Wic
  26. * ? test ! -d $MAILDIR
  27. | umask 077 && mkdir $MAILDIR && chown $LOGNAME $MAILDIR