mirror of
https://github.com/bitwarden/server
synced 2025-12-14 07:13:39 +00:00
default smtp ports
This commit is contained in:
@@ -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; } = 587;
|
public int Port { get; set; } = 25;
|
||||||
public bool Ssl { get; set; } = true;
|
public bool Ssl { get; set; } = false;
|
||||||
public string Username { get; set; }
|
public string Username { get; set; }
|
||||||
public string Password { get; set; }
|
public string Password { get; set; }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -397,7 +397,7 @@ globalSettings__mail__smtp__host=REPLACE
|
|||||||
globalSettings__mail__smtp__username=REPLACE
|
globalSettings__mail__smtp__username=REPLACE
|
||||||
globalSettings__mail__smtp__password=REPLACE
|
globalSettings__mail__smtp__password=REPLACE
|
||||||
globalSettings__mail__smtp__ssl=true
|
globalSettings__mail__smtp__ssl=true
|
||||||
globalSettings__mail__smtp__port=587");
|
globalSettings__mail__smtp__port=465");
|
||||||
|
|
||||||
if(!_push)
|
if(!_push)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user