Files
sockeye/server/biz/NotifyMailSecurity.cs
2022-12-16 06:01:23 +00:00

22 lines
305 B
C#

namespace Sockeye.Biz
{
/// <summary>
/// All Sockeye smtp notification connection security
///
/// </summary>
public enum NotifyMailSecurity : int
{
None = 0,
StartTls = 1,
SSLTLS=3
//NEW ITEMS REQUIRE translation KEYS
}
}//eons