Jens Benecke <[EMAIL PROTECTED]> writes: > I put the following text into my "confirm_request.txt" template: > > --------------------------------------------------------------------------- > This message was created automatically by mail delivery software (TMDA). > > Getting about 200 SPAM messages a day on my accounts have made me take > measures. As a result, you will have to prove that you are a human and not a > spammer. > > Please do this by just once replying to this message. Your email > (<%(confirm_append_address)s>) will be added to my whitelist and you will > be able to send me mail. You will not have to do this again, nor will you > have > to resend your original mail. > > Alternatively, click here: [%(confirm_accept_url)] > > ... > --------------------------------------------------------------------------
The bug is in your template. :) You are missing the 's' character at the end of '%(confirm_accept_url)s'. This tells Python that it should format the 'confirm_accept_url' variable as a string. I didn't find an attachment on your next message (perhaps Gmane stripped it), but it appears to be the same error. Add the 's' and you can use brackets, quotes or whatever you want to delimit the URL. Tim _________________________________________________ tmda-workers mailing list ([EMAIL PROTECTED]) http://tmda.net/lists/listinfo/tmda-workers
