From c7fcfe04beaf501f19dbda04e8ce44d89a87d3f8 Mon Sep 17 00:00:00 2001 From: Greg Fitzgerald Date: Mon, 6 Mar 2017 23:02:17 -0500 Subject: [PATCH] Fix a couple typos (#1049) * Fix typo should be smtp.gmail.com * Basic auth should say Radarr not Sonarr --- src/NzbDrone.Api/Authentication/EnableAuthInNancy.cs | 4 ++-- src/NzbDrone.Core/Notifications/Email/EmailSettings.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/NzbDrone.Api/Authentication/EnableAuthInNancy.cs b/src/NzbDrone.Api/Authentication/EnableAuthInNancy.cs index 7aa1bce2a..725bdab16 100644 --- a/src/NzbDrone.Api/Authentication/EnableAuthInNancy.cs +++ b/src/NzbDrone.Api/Authentication/EnableAuthInNancy.cs @@ -33,12 +33,12 @@ namespace NzbDrone.Api.Authentication { if (_configFileProvider.AuthenticationMethod == AuthenticationType.Forms) { - RegisterFormsAuth(pipelines); + RegisterFormsAuth(pipelines); } else if (_configFileProvider.AuthenticationMethod == AuthenticationType.Basic) { - pipelines.EnableBasicAuthentication(new BasicAuthenticationConfiguration(_authenticationService, "Sonarr")); + pipelines.EnableBasicAuthentication(new BasicAuthenticationConfiguration(_authenticationService, "Radarr")); } pipelines.BeforeRequest.AddItemToEndOfPipeline((Func) RequiresAuthentication); diff --git a/src/NzbDrone.Core/Notifications/Email/EmailSettings.cs b/src/NzbDrone.Core/Notifications/Email/EmailSettings.cs index ee4c14cae..4204ecacd 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 = "stmp.google.com"; + Server = "smtp.google.com"; Port = 587; Ssl = true; }