1 Patch to prevent browser from caching pages.
2 Index: Mailman/htmlformat.py
3 ===================================================================
4 --- Mailman/htmlformat.py.orig 2006-09-19 13:43:51.000000000 +0200
5 +++ Mailman/htmlformat.py 2006-09-19 15:47:16.000000000 +0200
8 if self.language and Utils.IsLanguage(self.language):
9 charset = Utils.GetCharSet(self.language)
10 - output = ['Content-Type: text/html; charset=%s\n' % charset]
11 + output = ['Content-Type: text/html; charset=%s' % charset]
12 + output.append('Cache-control: no-cache\n')
13 if not self.suppress_head:
14 kws.setdefault('bgcolor', self.bgcolor)