"Jason R. Mastaler" <[EMAIL PROTECTED]> writes: > Lloyd Zusman <[EMAIL PROTECTED]> writes: > >> Also, which do you think would be better for TMDA in this case where >> there is no SENDER environment variable? ... that I set SENDER to >> the empty string, or that I set it to <>? > > You should set it to the empty string, and TMDA will change it to '<>' > itself. From the code: > > # If SENDER exists but its value is empty, the message has an empty > # envelope sender. Set it to the string '<>' so it can be matched as > # such in the filter files. > if envelope_sender == '': > envelope_sender = '<>'
Hmm ... I wonder if this string assignment in Python would be faster than my doing the string assignment of <> inside of maildrop. I already have to set the SENDER variable to the empty string in maildrop, and I wonder if the two extra characters in that assigment would be that much more expensive than the above assignment in Python. Well, it's just a few nanoseconds either way, I guess. :) -- Lloyd Zusman [EMAIL PROTECTED] _____________________________________________ tmda-users mailing list ([EMAIL PROTECTED]) http://tmda.net/lists/listinfo/tmda-users
