I accidently checked out the CVS version into my actual mail
processing directory last night.  Imagine my surprise when I came
downstairs today after work and I have no mail.

I do have a debug log full of the same error, though.  I re-ran cvs to
see if it had been fixed, but it hasn't.  I just want to double-check
if a fix is really necessary (why is no one else seeing this?) before
I make the change and check it in.

In a nutshell, CGI_URL is only set if CGI_ACTIVE is true and on my
personal workstation it is not true.  The new code in bouncegen simply
tests Defaults.CGI_URL, which doesn't exist, so an exception is raised
and the message is deferred.  It looks like this (line 636):

    if Defaults.CGI_URL:

but shouldn't it look like this?

    if Defaults.CGI_ACTIVE and Defaults.CGI_URL:


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

Reply via email to