Changeset 1964

Show
Ignore:
Timestamp:
10/04/07 09:27:30 (1 year ago)
Author:
anarcat
Message:

i forgot to remove a safety for the patch: we just store user-domain as a name in any case, it still works for non-patched installs

Files:

Legend:

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

    r1963 r1964  
    2828 ---------------------------------------------------------------------- 
    2929*/ 
    30  
    31 /* you need to set VHOST_PATCH=1 in your /etc/alternc/local.sh if you 
    32  * apply Koumbit's vhost mailman patch */ 
    33 @define('L_VHOST_PATCH', 1) 
    3430 
    3531class m_mailman { 
     
    117113    $err->log("mailman","add_lst",$login."@".$domain." - ".$owner); 
    118114    /* the list' internal name */ 
    119     if (L_VHOST_PATCH) { 
    120       $name = $login . '-' . $domain; 
    121     } else { 
    122       $name=$login; 
    123     } 
     115    $name = $login . '-' . $domain; 
    124116 
    125117    if ($login=="") {