dotnet-core_mail-server/MailServer/Configuration.cs

14 lines
296 B
C#
Raw Permalink Normal View History

2016-11-27 17:38:47 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace MailServer
{
public class Configuration
{
public const string Hostname = "localhost";
2016-12-09 14:41:35 +00:00
public const bool STARTTLS_Active = false;
2016-11-30 20:09:45 +00:00
public const int MaxMessageSizeInKb = 500000;
2016-11-27 17:38:47 +00:00
}
}