Thanks for the info. This turned out to be a bug. Not sure how this
one slipped by. In any case, try the attached patch if you don't want
to wait for the next release.
Index: TMDA/AutoResponse.py
===================================================================
RCS file: /cvsroot/tmda/tmda/TMDA/AutoResponse.py,v
retrieving revision 1.8
diff -u -u -r1.8 AutoResponse.py
--- TMDA/AutoResponse.py 26 Feb 2003 19:43:52 -0000 1.8
+++ TMDA/AutoResponse.py 31 Mar 2003 21:14:49 -0000
@@ -121,7 +121,7 @@
self.mimemsg.attach(textpart)
if Defaults.AUTORESPONSE_INCLUDE_SENDER_COPY == 1:
# include the headers only as a text/rfc822-headers part.
- rfc822part = MIMEText(self.msgin_as_string,
+ rfc822part = MIMEText(Util.headers_as_raw_string(self.msgin),
'rfc822-headers',
self.msgin.get_charsets()[0])
rfc822part['Content-Description'] = 'Original Message Headers'