[Mailman-Users] v2.0beta2 three patches

Bernhard Reiter bernhard at intevation.de
Fri Apr 21 14:01:55 CEST 2000


Just to keep you informed I started testing mailman-2.0beta2 here.

The three changes I made are attached.

The first ist cosmetic: It removes the python and gnu logo from the
	mailman webpages. Putting logos down there is inflational
	I guess that one pointer to the product is enough in this case.
	If people click through when they are interested it,
	they still can get all the information.

The second fixes a bug in cron/checkdbs already fixed in the CVS
version.

The third fixes a bug for archival of moderated mails.

Everything well known on the developers list, but I thought 
you might like the summary.

	Bernhard
-- 
Professional Service around Free Software                (intevation.net)  
The FreeGIS Project				            (freegis.org)
Association for a Free Informational Infrastructure            (ffii.org)
-------------- next part --------------
--- Mailman/htmlformat.py	Tue Apr 18 12:03:34 2000
+++ Mailman/htmlformat.py	Tue Apr 18 12:08:38 2000
@@ -520,21 +520,9 @@
             return mm_cfg.IMAGE_LOGOS + file
         mmlink = Link(MAILMAN_URL,
                       '<img src="%s" alt="Delivered by Mailman" border=0>'
-                      '<br>version %s'
+                      'v%s'
                       % (logo(DELIVERED_BY), mm_cfg.VERSION))
-        pylink = Link(PYTHON_URL,
-                      '<img src="%s" alt="Python Powered" border=0>' %
-                      logo(PYTHON_POWERED))
-        gnulink = Link(GNU_URL,
-                       '<img src="%s" alt="GNU\'s Not Unix" border=0>' %
-                       logo(GNU_HEAD))
-        text = Container(Link(MAILMAN_URL, 'Mailman home page'),
-                         '<br>',
-                         Link(PYTHON_URL, 'Python home page'),
-                         '<br>',
-                         Link(GNU_URL, 'GNU home page'),
-                         )
-        t.AddRow([mmlink, pylink, gnulink, text])
+        t.AddRow([mmlink])
     else:
         # use only textual links
         mmlink = Link(MAILMAN_URL,
-------------- next part --------------
--- cron/checkdbs.org	Tue Apr 18 19:36:36 2000
+++ cron/checkdbs	Tue Apr 18 19:37:02 2000
@@ -69,7 +69,7 @@
             pending.append('Pending subscriptions:')
             first = 0
         when, addr, passwd, digest = mlist.GetRecord(id)
-        pending.append('    %s %s' % addr, time.ctime(when))
+        pending.append('    %s %s' % (addr, time.ctime(when)))
     first = 1
     for id in mlist.GetHeldMessageIds():
         if first:
-------------- next part --------------
--- Mailman/ListAdmin.py.org	Wed Apr 19 15:49:23 2000
+++ Mailman/ListAdmin.py	Wed Apr 19 15:49:55 2000
@@ -139,7 +139,7 @@
         omask = os.umask(002)
         try:
             fp = open(os.path.join(mm_cfg.DATA_DIR, filename), 'w')
-            fp.write(str(msg))
+            fp.write(msg.unixfrom + str(msg))
             fp.close()
         finally:
             os.umask(omask)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 244 bytes
Desc: not available
Url : http://mail.python.org/pipermail/mailman-users/attachments/20000421/68fca2e4/attachment.pgp 


More information about the Mailman-Users mailing list