[EMAIL PROTECTED] wrote:
> Revision: 8041
>           http://svn.sourceforge.net/mailman/?rev=8041&view=rev
> Author:   bwarsaw
> Date:     2006-09-25 00:53:58 -0700 (Mon, 25 Sep 2006)
> 
> Log Message:
> -----------
> Another milestone: you can now post to lists.  Converted the following to use
> the new configuration object: admin, admindb, bounces, confirm, inject, join,
> leave, owner, post, request, unshunt, version.
> 
> Also change MailList.GetScriptURL() to return the list's fully qualified name
> in links.
> 
I've tested a bit.

Postfix.py: got duplicate warning while creating virtual-mailman.
Shouldn't we include hostname in aliases? Otherwise, true virtual 
hosting breaks.

MailList.py: got error when name is None. Looks like full_path is 
[EMAIL PROTECTED] order. Is this name + '@' + self.host_name?

I needed this patch to create new lists:

[EMAIL PROTECTED]:~/src/svn.trunk$ svn diff Mailman
Index: Mailman/MTA/Postfix.py
===================================================================
--- Mailman/MTA/Postfix.py      (revision 8041)
+++ Mailman/MTA/Postfix.py      (working copy)
@@ -142,8 +142,9 @@
      print >> fp, '# CREATED:', time.ctime(time.time())
      # Now add all the standard alias entries
      for k, v in makealiases(mlist):
+        fqdnaddr = '[EMAIL PROTECTED]' % (k, hostname)
          # Format the text file nicely
-        print >> fp, mlist.fqdn_listname, ((fieldsz - len(k)) * ' '), k
+        print >> fp, fqdnaddr, ((fieldsz - len(k)) * ' '), k
      # Finish the text file stanza
      print >> fp, '# STANZA END:', listname
      print >> fp
Index: Mailman/MailList.py
===================================================================
--- Mailman/MailList.py (revision 8041)
+++ Mailman/MailList.py (working copy)
@@ -287,14 +287,17 @@
              os.path.join(config.LOCK_DIR, name or '<site>') + '.lock',
              lifetime=config.LIST_LOCK_LIFETIME)
          # XXX FIXME Sometimes name is fully qualified, sometimes it's not.
-        if '@' in name:
-            self._internal_name, self.host_name = name.split('@', 1)
-            self._full_path = os.path.join(config.LIST_DATA_DIR, name)
-        else:
-            self._internal_name = name
-            self.host_name = config.DEFAULT_EMAIL_HOST
-            self._full_path = os.path.join(config.LIST_DATA_DIR,
-                                           self.host_name + '@' + name)
+       if name:
+            if '@' in name:
+                self._internal_name, self.host_name = name.split('@', 1)
+                self._full_path = os.path.join(config.LIST_DATA_DIR, name)
+            else:
+                self._internal_name = name
+                self.host_name = config.DEFAULT_EMAIL_HOST
+                self._full_path = os.path.join(config.LIST_DATA_DIR,
+                                               self.host_name + '@' + name)
+       else:
+           self._full_path = ''
          # Only one level of mixin inheritance allowed
          for baseclass in self.__class__.__bases__:
              if hasattr(baseclass, 'InitTempVars'):

-- 
Tokio Kikuchi, [EMAIL PROTECTED]
http://weather.is.kochi-u.ac.jp/
_______________________________________________
Mailman-Developers mailing list
Mailman-Developers@python.org
http://mail.python.org/mailman/listinfo/mailman-developers
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: 
http://www.mail-archive.com/mailman-developers%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-developers/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp

Reply via email to