Re: [vchkpw] Vpopmail and Maildrop

2009-01-13 Thread Camille Ollié

Le 13/1/2009, shacky shack...@gmail.com a écrit:

Hi.

I'm studying about how to use Maildrop to setup some filters for the
received emails on my Qmail+Vpopmail+Simscan+ClamAV+SpamAssassin mail
server.
I read some howto and I realized that there are many methods to do this.
The main thing to do is to forward the spam messages in a spam IMAP
folder in the Maildir.
And I have to setup some filters only for some e-amail addresses, like
for example the address whose receives e-mail from mailing-lists to
order the messsages in the various folders.

I realized that Vpomail has a --enable-maildrop configuration
parameter, but I realized that many howto does not use it.

I don't want to setup a manual configuration everytimes I add a new
domain or a new mailbox, but I want the whole server to be
automatically setupped with the default Maildrop configuration.
But I want some mailbox to have a different Maildrop configuration.

Could you help me to understand how to make a complete and definitive
configuration, please?

Thank you very much for your help!
Bye.


Hi,

i wrote this  :
http://www.boscorelly.net/index.php?post/2008/06/22/53-installation-de-qmailadmin-avec-mailfilter-maildrop

It's in french, but i think you will understand. You can ask me if you
don't understand anything. But you must use QMailAdmin to have a
checkbox to enable spam filtering easily. Or if you use your own script
to create domain/mail address, you must add a line tou create a file
.qmail like this :
-rw--- 1 vpopmail vchkpw 43 2008-10-25 21:14 .qmail
containing :
|preline /usr/bin/maildrop /etc/mailfilter

hope this will help you.

!DSPAM:496c7d4532671181786246!



Re: [vchkpw] Vpopmail and Maildrop

2009-01-13 Thread Camille Ollié

shacky a écrit :

checkbox to enable spam filtering easily. Or if you use your own script
to create domain/mail address, you must add a line tou create a file
.qmail like this :
-rw--- 1 vpopmail vchkpw 43 2008-10-25 21:14 .qmail
containing :
|preline /usr/bin/maildrop /etc/mailfilter


Thank you very much for your help!!
I'm using Simscan to scan e-mail for virus and spam, something changes?







Hi use simscan too :)

--
Camille Ollié
www.forum-pc.net / www.scoot-boost.com
Elfrier Taunt @ EU-Kirin Tor

!DSPAM:496cfb3d32671849762146!



Re: [vchkpw] Vpopmail and maildrop

2003-09-25 Thread Tim Hasson
HI,

This is a problem with 5.2.1 (Stable)

I have seen some exitcode changes in Changelog in some devel versions, but I 
am not sure how they behave quite yet.

Quoting Mailing Lists [EMAIL PROTECTED]:

 Hy guys, I filter my messages through maildrop.
 The problem is that I want to bounce no_such_user messages back to
 sender using vdelivermal.
 
 So I put a line 
 
 to |/home/vpopmail/bin/vdelivermail '' bounce-no-mailbox
 
 in my maildrop filter script, but no message is bounced!
 

[...]

 VHOME=/home/vpopmail/domains/$HOST/$EXT
 VPOP=|/home/vpopmail/bin/vdelivermail '' bounce-no-mailbox
 `test -d $VHOME/Maildir`
 if ( $RETURNCODE = 1 )
{
   to $VPOP
   exit
} 

Try this if block instead:

`test -d $VHOME/Maildir`
if ( $RETURNCODE == 1 )
{
   echo Sorry, no mailbox here by that name. (#5.1.1)
   EXITCODE=100
   exit
}

Hope this helps..

Respectfully,
Tim Hasson