You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(121) |
Aug
(31) |
Sep
(65) |
Oct
(9) |
Nov
(23) |
Dec
(19) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(33) |
Feb
(19) |
Mar
(4) |
Apr
(3) |
May
(5) |
Jun
(2) |
Jul
(1) |
Aug
(2) |
Sep
(1) |
Oct
(7) |
Nov
(8) |
Dec
(3) |
2005 |
Jan
(20) |
Feb
|
Mar
(5) |
Apr
|
May
(3) |
Jun
(3) |
Jul
(8) |
Aug
(6) |
Sep
(3) |
Oct
(3) |
Nov
(3) |
Dec
(3) |
2006 |
Jan
(1) |
Feb
(1) |
Mar
(2) |
Apr
(4) |
May
(7) |
Jun
|
Jul
|
Aug
(2) |
Sep
(5) |
Oct
(3) |
Nov
(1) |
Dec
(7) |
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(4) |
Dec
|
2008 |
Jan
|
Feb
(2) |
Mar
(4) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
|
Nov
(1) |
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
From: Gerald V. <GVi...@ik...> - 2003-07-16 06:45:19
|
In order the use the filter you need to have one of these in your .qmail: |preline -f maildrop -w 90 /etc/mailfilter |preline -f maildrop -w 90 /etc/mailfilter TAG |preline -f maildrop -w 90 /etc/mailfilter SORT |preline -f maildrop -w 90 /etc/mailfilter DROP I am hoping that future version of qmailadmin will have an admin screen that looks like this: Spam filter setup: Email_Account Nothing Tag_only Filter Delete Configuer bob O O X O [config] dave O X O O [config] dale O O O X [config] The mailfilter file that could be included in the qmailadmin distro: --- cut here --- HOME="$PWD" DEFAULT="$HOME/Maildir/" USERNAME=`echo ${PWD##*/}` SPAMFOLDER=`echo "$HOME/Maildir/${2:-.spam}"` # Make sure the quota file is in place. # Vpopmail does not create it by default. # Vpopmail also removes it when you change the quota. `test -s "$HOME/Maildir/maildirsize"` if ( $RETURNCODE == 1 ) { `~vpopmail/bin/vuserinfo -Q $USERNAME@$HOST` `chown vpopmail:vchkpw $HOME/Maildir/maildirsize` `chmod 640 $HOME/Maildir/maildirsize` } # Don't scan the mail if it was not asked for. if ( $1 =~ /TAG/ || $1 =~ /SORT/ || $1 =~ /DROP/ ) { if ( $SIZE < 262144 ) { exception { xfilter "/usr/bin/spamc -f -u $USERNAME@$HOST" } if ( i$1 =~ /SORT/ || $1 =~ /DROP/ ) { if (/^X-Spam-Flag: *YES/) { if ( $1 =~ /SORT/ ) { `test -d "$SPAMFOLDER"` if ( $RETURNCODE == 1 ) { `~qmailq/bin/maildirmake "$SPAMFOLDER"` } to "$SPAMFOLDER/" exit } if ( $1 =~ /DROP/ ) { exit } } } } } # Perhaps qmailadmin will have a server side filter screen one day. exception { include $HOME/.mailfilter } --- cut here --- * Parts of this mailfilter is based on Jeff Hedlund's posting. I hope something like this makes it into future version of qmailadmin. Gérald |
From: Bill S. <hos...@sh...> - 2003-07-15 18:35:06
|
Hello all... I've been out of the loop for a while, but need to add on to the existing "Enable Spam Checking" feature to also allow for optional deletion of spam. But I'd like to keep it in step with the direction of qmailadmin development. Is there yet a general consensus of how SpamAssassin integration will occur? As of 1.0.23, it looks like the "enable spam checking" simply pipes the message through maildrop with /etc/mailfilter as the default filter file. Has anyone looked at adding filter editing to qmailadmin? There is GPL code available for this in SqWebmail, but I have not looked at it yet to see if it would be easily ported to qmailadmin. But, it could be useful to keep qmailadmin's filter editing in line with SqWebmail's (although I don't use SqWebmail, perhaps a lot of other people do). Short of adding maildrop filter editing to qmailadmin, spam deletion could be accomplished by having a second default filter, like /etc/mailfilter-delete that deletes the message (with a log message) rather than delivering it. But this is more of a hack. Thoughts? Regards, Bill Shupp |