VirtualMailManager/Transport.py
changeset 102 485d3f7d6981
parent 76 14c0a092d7d2
child 110 cb8b2f6a5fca
equal deleted inserted replaced
101:0ab6f74aa165 102:485d3f7d6981
     1 # -*- coding: UTF-8 -*-
     1 # -*- coding: UTF-8 -*-
     2 # Copyright 2008 VEB IT
     2 # Copyright (c) 2008 - 2009, VEB IT
     3 # See COPYING for distribution information.
     3 # See COPYING for distribution information.
     4 # $Id$
       
     5 
     4 
     6 """Virtual Mail Manager's Transport class to manage the transport for
     5 """Virtual Mail Manager's Transport class to manage the transport for
     7 domains and accounts."""
     6 domains and accounts."""
     8 
     7 
     9 from constants.VERSION import VERSION
     8 from constants.VERSION import *
    10 
       
    11 __author__ = 'Pascal Volk <p.volk@veb-it.de>'
       
    12 __version__ = VERSION
       
    13 __revision__ = 'rev '+'$Rev$'.split()[1]
       
    14 __date__ = '$Date$'.split()[1]
       
    15 
     9 
    16 from Exceptions import VMMTransportException
    10 from Exceptions import VMMTransportException
    17 import constants.ERROR as ERR
    11 import constants.ERROR as ERR
    18 
    12 
    19 class Transport:
    13 class Transport: