diff --git a/AutoTx/XmlWrapper/ServiceConfig.cs b/AutoTx/XmlWrapper/ServiceConfig.cs
index bcfc89099e36cbc3cce7b52f88b727a474c7a7a6..d644cdb6b15961927d7e7b4f61f90fa92c5163eb 100644
--- a/AutoTx/XmlWrapper/ServiceConfig.cs
+++ b/AutoTx/XmlWrapper/ServiceConfig.cs
@@ -18,6 +18,12 @@ namespace AutoTx.XmlWrapper
             SmtpPort = 25;
             SmtpUserCredential = "";
             SmtpPasswortCredential = "";
+            EmailPrefix = "";
+            AdminEmailAdress = "";
+            AdminDebugEmailAdress = "";
+
+            InterPacketGap = 0;
+
             EnforceInheritedACLs = true;
         }
 
@@ -67,12 +73,9 @@ namespace AutoTx.XmlWrapper
         public string TmpTransferDir { get; set; }
 
         public string EmailFrom { get; set; }
-        public string AdminEmailAdress { get; set; }
-        public string AdminDebugEmailAdress { get; set; }
-        public string EmailPrefix { get; set; }
 
         public int ServiceTimer { get; set; }
-        public int InterPacketGap { get; set; }
+
         public int MaxCpuUsage { get; set; }
         public int MinAvailableMemory { get; set; }
         public int AdminNotificationDelta { get; set; }
@@ -106,6 +109,12 @@ namespace AutoTx.XmlWrapper
         public string SmtpPasswortCredential { get; set; }
         public int SmtpPort { get; set; }
 
+        public string EmailPrefix { get; set; }
+        public string AdminEmailAdress { get; set; }
+        public string AdminDebugEmailAdress { get; set; }
+
+        public int InterPacketGap { get; set; }
+
         /// <summary>
         /// EnforceInheritedACLs: whether to enforce ACL inheritance when moving files and
         /// directories, see https://support.microsoft.com/en-us/help/320246 for more details.