"Ben Lists" <[EMAIL PROTECTED]> writes:

> I seem to have everything working (auto-whitelisting, etc), but my
> bare=append will not work.  I am running qmail with VMailMgr and
> TMDA 0.56.

How are you sending mail?  That is, from what MUA and from the same
machine running TMDA or a different one?  If from a different one, are
you sending through tmda-ofmipd or through the qmail-smtpd server?

Can you send an email to an address under your control and check if
the X-Delivery-Agent header field has been added?  If not, the mail is
not being processed by tmda-sendmail.

> I do not have a system-wide /etc/tmdarc, but i do have a user-specific
> config file with some options set...
> 
> ------------------------------------------------
> # more /home/click/.tmda/config
> [SNIP...]
> # CONFIRM_APPEND
> if not vars().has_key('CONFIRM_APPEND'):
>     CONFIRM_APPEND = "/home/click/.tmda/confirmed"
> 
> # ACTION_OUTGOING
> # Default is dated
> if not vars().has_key('ACTION_OUTGOING'):
>     ACTION_OUTGOING = "bare=append"
> 
> # BARE_APPEND
> # No default
> if not vars().has_key('BARE_APPEND'):
>     BARE_APPEND = "/home/click/.tmda/confirmed"
> 
> [END config]
> --------------------------------------------------

The "if not vars()....." stuff is not necessary.  Simply set the
variable.  The above section of you config file would then look like
this.

# CONFIRM_APPEND
CONFIRM_APPEND = "/home/click/.tmda/confirmed"

# ACTION_OUTGOING
# Default is dated
ACTION_OUTGOING = "bare=append"

# BARE_APPEND
# No default
BARE_APPEND = "/home/click/.tmda/confirmed"


I don't believe this is related to your problem, but it will make your
config easier to maintain.


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

Reply via email to