Thanks!
I was thinking and look at the thread you told me.
Looking at the first page found the solution. You're right about the procmailrc.
I'm going to post the result:
Distro: Debian Etch 4.0
Virtualmin: 3.61.gpl_all.deb
The directory /var/mail was created in the original installation
The error was in /etc/procmailrc
The original was
| Code: |
VERBOSE=yes
LOGFILE=/var/log/procmail.log
TRAP=/usr/libexec/webmin/virtual-server/procmail-logger.pl
:0wi
VIRTUALMIN=|/etc/webmin/virtual-server/lookup-domain.pl will 0
:0
* ?/usr/bin/test "$VIRTUALMIN" != ""
{
INCLUDERC=/etc/webmin/virtual-server/procmail/$VIRTUALMIN
}
DEFAULT=$HOME/Maildir/
ORGMAIL=$HOME/Maildir/
DROPPRIVS=yes
:0
$DEFAULT
:0
* ^X-Spam-Status: Yes
/dev/null
|
Finally I let this file working with the following code:
| Code: |
VERBOSE=yes
LOGFILE=/var/log/procmail.log
TRAP=//usr/libexec/webmin/virtual-server/procmail-logger.pl
:0wi
VIRTUALMIN=|//etc/webmin/virtual-server/lookup-domain.pl $LOGNAME
:0
* ?/usr/bin/test "$VIRTUALMIN" != ""
{
INCLUDERC=//etc/webmin/virtual-server/procmail/$VIRTUALMIN
}
DEFAULT=$HOME/Maildir/
ORGMAIL=$HOME/Maildir/
DROPPRIVS=yes
:0
$DEFAULT
:0
* ^X-Spam-Status: Yes
$DEFAULT
|
The main difference is in //usr, //etc...
Once I changed the file everything starts working... I made changes before, but not very important ones.
I would read more carefully the previous posts ;-)
Thanks a lot for your help!
Post edited by: seryeb, at: 2008/10/16 08:50