case 4230

This commit is contained in:
2022-11-02 15:51:59 +00:00
parent 697abe5b00
commit 210d8ab0ee

View File

@@ -21,15 +21,17 @@ namespace AyaNova.Models
SmtpDeliveryActive = true; SmtpDeliveryActive = true;
Id = 1; Id = 1;
#if (DEBUG) // #if (DEBUG)
SmtpServerAddress = "mail.ayanova.com"; // SmtpDeliveryActive = true;
SmtpAccount = "support@ayanova.com"; // SmtpServerAddress = "mail.ayanova.com";
SmtpPassword = "e527b6c5a00c27bb61ca694b3de0ee178cbe3f1541a772774762ed48e9caf5ce"; // SmtpAccount = "support@ayanova.com";
ConnectionSecurity = NotifyMailSecurity.StartTls; // SmtpPassword = "e527b6c5a00c27bb61ca694b3de0ee178cbe3f1541a772774762ed48e9caf5ce";
SmtpServerPort = 465; // ConnectionSecurity = NotifyMailSecurity.StartTls;
NotifyFromAddress = "support@ayanova.com"; // SmtpServerPort = 465;
AyaNovaServerURL="http://localhost:8080"; // NotifyFromAddress = "support@ayanova.com";
#else // AyaNovaServerURL="http://localhost:8080";
// #else
SmtpDeliveryActive = false;
SmtpServerAddress = "mail.example.com"; SmtpServerAddress = "mail.example.com";
SmtpAccount = "notifydeliverfromaccount@example.com"; SmtpAccount = "notifydeliverfromaccount@example.com";
SmtpPassword = "examplepassword"; SmtpPassword = "examplepassword";
@@ -37,7 +39,7 @@ namespace AyaNova.Models
SmtpServerPort = 587; SmtpServerPort = 587;
NotifyFromAddress = "noreply@example.com"; NotifyFromAddress = "noreply@example.com";
AyaNovaServerURL = "https://url_to_my_ayanova_app"; AyaNovaServerURL = "https://url_to_my_ayanova_app";
#endif //#endif
} }
} }