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) 2010, Pascal Volk
# See COPYING for distribution information.
"""
VirtualMailManager.pycompat
VirtualMailManager's compatibility stuff for Python 2.4
"""
# http://docs.python.org/library/functions.html#all
try:
all = all
except NameError:
def all(iterable):
"""Return True if all elements of the *iterable* are true
(or if the iterable is empty).
"""
for element in iterable:
if not element:
return False
return True