* 'create_tables.pgsql'
- create separate tables for transport an maildir-folder
- assigned transport to users table
- adjusted some views
#!/usr/bin/env python# -*- coding: UTF-8 -*-# opyright 2007-2008 VEB IT# See COPYING for distribution information.# $Id$"""Exception classes for Virtual Mail Manager"""fromconstants.VERSIONimportVERSION__author__='Pascal Volk <p.volk@veb-it.de>'__version__=VERSION__revision__='rev '+'$Rev$'.split()[1]__date__='$Date$'.split()[1]classVMMException(Exception):"""Ausnahmeklasse für die Klasse VirtualMailManager"""def__init__(self,msg):Exception.__init__(self,msg)classVMMConfigException(Exception):"""Ausnahmeklasse für Konfigurationssausnamhem"""def__init__(self,msg):Exception.__init__(self,msg)classVMMPermException(Exception):"""Ausnahmeklasse für Berechtigungsausnamhem"""passclassVMMNotRootException(Exception):"""Ausnahmeklasse für unberechtige Zugriffe"""def__init__(self,msg):Exception.__init__(self,msg)classVMMDomainException(VMMException):"""Ausnahmeklasse für Domainausnamhem"""def__init__(self,msg):VMMException.__init__(self,msg)classVMMAccountException(VMMException):"""Ausnahmeklasse für Accountausnamhem"""def__init__(self,msg):VMMException.__init__(self,msg)classVMMAliasException(VMMException):"""Ausnahmeklasse für Aliasausnamhem"""def__init__(self,msg):VMMException.__init__(self,msg)