Code

fixed mailgw handling of subject-line errors
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 19 Dec 2003 01:50:19 +0000 (01:50 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 19 Dec 2003 01:50:19 +0000 (01:50 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@2028 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
roundup/mailgw.py

index 00be53cf48c19b5ec0c41a9c2bebce4f53c68b69..4bca3e6b070172f5f529d9c269e2d2fb2246c02e 100644 (file)
@@ -23,6 +23,7 @@ Feature:
 - use HTTP 'Content-Length' header (modified sf patch 844577)
 - HTML generated is now HTML4 (or optionally XHTML) compliant (sf feature
   814314 and sf patch 834620)
+- default stylesheet turns off sidebar when printing
 
 Fixed:
 - mysql documentation fixed to note requirement of 4.0+ and InnoDB
@@ -59,6 +60,10 @@ Cleanup:
 - tidied up forms in default stylesheet
 - force textareas to use monospace fonts, lessening surprise on the user
 
+2004-??-?? 0.6.5
+Fixed:
+- mailgw handling of subject-line errors
+
 
 2003-12-17 0.6.4
 Fixed:
index 468333ec42bd4eca5deb6d89bb1ae0cb12f1aea4..af2cde4628176225ac69a1eda6b94881f38a6d96 100644 (file)
@@ -73,7 +73,7 @@ are calling the create() method to create a new node). If an auditor raises
 an exception, the original message is bounced back to the sender with the
 explanatory message given in the exception. 
 
-$Id: mailgw.py,v 1.139 2003-12-04 23:34:25 richard Exp $
+$Id: mailgw.py,v 1.140 2003-12-19 01:50:19 richard Exp $
 """
 
 import string, re, os, mimetools, cStringIO, smtplib, socket, binascii, quopri
@@ -661,7 +661,7 @@ Unknown address: %s
             errors, props = setPropArrayFromString(self, cl, args, nodeid)
             # handle any errors parsing the argument list
             if errors:
-                errors = '\n- '.join(errors)
+                errors = '\n- '.join(map(str, errors))
                 raise MailUsageError, '''
 There were problems handling your subject line argument list:
 - %s