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
Branches
Tags
No related merge requests found
......@@ -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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment