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