case 4230

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

View File

@@ -21,23 +21,25 @@ 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";
SmtpServerAddress="mail.example.com"; // #else
SmtpAccount="notifydeliverfromaccount@example.com"; SmtpDeliveryActive = false;
SmtpPassword="examplepassword"; SmtpServerAddress = "mail.example.com";
ConnectionSecurity= NotifyMailSecurity.SSLTLS; SmtpAccount = "notifydeliverfromaccount@example.com";
SmtpServerPort=587; SmtpPassword = "examplepassword";
NotifyFromAddress="noreply@example.com"; ConnectionSecurity = NotifyMailSecurity.SSLTLS;
AyaNovaServerURL="https://url_to_my_ayanova_app"; SmtpServerPort = 587;
#endif NotifyFromAddress = "noreply@example.com";
AyaNovaServerURL = "https://url_to_my_ayanova_app";
//#endif
} }
} }