IMAP Collect als Testfunction integriert

This commit is contained in:
Digital Data - Marlon Schreiber 2019-04-12 10:57:04 +02:00
parent b1d27f22f7
commit 1947a6b128
41 changed files with 30926 additions and 73 deletions

Binary file not shown.

View File

@ -22,6 +22,12 @@ DigitalData.EMLProfiler
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="M:DigitalData.EMLProfiler.clsEmailIMAP.WriteMessageToFile(System.Net.Mail.MailMessage,System.String)">
<summary>
Uses a private API from MailWriter to write a MailMessage to disk.
May break in future versions of .NET
</summary>
</member>
<member name="M:DigitalData.EMLProfiler.clsWindream_allgemein.#ctor(DigitalData.Modules.Logging.LogConfig)">
<summary>
Konstruktor für die windream-Klasse

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -665,7 +665,7 @@ Public Class frmMain
My.Settings.Save()
Dim PWPlain = _Encryption.DecryptData(EMAIL_PWTextBox.Text)
Dim oResult = _emailIMAP.TestIMAPLogin(EMAIL_SMTPTextBox.Text, PORT_INTextBox.Text, EMAIL_USERTextBox.Text, PWPlain, txtInboxname.Text)
Dim oResult = _emailIMAP.FetchIMAPMessages(EMAIL_SMTPTextBox.Text, PORT_INTextBox.Text, EMAIL_USERTextBox.Text, PWPlain, txtInboxname.Text, True)
If oResult = False Then
MsgBox("Access Imap NOT successfull", MsgBoxStyle.Critical)

View File

@ -1 +1 @@
4256f12197ded35be4e879c825880b46866bf653
24c23c6a1a08822658338bc1efd1138033e53eb9

View File

@ -109,6 +109,6 @@ E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\CONFIG_APP\obj\Debug\CONFIG
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\CONFIG_APP\obj\Debug\CONFIG_APP.exe
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\CONFIG_APP\obj\Debug\CONFIG_APP.xml
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\CONFIG_APP\obj\Debug\CONFIG_APP.pdb
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\CONFIG_APP\bin\Debug\AE.Net.Mail.dll
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\CONFIG_APP\bin\Debug\AE.Net.Mail.pdb
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\CONFIG_APP\obj\Debug\CONFIG_APP.vbprojAssemblyReference.cache
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\CONFIG_APP\bin\Debug\S22.Imap.dll
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\CONFIG_APP\bin\Debug\S22.Imap.xml

View File

@ -22,6 +22,12 @@ DigitalData.EMLProfiler
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="M:DigitalData.EMLProfiler.clsEmailIMAP.WriteMessageToFile(System.Net.Mail.MailMessage,System.String)">
<summary>
Uses a private API from MailWriter to write a MailMessage to disk.
May break in future versions of .NET
</summary>
</member>
<member name="M:DigitalData.EMLProfiler.clsWindream_allgemein.#ctor(DigitalData.Modules.Logging.LogConfig)">
<summary>
Konstruktor für die windream-Klasse

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -18,38 +18,38 @@ Public Class clsEmailIMAP
' Logger.Info(e.Log)
'End Sub
Public Function TestIMAPLogin(Server As String, Port As Integer, Username As String, Password As String, Inbox As String) As Boolean
Logger.Debug("Testing Login to Server {0}:{1} with user {2}", Server, Port, Username)
'Public Function TestIMAPLogin(Server As String, Port As Integer, Username As String, Password As String, Inbox As String) As Boolean
' Logger.Debug("Testing Login to Server {0}:{1} with user {2}", Server, Port, Username)
Try
Logger.Debug("Connecting...")
Using oClient As New S22.Imap.ImapClient(Server, Port, Username, Password, S22.Imap.AuthMethod.Login, True)
If Not oClient.Authed Then
Logger.Warn("Connected to server but authentication failed.")
Return False
End If
Logger.Debug("Connection successful")
' Try
' Logger.Debug("Connecting...")
' Using oClient As New S22.Imap.ImapClient(Server, Port, Username, Password, S22.Imap.AuthMethod.Login, True)
' If Not oClient.Authed Then
' Logger.Warn("Connected to server but authentication failed.")
' Return False
' End If
' Logger.Debug("Connection successful")
Logger.Debug("Fetching MessageIds..")
Dim oMessageIds As IEnumerable(Of UInteger) = oClient.Search(S22.Imap.SearchCondition.Unseen, Inbox)
' Logger.Debug("Fetching MessageIds..")
' Dim oMessageIds As IEnumerable(Of UInteger) = oClient.Search(S22.Imap.SearchCondition.Unseen, Inbox)
Logger.Debug("Found {0} messages", oMessageIds.Count)
Logger.Debug("Fetching messages...")
' Logger.Debug("Found {0} messages", oMessageIds.Count)
' Logger.Debug("Fetching messages...")
Dim oMessages As IEnumerable(Of Mail.MailMessage) = oClient.GetMessages(oMessageIds, False, Inbox)
Logger.Debug("Messages fetched")
' Dim oMessages As IEnumerable(Of Mail.MailMessage) = oClient.GetMessages(oMessageIds, False, Inbox)
' Logger.Debug("Messages fetched")
oClient.Dispose()
' oClient.Dispose()
Return True
End Using
Catch ex As Exception
Logger.Error(ex)
Return False
End Try
End Function
' Return True
' End Using
' Catch ex As Exception
' Logger.Error(ex)
' Return False
' End Try
'End Function
Public Function FetchIMAPMessages(Server As String, Port As Integer, Username As String, Password As String, Inbox As String) As Boolean
Public Function FetchIMAPMessages(Server As String, Port As Integer, Username As String, Password As String, Inbox As String, Optional IsTest As Boolean = False) As Boolean
Logger.Debug("Connecting to Server {0}:{1} with user {2}", Server, Port, Username)
Try
@ -73,12 +73,20 @@ Public Class clsEmailIMAP
Dim oResult = WriteMessageToFile(oMessage, oTempPath)
Dim oMsg As New Message(oTempPath)
MAIL_LIST.Add(oMsg)
If IsTest = False Then
MAIL_LIST.Add(oMsg)
Else
Logger.Debug($"message correctly fetched. Mail has been downloaded to {oTempPath}")
End If
Try
File.Delete(oTempPath)
If IsTest = False Then
File.Delete(oTempPath)
End If
Catch ex As Exception
Logger.Error(ex)
Logger.Error(ex)
Logger.Warn("Temp file could not be deleted")
End Try
Next
@ -199,43 +207,5 @@ Public Class clsEmailIMAP
' End Try
'End Function
Public Function TEST_AEIMAP_COLLECT(INBOXNAME As String, MYMAIL_SERVER As String, MYMAIL_PORT As Integer, MYMAIL_USER As String, MYMAIL_USER_PW As String)
Try
Logger.Info(String.Format("Working on TEST_AEIMAP_COLLECT....."))
'Dim oLogPath = System.IO.Path.Combine(My.Application.Info.DirectoryPath, "Log\logindependentSoft.txt")
'Logger.Debug($"IsoftLog: {oLogPath}...")
'Dim oindependentLogger As New Independentsoft.Email.Logger(oLogPath)
' Dim sslProtocol As System.Security.Authentication.SslProtocols = Security.Authentication.SslProtocols.Default
Dim oImapClient As New AE.Net.Mail.ImapClient(MYMAIL_SERVER, MYMAIL_USER, MYMAIL_USER_PW, AE.Net.Mail.AuthMethods.Login, MYMAIL_PORT)
'oImapClient.Logger = oindependentLogger
'oImapClient.ValidateRemoteCertificate = False
Try
If (oImapClient.IsConnected) Then
Logger.Debug($"oImapClient Login successfull...")
Else
Logger.Info($"oImapClient NOT connected...")
Return False
End If
Catch ex As Exception
Logger.Warn(ex.Message)
Logger.Error(ex)
Return False
End Try
oImapClient.Disconnect()
Logger.Info("TEST_IMAP_COLLECT finished!")
Return True
Catch ex As Exception
Logger.Info($"Unexpected error in TEST_IMAP_COLLECT - User: [{MYMAIL_USER}] PW: [{MYMAIL_USER_PW}]")
Logger.Error(ex, "Unexpected Error in TEST_IMAP_COLLECT:")
MsgBox($"Unexpected error in TEST_IMAP_COLLECT: {ex.Message}")
Return False
End Try
End Function
End Class

