dotnet-core_mail-server/MailServer/Configuration.cs

14 lines
296 B
C#

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;
}
}