fixup! New: Option to disable Email encryption
This commit is contained in:
parent
ae1e972849
commit
646f9a4d27
|
@ -44,7 +44,7 @@ namespace NzbDrone.Core.Test.Datastore.Migration
|
|||
items.Should().HaveCount(1);
|
||||
items.First().Implementation.Should().Be("Email");
|
||||
items.First().ConfigContract.Should().Be("EmailSettings");
|
||||
items.First().Settings.UseEncryption.Should().Be((int)EmailEncryptionType.Optimistically);
|
||||
items.First().Settings.UseEncryption.Should().Be((int)EmailEncryptionType.Preferred);
|
||||
}
|
||||
|
||||
[Test]
|
||||
|
|
|
@ -1261,7 +1261,7 @@
|
|||
"NotificationsEmailSettingsServer": "Server",
|
||||
"NotificationsEmailSettingsServerHelpText": "Hostname or IP of Email server",
|
||||
"NotificationsEmailSettingsUseEncryption": "Use Encryption",
|
||||
"NotificationsEmailSettingsUseEncryptionHelpText": "Whether to optimistically use encryption if configured on the server, to always use encryption via SSL (Port 465 only) or StartTLS (any other port) or to never use encryption",
|
||||
"NotificationsEmailSettingsUseEncryptionHelpText": "Whether to prefer using encryption if configured on the server, to always use encryption via SSL (Port 465 only) or StartTLS (any other port) or to never use encryption",
|
||||
"NotificationsEmbySettingsSendNotifications": "Send Notifications",
|
||||
"NotificationsEmbySettingsSendNotificationsHelpText": "Have MediaBrowser send notifications to configured providers",
|
||||
"NotificationsEmbySettingsUpdateLibraryHelpText": "Update Library on Import, Rename, or Delete?",
|
||||
|
|
|
@ -74,7 +74,7 @@ namespace NzbDrone.Core.Notifications.Email
|
|||
|
||||
public enum EmailEncryptionType
|
||||
{
|
||||
Optimistically = 0,
|
||||
Preferred = 0,
|
||||
Always = 1,
|
||||
Never = 2
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue