Patch: 66_donot_let_cache_html_pages.patch
Author: Tollef Fog Heen <tfheen@debian.org>
Patch to prevent browser from caching pages (Closes: #281284)
Index: b/Mailman/htmlformat.py
===================================================================
--- a/Mailman/htmlformat.py	2010-05-24 17:51:08.000000000 +0200
+++ b/Mailman/htmlformat.py	2010-05-24 17:51:11.000000000 +0200
@@ -300,7 +300,8 @@
         charset = 'us-ascii'
         if self.language and Utils.IsLanguage(self.language):
             charset = Utils.GetCharSet(self.language)
-        output = ['Content-Type: text/html; charset=%s\n' % charset]
+        output = ['Content-Type: text/html; charset=%s' % charset]
+        output.append('Cache-control: no-cache\n')
         if not self.suppress_head:
             kws.setdefault('bgcolor', self.bgcolor)
             tab = ' ' * indent
