From 8ca66fb61a9012f9f81e1d6de49774650ea8cfdc Mon Sep 17 00:00:00 2001 From: Donald Webster Date: Tue, 18 Apr 2017 10:28:15 -0700 Subject: [PATCH] Change smtp.google.com to smtp.gmail.com (#1410) --- src/NzbDrone.Core/Notifications/Email/EmailSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Notifications/Email/EmailSettings.cs b/src/NzbDrone.Core/Notifications/Email/EmailSettings.cs index 4204ecacd..793b7b163 100644 --- a/src/NzbDrone.Core/Notifications/Email/EmailSettings.cs +++ b/src/NzbDrone.Core/Notifications/Email/EmailSettings.cs @@ -22,7 +22,7 @@ namespace NzbDrone.Core.Notifications.Email public EmailSettings() { - Server = "smtp.google.com"; + Server = "smtp.gmail.com"; Port = 587; Ssl = true; }