From 6aa7442e43301f828a709c0c3e74c1d8da0dfcdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Thu, 29 Aug 2019 22:11:45 +0200 Subject: [PATCH] Changing default smtp port to use the new inbucket port as default (#11965) --- model/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model/config.go b/model/config.go index b64a2f3215..5236937076 100644 --- a/model/config.go +++ b/model/config.go @@ -1231,7 +1231,7 @@ func (s *EmailSettings) SetDefaults(isUpdate bool) { } if s.SMTPPort == nil || len(*s.SMTPPort) == 0 { - s.SMTPPort = NewString("2500") + s.SMTPPort = NewString("10025") } if s.ConnectionSecurity == nil || *s.ConnectionSecurity == CONN_SECURITY_PLAIN {