Changeset 2206

Show
Ignore:
Timestamp:
04/24/08 20:54:45 (3 weeks ago)
Author:
anarcat
Message:

VirtualMailman hack:

make it so the internal list name also includes the domain name

this should not affect non-patched Mailman installations.

See #1106

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • alternc-mailman/trunk/bureau/class/m_mailman.php

    r2205 r2206  
    113113    $err->log("mailman","add_lst",$login."@".$domain." - ".$owner); 
    114114    /* the list' internal name */ 
    115     // $name = $login . '-' . $domain; # works only with the 
    116     // VirtualMailman patch 
    117     $name = $login = strtolower($login); 
     115    $login = strtolower($login); 
     116    $name = $login . '-' . $domain; 
    118117 
    119118    if ($login=="") {