VirtualMailManager/Handler.py
branchv0.6.x
changeset 208 efa1327b721f
parent 197 d2712e8c724e
child 215 33f727efa7c4
equal deleted inserted replaced
207:95be8f62bc0c 208:efa1327b721f
    33 from VirtualMailManager.ext.Postconf import Postconf
    33 from VirtualMailManager.ext.Postconf import Postconf
    34 
    34 
    35 
    35 
    36 SALTCHARS = './0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
    36 SALTCHARS = './0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
    37 RE_DOMAIN_SRCH = """^[a-z0-9-\.]+$"""
    37 RE_DOMAIN_SRCH = """^[a-z0-9-\.]+$"""
    38 RE_LOCALPART = """[^\w!#$%&'\*\+-\.\/=?^_`{\|}~]"""
       
    39 RE_MBOX_NAMES = """^[\x20-\x25\x27-\x7E]*$"""
    38 RE_MBOX_NAMES = """^[\x20-\x25\x27-\x7E]*$"""
    40 
    39 
    41 
    40 
    42 class Handler(object):
    41 class Handler(object):
    43     """Wrapper class to simplify the access on all the stuff from
    42     """Wrapper class to simplify the access on all the stuff from