Changeset 2565


Ignore:
Timestamp:
10/01/09 19:08:29 (4 years ago)
Author:
mlutfy
Message:

support multi-domain mailman patch, otherwise member list is always empty (regexp/quoting was too strict)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • alternc-mailman/trunk/src/mailman.list

    r1594 r2565  
    1818$( = $); 
    1919 
    20 if (!($listname =~ /^([a-z0-9]+)$/)) { 
     20if (!($listname =~ /^([-\.a-z0-9]+)$/)) { 
    2121    die "List name is incorrect."; 
    2222} 
    2323$listname=$1; 
    2424 
    25 exec($M_PATH." '".quotemeta($listname)."'"); 
     25exec($M_PATH." '". $listname ."'"); 
    2626 
    27270; 
Note: See TracChangeset for help on using the changeset viewer.