View File

@ -1 +1 @@
e16852c9dcabf8ca2116c0fea0baeab31771f4e2
064839440650a653f8e769d63390527023957743

View File

@ -2,13 +2,16 @@ E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin\Debug\DigitalData.EMLProfiler.dll
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin\Debug\DigitalData.EMLProfiler.pdb
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin\Debug\DigitalData.EMLProfiler.xml
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin\Debug\AE.Net.Mail.dll
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin\Debug\DigitalData.Modules.Database.dll
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin\Debug\DigitalData.Modules.Logging.dll
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin\Debug\Independentsoft.Email.dll
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin\Debug\Interop.WINDREAMLib.dll
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin\Debug\NLog.dll
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin\Debug\S22.Imap.dll
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin\Debug\FirebirdSql.Data.FirebirdClient.dll
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin\Debug\Oracle.ManagedDataAccess.dll
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin\Debug\AE.Net.Mail.pdb
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin\Debug\DigitalData.Modules.Database.pdb
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin\Debug\DigitalData.Modules.Database.xml
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin\Debug\DigitalData.Modules.Database.dll.config
@ -16,6 +19,7 @@ E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin\Debug\DigitalData.Modules.Logging.xml
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin\Debug\Independentsoft.Email.xml
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin\Debug\NLog.xml
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin\Debug\S22.Imap.xml
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin\Debug\FirebirdSql.Data.FirebirdClient.pdb
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\obj\Debug\DigitalData.EMLProfiler.Resources.resources
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\obj\Debug\DigitalData.EMLProfiler.vbproj.GenerateResource.cache
@ -24,5 +28,3 @@ E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\obj
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\obj\Debug\DigitalData.EMLProfiler.dll
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\obj\Debug\DigitalData.EMLProfiler.xml
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\obj\Debug\DigitalData.EMLProfiler.pdb
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin\Debug\AE.Net.Mail.dll
E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\bin\Debug\AE.Net.Mail.pdb

View File

@ -22,6 +22,12 @@ DigitalData.EMLProfiler
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="M:DigitalData.EMLProfiler.clsEmailIMAP.WriteMessageToFile(System.Net.Mail.MailMessage,System.String)">
<summary>
Uses a private API from MailWriter to write a MailMessage to disk.
May break in future versions of .NET
</summary>
</member>
<member name="M:DigitalData.EMLProfiler.clsWindream_allgemein.#ctor(DigitalData.Modules.Logging.LogConfig)">
<summary>
Konstruktor für die windream-Klasse

View File

@ -1517,3 +1517,500 @@
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 18:03:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 18:07:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 18:08:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 18:08:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 18:12:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 18:13:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 18:13:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 18:17:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 18:18:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 18:18:01|clsWorker|WARN >> Error while polling emails....
2019-04-11 18:22:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 18:23:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 18:23:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 18:27:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 18:28:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 18:28:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 18:32:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 18:33:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 18:33:01|clsWorker|WARN >> Error while polling emails....
2019-04-11 18:37:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 18:38:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 18:38:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 18:42:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 18:43:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 18:43:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 18:47:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 18:48:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 18:48:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 18:52:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 18:53:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 18:53:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 18:57:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 18:58:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 18:58:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:02:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:03:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 19:03:01|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:07:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:08:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 19:08:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:12:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:13:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 19:13:01|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:17:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:18:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 19:18:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:22:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:23:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 19:23:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:27:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:28:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 19:28:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:32:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:33:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 19:33:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:37:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:38:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 19:38:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:42:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:43:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 19:43:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:47:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:48:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 19:48:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:52:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:53:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 19:53:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:57:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:58:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 19:58:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:02:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:03:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 20:03:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:07:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:08:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 20:08:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:12:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:13:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 20:13:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:17:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:18:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 20:18:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:22:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:23:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 20:23:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:27:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:28:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 20:28:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:32:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:33:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 20:33:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:37:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:38:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 20:38:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:42:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:43:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 20:43:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:47:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:48:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 20:48:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:52:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:53:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 20:53:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:57:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:58:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 20:58:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:02:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:03:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 21:03:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:07:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:08:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 21:08:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:12:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:13:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 21:13:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:17:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:18:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 21:18:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:22:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:23:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 21:23:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:27:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:28:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 21:28:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:32:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:33:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 21:33:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:37:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:38:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 21:38:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:42:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:43:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 21:43:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:47:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:48:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 21:48:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:52:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:53:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 21:53:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:57:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:58:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 21:58:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:02:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:03:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 22:03:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:07:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:08:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 22:08:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:12:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:13:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 22:13:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:17:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:18:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 22:18:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:22:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:23:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 22:23:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:27:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:28:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 22:28:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:32:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:33:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 22:33:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:37:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:38:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 22:38:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:42:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:43:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 22:43:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:47:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:48:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 22:48:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:52:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:53:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 22:53:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:57:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:58:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 22:58:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:02:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:03:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 23:03:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:07:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:08:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 23:08:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:12:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:13:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 23:13:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:17:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:18:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 23:18:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:22:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:23:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 23:23:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:27:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:28:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 23:28:01|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:32:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:33:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 23:33:01|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:37:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:38:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 23:38:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:42:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:43:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 23:43:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:47:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:48:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 23:48:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:52:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:53:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 23:53:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:57:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:58:02|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-11 23:58:02|clsWorker|WARN >> Error while polling emails....

View File

