"Kent Durand" <[EMAIL PROTECTED]> writes:

> ### ~/.tmda/filters/incoming (first match wins) ###
> 
> # drop all bounces for confirmation requests.
> body [EMAIL PROTECTED] drop
> 
> # Accept all bounces (messages with an empty envelope sender)
> from <> ok
> 
> # Accept all messages to postmistress
> # to postmistress@* accept
> 
> # Bounce all messages from badboy.dom
> # from *@=badboy.dom bounce
> 
> # Accept all messages from mycorp.dom
> from *@=bread.com ok
> 
> # Include my blacklist and whitelist
> # from-dbm ~/.tmda/lists/blacklist.db drop
> # from-cdb ~/.tmda/lists/whitelist.cdb accept
> # from-file -autodbm ~/.tmda/lists/nastygrams bounce
> # from-file -autocdb ~/.tmda/lists/confirmed ok
> from-file ~/.tmda/lists/whitelist accept
> from-file ~/.tmda/lists/whitelist_user accept
  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
This is line 24.

TMDA expects the contents of this file to be a list of email
addresses, one per line, with an optional second field (separated from
the email address by whitespace).  The second field is an action that
overrides the main action in the filter file ('accept' in this case).
The second field is normally not used but may come in handy for
certain cases.

What's going on in your case is that at least one of the lines in the
whitelist_user file has a second field but it is not an action
supported by TMDA.  Find it and delete it (or, if you really wanted an
override, fix the spelling) and you should be fine.


Tim
_____________________________________________
tmda-users mailing list ([EMAIL PROTECTED])
http://tmda.net/lists/listinfo/tmda-users

Reply via email to