Mercurial > p > roundup > code
changeset 502:531f4e46a818
crying out for real configuration handling... :(
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 08 Jan 2002 11:57:12 +0000 |
| parents | e0944187229f |
| children | 25f2a3405739 |
| files | roundup/cgi_client.py |
| diffstat | 1 files changed, 5 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/roundup/cgi_client.py Tue Jan 08 11:56:24 2002 +0000 +++ b/roundup/cgi_client.py Tue Jan 08 11:57:12 2002 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: cgi_client.py,v 1.92 2002-01-08 04:12:05 richard Exp $ +# $Id: cgi_client.py,v 1.93 2002-01-08 11:57:12 richard Exp $ __doc__ = """ WWW request handler (also used in the stand-alone server). @@ -471,7 +471,7 @@ # handle the messageid # TODO: handle inreplyto messageid = "<%s.%s.%s@%s>"%(time.time(), random.random(), - self.classname, self.MAIL_DOMAIN) + self.classname, self.instance.MAIL_DOMAIN) # now create the message, attaching the files content = '\n'.join(m) @@ -1180,6 +1180,9 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.92 2002/01/08 04:12:05 richard +# Changed message-id format to "<%s.%s.%s%s@%s>" so it complies with RFC822 +# # Revision 1.91 2002/01/08 04:03:47 richard # I mucked the intent of the code up. #
