VirtualMailManager/Domain.py
changeset 4 f3c30b7421b9
parent 3 a9b44e04bf01
child 8 7e3ce56f49e6
equal deleted inserted replaced
3:a9b44e04bf01 4:f3c30b7421b9
     4 # See COPYING for distribution information.
     4 # See COPYING for distribution information.
     5 # $Id$
     5 # $Id$
     6 
     6 
     7 """Virtual Mail Manager's Domain class to manage e-mail domains."""
     7 """Virtual Mail Manager's Domain class to manage e-mail domains."""
     8 
     8 
       
     9 from constants.VERSION import VERSION
       
    10 
     9 __author__ = 'Pascal Volk <p.volk@veb-it.de>'
    11 __author__ = 'Pascal Volk <p.volk@veb-it.de>'
    10 __version__ = 'rev '+'$Rev$'.split()[1]
    12 __version__ = VERSION
       
    13 __revision__ = 'rev '+'$Rev$'.split()[1]
    11 __date__ = '$Date$'.split()[1]
    14 __date__ = '$Date$'.split()[1]
    12 
    15 
    13 from random import choice
    16 from random import choice
    14 
    17 
    15 from Exceptions import VMMDomainException
    18 from Exceptions import VMMDomainException