VMM/common: Improve search_address complexity
Checking the dictionary (a hash) for existence of a key is likely to be
O(log(n)), while checking a list is O(n). Therefore, to increase
performance, this patch changes the check accordingly.
#!/usr/bin/env python# -*- coding: UTF-8 -*-# Copyright 2007 - 2012, Pascal Volk# See COPYING for distribution information."""This is the vmm main script."""importsysif__name__=='__main__':# replace the script's cwd (/usr/local/sbin) with our module dir# (the location of the VirtualMailManager directory) - if it is# not in sys.path#sys.path[0] = '/usr/local/lib/vmm'# Otherwise just remove /usr/local/sbin from sys.pathsys.path.remove(sys.path[0])fromVirtualMailManager.cli.mainimportrunsys.exit(run(sys.argv))