using System; using System.Collections.Generic; using System.Text; namespace MailServer { public class Configuration { public const string Hostname = "localhost"; public const bool STARTTLS_Active = false; public const int MaxMessageSizeInKb = 500000; } }