Skip to content
Snippets Groups Projects
Commit cc12e0d5 authored by Niko Ehrenfeuchter's avatar Niko Ehrenfeuchter :keyboard:
Browse files

More configuration elements to be made optional.

This is NOT YET reflected in the configuration example XML!
parent 92391e7c
No related branches found
No related tags found
No related merge requests found
...@@ -18,6 +18,12 @@ namespace AutoTx.XmlWrapper ...@@ -18,6 +18,12 @@ namespace AutoTx.XmlWrapper
SmtpPort = 25; SmtpPort = 25;
SmtpUserCredential = ""; SmtpUserCredential = "";
SmtpPasswortCredential = ""; SmtpPasswortCredential = "";
EmailPrefix = "";
AdminEmailAdress = "";
AdminDebugEmailAdress = "";
InterPacketGap = 0;
EnforceInheritedACLs = true; EnforceInheritedACLs = true;
} }
...@@ -67,12 +73,9 @@ namespace AutoTx.XmlWrapper ...@@ -67,12 +73,9 @@ namespace AutoTx.XmlWrapper
public string TmpTransferDir { get; set; } public string TmpTransferDir { get; set; }
public string EmailFrom { 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 ServiceTimer { get; set; }
public int InterPacketGap { get; set; }
public int MaxCpuUsage { get; set; } public int MaxCpuUsage { get; set; }
public int MinAvailableMemory { get; set; } public int MinAvailableMemory { get; set; }
public int AdminNotificationDelta { get; set; } public int AdminNotificationDelta { get; set; }
...@@ -106,6 +109,12 @@ namespace AutoTx.XmlWrapper ...@@ -106,6 +109,12 @@ namespace AutoTx.XmlWrapper
public string SmtpPasswortCredential { get; set; } public string SmtpPasswortCredential { get; set; }
public int SmtpPort { 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> /// <summary>
/// EnforceInheritedACLs: whether to enforce ACL inheritance when moving files and /// EnforceInheritedACLs: whether to enforce ACL inheritance when moving files and
/// directories, see https://support.microsoft.com/en-us/help/320246 for more details. /// directories, see https://support.microsoft.com/en-us/help/320246 for more details.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment