16 lines
603 B
C#
16 lines
603 B
C#
using System.Net;
|
|
|
|
namespace InnovEnergy.Logging;
|
|
|
|
internal static class Settings
|
|
{
|
|
public static readonly IPEndPoint IncomingEndPoint = IPEndPoint.Parse("127.0.0.1:6030");
|
|
public static readonly DnsEndPoint SmtpServer = new DnsEndPoint("smtp.friends.com", 587) ;
|
|
|
|
public static readonly String Sender = "log@innov.energy";
|
|
public static readonly String Recipient = Sender;
|
|
public static readonly String SmtpUser = Sender;
|
|
public static readonly String SmtpPassword = "xxxx";
|
|
|
|
public static readonly TimeSpan EmailSubjectThrottle = TimeSpan.FromDays(1);
|
|
} |