@ -1517,3 +1517,500 @@
2019-04-11 18:02:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 18:03:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 18:03:00|clsWorker|INFO >> No emails for profile!
2019-04-11 18:07:59|MyService|INFO >> ## running thread......
2019-04-11 18:07:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 18:07:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 18:07:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 18:07:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 18:08:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 18:08:00|clsWorker|INFO >> No emails for profile!
2019-04-11 18:12:59|MyService|INFO >> ## running thread......
2019-04-11 18:12:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 18:12:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 18:12:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 18:12:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 18:13:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 18:13:00|clsWorker|INFO >> No emails for profile!
2019-04-11 18:17:59|MyService|INFO >> ## running thread......
2019-04-11 18:17:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 18:17:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 18:17:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 18:17:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 18:18:01|clsWorker|WARN >> Error while polling emails....
2019-04-11 18:18:01|clsWorker|INFO >> No emails for profile!
2019-04-11 18:22:59|MyService|INFO >> ## running thread......
2019-04-11 18:22:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 18:22:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 18:22:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 18:22:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 18:23:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 18:23:00|clsWorker|INFO >> No emails for profile!
2019-04-11 18:27:59|MyService|INFO >> ## running thread......
2019-04-11 18:27:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 18:27:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 18:27:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 18:27:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 18:28:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 18:28:00|clsWorker|INFO >> No emails for profile!
2019-04-11 18:32:59|MyService|INFO >> ## running thread......
2019-04-11 18:32:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 18:32:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 18:32:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 18:32:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 18:33:01|clsWorker|WARN >> Error while polling emails....
2019-04-11 18:33:01|clsWorker|INFO >> No emails for profile!
2019-04-11 18:37:59|MyService|INFO >> ## running thread......
2019-04-11 18:37:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 18:37:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 18:37:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 18:37:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 18:38:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 18:38:00|clsWorker|INFO >> No emails for profile!
2019-04-11 18:42:59|MyService|INFO >> ## running thread......
2019-04-11 18:42:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 18:42:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 18:42:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 18:42:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 18:43:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 18:43:00|clsWorker|INFO >> No emails for profile!
2019-04-11 18:47:59|MyService|INFO >> ## running thread......
2019-04-11 18:47:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 18:47:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 18:47:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 18:47:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 18:48:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 18:48:00|clsWorker|INFO >> No emails for profile!
2019-04-11 18:52:59|MyService|INFO >> ## running thread......
2019-04-11 18:52:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 18:52:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 18:52:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 18:52:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 18:53:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 18:53:00|clsWorker|INFO >> No emails for profile!
2019-04-11 18:57:59|MyService|INFO >> ## running thread......
2019-04-11 18:57:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 18:57:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 18:57:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 18:57:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 18:58:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 18:58:00|clsWorker|INFO >> No emails for profile!
2019-04-11 19:02:59|MyService|INFO >> ## running thread......
2019-04-11 19:02:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 19:02:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 19:02:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:02:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 19:03:01|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:03:01|clsWorker|INFO >> No emails for profile!
2019-04-11 19:07:59|MyService|INFO >> ## running thread......
2019-04-11 19:07:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 19:07:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 19:07:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:07:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 19:08:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:08:00|clsWorker|INFO >> No emails for profile!
2019-04-11 19:12:59|MyService|INFO >> ## running thread......
2019-04-11 19:12:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 19:12:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 19:12:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:12:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 19:13:01|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:13:01|clsWorker|INFO >> No emails for profile!
2019-04-11 19:17:59|MyService|INFO >> ## running thread......
2019-04-11 19:17:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 19:17:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 19:17:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:17:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 19:18:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:18:00|clsWorker|INFO >> No emails for profile!
2019-04-11 19:22:59|MyService|INFO >> ## running thread......
2019-04-11 19:22:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 19:22:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 19:22:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:22:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 19:23:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:23:00|clsWorker|INFO >> No emails for profile!
2019-04-11 19:27:59|MyService|INFO >> ## running thread......
2019-04-11 19:27:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 19:27:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 19:27:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:27:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 19:28:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:28:00|clsWorker|INFO >> No emails for profile!
2019-04-11 19:32:59|MyService|INFO >> ## running thread......
2019-04-11 19:32:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 19:32:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 19:32:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:32:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 19:33:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:33:00|clsWorker|INFO >> No emails for profile!
2019-04-11 19:37:59|MyService|INFO >> ## running thread......
2019-04-11 19:37:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 19:37:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 19:37:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:37:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 19:38:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:38:00|clsWorker|INFO >> No emails for profile!
2019-04-11 19:42:59|MyService|INFO >> ## running thread......
2019-04-11 19:42:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 19:42:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 19:42:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:42:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 19:43:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:43:00|clsWorker|INFO >> No emails for profile!
2019-04-11 19:47:59|MyService|INFO >> ## running thread......
2019-04-11 19:47:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 19:47:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 19:47:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:47:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 19:48:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:48:00|clsWorker|INFO >> No emails for profile!
2019-04-11 19:52:59|MyService|INFO >> ## running thread......
2019-04-11 19:52:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 19:52:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 19:52:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:52:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 19:53:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:53:00|clsWorker|INFO >> No emails for profile!
2019-04-11 19:57:59|MyService|INFO >> ## running thread......
2019-04-11 19:57:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 19:57:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 19:57:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 19:57:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 19:58:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 19:58:00|clsWorker|INFO >> No emails for profile!
2019-04-11 20:02:59|MyService|INFO >> ## running thread......
2019-04-11 20:02:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 20:02:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 20:02:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:02:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 20:03:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:03:00|clsWorker|INFO >> No emails for profile!
2019-04-11 20:07:59|MyService|INFO >> ## running thread......
2019-04-11 20:07:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 20:07:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 20:07:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:07:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 20:08:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:08:00|clsWorker|INFO >> No emails for profile!
2019-04-11 20:12:59|MyService|INFO >> ## running thread......
2019-04-11 20:12:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 20:12:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 20:12:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:12:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 20:13:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:13:00|clsWorker|INFO >> No emails for profile!
2019-04-11 20:17:59|MyService|INFO >> ## running thread......
2019-04-11 20:17:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 20:17:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 20:17:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:17:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 20:18:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:18:00|clsWorker|INFO >> No emails for profile!
2019-04-11 20:22:59|MyService|INFO >> ## running thread......
2019-04-11 20:22:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 20:22:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 20:22:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:22:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 20:23:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:23:00|clsWorker|INFO >> No emails for profile!
2019-04-11 20:27:59|MyService|INFO >> ## running thread......
2019-04-11 20:27:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 20:27:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 20:27:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:27:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 20:28:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:28:00|clsWorker|INFO >> No emails for profile!
2019-04-11 20:32:59|MyService|INFO >> ## running thread......
2019-04-11 20:32:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 20:32:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 20:32:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:32:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 20:33:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:33:00|clsWorker|INFO >> No emails for profile!
2019-04-11 20:37:59|MyService|INFO >> ## running thread......
2019-04-11 20:37:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 20:37:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 20:37:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:37:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 20:38:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:38:00|clsWorker|INFO >> No emails for profile!
2019-04-11 20:42:59|MyService|INFO >> ## running thread......
2019-04-11 20:42:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 20:42:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 20:42:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:42:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 20:43:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:43:00|clsWorker|INFO >> No emails for profile!
2019-04-11 20:47:59|MyService|INFO >> ## running thread......
2019-04-11 20:47:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 20:47:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 20:47:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:47:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 20:48:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:48:00|clsWorker|INFO >> No emails for profile!
2019-04-11 20:52:59|MyService|INFO >> ## running thread......
2019-04-11 20:52:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 20:52:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 20:52:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:52:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 20:53:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:53:00|clsWorker|INFO >> No emails for profile!
2019-04-11 20:57:59|MyService|INFO >> ## running thread......
2019-04-11 20:57:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 20:57:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 20:57:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 20:57:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 20:58:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 20:58:00|clsWorker|INFO >> No emails for profile!
2019-04-11 21:02:59|MyService|INFO >> ## running thread......
2019-04-11 21:02:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 21:02:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 21:02:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:02:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 21:03:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:03:00|clsWorker|INFO >> No emails for profile!
2019-04-11 21:07:59|MyService|INFO >> ## running thread......
2019-04-11 21:07:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 21:07:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 21:07:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:07:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 21:08:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:08:00|clsWorker|INFO >> No emails for profile!
2019-04-11 21:12:59|MyService|INFO >> ## running thread......
2019-04-11 21:12:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 21:12:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 21:12:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:12:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 21:13:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:13:00|clsWorker|INFO >> No emails for profile!
2019-04-11 21:17:59|MyService|INFO >> ## running thread......
2019-04-11 21:17:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 21:17:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 21:17:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:17:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 21:18:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:18:00|clsWorker|INFO >> No emails for profile!
2019-04-11 21:22:59|MyService|INFO >> ## running thread......
2019-04-11 21:22:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 21:22:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 21:22:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:22:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 21:23:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:23:00|clsWorker|INFO >> No emails for profile!
2019-04-11 21:27:59|MyService|INFO >> ## running thread......
2019-04-11 21:27:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 21:27:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 21:27:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:27:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 21:28:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:28:00|clsWorker|INFO >> No emails for profile!
2019-04-11 21:32:59|MyService|INFO >> ## running thread......
2019-04-11 21:32:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 21:32:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 21:32:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:32:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 21:33:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:33:00|clsWorker|INFO >> No emails for profile!
2019-04-11 21:37:59|MyService|INFO >> ## running thread......
2019-04-11 21:37:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 21:37:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 21:37:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:37:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 21:38:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:38:00|clsWorker|INFO >> No emails for profile!
2019-04-11 21:42:59|MyService|INFO >> ## running thread......
2019-04-11 21:42:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 21:42:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 21:42:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:42:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 21:43:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:43:00|clsWorker|INFO >> No emails for profile!
2019-04-11 21:47:59|MyService|INFO >> ## running thread......
2019-04-11 21:47:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 21:47:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 21:47:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:47:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 21:48:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:48:00|clsWorker|INFO >> No emails for profile!
2019-04-11 21:52:59|MyService|INFO >> ## running thread......
2019-04-11 21:52:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 21:52:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 21:52:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:52:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 21:53:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:53:00|clsWorker|INFO >> No emails for profile!
2019-04-11 21:57:59|MyService|INFO >> ## running thread......
2019-04-11 21:57:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 21:57:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 21:57:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 21:57:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 21:58:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 21:58:00|clsWorker|INFO >> No emails for profile!
2019-04-11 22:02:59|MyService|INFO >> ## running thread......
2019-04-11 22:02:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 22:02:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 22:02:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:02:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 22:03:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:03:00|clsWorker|INFO >> No emails for profile!
2019-04-11 22:07:59|MyService|INFO >> ## running thread......
2019-04-11 22:07:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 22:07:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 22:07:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:07:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 22:08:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:08:00|clsWorker|INFO >> No emails for profile!
2019-04-11 22:12:59|MyService|INFO >> ## running thread......
2019-04-11 22:12:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 22:12:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 22:12:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:12:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 22:13:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:13:00|clsWorker|INFO >> No emails for profile!
2019-04-11 22:17:59|MyService|INFO >> ## running thread......
2019-04-11 22:17:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 22:17:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 22:17:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:17:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 22:18:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:18:00|clsWorker|INFO >> No emails for profile!
2019-04-11 22:22:59|MyService|INFO >> ## running thread......
2019-04-11 22:22:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 22:22:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 22:22:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:22:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 22:23:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:23:00|clsWorker|INFO >> No emails for profile!
2019-04-11 22:27:59|MyService|INFO >> ## running thread......
2019-04-11 22:27:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 22:27:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 22:27:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:27:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 22:28:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:28:00|clsWorker|INFO >> No emails for profile!
2019-04-11 22:32:59|MyService|INFO >> ## running thread......
2019-04-11 22:32:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 22:32:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 22:32:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:32:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 22:33:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:33:00|clsWorker|INFO >> No emails for profile!
2019-04-11 22:37:59|MyService|INFO >> ## running thread......
2019-04-11 22:37:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 22:37:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 22:37:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:37:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 22:38:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:38:00|clsWorker|INFO >> No emails for profile!
2019-04-11 22:42:59|MyService|INFO >> ## running thread......
2019-04-11 22:42:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 22:42:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 22:42:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:42:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 22:43:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:43:00|clsWorker|INFO >> No emails for profile!
2019-04-11 22:47:59|MyService|INFO >> ## running thread......
2019-04-11 22:47:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 22:47:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 22:47:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:47:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 22:48:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:48:00|clsWorker|INFO >> No emails for profile!
2019-04-11 22:52:59|MyService|INFO >> ## running thread......
2019-04-11 22:52:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 22:52:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 22:52:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:52:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 22:53:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:53:00|clsWorker|INFO >> No emails for profile!
2019-04-11 22:57:59|MyService|INFO >> ## running thread......
2019-04-11 22:57:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 22:57:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 22:57:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 22:57:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 22:58:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 22:58:00|clsWorker|INFO >> No emails for profile!
2019-04-11 23:02:59|MyService|INFO >> ## running thread......
2019-04-11 23:02:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 23:02:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 23:02:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:02:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 23:03:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:03:00|clsWorker|INFO >> No emails for profile!
2019-04-11 23:07:59|MyService|INFO >> ## running thread......
2019-04-11 23:07:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 23:07:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 23:07:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:07:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 23:08:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:08:01|clsWorker|INFO >> No emails for profile!
2019-04-11 23:12:59|MyService|INFO >> ## running thread......
2019-04-11 23:12:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 23:12:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 23:12:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:12:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 23:13:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:13:00|clsWorker|INFO >> No emails for profile!
2019-04-11 23:17:59|MyService|INFO >> ## running thread......
2019-04-11 23:17:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 23:17:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 23:17:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:17:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 23:18:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:18:00|clsWorker|INFO >> No emails for profile!
2019-04-11 23:22:59|MyService|INFO >> ## running thread......
2019-04-11 23:22:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 23:22:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 23:22:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:22:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 23:23:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:23:00|clsWorker|INFO >> No emails for profile!
2019-04-11 23:27:59|MyService|INFO >> ## running thread......
2019-04-11 23:27:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 23:27:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 23:27:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:27:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 23:28:01|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:28:01|clsWorker|INFO >> No emails for profile!
2019-04-11 23:32:59|MyService|INFO >> ## running thread......
2019-04-11 23:32:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 23:32:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 23:32:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:32:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 23:33:01|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:33:01|clsWorker|INFO >> No emails for profile!
2019-04-11 23:37:59|MyService|INFO >> ## running thread......
2019-04-11 23:37:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 23:37:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 23:37:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:37:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 23:38:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:38:00|clsWorker|INFO >> No emails for profile!
2019-04-11 23:42:59|MyService|INFO >> ## running thread......
2019-04-11 23:42:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 23:42:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 23:42:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:42:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 23:43:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:43:00|clsWorker|INFO >> No emails for profile!
2019-04-11 23:47:59|MyService|INFO >> ## running thread......
2019-04-11 23:47:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 23:47:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 23:47:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:47:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 23:48:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:48:01|clsWorker|INFO >> No emails for profile!
2019-04-11 23:52:59|MyService|INFO >> ## running thread......
2019-04-11 23:52:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 23:52:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 23:52:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:52:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 23:53:00|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:53:00|clsWorker|INFO >> No emails for profile!
2019-04-11 23:57:59|MyService|INFO >> ## running thread......
2019-04-11 23:57:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-11 23:57:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-11 23:57:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-11 23:57:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-11 23:58:02|clsWorker|WARN >> Error while polling emails....
2019-04-11 23:58:02|clsWorker|INFO >> No emails for profile!

