List Info

Thread: final_xxxx D_PASS




final_xxxx D_PASS
country flaguser name
Austria
2008-02-22 05:17:25
Hello,

i like to filter my spam banned .. mail with sieve ?

I change my 
final_virus_destiny = D_DISCARD;
final_banned_destiny = D_PASS;
final_spam_destiny = D_PASS;
final_bad_header_destiny = D_PASS;

but all Emails are in the Directory

$QUARANTINEDIR = '$MYHOME/virusmails';

can any help a little ;)

-- 
mit freundlichen Grüßen / best Regards

 Günther J. Niederwimmer

------------------------------------------------------------
-------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
AMaViS-user mailing list
AMaViS-userlists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/amavis-user

AMaViS-FAQ:http://www.amav
is.org/amavis-faq.php3
AMaViS-HowTos:http://www.amavis.org/ho
wto/

Re: final_xxxx D_PASS
user name
2008-02-22 09:32:40
On 2/22/08, Günther J. Niederwimmer <gjngjn.priv.at> wrote:
> Hello,
>
> i like to filter my spam banned .. mail with sieve ?
>
> I change my
> final_virus_destiny = D_DISCARD;
> final_banned_destiny = D_PASS;
> final_spam_destiny = D_PASS;
> final_bad_header_destiny = D_PASS;
>
> but all Emails are in the Directory
>
> $QUARANTINEDIR = '$MYHOME/virusmails';
>
> can any help a little ;)
>

Your banned, spam, and bad_header messages should be
delivered to the
recipient(s) regardless of content. However, COPIES may go
to
quarantine. The $final_*_destiny variables do not control
quarantining. BTW I hope your variables start with $. Since
in
addition to passing the content, you also want to prevent
quarantining, one option is to disable quarantine for the
selected
items:

$banned_quarantine_to = undef;
$bad_header_quarantine_to = undef;
$spam_quarantine_to = undef';

-- 
Gary V

------------------------------------------------------------
-------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
AMaViS-user mailing list
AMaViS-userlists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/amavis-user

AMaViS-FAQ:http://www.amav
is.org/amavis-faq.php3
AMaViS-HowTos:http://www.amavis.org/ho
wto/

Re: final_xxxx D_PASS
country flaguser name
Austria
2008-02-22 16:07:18
Hello,

Am Freitag, 22. Februar 2008 16:32:40 schrieb Gary V:
> > i like to filter my spam banned .. mail with sieve
?
> >
> > I change my
> > $final_virus_destiny = D_DISCARD;
> > $final_banned_destiny = D_PASS;
> > $final_spam_destiny = D_PASS;
> > $final_bad_header_destiny = D_PASS;
> >
> > but all Emails are in the Directory
> >
> > $QUARANTINEDIR = '$MYHOME/virusmails';
> >
> > can any help a little ;)
>
> Your banned, spam, and bad_header messages should be
delivered to the
> recipient(s) regardless of content. However, COPIES may
go to
> quarantine. The $final_*_destiny variables do not
control
> quarantining. BTW I hope your variables start with $.
Since in
> addition to passing the content, you also want to
prevent
> quarantining, one option is to disable quarantine for
the selected
> items:

my variables is starting with $ ;)
but i don't understand the newer amavisd :(.

the bad_header mails in older versions (default D_PASS) is
going through ? In 
newer version the bad_header mails are landing in
$quarantine and no COPIE is 
going through ?

> $banned_quarantine_to = undef;
> $bad_header_quarantine_to = undef;
> $spam_quarantine_to = undef';

OK, I have to test this, THANKS

-- 
mit freundlichen Grüßen / best Regards

 Günther J. Niederwimmer

------------------------------------------------------------
-------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
AMaViS-user mailing list
AMaViS-userlists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/amavis-user

AMaViS-FAQ:http://www.amav
is.org/amavis-faq.php3
AMaViS-HowTos:http://www.amavis.org/ho
wto/

Re: final_xxxx D_PASS
user name
2008-02-22 20:47:15
On 2/22/08, Günther J. Niederwimmer wrote:
> Hello,
>
> Am Freitag, 22. Februar 2008 16:32:40 schrieb Gary V:
> > > i like to filter my spam banned .. mail with
sieve ?
> > >
> > > I change my
> > > $final_virus_destiny = D_DISCARD;
> > > $final_banned_destiny = D_PASS;
> > > $final_spam_destiny = D_PASS;
> > > $final_bad_header_destiny = D_PASS;
> > >
> > > but all Emails are in the Directory
> > >
> > > $QUARANTINEDIR = '$MYHOME/virusmails';
> > >
> > > can any help a little ;)
> >
> > Your banned, spam, and bad_header messages should
be delivered to the
> > recipient(s) regardless of content. However,
COPIES may go to
> > quarantine. The $final_*_destiny variables do not
control
> > quarantining. BTW I hope your variables start with
$. Since in
> > addition to passing the content, you also want to
prevent
> > quarantining, one option is to disable quarantine
for the selected
> > items:
>
> my variables is starting with $ ;)
> but i don't understand the newer amavisd :(.
>
> the bad_header mails in older versions (default D_PASS)
is going through ? In
> newer version the bad_header mails are landing in
$quarantine and no COPIE is
> going through ?

I don't know why this would happen. One thing you might test
is to
bypass banned_header tests in addition to passing them.

bypass_banned_checks_maps = (1);

If you don't have any luck, then the next step would be send
a test
message through (a message with a bad header) and log the
transaction
at $log_level = 5; Then study the results for clues. It may
be helpful
if you state what version of amavisd-new you are working
with. Rather
than setting $log_level = 5; you might consider using
debug_sender_maps:

# If sender matches ACL, turn debugging fully up, just for
this one message
debug_sender_maps = ( ["test-sender$mydomain"] );

>
> > $banned_quarantine_to = undef;
> > $bad_header_quarantine_to = undef;
> > $spam_quarantine_to = undef';
>
> OK, I have to test this, THANKS
>
> --
> mit freundlichen Grüßen / best Regards
>
>  Günther J. Niederwimmer

-- 
Gary V

------------------------------------------------------------
-------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
AMaViS-user mailing list
AMaViS-userlists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/amavis-user

AMaViS-FAQ:http://www.amav
is.org/amavis-faq.php3
AMaViS-HowTos:http://www.amavis.org/ho
wto/

[1-4]

about | contact  Other archives ( Real Estate discussion Medical topics )