1
0
mirror of https://github.com/bitwarden/server synced 2025-12-17 16:53:23 +00:00

SMTP config allow no username/password

This commit is contained in:
Kyle Spearrin
2017-10-05 08:34:46 -04:00
parent 23eb24c2bc
commit ce9067a434
4 changed files with 11 additions and 6 deletions

View File

@@ -92,6 +92,7 @@ namespace Bit.Core
public bool Ssl { get; set; } = false;
public string Username { get; set; }
public string Password { get; set; }
public bool UseDefaultCredentials { get; set; } = false;
}
}