This commit is contained in:
2023-01-12 00:03:06 +00:00
parent 624db19e6c
commit 3c67e58660
2 changed files with 29 additions and 41 deletions

View File

@@ -20,8 +20,6 @@ namespace Sockeye.Models
{
SmtpDeliveryActive = true;
Id = 1;
#if (DEBUG)
SmtpDeliveryActive = true;
SmtpServerAddress = "smtp.fastmail.com";
SmtpAccount = "support@onayanova.com";
@@ -30,16 +28,7 @@ namespace Sockeye.Models
SmtpServerPort = 465;
NotifyFromAddress = "support@ayanova.com";
SockeyeServerURL = "http://localhost:8080";
#else
SmtpDeliveryActive = false;
SmtpServerAddress = "mail.example.com";
SmtpAccount = "notifydeliverfromaccount@example.com";
SmtpPassword = "examplepassword";
ConnectionSecurity = NotifyMailSecurity.SSLTLS;
SmtpServerPort = 587;
NotifyFromAddress = "noreply@example.com";
SockeyeServerURL = "https://url_to_my_ayanova_app";
#endif
}
}