2 # Copyright (c) 2008 - 2009, VEB IT |
2 # Copyright (c) 2008 - 2009, VEB IT |
3 # See COPYING for distribution information. |
3 # See COPYING for distribution information. |
4 |
4 |
5 """Virtual Mail Manager's Relocated class to manage relocated users.""" |
5 """Virtual Mail Manager's Relocated class to manage relocated users.""" |
6 |
6 |
7 from constants.VERSION import * |
7 from __main__ import ERR |
8 |
|
9 from Exceptions import VMMRelocatedException as VMMRE |
8 from Exceptions import VMMRelocatedException as VMMRE |
10 from Domain import Domain |
9 from Domain import Domain |
11 from EmailAddress import EmailAddress |
10 from EmailAddress import EmailAddress |
12 import constants.ERROR as ERR |
|
13 import VirtualMailManager as VMM |
11 import VirtualMailManager as VMM |
14 |
12 |
15 class Relocated(object): |
13 class Relocated(object): |
16 """Class to manage e-mail addresses of relocated users.""" |
14 """Class to manage e-mail addresses of relocated users.""" |
17 __slots__ = ('_addr', '_dest', '_gid', '_isNew', '_dbh') |
15 __slots__ = ('_addr', '_dest', '_gid', '_isNew', '_dbh') |