Hi all,
I have qmail-vpopmail setup and maildrop as an filtering agent.
I want to forward one copy of my same mail to another domain, say eg:my mail
box on yahoo.com.
This is my filter rule.
if (/^Subject:test$/)
{
exception {
cc !mail...@yahoo.com
to /home/vpopmail/domains/xyz.com/sanjay/Maildir/.Trash/
}
}
------------------------------------------------------------------
I have also tried these rule
if (/^Subject:test$/)
{
exception {
to /home/vpopmail/domains/xyz.com/sanjay/Maildir/.Trash/
cc !mail...@yahoo.com
}
}
-------------------------------------------------------------------------------
if (/^Subject:test$/)
{
exception {
to "/home/vpopmail/domains/xyz.com/sanjay/Maildir/.Trash/ "
cc !mail...@yahoo.com
}
}
But none of them is working , i get an error in my qmail-send/current file
@4000000043bd05e720eb9acc status: local 1/10 remote
0/120@4000000043bd05e72359761c delivery 25: deferral:
/usr/local/bin/maildrop:_Unable_to_open_mailbox./
Though my permissions are also right , as in when i just delivery the mail
locally without the cc line it works fine.
Please suggest some workarounds for it .