equal
deleted
inserted
replaced
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 |