Ankündigung

Einklappen
Keine Ankündigung bisher.

Hager Domovea - Tipps & Tricks (Version 1.0: TJA 450, TJ 701A)

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

    Nur ein kurzer Hinweis:
    Für iOS gibt es seit zwei Tagen einen neuen Client, Version 3.7.0.4

    Changelog: "Fehler Korrekturen".

    Ich konnte bisher nichts auffälliges feststellen.

    Schönen Abend.
    Jörg

    Kommentar


      Zitat von JoergDr Beitrag anzeigen
      Scrady

      Konstanten und Variablen funktionieren in der Domovea wie in anderen Programmiersprachen oder Skriptsprachen auch.

      Hier also mal ein kleines Konstanten- und Variablen-Tutorial:

      ....

      3.
      Domovea Sequenzen laufen gleichzeitig, parallel zueinander ab.

      Die Variablen sind dabei nicht geschützt. Man kann zwar den Inhalt von Variablen in mehreren Sequenzen gleichzeitig auslesen, aber wenn man im gleichen Moment den Inhalt der Variable verändert, kann das zu einem Fehlerabbruch einer oder mehrerer Sequenzen führen. Es gibt Strategien, sich davor zu schützen. Wie das im Detail geht, würde hier jetzt zu weit führen.

      Mit fehlerhaften Abbrüchen von Sequenzen muss man übrigens bei der Domovea immer mal rechnen. Deshalb sollten kritische Funktionen (wie Heizungssteuerung oder Alarmanlage etc.) möglichst nicht in der Domovea programmiert werden. Zumindest sollte man die Sequenzen fehlersicher programmieren und den Fehlerfall erkennen und darauf reagieren. Aber das geht jetzt zu sehr ins Detail, dass kann ich vielleicht ein andermal genauer erläutern.

      ...

      Ok, ich hoffe das hilft ein wenig weiter.

      Grüße, Jörg


      Hallo Jörg,

      nachdem ich beim Programmieren von Sequenzen in der Domovea mit Variablen auf recht "merkwürdige" Verhaltsweisen gestoßen bin, ging ich auf die Suche und fand unter https://knx-user-forum.de/forum/%C3%...stausch/page41 Deine Hinweise bei dem Punkt 3.
      Zuerst einmal besten Dank für Deine Infos dort. Mich interessiert, mit welchen "Strategien" man sich davor schützen kann, dass es einen Fehlerabbruch von Sequenzen gibt beim Ändern des Werts einer Variablen, die in mehreren potentiell parallel aufgeführten Sequenzen verwendet wird. Außerdem hast Du geschrieben, dass man "Sequenzen fehlersicher programmieren und den Fehlerfall erkennen und darauf reagieren" kann. "Aber das geht jetzt zu sehr ins Detail, dass kann ich vielleicht ein andermal genauer erläutern."
      Gibt es (vielleicht sonstwo?) bereits eine Erläuterung dazu, die ich durchlesen könnte? Oder wäre es möglich, das hier für alle Interessierten schriftlich zu erläutern?
      Freue mich auf Deine Antwort!

      Viele Grüße aus dem Rheingau
      Berthold

      P.S.: Bei mir läuft die Softwareversion 3.6.0.2. (3.7.0.1 ist nicht installiert, da in der Beschreibung keine für mich relevanten Verbesserungen enthalten sind.)

      Kommentar


        Hallo Berthold,

        welche "merkwürdigen" Verhaltensweise hast Du denn in den Sequenzen gefunden?

        Ich habe die Erfahrung gemacht, dass folgende Fehler gerne passieren:

        1. Wenn man im grafischen Editor in einer Sequenz Elemente kopiert oder verschiebt, so können Fehler auftreten.

        Das passiert vor allem bei ganzen Zweigen einer "Wenn"-Bedingung, werden diese neu positioniert, so treten beim Beenden des "Ja"- oder "Nein"-Zweigs Anschlussfehler auf, die Sequenz wird dann ab dieser Stelle nicht mehr weitergeführt sondern mit Fehler abgebrochen. Wie man das findet, erläutere ich weiter unten.

        Diese Fehler führen dazu, dass eine Sequenz in einem Unterzweig fehlerhaft wird. Wird der Unterzweig durchlaufen, so bricht die Sequenz an dessen Ende ab. Leider bekommt man davon kaum etwas mit, ausser man installiert eine eigene Fehlerbehandlung. In der Praxis sind solche Fehler mehr als lästig, weil manchmal die Sequenz einfach abgebrochen wird, man aber nicht mitbekommt warum. Immerhin treten die Fehler aber zuverlässig wiederholbar auf und man kann sie so finden.

        Man kann das reparieren oder vermeiden, indem man als letzte Anweisung in einer kopierten oder verschobenen "Ja" oder "Nein"-Kette eines "Wenn"-Zweigs eine beliebige leere Anweisung (zum Beispiel "Rechenoperation") einfügt und sie dann gleich wieder löscht. Dann stellt der Editor den Bezug zum nächsten Befehl wieder korrekt her.

        Wer den Verdacht hat, dass er solche Fehler in seinen Sequenzen hat, kann diese Reparatur (nach vorherigem Backup) mal in allen Zweigen in den Sequenzen testweise durchführen. Wenn man sorgfältig vorgeht, kann dabei eigentlich nichts schiefgehen.

        2. Wenn man die gleichen Variablen in verschiedenen Sequenzen verwendet, so können beim Zugriff Fehler entstehen.

        Anmerkung: bei der Domovea sind eigentlich alle Konstanten und Variablen "global", d.h. sie können in jeder Sequenz gelesen oder verändert werden. Man sollte in jedem Fall streng darauf achten, dass eigentlich "lokale" Variablen, die man nur in einer Sequenz benötigt, in keiner anderen Sequenz verwendet werden. Am besten macht man dies durch spezielle Variablennamen, die eine eindeutige Unterscheidung bieten. Die Domovea unterstützt einen da sogar recht gut, denn wenn man eine Variable umbenennt, so ändert sich der Name auch automatisch in allen Sequenzen (der Name ist also nur ein "Zeiger" auf eine interne Variablenkennung).

        Diese Fehler sind schwerer zu entdecken, weil dadurch Sequenzen an beliebiger Stelle und zu jeweils einem anderen Zeitpunkt abgebrochen werden können. Ich vermute, dass die Zugriffe auf die Variablen nicht "Thread-Safe" sind. In der Domovea laufen Sequenzen parallel ab, es kann also immer mal vorkommen, dass zwei Sequenzen zur gleichen Zeit auf eine Variable zugreifen. Solange dies nur lesend geschieht, sollte das eigentlich gut gehen. Werden dabei aber Werte verändert, so können Konflikte und Fehler auftreten.

        Um das zu vermeiden, sollten Variablen nur dann gemeinsam von verschiedenen Sequenzen genutzt werden, wenn das unbedingt notwendig ist. Ausserdem kann man sich eine Art von "Zutrittskontrolle" schaffen, so dass eine Sequenz, die solche Variablen verändert, nur dann läuft wenn sie es gefahrlos darf.

        Es gibt dazu verschiedene Techniken, ich gehe mal ganz kurz auf zwei davon ein:

        a. "gesperrte" Variablen

        Dazu verwendet man für solche Variablen eine "Sperre", also eine zweite Variable in der ein Wert gesetzt wird ("Wahrheitswert"="Wahr"), bevor ein Schreibzugriff auf die Variable erfolgt und nach dem Schreibzugriff dieser wieder gelöscht wird. Das ist zwar etwas umständlich, aber funktioniert bei mir soweit.

        -> bei Lesezugriff: Davor eine "Während"-Schleife, die wartet bis die Sperre zur Variable auf "Unwahr" steht. Innerhalb der Schleife sollte kurz (1 Sek.) gewartet werden, damit andere Sequenzen weiterlaufen können. Ausserdem sollte zur Sicherheit noch eine Zählvariable eingesetzt werden, damit die Schleife bei einem Fehler nicht endlos läuft. Wenn also nach 10 Versuchen die Sperre immer noch nicht aufgehoben ist, wird trotzdem weitergemacht.

        -> bei Schreibzugriff (wenn es die einzigste Sequenz mit Schreibzugriff auf die Variable ist): Die "Sperre" setzen und dann eine kurze Zeit warten (ca. 5 Sekunden) bis die Variable in den anderen Sequenzen sicher frei von Zugriffen ist. Danach die Variable ändern und die Sperre wieder aufheben. Wird die Variable auch noch in anderen Sequenzen geändert, so muss vorher zudem noch wie bei einem Lesezugriff gewartet werden bis die Variable frei ist.

        b. Sammelsequenz zum Setzen von Variablen

        So viele globale Variablen benötigt man eigentlich auch nicht in der Domovea. Ich habe bei mir daher nur eine einzige Sequenz, die einige globale Variablen gleich nach Mitternacht setzt (zum Beispiel die Tageszahl als Integerwert für Berechnungen, die Summe der Gradtagzahlen für Verbrauchsprognosen, etc.).

        Hier gehe ich so vor:

        a. die Sequenz zum Setzen der globalen Variablen setzt gleich am Anfang eine globale Sperrvariable und wartet dann 1 Minute (bzw. die längste Laufzeit der Sequenzen, in denen die Globalvariablen Verwendung finden). Am Ende der Sequenz wird die Sperrvariable dann wieder gelöscht.

        b.die Sequenzen, in denen die Globalvariablen Verwendung finden, warten am Anfang bis die globale Sperrvariable frei geworden ist (siehe oben zu "Lesezugriff").

        Das ist natürlich deutlich weniger Aufwand als jede Variable einzeln abzusichern und relativ schnell implementiert.

        weiter gleich im zweiten Teil....
        Zuletzt geändert von JoergDr; 28.12.2018, 17:59.

        Kommentar


          Teil zwei:

          "Debuggen" von Sequenzen

          Hier geht es darum, sich den Namen der fehlerhaften Sequenz und die Position in der Sequenz ausgegeben zu lassen, um Fehler zu finden und zu beheben.

          Um Fehler in Sequenzen zu erkennen, hat die Domovea den Reiter "bei Fehler". Dieser wird immer dann aufgerufen, wenn es interne oder externe Fehler im Ablauf einer Sequenz gibt. Interne Fehler sind dabei Strukturfehler in der Ablaufsequenz, wie oben beschrieben, mathematische Fehler (zB "Division durch Null") oder Zugriff auf gelöschte Variablen oder Konstanten.

          Externe Fehler sind Fehler die durch äussere Einflüsse ausgelöst werden, zum Beispiel durch fehlende oder falsche Daten bei Abruf einer Gruppenadresse. Die Domovea liest auf dem Bus alles mit und speichert diese Daten in einem internem Cache. Bei Zugriff auf eine Gruppenadresse wird zuerst der Wert aus dem Cache verwendet, ist dort nichts vorhanden, erfolgt eine Lesezugriff über den Bus.

          Antwortet die Zielkomponente nicht, wird ein Fehler ausgelöst und die Sequenz sofort abgebrochen. Ohne Fehlerbehandlung bekommt man davon wieder kaum etwas mit, ausser dass die Sequenz nicht wie erwartet arbeitet. Ein Fehler wird auch ausgelöst, wenn der Datentyp (EIS-Typ) nicht dem erwarteten entspricht. Besonders tückisch ist das, wenn man Werte aus Gruppenadressen als Auslöser einer Sequenz verwendet, da diese dann -je nach Auswertung eventueller UND und ODER Verknüpfungen- manchmal gar nicht losläuft.

          Innerhalb des Reiters "bei Fehler" kann man jedoch keine Sequenz-Befehle wie "Rechenoperation" verwenden, um Fehlervariablen zu setzen. Hier kann man aber anders vorgehen:

          Man definiert sich die benötigten Variablen als unsichtbare "Geräte" vom Typ "Andere" in der Geräteliste.
          Zum Beispiel eine Variable "Fehlersequenz", die den Namen einer Sequenz enthalten soll, in der ein Fehler aufgetreten ist.

          Geräte -> Andere -> Fehlersequenz:
          Sende/Empfangsmodus: Empfangen / Senden
          Senden auf den KNX Bus: Nein
          Datenpunkttyp: 14-Bytes Zeichenkette
          Status über den Bus abfragen: Nie


          Wichtig: Zugriff (steht oben): Niemals
          Damit haben wir eine unsichtbare "Gerätevariable" geschaffen.

          Genauso benötigen wir noch eine Gerätevariable vom Typ 4-Byte Integer mit der Bezeichnung "Fehlerinfo", für Detaildaten zum Fehler.

          Für jede zu überwachende Sequenz wird nun noch eine Debug-Variable benötigt, ich benenne Sie ">Debug (<Sequenzname>)", zum Beispiel also ">Debug (Testsequenz)". Das ">" steht vorne, damit die Variable in der Variablenliste gleich am Anfang erscheint.

          Beim Start einer Sequenz setzt man die Debug-Variable auf "0".

          Bei jeder Verzweigung ("Wenn") addiert man nun jeweils eine Zahl zum Wert der Debug-Variable, also zum Beispiel im "Ja" Zweig eine "1", im "Nein" Zweig eine "2". Bei der nächsten Verzweigung dann jeweils eine "10" oder "20". Gibt es mehrere Unterzweige, so kann man auch "30", "40" etc. addieren.

          Bei einer längeren Kette von Befehlen kann man auch zwischendrin mal einen Wert addieren, jede Addition zeigt später an, dass die Sequenz bis mindestens an diese Stelle fehlerfrei durchgelaufen ist. Man muss nur darauf achten, dass die Additionen eindeutige Ergebnisse liefern.

          Das sieht dann so aus: 1 -> 11 -> 211 -> 4211 -> etc.
          Bricht die Sequenz jetzt mit einem Fehler ab, so kann man relativ genau sehen, in welchem Unterzweig und ungefähr an welcher Position der Fehler erfolgt ist.

          Dazu schreibt man in den Reiter "bei Fehler" folgendes:

          - Gerät "Fehlersequenz" setze Wert auf <Sequenzname>, also zum Beispiel "Testsequenz"
          - Gerät "Fehlerinfo" setze Wert auf Variable ">Debug (<Sequenzname>)", also zum Beispiel den Wert der Variablen ">Debug (Testsequenz)"
          - starte Sequenz "Fehlerausgabe" *)

          *) hier wird also noch einmalig in der Domovea eine Sequenz benötigt, die die Daten aus den Gerätevariablen "Fehlersequenz" und "Fehlerinfo" per E-Mail oder Popup ausgibt, zusammen mit Datum und Uhrzeit. Man kann sich auch die Daten auf den Bus ausgeben lassen und dann über den Gruppenmonitor mitprotokollieren für einen Langzeittest.

          Das hört sich zwar erstmal etwas kompliziert an, aber wenn man solche Debug-Funktionen erstmal eingearbeitet hat, sind sie sehr hilfreich bei der Fehlersuche. Jedenfalls laufen bei mir seit langem die Sequenzen fehlerfrei.

          Ganz selten habe ich zwar noch Probleme mit einer Überlastung der Domovea, die dann einfach mal stehenbleibt.
          Dem bin ich mit einem Treppenlichtaktor als Watchdog begegnet, aber das zu beschreiben ist eine andere Geschichte...

          Ich hoffe die Ausführungen sind hilfreich und wünsche allen ein erfolgreiches neues Jahr.

          Jörg
          Zuletzt geändert von JoergDr; 28.12.2018, 18:05.

          Kommentar


            P.S. ich würde empfehlen, die neueste Software aufzuspielen, da dort doch manche Fehler bei den Geräten behoben wurden.

            Kommentar


              Zitat von JoergDr Beitrag anzeigen
              Teil eins: Fehler in Sequenzen
              Teil zwei: "Debuggen" von Sequenzen

              Ich hoffe die Ausführungen sind hilfreich und wünsche allen ein erfolgreiches neues Jahr.

              Jörg
              Hallo Jörg,

              das ist super toll von Dir, dass Du Dein Wissen hier teilst. Herzlichen Dank!!!

              Das Problem mit dem Kopieren von Zweigen einer Wenn-Bedingung ist mir schon untergekommen. Das Verhalten der Sequenz war schlicht unerklärlich, so dass ich sie schließlich gelöscht habe. Danke für den Tipp mit dem Einfügen einer leeren Anweisung, die anschließend wieder gelöscht werden kann.

              Um dem manchmal seltsamen und für mich unerklärlich scheinenden Verhalten von Variablen auf die Schliche zu kommen, hatte ich testweise zwei Sequenzen geschrieben, die die Werte von Variablen (als Popup-Mitteilung im der Domovea Client) ausgeben, und diese Sequenzen dann an verschiedenen Stellen aufgerufen. Dabei zeigte sich letztendlich, dass diese Sequenzen andere Werte der Variablen ausgaben als die aufrufenden Sequenzen, in denen die Werte gesetzt bzw. verändert wurden.

              Ich werde Deine ausführlichen Ausführungen alle in Ruhe durcharbeiten und mich danach nochmal melden, wenn noch etwas unklar sein sollte.

              Auch von mir ein gutes und erfolgreiches 2019 für alle Leser dieses Forums.
              Berthold

              Kommentar


                Hallo Berthold,

                wenn Du innerhalb einer Sequenz eine andere Sequenz aufrufst, laufen beide Sequenzen parallel weiter.
                Dieses Verhalten sollte bei den Tests berücksichtigt werden.

                Die aufrufende Sequenz wartet also nicht bis die aufgerufene Sequenz durchgelaufen ist.
                Willst Du so etwas erreichen, so benötigst Du eine Kontrollvariable zur Koordination der beiden Sequenzen.


                Jörg
                Zuletzt geändert von JoergDr; 30.12.2018, 10:21.

                Kommentar


                  Hallo zusammen,
                  ich habe das Problem dass sich der Mail-Dienst meines Domovea-Servers alle paar Wochen verabschiedet. Wenn ich einen Reboot oder Strom aus/an mache geht es wieder. Kennt Ihr eine Möglichkeit dass ich den Server jede Nacht automatisch neustarte?
                  Danke & LG

                  Kommentar


                    haefi

                    Man könnte das über eine externe Zeitschaltuhr machen - aber davon halte ich nicht viel.
                    Ständiger Neustart durch Abschaltung ist auf Dauer nicht gut fürs System, auch könnten Daten verloren gehen.

                    Eigentlich sollte sich der Maildienst nicht verabschieden, das Problem kenne ich nicht.
                    Wie äussert sich der Fehler? Können keine Mails mehr verschickt werden?

                    Hast Du mal im System Log nachgeschaut, ob da was dazu steht?
                    Menu - Allgemein - Server Einstellungen - Log Datei

                    Ich würde auch empfehlen, die Portalverbindung testweise mal zu deaktivieren (wenn überhaupt genutzt)
                    Menu - Allgemein - Server Einstellungen - Portal Aktivierung - Trennen
                    (Die Portalverbindung war bei mir eine Quelle ständiger Probleme)

                    Bitte auch mal prüfen, ob die Netzwerk Einstellungen korrekt sind, insbesondere der Eintrag "DNS Server".
                    Hier trägt die Installationsroutine immer wieder "8.8.8.8" ein, das ist der externe Google DNS Server.
                    Besser ist es aber, den eigenen Router als DNS Server einzutragen (also zum Beispiel "192.168.0.1") da die Zugriffe darüber wegen des Caching normalerweise schneller gehen.

                    In der SMTP Konfigurierung kannst Du auch Testmails versenden. Klappt dass dann bei Dir nicht mehr?

                    Wenn Mails nicht ankommen, könnte das auch andere Ursachen haben (Providerproblem, Spamfilter, ...)

                    Grüße, Jörg

                    Kommentar


                      Hallo Jörg, danke für deine prompte Antwort!

                      Zitat von JoergDr Beitrag anzeigen
                      Wie äussert sich der Fehler? Können keine Mails mehr verschickt werden?
                      Es gehen einfach keine Mails mehr raus, ich nutze den Dienst ansich recht intensiv mit ein paar Dutzend Mails pro Stunde. Also grundsätzlich funktioniert er, bis er sich halt aufhängt.


                      Zitat von JoergDr Beitrag anzeigen
                      Hast Du mal im System Log nachgeschaut, ob da was dazu steht?
                      Ist jetzt nicht der aktuellste Log, aber den hatte ich Hager damals gemeldet und keine Antwort bekommen:

                      Code:
                      2017-09-26 12:55:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 12:56:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 12:57:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 12:58:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 12:59:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:00:08,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:00:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:01:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:02:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:03:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:04:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:05:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:06:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:07:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:08:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:09:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:09:55,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:10:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:11:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:12:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:13:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:13:22,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:14:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:15:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:16:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:17:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:18:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:19:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:20:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:21:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:22:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:23:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:24:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:25:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:26:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:27:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:28:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:29:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:30:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:31:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:32:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:33:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:34:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:35:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:36:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:37:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:38:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:39:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:40:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:41:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:42:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:43:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:44:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:45:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:46:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:47:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:48:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:49:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:50:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:51:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:52:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:53:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:54:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:55:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:56:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:57:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:58:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 13:59:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:00:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:01:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:02:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:03:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:04:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:05:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:06:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:07:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:08:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:09:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:10:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:11:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:12:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:13:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:14:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:15:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:16:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:17:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:18:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:19:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:20:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:21:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:22:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:23:18,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:24:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:25:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:26:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:27:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:28:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:29:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:30:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:31:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:32:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:33:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:34:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:35:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:36:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:37:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:38:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:39:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:40:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:41:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:42:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:43:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:44:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:45:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:46:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:47:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:48:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:49:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:50:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:51:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:52:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:53:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:54:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:55:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:56:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:57:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:58:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 14:59:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:00:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:01:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:02:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:03:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:04:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:05:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:06:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:07:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:08:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:09:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:10:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:11:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:12:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:12:24,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:13:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:14:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:15:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:16:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:17:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:18:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:19:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:20:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:21:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:22:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:23:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:24:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:25:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:26:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:27:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:28:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:29:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:30:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:31:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:32:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:33:00,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:33:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:34:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:35:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:36:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:37:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:38:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:39:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:40:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:41:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:42:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:43:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:44:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:45:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:46:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:47:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:48:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:49:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:50:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:51:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:52:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:53:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:54:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:55:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:56:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:57:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:58:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 15:59:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 16:00:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 16:01:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 16:02:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 16:03:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 16:04:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 16:05:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 16:06:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 16:07:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 16:08:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 16:09:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 16:10:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 16:11:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 16:12:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 16:13:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 16:14:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 16:15:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 16:16:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 16:17:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 16:18:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 16:19:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 16:20:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 16:21:16,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                       
                      2017-09-26 16:22:17,000 ERROR [104136714] Server.Core.NotifierEngine [?] MailNotifierHandler Notify
                      System.ComponentModel.Win32Exception: Win32Exception
                      à EASendMail.SmtpClient.05()
                      à EASendMail.SmtpClient.$3(Certificate 1U)
                      à EASendMail.SmtpClient.Connect(SmtpServer server)
                      à EASendMail.SmtpClient.SendMail(SmtpServer server, SmtpMail mail)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.<>c__DisplayClass4.<SendNotificationThread>b__0(Notification notification)
                      à System.Collections.Generic.List`1.ForEach(Action`1 action)
                      à Hager.Open.Server.Engine.NotifierEngine.MailNotifierHandler.SendNotificationThread()
                      Zitat von JoergDr Beitrag anzeigen
                      Ich würde auch empfehlen, die Portalverbindung testweise mal zu deaktivieren (wenn überhaupt genutzt)
                      Das Portal nutze ich nicht, sondern rein lokal bzw. über VPN ins mein lokales Netz.
                      Das Feld "Status" war ursprünglich leer, habe jetzt dennoch zusätzlich noch getrennt. Jetzt steht "Portal-Verbindung durch den Benutzer deaktiviert

                      Zitat von JoergDr Beitrag anzeigen
                      Bitte auch mal prüfen, ob die Netzwerk Einstellungen korrekt sind, insbesondere der Eintrag "DNS Server".
                      Hier trägt die Installationsroutine immer wieder "8.8.8.8" ein, das ist der externe Google DNS Server.
                      Besser ist es aber, den eigenen Router als DNS Server einzutragen (also zum Beispiel "192.168.0.1") da die Zugriffe darüber wegen des Caching normalerweise schneller gehen.
                      Der war schon auf meine lokale Firewall+DNS eingestellt.

                      Kommentar


                        haefi

                        Nach den Logs scheint sich tatsächlich der Mail Thread aufzuhängen, aber mit einem Fehler der Windows API.

                        So spontan habe ich die Vermutung, dass hier ein Overlap vorliegen könnte, d.h. der Thread könnte nochmals gerufen werden, während ein Signal noch nicht verarbeitet wurde.

                        Der Fehler tritt bei SMTP Connect auf, also beim Verbindungsaufbau.
                        Normalerweise ist dies keine besonders komplexe Operation, aber wenn die Fehlerbehandlung von Hager bei einem Connect Error nicht sauber programmiert wurde, kann das auch schon mal zu einem Thread Abbruch führen. Und die haben anscheinend dafür auch keinen Neustart des Threads vorgesehen.

                        Wie ist denn der minimale Zeitabstand zwischen zwei Mail Sendungen?
                        Hast Du da eine Methodik, die verhindert dass Mails direkt hintereinander gesendet werden?

                        Und letzte Frage: ist die neueste Version der Firmware auf der Domovea aufgespielt?

                        Jörg
                        Zuletzt geändert von JoergDr; 17.01.2019, 18:28.

                        Kommentar


                          Zitat von JoergDr Beitrag anzeigen
                          Wie ist denn der minimale Zeitabstand zwischen zwei Mail Sendungen?
                          Hast Du da eine Methodik, die verhindert dass Mails direkt hintereinander gesendet werden?
                          Da aus mehreren verschiedenen Sequenzen heraus Mails verschickt werden, kann ich ein "zeitgleiches Verschicken" defacto nicht ausschließen.

                          Zitat von JoergDr Beitrag anzeigen
                          Und letzte Frage: ist die neueste Version der Firmware auf der Domovea aufgespielt?
                          aktuell habe ich noch die 3.6.0.2 drauf, die 3.7.* habe ich erst heute bemerkt und noch keine Zeit gehabt zum Einspielen.
                          Die Probleme gab es bei 3.4 und 3.5. definitiv auch schon.

                          LG Markus

                          Kommentar


                            haefi

                            Ich vermute mal stark, dass die Domovea auch beim Versenden von Mails nicht "Thread-sicher" arbeitet (vgl. meinen früheren Beitrag zu den Variablen in der Domovea).

                            Da verschiedene Sequenzen immer parallel ausgeführt werden, kann es dann beim Versenden von Mails zu Konflikten kommen.

                            Erst einmal stellt sich natürlich die Frage, warum Du so viele Mails parallel versenden willst. Falls es sich dabei um eine Debug- oder Log-Ausgabe von Daten handelt, könnte man diese alternativ auch auf den Bus ausgeben und eine Auswertung im Gruppen- oder Busmonitor machen. Hier hat die Domovea bei paralleler Ausgabe keine Probleme.

                            Ansonsten: vielleicht kannst Du die Mail-Ausgaben in einem einzigen Thread durchführen und schreibst nur die Daten dazu in eine Serie von Variablen. Das ist (siehe einige Einträge weiter vorne) auch nicht immer konfliktfrei möglich, aber ich habe dazu beschrieben wie man sich dabei behelfen kann.

                            Letzte Möglichkeit, wenn es denn unbedingt nicht anders geht, ist die Verwendung von Kontrollvariablen, so dass immer nur eine Sequenz gerade eine Mail versendet, während die anderen Sequenzen warten bis sie drankommen.

                            Inwieweit das funktioniert, hängt davon ab wie Hager das Versenden von Mails intern organisiert hat. Vermutlich verwenden Sie einen Sendethread mit Rückmeldung an die aufrufende Sequenz, dann könnten wir mit einer Kontrollvariable Erfolg haben.

                            Wie das im Detail funktioniert kann ich Dir schreiben, wenn ich weiss welche Ausweichoption am Besten zu Deinen Anforderungen passt.

                            Jörg

                            P.S.: ich empfehle ein Update auf die neueste Version, da einige Fehler behoben wurden.

                            Kommentar


                              Hallo,

                              Ich bin im Besitz eines Domovea Servers sowie eines TE332 (Messwertgeber KNX für 3 Stromkreise mit 3 Wandlern), habe allerdings Probleme mit den in Domovea angezeigten Messwerten, diese stimmen hinten und vorne nicht.
                              Aus der Anleitung vom Server geht allerdings auch nicht genau hervor welche "Kanäle" ich für die Messung anlegen soll, es stehen 8 zur Verfügung.
                              Danke im Voraus für eure Hilfe!
                              You do not have permission to view this gallery.
                              This gallery has 1 photos.

                              Kommentar


                                Christoph4306

                                Ich verwende den Lingg & Janke Zähler EZD Facility Web.

                                Die Datentypen für die Übernahme der Daten müssen halt übereinstimmen (die Domovea akzeptiert hier 4- oder 6-Byte Werte).

                                img_001.jpg

                                img_004.jpg

                                Der Messwertzähler wird dann so eingestellt (Abfragezeit auf Ereignis = wenn Daten eintreffen). Der Zähler sollte also zyklisch senden.

                                img_002.jpg

                                img_003.jpg

                                Vielleicht hilft Dir das weiter. Schau auch mal im Gruppenmonitor nach, was für Daten geliefert werden.

                                Jörg

                                Kommentar

                                Lädt...
                                X