1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 07:36:14 -05:00

default smtp ports

This commit is contained in:
Kyle Spearrin
2017-08-21 21:55:32 -04:00
parent b19d8b3055
commit 15e69a529e
2 changed files with 3 additions and 3 deletions

View File

@ -87,8 +87,8 @@ namespace Bit.Core
public class SmtpSettings
{
public string Host { get; set; }
public int Port { get; set; } = 587;
public bool Ssl { get; set; } = true;
public int Port { get; set; } = 25;
public bool Ssl { get; set; } = false;
public string Username { get; set; }
public string Password { get; set; }
}