* 'update_config_0.3.x-0.4.py'
* 'upgrade.sh'
* 'UPGRADE'
- added to repository
* 'install.sh'
- Removed $PF_GID
* 'INSTALL'
- Added some hints
* 'VirtualMailManager/VirtualMailManager.py'
- fixed an ugly bug
#!/usr/bin/env python# -*- coding: UTF-8 -*-# Copyright 2008 VEB IT# See COPYING for distribution information.# $Id$fromConfigParserimportConfigParsercff=file('/usr/local/etc/vmm.cfg','r')cf=ConfigParser()cf.readfp(cff)cff.close()ifnotcf.has_option('misc','transport'):cff=file('/usr/local/etc/vmm.cfg','w')cf.set('misc','transport','dovecot:')cf.write(cff)cff.close()