mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
smtp env config
This commit is contained in:
parent
da9cdd9257
commit
e79e265ef0
@ -87,8 +87,8 @@ namespace Bit.Core
|
|||||||
public class SmtpSettings
|
public class SmtpSettings
|
||||||
{
|
{
|
||||||
public string Host { get; set; }
|
public string Host { get; set; }
|
||||||
public int Port { get; set; }
|
public int Port { get; set; } = 587;
|
||||||
public bool Ssl { get; set; }
|
public bool Ssl { get; set; } = true;
|
||||||
public string Username { get; set; }
|
public string Username { get; set; }
|
||||||
public string Password { get; set; }
|
public string Password { get; set; }
|
||||||
}
|
}
|
||||||
|
@ -392,7 +392,12 @@ globalSettings__duo__aKey={Helpers.SecureRandomString(64, alpha: true, numeric:
|
|||||||
globalSettings__installation__id={_installationId}
|
globalSettings__installation__id={_installationId}
|
||||||
globalSettings__installation__key={_installationKey}
|
globalSettings__installation__key={_installationKey}
|
||||||
globalSettings__yubico__clientId=REPLACE
|
globalSettings__yubico__clientId=REPLACE
|
||||||
globalSettings__yubico__key=REPLACE");
|
globalSettings__yubico__key=REPLACE
|
||||||
|
globalSettings__mail__smtp__host=REPLACE
|
||||||
|
globalSettings__mail__smtp__username=REPLACE
|
||||||
|
globalSettings__mail__smtp__password=REPLACE
|
||||||
|
globalSettings__mail__smtp__ssl=true
|
||||||
|
globalSettings__mail__smtp__port=587");
|
||||||
|
|
||||||
if(!_push)
|
if(!_push)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user