View File

@ -0,0 +1,917 @@
2019-04-12 00:02:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:03:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 00:03:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 00:07:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:08:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 00:08:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 00:12:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:13:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 00:13:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 00:18:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:18:02|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 00:18:02|clsWorker|WARN >> Error while polling emails....
2019-04-12 00:23:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:23:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 00:23:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 00:28:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:28:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 00:28:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 00:33:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:33:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 00:33:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 00:38:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:38:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 00:38:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 00:43:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:43:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 00:43:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 00:48:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:48:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 00:48:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 00:53:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:53:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 00:53:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 00:58:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:58:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 00:58:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:03:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:03:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 01:03:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:08:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:08:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 01:08:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:13:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:13:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 01:13:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:18:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:18:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 01:18:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:22:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:23:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 01:23:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:27:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:28:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 01:28:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:32:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:33:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 01:33:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:37:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:38:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 01:38:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:42:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:43:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 01:43:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:47:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:48:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 01:48:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:52:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:53:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 01:53:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:57:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:58:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 01:58:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:02:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:03:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 02:03:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:07:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:08:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 02:08:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:12:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:13:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 02:13:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:17:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:18:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 02:18:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:22:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:23:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 02:23:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:27:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:28:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 02:28:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:32:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:33:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 02:33:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:38:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:38:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 02:38:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:43:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:43:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 02:43:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:48:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:48:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 02:48:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:53:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:53:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 02:53:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:58:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:58:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 02:58:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:03:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:03:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 03:03:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:08:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:08:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 03:08:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:13:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:13:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 03:13:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:18:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:18:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 03:18:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:23:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:23:02|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 03:23:02|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:28:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:28:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 03:28:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:33:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:33:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 03:33:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:38:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:38:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 03:38:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:43:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:43:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 03:43:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:48:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:48:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 03:48:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:53:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:53:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 03:53:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:58:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:58:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 03:58:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:03:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:03:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 04:03:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:08:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:08:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 04:08:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:13:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:13:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 04:13:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:18:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:18:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 04:18:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:23:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:23:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 04:23:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:28:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:28:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 04:28:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:33:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:33:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 04:33:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:38:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:38:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 04:38:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:43:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:43:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 04:43:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:48:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:48:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 04:48:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:53:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:53:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 04:53:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:58:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:58:02|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 04:58:02|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:03:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:03:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 05:03:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:08:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:08:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 05:08:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:13:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:13:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 05:13:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:18:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:18:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 05:18:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:23:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:23:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 05:23:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:28:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:28:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 05:28:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:33:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:33:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 05:33:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:38:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:38:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 05:38:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:43:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:43:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 05:43:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:48:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:48:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 05:48:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:53:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:53:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 05:53:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:58:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:58:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 05:58:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:03:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:03:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 06:03:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:08:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:08:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 06:08:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:13:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:13:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 06:13:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:18:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:18:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 06:18:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:23:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:23:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 06:23:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:28:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:28:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 06:28:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:33:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:33:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 06:33:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:38:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:38:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 06:38:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:43:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:43:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 06:43:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:48:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:48:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 06:48:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:53:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:53:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 06:53:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:58:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:58:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 06:58:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:03:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:03:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 07:03:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:08:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:08:00|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 07:08:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:13:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:13:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 07:13:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:18:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:18:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 07:18:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:23:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:23:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 07:23:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:28:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:28:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 07:28:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:33:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:33:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 07:33:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:38:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:38:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 07:38:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:43:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:43:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 07:43:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:48:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:48:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 07:48:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:53:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:53:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 07:53:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:58:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:58:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 07:58:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:03:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:03:01|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 08:03:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:09:15|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:09:18|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 08:09:18|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:14:13|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:14:14|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 08:14:14|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:19:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:19:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 08:19:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:24:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:24:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 08:24:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:29:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:29:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 08:29:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:34:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:34:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 08:34:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:39:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:39:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 08:39:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:44:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:44:14|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 08:44:14|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:49:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:49:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 08:49:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:54:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:54:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 08:54:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:59:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:59:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 08:59:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:04:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:04:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 09:04:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:09:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:09:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 09:09:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:14:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:14:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 09:14:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:19:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:19:14|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 09:19:14|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:24:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:24:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 09:24:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:29:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:29:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 09:29:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:34:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:34:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 09:34:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:39:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:39:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 09:39:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:44:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:44:14|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 09:44:14|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:49:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:49:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 09:49:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:54:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:54:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 09:54:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:59:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:59:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 09:59:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 10:04:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 10:04:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 10:04:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 10:09:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 10:09:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 10:09:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 10:14:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 10:14:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 10:14:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 10:19:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 10:19:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 10:19:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 10:24:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 10:24:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 10:24:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 10:29:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 10:29:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 10:29:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 10:34:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 10:34:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 10:34:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 10:39:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 10:39:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 10:39:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 10:44:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 10:44:14|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 10:44:14|clsWorker|WARN >> Error while polling emails....
2019-04-12 10:49:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 10:49:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 10:49:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 10:54:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 10:54:13|clsEmailIMAP|ERROR >> LOGIN failed.
bei Independentsoft.Email.Imap.ImapClient.?(String ?, String ?)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password, AuthenticationType authenticationType)
bei Independentsoft.Email.Imap.ImapClient.Login(String username, String password)
bei DigitalData.EMLProfiler.clsEmailIMAP.IMAP_COLLECT() in E:\SchreiberM\Visual Studio\GIT\DD_EmailProfiler\App\DigitalData.EMLProfiler\clsEmail.IMAP.vb:Zeile 28.
2019-04-12 10:54:13|clsWorker|WARN >> Error while polling emails....

