Mark Horn <[EMAIL PROTECTED]> writes:

> >.tmda/config =
> >MAIL_TRANSFER_AGENT = "postfix"
> >DELIVERY = "~.mail"
> >RECIPIENT_DELIMITER = "+"
> >LOGFILE_DEBUG = "~.tmda/logs/debug"
> >****ADDED  -  SENDMAIL = "/usr/sbin/sendmail" - ****ADDED
> 
> I assume you meant to put:
> 
>       LOGFILE_DEBUG = "~/.tmda/logs/debug"

Actually, you want to make sure that you have the following Python
statement at the top of your ~/.tmda/config:

    import os

and then you want this statement if you want '~' expansion:

    LOGFILE_DEBUG = os.path.expanduser("~/.tmda/logs/debug")

Anywhere you want '~' to expand to the user name, you need to use the
above function call (os.path.expanduser).


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

Reply via email to