procmail
[Top] [All Lists]

Re: Procmail Newbie

2004-10-18 03:13:54
Toen wij Bikrant Neupane kietelden, kwam er dit uit:

MAILDIR=$HOME/Maildir/

It is a common error to include a trailing '/' in the value 
of MAILDIR. That normally doesn't cause problems, because 
your filesystem will treat '//' as a single '/'.

DEFAULT=$MAILDIR/tmp

Here you see the error in action.

If there is any chance (now or in the future) that $HOME has 
embedded spaces, you should do it like this:

  MAILDIR = "$HOME/Maildir"
  DEFAULT = "$MAILDIR/tmp"

-- 
Grtz, Ruud

____________________________________________________________
procmail mailing list   Procmail homepage: http://www.procmail.org/
procmail(_at_)lists(_dot_)RWTH-Aachen(_dot_)DE
http://MailMan.RWTH-Aachen.DE/mailman/listinfo/procmail

<Prev in Thread] Current Thread [Next in Thread>