Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
39 righe
756 B
39 righe
756 B
24 anni fa
|
##
|
||
|
## procmailrc -- Global Procmail Configuration
|
||
|
##
|
||
|
|
||
|
# make sure we can find programs
|
||
|
PATH=@l_prefix@/bin:@l_prefix@/sbin:/bin:/sbin:/usr/bin:/usr/sbin
|
||
|
|
||
|
# the Sendmail program
|
||
|
SENDMAIL=@l_prefix@/sbin/sendmail
|
||
|
|
||
|
# location of the folder directory
|
||
|
MAILDIR=$HOME/.mail
|
||
|
|
||
|
# location of the incoming mail folders
|
||
|
ORGMAIL=/var/mail/$LOGNAME
|
||
|
DEFAULT=$HOME/.mail/inbox
|
||
|
|
||
|
# logging configuration
|
||
|
LOGABSTRACT=no
|
||
|
|
||
|
# lockfile configuration
|
||
|
LOCKFILE=$HOME/.mail.lock
|
||
|
LOCKEXT=.lock
|
||
|
|
||
|
# filesystem permissions
|
||
|
UMASK=077
|
||
|
|
||
|
# no comsat/biff notification
|
||
|
COMSAT=no
|
||
|
|
||
|
# the "ourname+ident@" support of Sendmail
|
||
|
IDENT=$1
|
||
|
|
||
|
# make sure the MAILDIR exists before delivering
|
||
|
:0 Wic
|
||
|
* ? test ! -d $MAILDIR
|
||
|
| umask 077 && mkdir $MAILDIR && chown $LOGNAME $MAILDIR
|
||
|
|