View File

@ -0,0 +1,920 @@
2019-04-12 00:02:59|MyService|INFO >> ## running thread......
2019-04-12 00:02:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 00:02:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 00:02:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:02:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 00:03:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 00:03:00|clsWorker|INFO >> No emails for profile!
2019-04-12 00:07:59|MyService|INFO >> ## running thread......
2019-04-12 00:07:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 00:07:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 00:07:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:08:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 00:08:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 00:08:00|clsWorker|INFO >> No emails for profile!
2019-04-12 00:12:59|MyService|INFO >> ## running thread......
2019-04-12 00:12:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 00:12:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 00:12:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:13:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 00:13:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 00:13:00|clsWorker|INFO >> No emails for profile!
2019-04-12 00:17:59|MyService|INFO >> ## running thread......
2019-04-12 00:17:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 00:18:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 00:18:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:18:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 00:18:02|clsWorker|WARN >> Error while polling emails....
2019-04-12 00:18:02|clsWorker|INFO >> No emails for profile!
2019-04-12 00:23:00|MyService|INFO >> ## running thread......
2019-04-12 00:23:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 00:23:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 00:23:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:23:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 00:23:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 00:23:01|clsWorker|INFO >> No emails for profile!
2019-04-12 00:28:00|MyService|INFO >> ## running thread......
2019-04-12 00:28:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 00:28:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 00:28:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:28:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 00:28:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 00:28:00|clsWorker|INFO >> No emails for profile!
2019-04-12 00:33:00|MyService|INFO >> ## running thread......
2019-04-12 00:33:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 00:33:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 00:33:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:33:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 00:33:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 00:33:00|clsWorker|INFO >> No emails for profile!
2019-04-12 00:38:00|MyService|INFO >> ## running thread......
2019-04-12 00:38:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 00:38:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 00:38:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:38:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 00:38:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 00:38:00|clsWorker|INFO >> No emails for profile!
2019-04-12 00:43:00|MyService|INFO >> ## running thread......
2019-04-12 00:43:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 00:43:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 00:43:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:43:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 00:43:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 00:43:01|clsWorker|INFO >> No emails for profile!
2019-04-12 00:48:00|MyService|INFO >> ## running thread......
2019-04-12 00:48:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 00:48:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 00:48:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:48:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 00:48:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 00:48:01|clsWorker|INFO >> No emails for profile!
2019-04-12 00:53:00|MyService|INFO >> ## running thread......
2019-04-12 00:53:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 00:53:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 00:53:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:53:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 00:53:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 00:53:00|clsWorker|INFO >> No emails for profile!
2019-04-12 00:58:00|MyService|INFO >> ## running thread......
2019-04-12 00:58:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 00:58:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 00:58:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 00:58:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 00:58:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 00:58:00|clsWorker|INFO >> No emails for profile!
2019-04-12 01:03:00|MyService|INFO >> ## running thread......
2019-04-12 01:03:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 01:03:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 01:03:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:03:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 01:03:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:03:00|clsWorker|INFO >> No emails for profile!
2019-04-12 01:08:00|MyService|INFO >> ## running thread......
2019-04-12 01:08:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 01:08:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 01:08:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:08:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 01:08:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:08:00|clsWorker|INFO >> No emails for profile!
2019-04-12 01:12:59|MyService|INFO >> ## running thread......
2019-04-12 01:12:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 01:13:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 01:13:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:13:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 01:13:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:13:00|clsWorker|INFO >> No emails for profile!
2019-04-12 01:17:59|MyService|INFO >> ## running thread......
2019-04-12 01:17:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 01:17:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 01:18:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:18:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 01:18:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:18:00|clsWorker|INFO >> No emails for profile!
2019-04-12 01:22:59|MyService|INFO >> ## running thread......
2019-04-12 01:22:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 01:22:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 01:22:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:22:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 01:23:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:23:00|clsWorker|INFO >> No emails for profile!
2019-04-12 01:27:59|MyService|INFO >> ## running thread......
2019-04-12 01:27:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 01:27:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 01:27:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:27:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 01:28:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:28:00|clsWorker|INFO >> No emails for profile!
2019-04-12 01:32:59|MyService|INFO >> ## running thread......
2019-04-12 01:32:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 01:32:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 01:32:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:32:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 01:33:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:33:01|clsWorker|INFO >> No emails for profile!
2019-04-12 01:37:59|MyService|INFO >> ## running thread......
2019-04-12 01:37:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 01:37:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 01:37:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:37:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 01:38:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:38:00|clsWorker|INFO >> No emails for profile!
2019-04-12 01:42:59|MyService|INFO >> ## running thread......
2019-04-12 01:42:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 01:42:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 01:42:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:42:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 01:43:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:43:00|clsWorker|INFO >> No emails for profile!
2019-04-12 01:47:59|MyService|INFO >> ## running thread......
2019-04-12 01:47:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 01:47:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 01:47:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:47:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 01:48:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:48:00|clsWorker|INFO >> No emails for profile!
2019-04-12 01:52:59|MyService|INFO >> ## running thread......
2019-04-12 01:52:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 01:52:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 01:52:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:52:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 01:53:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:53:00|clsWorker|INFO >> No emails for profile!
2019-04-12 01:57:59|MyService|INFO >> ## running thread......
2019-04-12 01:57:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 01:57:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 01:57:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 01:57:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 01:58:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 01:58:00|clsWorker|INFO >> No emails for profile!
2019-04-12 02:02:59|MyService|INFO >> ## running thread......
2019-04-12 02:02:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 02:02:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 02:02:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:02:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 02:03:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:03:00|clsWorker|INFO >> No emails for profile!
2019-04-12 02:07:59|MyService|INFO >> ## running thread......
2019-04-12 02:07:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 02:07:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 02:07:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:07:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 02:08:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:08:00|clsWorker|INFO >> No emails for profile!
2019-04-12 02:12:59|MyService|INFO >> ## running thread......
2019-04-12 02:12:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 02:12:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 02:12:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:12:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 02:13:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:13:01|clsWorker|INFO >> No emails for profile!
2019-04-12 02:17:59|MyService|INFO >> ## running thread......
2019-04-12 02:17:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 02:17:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 02:17:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:17:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 02:18:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:18:00|clsWorker|INFO >> No emails for profile!
2019-04-12 02:22:59|MyService|INFO >> ## running thread......
2019-04-12 02:22:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 02:22:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 02:22:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:22:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 02:23:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:23:01|clsWorker|INFO >> No emails for profile!
2019-04-12 02:27:59|MyService|INFO >> ## running thread......
2019-04-12 02:27:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 02:27:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 02:27:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:27:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 02:28:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:28:00|clsWorker|INFO >> No emails for profile!
2019-04-12 02:32:59|MyService|INFO >> ## running thread......
2019-04-12 02:32:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 02:32:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 02:32:59|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:32:59|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 02:33:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:33:00|clsWorker|INFO >> No emails for profile!
2019-04-12 02:37:59|MyService|INFO >> ## running thread......
2019-04-12 02:38:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 02:38:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 02:38:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:38:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 02:38:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:38:00|clsWorker|INFO >> No emails for profile!
2019-04-12 02:42:59|MyService|INFO >> ## running thread......
2019-04-12 02:43:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 02:43:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 02:43:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:43:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 02:43:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:43:01|clsWorker|INFO >> No emails for profile!
2019-04-12 02:47:59|MyService|INFO >> ## running thread......
2019-04-12 02:48:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 02:48:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 02:48:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:48:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 02:48:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:48:01|clsWorker|INFO >> No emails for profile!
2019-04-12 02:52:59|MyService|INFO >> ## running thread......
2019-04-12 02:53:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 02:53:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 02:53:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:53:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 02:53:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:53:01|clsWorker|INFO >> No emails for profile!
2019-04-12 02:57:59|MyService|INFO >> ## running thread......
2019-04-12 02:57:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 02:57:59|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 02:58:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 02:58:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 02:58:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 02:58:00|clsWorker|INFO >> No emails for profile!
2019-04-12 03:02:59|MyService|INFO >> ## running thread......
2019-04-12 03:02:59|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 03:03:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 03:03:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:03:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 03:03:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:03:01|clsWorker|INFO >> No emails for profile!
2019-04-12 03:07:59|MyService|INFO >> ## running thread......
2019-04-12 03:08:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 03:08:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 03:08:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:08:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 03:08:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:08:01|clsWorker|INFO >> No emails for profile!
2019-04-12 03:12:59|MyService|INFO >> ## running thread......
2019-04-12 03:13:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 03:13:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 03:13:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:13:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 03:13:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:13:01|clsWorker|INFO >> No emails for profile!
2019-04-12 03:18:00|MyService|INFO >> ## running thread......
2019-04-12 03:18:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 03:18:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 03:18:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:18:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 03:18:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:18:00|clsWorker|INFO >> No emails for profile!
2019-04-12 03:23:00|MyService|INFO >> ## running thread......
2019-04-12 03:23:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 03:23:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 03:23:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:23:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 03:23:02|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:23:02|clsWorker|INFO >> No emails for profile!
2019-04-12 03:28:00|MyService|INFO >> ## running thread......
2019-04-12 03:28:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 03:28:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 03:28:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:28:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 03:28:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:28:00|clsWorker|INFO >> No emails for profile!
2019-04-12 03:33:00|MyService|INFO >> ## running thread......
2019-04-12 03:33:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 03:33:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 03:33:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:33:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 03:33:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:33:01|clsWorker|INFO >> No emails for profile!
2019-04-12 03:38:00|MyService|INFO >> ## running thread......
2019-04-12 03:38:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 03:38:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 03:38:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:38:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 03:38:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:38:00|clsWorker|INFO >> No emails for profile!
2019-04-12 03:43:00|MyService|INFO >> ## running thread......
2019-04-12 03:43:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 03:43:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 03:43:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:43:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 03:43:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:43:01|clsWorker|INFO >> No emails for profile!
2019-04-12 03:48:00|MyService|INFO >> ## running thread......
2019-04-12 03:48:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 03:48:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 03:48:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:48:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 03:48:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:48:01|clsWorker|INFO >> No emails for profile!
2019-04-12 03:53:00|MyService|INFO >> ## running thread......
2019-04-12 03:53:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 03:53:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 03:53:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:53:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 03:53:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:53:00|clsWorker|INFO >> No emails for profile!
2019-04-12 03:58:00|MyService|INFO >> ## running thread......
2019-04-12 03:58:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 03:58:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 03:58:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 03:58:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 03:58:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 03:58:00|clsWorker|INFO >> No emails for profile!
2019-04-12 04:03:00|MyService|INFO >> ## running thread......
2019-04-12 04:03:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 04:03:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 04:03:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:03:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 04:03:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:03:01|clsWorker|INFO >> No emails for profile!
2019-04-12 04:08:00|MyService|INFO >> ## running thread......
2019-04-12 04:08:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 04:08:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 04:08:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:08:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 04:08:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:08:01|clsWorker|INFO >> No emails for profile!
2019-04-12 04:13:00|MyService|INFO >> ## running thread......
2019-04-12 04:13:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 04:13:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 04:13:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:13:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 04:13:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:13:01|clsWorker|INFO >> No emails for profile!
2019-04-12 04:18:00|MyService|INFO >> ## running thread......
2019-04-12 04:18:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 04:18:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 04:18:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:18:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 04:18:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:18:01|clsWorker|INFO >> No emails for profile!
2019-04-12 04:23:00|MyService|INFO >> ## running thread......
2019-04-12 04:23:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 04:23:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 04:23:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:23:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 04:23:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:23:01|clsWorker|INFO >> No emails for profile!
2019-04-12 04:28:00|MyService|INFO >> ## running thread......
2019-04-12 04:28:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 04:28:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 04:28:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:28:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 04:28:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:28:01|clsWorker|INFO >> No emails for profile!
2019-04-12 04:33:00|MyService|INFO >> ## running thread......
2019-04-12 04:33:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 04:33:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 04:33:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:33:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 04:33:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:33:01|clsWorker|INFO >> No emails for profile!
2019-04-12 04:38:00|MyService|INFO >> ## running thread......
2019-04-12 04:38:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 04:38:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 04:38:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:38:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 04:38:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:38:01|clsWorker|INFO >> No emails for profile!
2019-04-12 04:43:00|MyService|INFO >> ## running thread......
2019-04-12 04:43:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 04:43:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 04:43:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:43:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 04:43:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:43:01|clsWorker|INFO >> No emails for profile!
2019-04-12 04:48:00|MyService|INFO >> ## running thread......
2019-04-12 04:48:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 04:48:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 04:48:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:48:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 04:48:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:48:01|clsWorker|INFO >> No emails for profile!
2019-04-12 04:53:00|MyService|INFO >> ## running thread......
2019-04-12 04:53:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 04:53:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 04:53:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:53:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 04:53:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:53:01|clsWorker|INFO >> No emails for profile!
2019-04-12 04:58:00|MyService|INFO >> ## running thread......
2019-04-12 04:58:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 04:58:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 04:58:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 04:58:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 04:58:02|clsWorker|WARN >> Error while polling emails....
2019-04-12 04:58:02|clsWorker|INFO >> No emails for profile!
2019-04-12 05:03:00|MyService|INFO >> ## running thread......
2019-04-12 05:03:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 05:03:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 05:03:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:03:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 05:03:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:03:01|clsWorker|INFO >> No emails for profile!
2019-04-12 05:08:00|MyService|INFO >> ## running thread......
2019-04-12 05:08:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 05:08:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 05:08:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:08:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 05:08:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:08:01|clsWorker|INFO >> No emails for profile!
2019-04-12 05:13:00|MyService|INFO >> ## running thread......
2019-04-12 05:13:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 05:13:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 05:13:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:13:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 05:13:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:13:01|clsWorker|INFO >> No emails for profile!
2019-04-12 05:18:00|MyService|INFO >> ## running thread......
2019-04-12 05:18:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 05:18:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 05:18:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:18:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 05:18:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:18:01|clsWorker|INFO >> No emails for profile!
2019-04-12 05:23:00|MyService|INFO >> ## running thread......
2019-04-12 05:23:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 05:23:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 05:23:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:23:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 05:23:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:23:01|clsWorker|INFO >> No emails for profile!
2019-04-12 05:28:00|MyService|INFO >> ## running thread......
2019-04-12 05:28:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 05:28:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 05:28:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:28:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 05:28:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:28:01|clsWorker|INFO >> No emails for profile!
2019-04-12 05:33:00|MyService|INFO >> ## running thread......
2019-04-12 05:33:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 05:33:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 05:33:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:33:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 05:33:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:33:01|clsWorker|INFO >> No emails for profile!
2019-04-12 05:38:00|MyService|INFO >> ## running thread......
2019-04-12 05:38:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 05:38:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 05:38:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:38:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 05:38:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:38:01|clsWorker|INFO >> No emails for profile!
2019-04-12 05:43:00|MyService|INFO >> ## running thread......
2019-04-12 05:43:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 05:43:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 05:43:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:43:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 05:43:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:43:01|clsWorker|INFO >> No emails for profile!
2019-04-12 05:48:00|MyService|INFO >> ## running thread......
2019-04-12 05:48:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 05:48:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 05:48:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:48:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 05:48:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:48:01|clsWorker|INFO >> No emails for profile!
2019-04-12 05:53:00|MyService|INFO >> ## running thread......
2019-04-12 05:53:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 05:53:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 05:53:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:53:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 05:53:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:53:01|clsWorker|INFO >> No emails for profile!
2019-04-12 05:58:00|MyService|INFO >> ## running thread......
2019-04-12 05:58:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 05:58:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 05:58:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 05:58:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 05:58:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 05:58:01|clsWorker|INFO >> No emails for profile!
2019-04-12 06:03:00|MyService|INFO >> ## running thread......
2019-04-12 06:03:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 06:03:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 06:03:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:03:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 06:03:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:03:00|clsWorker|INFO >> No emails for profile!
2019-04-12 06:08:00|MyService|INFO >> ## running thread......
2019-04-12 06:08:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 06:08:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 06:08:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:08:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 06:08:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:08:01|clsWorker|INFO >> No emails for profile!
2019-04-12 06:13:00|MyService|INFO >> ## running thread......
2019-04-12 06:13:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 06:13:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 06:13:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:13:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 06:13:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:13:01|clsWorker|INFO >> No emails for profile!
2019-04-12 06:18:00|MyService|INFO >> ## running thread......
2019-04-12 06:18:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 06:18:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 06:18:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:18:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 06:18:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:18:01|clsWorker|INFO >> No emails for profile!
2019-04-12 06:23:00|MyService|INFO >> ## running thread......
2019-04-12 06:23:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 06:23:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 06:23:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:23:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 06:23:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:23:01|clsWorker|INFO >> No emails for profile!
2019-04-12 06:28:00|MyService|INFO >> ## running thread......
2019-04-12 06:28:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 06:28:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 06:28:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:28:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 06:28:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:28:01|clsWorker|INFO >> No emails for profile!
2019-04-12 06:33:00|MyService|INFO >> ## running thread......
2019-04-12 06:33:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 06:33:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 06:33:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:33:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 06:33:00|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:33:01|clsWorker|INFO >> No emails for profile!
2019-04-12 06:38:00|MyService|INFO >> ## running thread......
2019-04-12 06:38:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 06:38:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 06:38:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:38:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 06:38:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:38:01|clsWorker|INFO >> No emails for profile!
2019-04-12 06:43:00|MyService|INFO >> ## running thread......
2019-04-12 06:43:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 06:43:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 06:43:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:43:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 06:43:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:43:01|clsWorker|INFO >> No emails for profile!
2019-04-12 06:48:00|MyService|INFO >> ## running thread......
2019-04-12 06:48:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 06:48:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 06:48:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:48:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 06:48:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:48:01|clsWorker|INFO >> No emails for profile!
2019-04-12 06:53:00|MyService|INFO >> ## running thread......
2019-04-12 06:53:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 06:53:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 06:53:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:53:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 06:53:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:53:01|clsWorker|INFO >> No emails for profile!
2019-04-12 06:58:00|MyService|INFO >> ## running thread......
2019-04-12 06:58:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 06:58:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 06:58:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 06:58:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 06:58:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 06:58:01|clsWorker|INFO >> No emails for profile!
2019-04-12 07:03:00|MyService|INFO >> ## running thread......
2019-04-12 07:03:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 07:03:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 07:03:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:03:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 07:03:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:03:01|clsWorker|INFO >> No emails for profile!
2019-04-12 07:08:00|MyService|INFO >> ## running thread......
2019-04-12 07:08:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 07:08:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 07:08:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:08:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 07:08:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:08:01|clsWorker|INFO >> No emails for profile!
2019-04-12 07:13:00|MyService|INFO >> ## running thread......
2019-04-12 07:13:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 07:13:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 07:13:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:13:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 07:13:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:13:01|clsWorker|INFO >> No emails for profile!
2019-04-12 07:18:00|MyService|INFO >> ## running thread......
2019-04-12 07:18:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 07:18:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 07:18:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:18:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 07:18:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:18:01|clsWorker|INFO >> No emails for profile!
2019-04-12 07:23:00|MyService|INFO >> ## running thread......
2019-04-12 07:23:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 07:23:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 07:23:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:23:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 07:23:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:23:01|clsWorker|INFO >> No emails for profile!
2019-04-12 07:28:00|MyService|INFO >> ## running thread......
2019-04-12 07:28:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 07:28:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 07:28:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:28:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 07:28:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:28:01|clsWorker|INFO >> No emails for profile!
2019-04-12 07:33:00|MyService|INFO >> ## running thread......
2019-04-12 07:33:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 07:33:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 07:33:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:33:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 07:33:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:33:01|clsWorker|INFO >> No emails for profile!
2019-04-12 07:38:00|MyService|INFO >> ## running thread......
2019-04-12 07:38:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 07:38:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 07:38:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:38:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 07:38:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:38:01|clsWorker|INFO >> No emails for profile!
2019-04-12 07:43:00|MyService|INFO >> ## running thread......
2019-04-12 07:43:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 07:43:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 07:43:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:43:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 07:43:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:43:01|clsWorker|INFO >> No emails for profile!
2019-04-12 07:48:00|MyService|INFO >> ## running thread......
2019-04-12 07:48:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 07:48:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 07:48:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:48:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 07:48:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:48:01|clsWorker|INFO >> No emails for profile!
2019-04-12 07:53:00|MyService|INFO >> ## running thread......
2019-04-12 07:53:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 07:53:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 07:53:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:53:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 07:53:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:53:01|clsWorker|INFO >> No emails for profile!
2019-04-12 07:58:00|MyService|INFO >> ## running thread......
2019-04-12 07:58:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 07:58:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 07:58:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 07:58:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 07:58:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 07:58:01|clsWorker|INFO >> No emails for profile!
2019-04-12 08:03:00|MyService|INFO >> ## running thread......
2019-04-12 08:03:00|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 08:03:00|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 08:03:00|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:03:00|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 08:03:01|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:03:01|clsWorker|INFO >> No emails for profile!
2019-04-12 08:08:46|MyService|INFO >> ## Service started ##
2019-04-12 08:08:53|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 08:09:13|MyService|INFO >> ...Timer started.
2019-04-12 08:09:13|MyService|INFO >> ## running thread......
2019-04-12 08:09:14|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 08:09:15|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 08:09:15|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:09:15|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 08:09:18|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:09:18|clsWorker|INFO >> No emails for profile!
2019-04-12 08:14:13|MyService|INFO >> ## running thread......
2019-04-12 08:14:13|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 08:14:13|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 08:14:13|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:14:13|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 08:14:14|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:14:14|clsWorker|INFO >> No emails for profile!
2019-04-12 08:19:12|MyService|INFO >> ## running thread......
2019-04-12 08:19:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 08:19:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 08:19:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:19:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 08:19:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:19:13|clsWorker|INFO >> No emails for profile!
2019-04-12 08:24:12|MyService|INFO >> ## running thread......
2019-04-12 08:24:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 08:24:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 08:24:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:24:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 08:24:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:24:13|clsWorker|INFO >> No emails for profile!
2019-04-12 08:29:12|MyService|INFO >> ## running thread......
2019-04-12 08:29:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 08:29:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 08:29:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:29:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 08:29:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:29:13|clsWorker|INFO >> No emails for profile!
2019-04-12 08:34:12|MyService|INFO >> ## running thread......
2019-04-12 08:34:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 08:34:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 08:34:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:34:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 08:34:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:34:13|clsWorker|INFO >> No emails for profile!
2019-04-12 08:39:12|MyService|INFO >> ## running thread......
2019-04-12 08:39:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 08:39:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 08:39:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:39:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 08:39:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:39:13|clsWorker|INFO >> No emails for profile!
2019-04-12 08:44:12|MyService|INFO >> ## running thread......
2019-04-12 08:44:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 08:44:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 08:44:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:44:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 08:44:14|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:44:14|clsWorker|INFO >> No emails for profile!
2019-04-12 08:49:12|MyService|INFO >> ## running thread......
2019-04-12 08:49:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 08:49:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 08:49:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:49:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 08:49:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:49:13|clsWorker|INFO >> No emails for profile!
2019-04-12 08:54:12|MyService|INFO >> ## running thread......
2019-04-12 08:54:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 08:54:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 08:54:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:54:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 08:54:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:54:13|clsWorker|INFO >> No emails for profile!
2019-04-12 08:59:12|MyService|INFO >> ## running thread......
2019-04-12 08:59:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 08:59:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 08:59:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 08:59:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 08:59:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 08:59:13|clsWorker|INFO >> No emails for profile!
2019-04-12 09:04:12|MyService|INFO >> ## running thread......
2019-04-12 09:04:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 09:04:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 09:04:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:04:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 09:04:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:04:13|clsWorker|INFO >> No emails for profile!
2019-04-12 09:09:12|MyService|INFO >> ## running thread......
2019-04-12 09:09:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 09:09:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 09:09:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:09:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 09:09:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:09:13|clsWorker|INFO >> No emails for profile!
2019-04-12 09:14:12|MyService|INFO >> ## running thread......
2019-04-12 09:14:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 09:14:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 09:14:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:14:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 09:14:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:14:13|clsWorker|INFO >> No emails for profile!
2019-04-12 09:19:12|MyService|INFO >> ## running thread......
2019-04-12 09:19:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 09:19:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 09:19:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:19:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 09:19:14|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:19:14|clsWorker|INFO >> No emails for profile!
2019-04-12 09:24:12|MyService|INFO >> ## running thread......
2019-04-12 09:24:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 09:24:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 09:24:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:24:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 09:24:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:24:13|clsWorker|INFO >> No emails for profile!
2019-04-12 09:29:12|MyService|INFO >> ## running thread......
2019-04-12 09:29:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 09:29:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 09:29:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:29:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 09:29:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:29:13|clsWorker|INFO >> No emails for profile!
2019-04-12 09:34:12|MyService|INFO >> ## running thread......
2019-04-12 09:34:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 09:34:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 09:34:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:34:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 09:34:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:34:13|clsWorker|INFO >> No emails for profile!
2019-04-12 09:39:12|MyService|INFO >> ## running thread......
2019-04-12 09:39:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 09:39:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 09:39:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:39:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 09:39:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:39:13|clsWorker|INFO >> No emails for profile!
2019-04-12 09:44:12|MyService|INFO >> ## running thread......
2019-04-12 09:44:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 09:44:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 09:44:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:44:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 09:44:14|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:44:14|clsWorker|INFO >> No emails for profile!
2019-04-12 09:49:12|MyService|INFO >> ## running thread......
2019-04-12 09:49:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 09:49:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 09:49:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:49:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 09:49:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:49:13|clsWorker|INFO >> No emails for profile!
2019-04-12 09:54:12|MyService|INFO >> ## running thread......
2019-04-12 09:54:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 09:54:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 09:54:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:54:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 09:54:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:54:13|clsWorker|INFO >> No emails for profile!
2019-04-12 09:59:12|MyService|INFO >> ## running thread......
2019-04-12 09:59:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 09:59:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 09:59:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 09:59:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 09:59:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 09:59:13|clsWorker|INFO >> No emails for profile!
2019-04-12 10:04:12|MyService|INFO >> ## running thread......
2019-04-12 10:04:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 10:04:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 10:04:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 10:04:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 10:04:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 10:04:13|clsWorker|INFO >> No emails for profile!
2019-04-12 10:09:12|MyService|INFO >> ## running thread......
2019-04-12 10:09:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 10:09:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 10:09:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 10:09:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 10:09:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 10:09:13|clsWorker|INFO >> No emails for profile!
2019-04-12 10:14:12|MyService|INFO >> ## running thread......
2019-04-12 10:14:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 10:14:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 10:14:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 10:14:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 10:14:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 10:14:13|clsWorker|INFO >> No emails for profile!
2019-04-12 10:19:12|MyService|INFO >> ## running thread......
2019-04-12 10:19:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 10:19:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 10:19:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 10:19:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 10:19:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 10:19:13|clsWorker|INFO >> No emails for profile!
2019-04-12 10:24:12|MyService|INFO >> ## running thread......
2019-04-12 10:24:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 10:24:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 10:24:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 10:24:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 10:24:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 10:24:13|clsWorker|INFO >> No emails for profile!
2019-04-12 10:29:12|MyService|INFO >> ## running thread......
2019-04-12 10:29:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 10:29:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 10:29:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 10:29:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 10:29:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 10:29:13|clsWorker|INFO >> No emails for profile!
2019-04-12 10:34:12|MyService|INFO >> ## running thread......
2019-04-12 10:34:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 10:34:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 10:34:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 10:34:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 10:34:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 10:34:13|clsWorker|INFO >> No emails for profile!
2019-04-12 10:39:12|MyService|INFO >> ## running thread......
2019-04-12 10:39:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 10:39:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 10:39:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 10:39:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 10:39:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 10:39:13|clsWorker|INFO >> No emails for profile!
2019-04-12 10:44:12|MyService|INFO >> ## running thread......
2019-04-12 10:44:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 10:44:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 10:44:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 10:44:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 10:44:14|clsWorker|WARN >> Error while polling emails....
2019-04-12 10:44:14|clsWorker|INFO >> No emails for profile!
2019-04-12 10:49:12|MyService|INFO >> ## running thread......
2019-04-12 10:49:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 10:49:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 10:49:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 10:49:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 10:49:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 10:49:13|clsWorker|INFO >> No emails for profile!
2019-04-12 10:54:12|MyService|INFO >> ## running thread......
2019-04-12 10:54:12|clsWorkEmail|INFO >> Detail-Log is on
2019-04-12 10:54:12|clsWorker|INFO >> Working on profile: (1-TEST1-IMAP)
2019-04-12 10:54:12|clsWorker|WARN >> PWPlain is nothing - Could not decrypt passwort
2019-04-12 10:54:12|clsEmailIMAP|INFO >> Working on IMAP_COLLECT.....
2019-04-12 10:54:13|clsWorker|WARN >> Error while polling emails....
2019-04-12 10:54:13|clsWorker|INFO >> No emails for profile!

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.