...
Wenn eine E-Mail nicht autogeteilt wird, dann ist diese aus Sicht von antony nicht identisch. Um dies zu überprüfen, werden die originalen EML Dateien benötigt, welche antony zugestellt worden sind. Diese sind wie folgt zu finden:
<< to be continued >>
Vorlage der Fragen für nicht geteilte Emails:
(1) Welchen Betreff hat die Email??
(2) Wann wurde die mal verschickt (Versandzeitpunkt = Datum + Uhrzeit)???
(3) Bei welchen Email Postfach/Account ist die Mail eingegangen
(4) Abfrage aller Attribute (Betreff, Datum, Postfach)
Basic SQL Query:
Code Block | ||
---|---|---|
| ||
SELECT em.id, em.delivery_date, em.from_email, em.to_email, em.subject, emea.account_id, ea.email_display_name AS mailbox, em.hash
FROM email_messages AS em
LEFT JOIN `email_message-email_account` AS emea on em.id = emea.message_id
LEFT JOIN email_account AS ea on emea.account_id = ea.id
LEFT JOIN instance_properties as ip on em.id = ip.object_id and ip.instance_id=3 and ip.direction = 2
|
(1)
Code Block | ||
---|---|---|
| ||
-- Basic SQL QUERY +
WHERE em.subject like "%Alaska%" |
(2)
Code Block |
---|
-- Basic SQL QUERY +
WHERE em.delivery_date >= '2023-05-01T00:00:00' AND em.delivery_date <= '2023-05-03T23:00:00' |
(3)
Code Block |
---|
-- Basic SQL QUERY +
WHERE ea.email_display_name like "%klaus%" |
(4)
Code Block |
---|
-- Basic SQL QUERY +
WHERE ea.email_display_name like "%paul%"
AND em.delivery_date >= '2023-05-01T00:00:00' AND em.delivery_date <= '2023-05-03T23:00:00'
AND em.subject like "%Kalender%" |
Tables:
email_messages = Email Informationen
email_account = Email Account Informationen
email_message-email_account = Kombinierte Email & Email Account
instance_properties = Email Meta Daten
Spalten:
ID = Nummer zum identifizieren des Datensatzes
delivery_date = Absendedatum
from_email = Absender
to_email = Empfänger
subject = Betreff
account_id = Postfach ID
email_display_name = Adresse Postfach
hash = Hash (Fingerabdruck) der Email
Pfad der PostfachID:
Code Block | ||
---|---|---|
| ||
C:/Program Files(x86)/antony Systemhaus GmbH/antony – Die Services/Mailbox |
BSP: PostfachID = 1:
Code Block | ||
---|---|---|
| ||
C:/Program Files(x86)/antony Systemhaus GmbH/antony – Die Services/Mailbox/1 |