# HG changeset patch
# User Pascal Volk <neverseen@users.sourceforge.net>
# Date 1264132848 0
# Node ID 6f8ac86d1611f3508bccca1a15d6d76acd2d237c
# Parent  d9ca5c46c1fa339fa5c1396ed6306d8d8eb3edee
VMM/Config: Fixed error handling of missing sections in vmm.cfg.

diff -r d9ca5c46c1fa -r 6f8ac86d1611 VirtualMailManager/Config.py
--- a/VirtualMailManager/Config.py	Mon Jan 18 18:34:48 2010 +0000
+++ b/VirtualMailManager/Config.py	Fri Jan 22 04:00:48 2010 +0000
@@ -154,6 +154,7 @@
         for s in self.__VMMsections:
             if not self.has_section(s):
                 self.__missing[s] = [True]
+                errors = True
             elif not self.__chkOptions(s):
                 errors = True
         return not errors