--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/update_config_0.3.x-0.4.py Sun Apr 06 21:36:00 2008 +0000
@@ -0,0 +1,17 @@
+#!/usr/bin/env python
+# -*- coding: UTF-8 -*-
+# Copyright 2008 VEB IT
+# See COPYING for distribution information.
+# $Id$
+
+from ConfigParser import ConfigParser
+
+cff = file('/usr/local/etc/vmm.cfg', 'r')
+cf = ConfigParser()
+cf.readfp(cff)
+cff.close()
+if not cf.has_option('misc', 'transport'):
+ cff = file('/usr/local/etc/vmm.cfg', 'w')
+ cf.set('misc', 'transport', 'dovecot:')
+ cf.write(cff)
+ cff.close()