VirtualMailManager/constants/version.py
author Pascal Volk <neverseen@users.sourceforge.net>
Sat, 27 Feb 2010 21:36:55 +0000
branchv0.6.x
changeset 221 371ae0b4443d
parent 215 33f727efa7c4
permissions -rw-r--r--
VMM/Alias: renamed Alias.add_destination() to add_destinations(). Now it's possible to add one ore more destinations to the alias with a single method call. VMM/Handler: adjusted Handler.aliasAdd() to the API changes of the Alias class. Also use get_gid from the Domain module to get the gid of a domain. We don't need complete Domain object, only the gid. Handler.getWarnings(): no longer return the __warnings list. Return a copy instead and empty the Handler.__warnings list.

# -*- coding: UTF-8 -*-
# Copyright (c) 2007 - 2010, Pascal Volk
# See COPYING for distribution information.

"""
    VirtualMailManager.constants.version

    VirtualMailManager's versions information.
"""

__all__ = ['__author__', '__date__', '__version__']
AUTHOR = 'Pascal Volk <neverseen@users.sourceforge.net>'
RELDATE = '2009-09-09'
VERSION = '0.5.2'
__author__ = AUTHOR
__date__ = RELDATE
__version__ = VERSION