1
0
mirror of https://github.com/bitwarden/server synced 2025-12-21 10:43:44 +00:00

ssl override, deprecate defaultCreds and authType

This commit is contained in:
Kyle Spearrin
2019-01-22 21:28:56 -05:00
parent 17cc1d6543
commit a07f37e093
3 changed files with 9 additions and 5 deletions

View File

@@ -113,9 +113,12 @@ namespace Bit.Core
public string Host { get; set; }
public int Port { get; set; } = 25;
public bool Ssl { get; set; } = false;
public bool SslOverride { get; set; } = false;
public string Username { get; set; }
public string Password { get; set; }
[Obsolete]
public bool UseDefaultCredentials { get; set; } = false;
[Obsolete]
public string AuthType { get; set; }
public bool TrustServer { get; set; } = false;
}