From 0ddee2e14a81e2d38ae4a941bca3ab486470cf0a Mon Sep 17 00:00:00 2001 From: Miguel Date: Thu, 31 Jul 2025 09:47:47 +0200 Subject: [PATCH] =?UTF-8?q?Se=20a=C3=B1adieron=20nuevas=20reglas=20de=20em?= =?UTF-8?q?bellecimiento=20en=20`beautify=5Frules.json`=20para=20eliminar?= =?UTF-8?q?=20avisos=20de=20confidencialidad=20y=20responsabilidad=20en=20?= =?UTF-8?q?ingl=C3=A9s=20y=20alem=C3=A1n,=20as=C3=AD=20como=20enlaces=20es?= =?UTF-8?q?pec=C3=ADficos=20de=20ALPLA.=20Adem=C3=A1s,=20se=20mejor=C3=B3?= =?UTF-8?q?=20el=20script=20`email=5Fparser.py`=20para=20asegurar=20que=20?= =?UTF-8?q?el=20contenido=20principal=20de=20los=20correos=20electr=C3=B3n?= =?UTF-8?q?icos=20se=20capture=20correctamente=20sin=20sobrescribirlo.=20S?= =?UTF-8?q?e=20actualizaron=20los=20directorios=20de=20trabajo=20en=20vari?= =?UTF-8?q?os=20archivos=20de=20configuraci=C3=B3n=20JSON=20para=20refleja?= =?UTF-8?q?r=20nuevas=20rutas.=20Se=20eliminaron=20registros=20antiguos=20?= =?UTF-8?q?en=20`log.txt`=20y=20se=20optimiz=C3=B3=20el=20manejo=20de=20me?= =?UTF-8?q?nsajes=20duplicados=20durante=20el=20procesamiento=20de=20corre?= =?UTF-8?q?os=20electr=C3=B3nicos.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../EmailCrono/config/beautify_rules.json | 56 ++ .../EmailCrono/utils/email_parser.py | 44 +- .../ObtainIOFromProjectTia/script_config.json | 2 +- .../ObtainIOFromProjectTia/work_dir.json | 3 +- .../XML Parser to SCL/script_config.json | 2 +- .../XML Parser to SCL/work_dir.json | 3 +- data/log.txt | 867 ------------------ 7 files changed, 93 insertions(+), 884 deletions(-) diff --git a/backend/script_groups/EmailCrono/config/beautify_rules.json b/backend/script_groups/EmailCrono/config/beautify_rules.json index 81c9fcf..01dfdd8 100644 --- a/backend/script_groups/EmailCrono/config/beautify_rules.json +++ b/backend/script_groups/EmailCrono/config/beautify_rules.json @@ -166,6 +166,62 @@ "action": "remove_block", "type": "string", "priority": 4 + }, + { + "__comment": "Elimina aviso confidencialidad (inglés ALPLA)", + "pattern": "This message is confidential and intended solely", + "replacement": "", + "action": "remove_line", + "type": "substring", + "priority": 2 + }, + { + "__comment": "Elimina aviso de responsabilidad ALPLA (inglés)", + "pattern": "To the extent permitted by law ALPLA", + "replacement": "", + "action": "remove_line", + "type": "substring", + "priority": 2 + }, + { + "__comment": "Elimina aviso confidencialidad (alemán ALPLA)", + "pattern": "Diese Nachricht ist vertraulich und nur", + "replacement": "", + "action": "remove_line", + "type": "substring", + "priority": 2 + }, + { + "__comment": "Elimina aviso términos y condiciones ALPLA (alemán)", + "pattern": "Wir liefern und bestellen ausschließlich", + "replacement": "", + "action": "remove_line", + "type": "substring", + "priority": 2 + }, + { + "__comment": "Elimina enlace GTC ALPLA", + "pattern": "alink.alpla.com/GTC", + "replacement": "", + "action": "remove_line", + "type": "substring", + "priority": 2 + }, + { + "__comment": "Elimina aviso de seguridad EXTERNAL SENDER (caution)", + "pattern": "CAUTION: This message is from an EXTERNAL SENDER ..... know the content is safe!", + "replacement": "", + "action": "remove_block", + "type": "string", + "priority": 4 + }, + { + "__comment": "Elimina disclaimer confidencialidad (alemán + inglés)", + "pattern": "Diese E-Mail enthält vertrauliche ..... strictly prohibited.", + "replacement": "", + "action": "remove_block", + "type": "string", + "priority": 4 } ] } \ No newline at end of file diff --git a/backend/script_groups/EmailCrono/utils/email_parser.py b/backend/script_groups/EmailCrono/utils/email_parser.py index d40b905..1195c85 100644 --- a/backend/script_groups/EmailCrono/utils/email_parser.py +++ b/backend/script_groups/EmailCrono/utils/email_parser.py @@ -313,39 +313,57 @@ def procesar_eml_interno(mensaje, dir_adjuntos): # Second pass: process content and attachments if mensaje.is_multipart(): + # Asegurarnos de capturar SOLO una vez el cuerpo principal y no sobrescribirlo + contenido_set = False # flag para no re-asignar contenido principal for parte in mensaje.walk(): content_type = parte.get_content_type() try: - if content_type == "text/html": - html_content = _get_payload_safely(parte) - if html_content: - part_subject, text = _html_a_markdown(html_content) - if not subject and part_subject: - subject = part_subject + # ----------------------------- + # 1. CONTENIDO PRINCIPAL + # ----------------------------- + if (not contenido_set) and ( + content_type == "text/html" + or (content_type == "text/plain" and not tiene_html) + ): + # Procesamos la primera ocurrencia válida + if content_type == "text/html": + html_content = _get_payload_safely(parte) + if html_content: + part_subject, text = _html_a_markdown(html_content) + if not subject and part_subject: + subject = part_subject + if text: + contenido = text + contenido_set = True + else: # text/plain + text = _get_payload_safely(parte) if text: contenido = text - elif content_type == "text/plain" and not tiene_html: - text = _get_payload_safely(parte) - if text: - contenido = text + contenido_set = True + + # ----------------------------- + # 2. EMAILS RFC822 ADJUNTOS + # ----------------------------- elif content_type == "message/rfc822": - # Procesar email adjunto mensajes_adjuntos = _procesar_email_adjunto(parte, dir_adjuntos) mensajes.extend(mensajes_adjuntos) + + # ----------------------------- + # 3. OTROS ADJUNTOS + # ----------------------------- elif parte.get_content_disposition() == "attachment": nombre = parte.get_filename() if nombre and nombre.lower().endswith(".eml"): - # Si es un archivo .eml adjunto mensajes_adjuntos = _procesar_email_adjunto( parte, dir_adjuntos ) mensajes.extend(mensajes_adjuntos) else: - # Otros tipos de adjuntos ruta_adjunto = guardar_adjunto(parte, dir_adjuntos) if ruta_adjunto: adjuntos.append(Path(ruta_adjunto).name) + except Exception as e: print(f"Error procesando parte del mensaje: {str(e)}") continue diff --git a/backend/script_groups/ObtainIOFromProjectTia/script_config.json b/backend/script_groups/ObtainIOFromProjectTia/script_config.json index 2ed30cd..dd2440b 100644 --- a/backend/script_groups/ObtainIOFromProjectTia/script_config.json +++ b/backend/script_groups/ObtainIOFromProjectTia/script_config.json @@ -5,5 +5,5 @@ }, "level2": {}, "level3": {}, - "working_directory": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\Reporte\\TiaExport" + "working_directory": "D:\\Trabajo\\VM\\45 - HENKEL - VM Auto Changeover\\ExportTia" } \ No newline at end of file diff --git a/backend/script_groups/ObtainIOFromProjectTia/work_dir.json b/backend/script_groups/ObtainIOFromProjectTia/work_dir.json index aa6b0f5..7fe7a87 100644 --- a/backend/script_groups/ObtainIOFromProjectTia/work_dir.json +++ b/backend/script_groups/ObtainIOFromProjectTia/work_dir.json @@ -1,6 +1,7 @@ { - "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\Reporte\\TiaExport", + "path": "D:\\Trabajo\\VM\\45 - HENKEL - VM Auto Changeover\\ExportTia", "history": [ + "D:\\Trabajo\\VM\\45 - HENKEL - VM Auto Changeover\\ExportTia", "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\Reporte\\TiaExport", "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\\Reporte\\TiaExport", "D:\\Trabajo\\VM\\44 - 98050 - Fiera\\Reporte\\ExportsTia\\Source", diff --git a/backend/script_groups/XML Parser to SCL/script_config.json b/backend/script_groups/XML Parser to SCL/script_config.json index 16d49cd..b098494 100644 --- a/backend/script_groups/XML Parser to SCL/script_config.json +++ b/backend/script_groups/XML Parser to SCL/script_config.json @@ -15,5 +15,5 @@ "xref_source_subdir": "source" }, "level3": {}, - "working_directory": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\Reporte\\TiaExport" + "working_directory": "D:\\Trabajo\\VM\\45 - HENKEL - VM Auto Changeover\\ExportTia" } \ No newline at end of file diff --git a/backend/script_groups/XML Parser to SCL/work_dir.json b/backend/script_groups/XML Parser to SCL/work_dir.json index a9ad1e4..d040a17 100644 --- a/backend/script_groups/XML Parser to SCL/work_dir.json +++ b/backend/script_groups/XML Parser to SCL/work_dir.json @@ -1,6 +1,7 @@ { - "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\Reporte\\TiaExport", + "path": "D:\\Trabajo\\VM\\45 - HENKEL - VM Auto Changeover\\ExportTia", "history": [ + "D:\\Trabajo\\VM\\45 - HENKEL - VM Auto Changeover\\ExportTia", "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\Reporte\\TiaExport", "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\\Reporte\\TiaExport", "D:\\Trabajo\\VM\\44 - 98050 - Fiera\\Reporte\\ExportsTia\\Source", diff --git a/data/log.txt b/data/log.txt index a51e634..e69de29 100644 --- a/data/log.txt +++ b/data/log.txt @@ -1,867 +0,0 @@ -[10:55:14] Iniciando ejecución de x1.py en D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails... -[10:55:14] ✅ Configuración cargada exitosamente -[10:55:14] Working directory: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails -[10:55:14] Input directory: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails -[10:55:14] Output directory: C:\Users\migue\OneDrive\Miguel\Obsidean\Trabajo\VM\03-VM\45 - HENKEL - VM Auto Changeover -[10:55:14] Cronologia file: C:\Users\migue\OneDrive\Miguel\Obsidean\Trabajo\VM\03-VM\45 - HENKEL - VM Auto Changeover\cronologia.md -[10:55:14] Attachments directory: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails\adjuntos -[10:55:14] Beautify rules file: D:\Proyectos\Scripts\ParamManagerScripts\backend\script_groups\EmailCrono\config\beautify_rules.json -[10:55:14] Found 11 .eml files -[10:55:14] Creando cronología nueva (archivo se sobrescribirá) -[10:55:14] ============================================================ -[10:55:14] Processing file: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails\Alpla BOW2 Automated changeover next steps.eml -[10:55:14] 📧 Abriendo archivo: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails\Alpla BOW2 Automated changeover next steps.eml -[10:55:14] ✉️ Mensaje extraído: -[10:55:14] - Subject: Alpla BOW2 Automated changeover next steps -[10:55:14] - Remitente: Sam.Colley@alpla.com -[10:55:14] - Fecha: 2025-03-06 22:11:41 -[10:55:14] - Adjuntos: 0 archivos -[10:55:14] - Contenido: 3208 caracteres -[10:55:14] - Hash generado: 444a9733c3be75a66f442c03b64e4310 -[10:55:14] 📧 Procesamiento completado: 1 mensajes extraídos -[10:55:14] Extracted 1 messages from Alpla BOW2 Automated changeover next steps.eml -[10:55:14] --- Message 1/1 from Alpla BOW2 Automated changeover next steps.eml --- -[10:55:14] Remitente: Sam.Colley -[10:55:14] Fecha: 2025-03-06 22:11:41 -[10:55:14] Subject: Alpla BOW2 Automated changeover next steps -[10:55:14] Hash: 444a9733c3be75a66f442c03b64e4310 -[10:55:14] Adjuntos: [] -[10:55:14] ✓ NUEVO mensaje - Agregando a la cronología -[10:55:14] ============================================================ -[10:55:14] Processing file: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails\Automatic changeover trial.eml -[10:55:14] 📧 Abriendo archivo: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails\Automatic changeover trial.eml -[10:55:14] ✉️ Mensaje extraído: -[10:55:14] - Subject: Automatic changeover trial -[10:55:14] - Remitente: Shannon.Johnson@alpla.com -[10:55:14] - Fecha: 2025-01-31 17:16:51 -[10:55:14] - Adjuntos: 0 archivos -[10:55:14] - Contenido: 3601 caracteres -[10:55:14] - Hash generado: ebe8558bee69aa2567af358f7705824c -[10:55:14] 📧 Procesamiento completado: 1 mensajes extraídos -[10:55:14] Extracted 1 messages from Automatic changeover trial.eml -[10:55:14] --- Message 1/1 from Automatic changeover trial.eml --- -[10:55:14] Remitente: Shannon.Johnson -[10:55:14] Fecha: 2025-01-31 17:16:51 -[10:55:14] Subject: Automatic changeover trial -[10:55:14] Hash: ebe8558bee69aa2567af358f7705824c -[10:55:14] Adjuntos: [] -[10:55:14] ✓ NUEVO mensaje - Agregando a la cronología -[10:55:14] ============================================================ -[10:55:14] Processing file: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails\I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml -[10:55:14] 📧 Abriendo archivo: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails\I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml -[10:55:14] ✉️ Mensaje extraído: -[10:55:14] - Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:14] - Remitente: "Sam.Colley@alpla.com" -[10:55:14] - Fecha: 2020-10-28 20:43:57 -[10:55:14] - Adjuntos: 0 archivos -[10:55:14] - Contenido: 4546 caracteres -[10:55:14] - Hash generado: 426b39b4f49078cb1c38f6b115d94c67 -[10:55:14] ✉️ Mensaje extraído: -[10:55:14] - Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:14] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:14] - Fecha: 2020-05-21 18:13:13 -[10:55:14] - Adjuntos: 1 archivos -[10:55:14] - Contenido: 13197 caracteres -[10:55:14] - Hash generado: 5aeb89b3c5bfb98c645b9101e3487b13 -[10:55:14] ✉️ Mensaje extraído: -[10:55:14] - Subject: R: 9.3040-3074 ALPLA data exchange with HENKEL - line commisioning -[10:55:14] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:14] - Fecha: 2020-10-29 20:31:40 -[10:55:14] - Adjuntos: 1 archivos -[10:55:14] - Contenido: 13197 caracteres -[10:55:14] - Hash generado: 75afe67ccafa6b84a110e397b173e69f -[10:55:14] ✉️ Mensaje extraído: -[10:55:14] - Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:14] - Remitente: "Sam.Colley@alpla.com" -[10:55:14] - Fecha: 2020-10-28 20:43:57 -[10:55:14] - Adjuntos: 0 archivos -[10:55:14] - Contenido: 4546 caracteres -[10:55:14] - Hash generado: 426b39b4f49078cb1c38f6b115d94c67 -[10:55:14] ✉️ Mensaje extraído: -[10:55:14] - Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:14] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:14] - Fecha: 2020-05-21 18:13:13 -[10:55:14] - Adjuntos: 1 archivos -[10:55:14] - Contenido: 13197 caracteres -[10:55:14] - Hash generado: 5aeb89b3c5bfb98c645b9101e3487b13 -[10:55:14] ✉️ Mensaje extraído: -[10:55:14] - Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:14] - Remitente: "Sam.Colley@alpla.com" -[10:55:14] - Fecha: 2020-10-28 20:43:57 -[10:55:14] - Adjuntos: 0 archivos -[10:55:14] - Contenido: 4546 caracteres -[10:55:14] - Hash generado: 426b39b4f49078cb1c38f6b115d94c67 -[10:55:14] ✉️ Mensaje extraído: -[10:55:14] - Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:14] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:14] - Fecha: 2020-05-21 18:13:13 -[10:55:14] - Adjuntos: 1 archivos -[10:55:14] - Contenido: 13197 caracteres -[10:55:14] - Hash generado: 5aeb89b3c5bfb98c645b9101e3487b13 -[10:55:14] ✉️ Mensaje extraído: -[10:55:14] - Subject: I: OPC-UA interface Vetro - Bowling Green 2 -[10:55:14] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:14] - Fecha: 2024-01-04 15:10:24 -[10:55:14] - Adjuntos: 1 archivos -[10:55:14] - Contenido: 13197 caracteres -[10:55:14] - Hash generado: 47be56ef26e0c3ec4fa0dc72edadca75 -[10:55:14] ✉️ Mensaje extraído: -[10:55:14] - Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:14] - Remitente: "Sam.Colley@alpla.com" -[10:55:14] - Fecha: 2020-10-28 20:43:57 -[10:55:14] - Adjuntos: 0 archivos -[10:55:14] - Contenido: 4546 caracteres -[10:55:14] - Hash generado: 426b39b4f49078cb1c38f6b115d94c67 -[10:55:14] ✉️ Mensaje extraído: -[10:55:14] - Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:14] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:14] - Fecha: 2020-05-21 18:13:13 -[10:55:14] - Adjuntos: 1 archivos -[10:55:14] - Contenido: 13197 caracteres -[10:55:14] - Hash generado: 5aeb89b3c5bfb98c645b9101e3487b13 -[10:55:14] ✉️ Mensaje extraído: -[10:55:14] - Subject: R: 9.3040-3074 ALPLA data exchange with HENKEL - line commisioning -[10:55:14] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:14] - Fecha: 2020-10-29 20:31:40 -[10:55:14] - Adjuntos: 1 archivos -[10:55:14] - Contenido: 13197 caracteres -[10:55:14] - Hash generado: 75afe67ccafa6b84a110e397b173e69f -[10:55:14] ✉️ Mensaje extraído: -[10:55:14] - Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:14] - Remitente: "Sam.Colley@alpla.com" -[10:55:14] - Fecha: 2020-10-28 20:43:57 -[10:55:14] - Adjuntos: 0 archivos -[10:55:14] - Contenido: 4546 caracteres -[10:55:14] - Hash generado: 426b39b4f49078cb1c38f6b115d94c67 -[10:55:14] ✉️ Mensaje extraído: -[10:55:14] - Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:14] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:14] - Fecha: 2020-05-21 18:13:13 -[10:55:14] - Adjuntos: 1 archivos -[10:55:14] - Contenido: 13197 caracteres -[10:55:14] - Hash generado: 5aeb89b3c5bfb98c645b9101e3487b13 -[10:55:14] ✉️ Mensaje extraído: -[10:55:14] - Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:14] - Remitente: "Sam.Colley@alpla.com" -[10:55:14] - Fecha: 2020-10-28 20:43:57 -[10:55:14] - Adjuntos: 0 archivos -[10:55:14] - Contenido: 4546 caracteres -[10:55:14] - Hash generado: 426b39b4f49078cb1c38f6b115d94c67 -[10:55:15] ✉️ Mensaje extraído: -[10:55:15] - Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2020-05-21 18:13:13 -[10:55:15] - Adjuntos: 1 archivos -[10:55:15] - Contenido: 13197 caracteres -[10:55:15] - Hash generado: 5aeb89b3c5bfb98c645b9101e3487b13 -[10:55:15] ✉️ Mensaje extraído: -[10:55:15] - Subject: R: 9.3040-3074 ALPLA data exchange with HENKEL - line commisioning -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2020-10-29 20:31:40 -[10:55:15] - Adjuntos: 1 archivos -[10:55:15] - Contenido: 13197 caracteres -[10:55:15] - Hash generado: 75afe67ccafa6b84a110e397b173e69f -[10:55:15] ✉️ Mensaje extraído: -[10:55:15] - Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] - Remitente: "Sam.Colley@alpla.com" -[10:55:15] - Fecha: 2020-10-28 20:43:57 -[10:55:15] - Adjuntos: 0 archivos -[10:55:15] - Contenido: 4546 caracteres -[10:55:15] - Hash generado: 426b39b4f49078cb1c38f6b115d94c67 -[10:55:15] ✉️ Mensaje extraído: -[10:55:15] - Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2020-05-21 18:13:13 -[10:55:15] - Adjuntos: 1 archivos -[10:55:15] - Contenido: 13197 caracteres -[10:55:15] - Hash generado: 5aeb89b3c5bfb98c645b9101e3487b13 -[10:55:15] ✉️ Mensaje extraído: -[10:55:15] - Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] - Remitente: "Sam.Colley@alpla.com" -[10:55:15] - Fecha: 2020-10-28 20:43:57 -[10:55:15] - Adjuntos: 0 archivos -[10:55:15] - Contenido: 4546 caracteres -[10:55:15] - Hash generado: 426b39b4f49078cb1c38f6b115d94c67 -[10:55:15] ✉️ Mensaje extraído: -[10:55:15] - Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2020-05-21 18:13:13 -[10:55:15] - Adjuntos: 1 archivos -[10:55:15] - Contenido: 13197 caracteres -[10:55:15] - Hash generado: 5aeb89b3c5bfb98c645b9101e3487b13 -[10:55:15] ✉️ Mensaje extraído: -[10:55:15] - Subject: I: Bottle counters / Batch handling -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2024-01-04 15:10:35 -[10:55:15] - Adjuntos: 1 archivos -[10:55:15] - Contenido: 2623 caracteres -[10:55:15] - Hash generado: b8a392590c2ec14bdc907df9ed6bfde1 -[10:55:15] ✉️ Mensaje extraído: -[10:55:15] - Subject: I: 9.3061-TLO26-L42 automatic change over test -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2024-01-04 15:29:02 -[10:55:15] - Adjuntos: 0 archivos -[10:55:15] - Contenido: 1899 caracteres -[10:55:15] - Hash generado: e24d10cb7260612292f2979ea382bf80 -[10:55:15] ✉️ Mensaje extraído: -[10:55:15] - Subject: I: Alpla BOW: Batch Handling Issue for TG10 & TG20 -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2024-01-04 15:11:21 -[10:55:15] - Adjuntos: 0 archivos -[10:55:15] - Contenido: 10493 caracteres -[10:55:15] - Hash generado: 65b06d9edf0c5c3af15b15b276aa0139 -[10:55:15] ✉️ Mensaje extraído: -[10:55:15] - Subject: I: Alpla BOW: Batch handling 9.3040-3074 ALPLA BG -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2024-01-04 15:11:32 -[10:55:15] - Adjuntos: 0 archivos -[10:55:15] - Contenido: 3398 caracteres -[10:55:15] - Hash generado: b48ae2825aa32aa86a19d448a6635977 -[10:55:15] ✉️ Mensaje extraído: -[10:55:15] - Subject: Alpla BG: updated telegram description -[10:55:15] - Remitente: "Osswald Ulrich (ASG) (Ulrich.Osswald@autefa.com)" -[10:55:15] - Fecha: 2020-02-24 09:50:20 -[10:55:15] - Adjuntos: 2 archivos -[10:55:15] - Contenido: 1498 caracteres -[10:55:15] - Hash generado: ced079dd654ff7fc7104943e29379205 -[10:55:15] ✉️ Mensaje extraído: -[10:55:15] - Subject: I: R: I: [EXT] R: Vetro Conveyor 9.3674 -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2025-02-04 16:49:00 -[10:55:15] - Adjuntos: 4 archivos -[10:55:15] - Contenido: 1498 caracteres -[10:55:15] - Hash generado: d10837b5ddae5c6edf954b5f921a464e -[10:55:15] 📧 Procesamiento completado: 26 mensajes extraídos -[10:55:15] Extracted 26 messages from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml -[10:55:15] --- Message 1/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Sam.Colley@alpla.com -[10:55:15] Fecha: 2020-10-28 20:43:57 -[10:55:15] Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] Hash: 426b39b4f49078cb1c38f6b115d94c67 -[10:55:15] Adjuntos: [] -[10:55:15] ✓ NUEVO mensaje - Agregando a la cronología -[10:55:15] --- Message 2/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] Fecha: 2020-05-21 18:13:13 -[10:55:15] Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] Hash: 5aeb89b3c5bfb98c645b9101e3487b13 -[10:55:15] Adjuntos: ['AlplaProd_Articles - VM.xlsx'] -[10:55:15] ✓ NUEVO mensaje - Agregando a la cronología -[10:55:15] --- Message 3/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] Fecha: 2020-10-29 20:31:40 -[10:55:15] Subject: R: 9.3040-3074 ALPLA data exchange with HENKEL - line commisioning -[10:55:15] Hash: 75afe67ccafa6b84a110e397b173e69f -[10:55:15] Adjuntos: ['AlplaProd_Articles - VM.xlsx'] -[10:55:15] ✓ NUEVO mensaje - Agregando a la cronología -[10:55:15] --- Message 4/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Sam.Colley@alpla.com -[10:55:15] Fecha: 2020-10-28 20:43:57 -[10:55:15] Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] Hash: 426b39b4f49078cb1c38f6b115d94c67 -[10:55:15] Adjuntos: [] -[10:55:15] ⚠ DUPLICADO - Ya existe un mensaje con este hash -[10:55:15] 📋 Comparación de mensajes duplicados: -[10:55:15] Mensaje existente: -[10:55:15] - Remitente: Sam.Colley@alpla.com -[10:55:15] - Fecha: 2020-10-28 20:43:57 -[10:55:15] - Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] Mensaje nuevo (rechazado): -[10:55:15] - Remitente: Sam.Colley@alpla.com -[10:55:15] - Fecha: 2020-10-28 20:43:57 -[10:55:15] - Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] 🔍 Debug detallado del hash duplicado: -[10:55:15] Hash: 426b39b4f49078cb1c38f6b115d94c67 -[10:55:15] 🔍 Debug Hash: -[10:55:15] - Remitente: 'Sam.Colley@alpla.com' -[10:55:15] - Fecha: '202010282043' -[10:55:15] - Subject: 'FW: Post Operations Meeting Logistics Update - 10/28/2020' -[10:55:15] - Contenido (500 chars): 'Cc: Caudill Micah ; Colley Mick ; Colley Sam ; Horn James ; Fritz Robert ; Jenkins Laura ; Colley Sam Subject: Post Operations Meeting Logistics Update - 10/28/2020 All, Good Afternoon. Please find below an update on the current fill plans and production plans. Please note there are two change-overs scheduled for Henkel lines in the n' -[10:55:15] - Texto completo hash: 'Sam.Colley@alpla.com|202010282043|FW: Post Operations Meeting Logistics Update - 10/28/2020|Cc: Caud...' -[10:55:15] --- Message 5/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] Fecha: 2020-05-21 18:13:13 -[10:55:15] Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] Hash: 5aeb89b3c5bfb98c645b9101e3487b13 -[10:55:15] Adjuntos: ['AlplaProd_Articles - VM.xlsx'] -[10:55:15] ⚠ DUPLICADO - Ya existe un mensaje con este hash -[10:55:15] 📋 Comparación de mensajes duplicados: -[10:55:15] Mensaje existente: -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2020-05-21 18:13:13 -[10:55:15] - Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] Mensaje nuevo (rechazado): -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2020-05-21 18:13:13 -[10:55:15] - Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] 🔍 Debug detallado del hash duplicado: -[10:55:15] Hash: 5aeb89b3c5bfb98c645b9101e3487b13 -[10:55:15] 🔍 Debug Hash: -[10:55:15] - Remitente: 'Maximilian Rossi - Vetromeccanica Srl' -[10:55:15] - Fecha: '202005211813' -[10:55:15] - Subject: 'R: Alpla - Vetro SKU via OPC 9.3040-3074' -[10:55:15] - Contenido (500 chars): 'Dear Siegfried, Thank you for your prompt response. Hereby our feedback: We confirm we accept fully your SKU structure (see below image) but please specify the number of characters for AV description, we considered for now 36 and needs to be defined. Waiting for your confirmation of structure and characters.The list as per your request will remain persistent, it means it will remain saved on our supervision PLC even after restart of our superivision control cabinet or shut down of your SCADA. We' -[10:55:15] - Texto completo hash: 'Maximilian Rossi - Vetromeccanica Srl|202005211813|R: Alpla - Vetro SKU via OPC 9.3040-3074|Dear Sie...' -[10:55:15] --- Message 6/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Sam.Colley@alpla.com -[10:55:15] Fecha: 2020-10-28 20:43:57 -[10:55:15] Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] Hash: 426b39b4f49078cb1c38f6b115d94c67 -[10:55:15] Adjuntos: [] -[10:55:15] ⚠ DUPLICADO - Ya existe un mensaje con este hash -[10:55:15] 📋 Comparación de mensajes duplicados: -[10:55:15] Mensaje existente: -[10:55:15] - Remitente: Sam.Colley@alpla.com -[10:55:15] - Fecha: 2020-10-28 20:43:57 -[10:55:15] - Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] Mensaje nuevo (rechazado): -[10:55:15] - Remitente: Sam.Colley@alpla.com -[10:55:15] - Fecha: 2020-10-28 20:43:57 -[10:55:15] - Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] 🔍 Debug detallado del hash duplicado: -[10:55:15] Hash: 426b39b4f49078cb1c38f6b115d94c67 -[10:55:15] 🔍 Debug Hash: -[10:55:15] - Remitente: 'Sam.Colley@alpla.com' -[10:55:15] - Fecha: '202010282043' -[10:55:15] - Subject: 'FW: Post Operations Meeting Logistics Update - 10/28/2020' -[10:55:15] - Contenido (500 chars): 'Cc: Caudill Micah ; Colley Mick ; Colley Sam ; Horn James ; Fritz Robert ; Jenkins Laura ; Colley Sam Subject: Post Operations Meeting Logistics Update - 10/28/2020 All, Good Afternoon. Please find below an update on the current fill plans and production plans. Please note there are two change-overs scheduled for Henkel lines in the n' -[10:55:15] - Texto completo hash: 'Sam.Colley@alpla.com|202010282043|FW: Post Operations Meeting Logistics Update - 10/28/2020|Cc: Caud...' -[10:55:15] --- Message 7/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] Fecha: 2020-05-21 18:13:13 -[10:55:15] Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] Hash: 5aeb89b3c5bfb98c645b9101e3487b13 -[10:55:15] Adjuntos: ['AlplaProd_Articles - VM.xlsx'] -[10:55:15] ⚠ DUPLICADO - Ya existe un mensaje con este hash -[10:55:15] 📋 Comparación de mensajes duplicados: -[10:55:15] Mensaje existente: -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2020-05-21 18:13:13 -[10:55:15] - Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] Mensaje nuevo (rechazado): -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2020-05-21 18:13:13 -[10:55:15] - Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] 🔍 Debug detallado del hash duplicado: -[10:55:15] Hash: 5aeb89b3c5bfb98c645b9101e3487b13 -[10:55:15] 🔍 Debug Hash: -[10:55:15] - Remitente: 'Maximilian Rossi - Vetromeccanica Srl' -[10:55:15] - Fecha: '202005211813' -[10:55:15] - Subject: 'R: Alpla - Vetro SKU via OPC 9.3040-3074' -[10:55:15] - Contenido (500 chars): 'Dear Siegfried, Thank you for your prompt response. Hereby our feedback: We confirm we accept fully your SKU structure (see below image) but please specify the number of characters for AV description, we considered for now 36 and needs to be defined. Waiting for your confirmation of structure and characters.The list as per your request will remain persistent, it means it will remain saved on our supervision PLC even after restart of our superivision control cabinet or shut down of your SCADA. We' -[10:55:15] - Texto completo hash: 'Maximilian Rossi - Vetromeccanica Srl|202005211813|R: Alpla - Vetro SKU via OPC 9.3040-3074|Dear Sie...' -[10:55:15] --- Message 8/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] Fecha: 2024-01-04 15:10:24 -[10:55:15] Subject: I: OPC-UA interface Vetro - Bowling Green 2 -[10:55:15] Hash: 47be56ef26e0c3ec4fa0dc72edadca75 -[10:55:15] Adjuntos: ['AlplaProd_Articles - VM.xlsx'] -[10:55:15] ✓ NUEVO mensaje - Agregando a la cronología -[10:55:15] --- Message 9/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Sam.Colley@alpla.com -[10:55:15] Fecha: 2020-10-28 20:43:57 -[10:55:15] Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] Hash: 426b39b4f49078cb1c38f6b115d94c67 -[10:55:15] Adjuntos: [] -[10:55:15] ⚠ DUPLICADO - Ya existe un mensaje con este hash -[10:55:15] 📋 Comparación de mensajes duplicados: -[10:55:15] Mensaje existente: -[10:55:15] - Remitente: Sam.Colley@alpla.com -[10:55:15] - Fecha: 2020-10-28 20:43:57 -[10:55:15] - Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] Mensaje nuevo (rechazado): -[10:55:15] - Remitente: Sam.Colley@alpla.com -[10:55:15] - Fecha: 2020-10-28 20:43:57 -[10:55:15] - Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] 🔍 Debug detallado del hash duplicado: -[10:55:15] Hash: 426b39b4f49078cb1c38f6b115d94c67 -[10:55:15] 🔍 Debug Hash: -[10:55:15] - Remitente: 'Sam.Colley@alpla.com' -[10:55:15] - Fecha: '202010282043' -[10:55:15] - Subject: 'FW: Post Operations Meeting Logistics Update - 10/28/2020' -[10:55:15] - Contenido (500 chars): 'Cc: Caudill Micah ; Colley Mick ; Colley Sam ; Horn James ; Fritz Robert ; Jenkins Laura ; Colley Sam Subject: Post Operations Meeting Logistics Update - 10/28/2020 All, Good Afternoon. Please find below an update on the current fill plans and production plans. Please note there are two change-overs scheduled for Henkel lines in the n' -[10:55:15] - Texto completo hash: 'Sam.Colley@alpla.com|202010282043|FW: Post Operations Meeting Logistics Update - 10/28/2020|Cc: Caud...' -[10:55:15] --- Message 10/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] Fecha: 2020-05-21 18:13:13 -[10:55:15] Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] Hash: 5aeb89b3c5bfb98c645b9101e3487b13 -[10:55:15] Adjuntos: ['AlplaProd_Articles - VM.xlsx'] -[10:55:15] ⚠ DUPLICADO - Ya existe un mensaje con este hash -[10:55:15] 📋 Comparación de mensajes duplicados: -[10:55:15] Mensaje existente: -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2020-05-21 18:13:13 -[10:55:15] - Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] Mensaje nuevo (rechazado): -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2020-05-21 18:13:13 -[10:55:15] - Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] 🔍 Debug detallado del hash duplicado: -[10:55:15] Hash: 5aeb89b3c5bfb98c645b9101e3487b13 -[10:55:15] 🔍 Debug Hash: -[10:55:15] - Remitente: 'Maximilian Rossi - Vetromeccanica Srl' -[10:55:15] - Fecha: '202005211813' -[10:55:15] - Subject: 'R: Alpla - Vetro SKU via OPC 9.3040-3074' -[10:55:15] - Contenido (500 chars): 'Dear Siegfried, Thank you for your prompt response. Hereby our feedback: We confirm we accept fully your SKU structure (see below image) but please specify the number of characters for AV description, we considered for now 36 and needs to be defined. Waiting for your confirmation of structure and characters.The list as per your request will remain persistent, it means it will remain saved on our supervision PLC even after restart of our superivision control cabinet or shut down of your SCADA. We' -[10:55:15] - Texto completo hash: 'Maximilian Rossi - Vetromeccanica Srl|202005211813|R: Alpla - Vetro SKU via OPC 9.3040-3074|Dear Sie...' -[10:55:15] --- Message 11/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] Fecha: 2020-10-29 20:31:40 -[10:55:15] Subject: R: 9.3040-3074 ALPLA data exchange with HENKEL - line commisioning -[10:55:15] Hash: 75afe67ccafa6b84a110e397b173e69f -[10:55:15] Adjuntos: ['AlplaProd_Articles - VM.xlsx'] -[10:55:15] ⚠ DUPLICADO - Ya existe un mensaje con este hash -[10:55:15] 📋 Comparación de mensajes duplicados: -[10:55:15] Mensaje existente: -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2020-10-29 20:31:40 -[10:55:15] - Subject: R: 9.3040-3074 ALPLA data exchange with HENKEL - line commisioning -[10:55:15] Mensaje nuevo (rechazado): -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2020-10-29 20:31:40 -[10:55:15] - Subject: R: 9.3040-3074 ALPLA data exchange with HENKEL - line commisioning -[10:55:15] 🔍 Debug detallado del hash duplicado: -[10:55:15] Hash: 75afe67ccafa6b84a110e397b173e69f -[10:55:15] 🔍 Debug Hash: -[10:55:15] - Remitente: 'Maximilian Rossi - Vetromeccanica Srl' -[10:55:15] - Fecha: '202010292031' -[10:55:15] - Subject: 'R: 9.3040-3074 ALPLA data exchange with HENKEL - line commisioning' -[10:55:15] - Contenido (500 chars): 'Dear Siegfried, Thank you for your prompt response. Hereby our feedback: We confirm we accept fully your SKU structure (see below image) but please specify the number of characters for AV description, we considered for now 36 and needs to be defined. Waiting for your confirmation of structure and characters.The list as per your request will remain persistent, it means it will remain saved on our supervision PLC even after restart of our superivision control cabinet or shut down of your SCADA. We' -[10:55:15] - Texto completo hash: 'Maximilian Rossi - Vetromeccanica Srl|202010292031|R: 9.3040-3074 ALPLA data exchange with HENKEL - ...' -[10:55:15] --- Message 12/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Sam.Colley@alpla.com -[10:55:15] Fecha: 2020-10-28 20:43:57 -[10:55:15] Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] Hash: 426b39b4f49078cb1c38f6b115d94c67 -[10:55:15] Adjuntos: [] -[10:55:15] ⚠ DUPLICADO - Ya existe un mensaje con este hash -[10:55:15] 📋 Comparación de mensajes duplicados: -[10:55:15] Mensaje existente: -[10:55:15] - Remitente: Sam.Colley@alpla.com -[10:55:15] - Fecha: 2020-10-28 20:43:57 -[10:55:15] - Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] Mensaje nuevo (rechazado): -[10:55:15] - Remitente: Sam.Colley@alpla.com -[10:55:15] - Fecha: 2020-10-28 20:43:57 -[10:55:15] - Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] 🔍 Debug detallado del hash duplicado: -[10:55:15] Hash: 426b39b4f49078cb1c38f6b115d94c67 -[10:55:15] 🔍 Debug Hash: -[10:55:15] - Remitente: 'Sam.Colley@alpla.com' -[10:55:15] - Fecha: '202010282043' -[10:55:15] - Subject: 'FW: Post Operations Meeting Logistics Update - 10/28/2020' -[10:55:15] - Contenido (500 chars): 'Cc: Caudill Micah ; Colley Mick ; Colley Sam ; Horn James ; Fritz Robert ; Jenkins Laura ; Colley Sam Subject: Post Operations Meeting Logistics Update - 10/28/2020 All, Good Afternoon. Please find below an update on the current fill plans and production plans. Please note there are two change-overs scheduled for Henkel lines in the n' -[10:55:15] - Texto completo hash: 'Sam.Colley@alpla.com|202010282043|FW: Post Operations Meeting Logistics Update - 10/28/2020|Cc: Caud...' -[10:55:15] --- Message 13/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] Fecha: 2020-05-21 18:13:13 -[10:55:15] Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] Hash: 5aeb89b3c5bfb98c645b9101e3487b13 -[10:55:15] Adjuntos: ['AlplaProd_Articles - VM.xlsx'] -[10:55:15] ⚠ DUPLICADO - Ya existe un mensaje con este hash -[10:55:15] 📋 Comparación de mensajes duplicados: -[10:55:15] Mensaje existente: -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2020-05-21 18:13:13 -[10:55:15] - Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] Mensaje nuevo (rechazado): -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2020-05-21 18:13:13 -[10:55:15] - Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] 🔍 Debug detallado del hash duplicado: -[10:55:15] Hash: 5aeb89b3c5bfb98c645b9101e3487b13 -[10:55:15] 🔍 Debug Hash: -[10:55:15] - Remitente: 'Maximilian Rossi - Vetromeccanica Srl' -[10:55:15] - Fecha: '202005211813' -[10:55:15] - Subject: 'R: Alpla - Vetro SKU via OPC 9.3040-3074' -[10:55:15] - Contenido (500 chars): 'Dear Siegfried, Thank you for your prompt response. Hereby our feedback: We confirm we accept fully your SKU structure (see below image) but please specify the number of characters for AV description, we considered for now 36 and needs to be defined. Waiting for your confirmation of structure and characters.The list as per your request will remain persistent, it means it will remain saved on our supervision PLC even after restart of our superivision control cabinet or shut down of your SCADA. We' -[10:55:15] - Texto completo hash: 'Maximilian Rossi - Vetromeccanica Srl|202005211813|R: Alpla - Vetro SKU via OPC 9.3040-3074|Dear Sie...' -[10:55:15] --- Message 14/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Sam.Colley@alpla.com -[10:55:15] Fecha: 2020-10-28 20:43:57 -[10:55:15] Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] Hash: 426b39b4f49078cb1c38f6b115d94c67 -[10:55:15] Adjuntos: [] -[10:55:15] ⚠ DUPLICADO - Ya existe un mensaje con este hash -[10:55:15] 📋 Comparación de mensajes duplicados: -[10:55:15] Mensaje existente: -[10:55:15] - Remitente: Sam.Colley@alpla.com -[10:55:15] - Fecha: 2020-10-28 20:43:57 -[10:55:15] - Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] Mensaje nuevo (rechazado): -[10:55:15] - Remitente: Sam.Colley@alpla.com -[10:55:15] - Fecha: 2020-10-28 20:43:57 -[10:55:15] - Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] 🔍 Debug detallado del hash duplicado: -[10:55:15] Hash: 426b39b4f49078cb1c38f6b115d94c67 -[10:55:15] 🔍 Debug Hash: -[10:55:15] - Remitente: 'Sam.Colley@alpla.com' -[10:55:15] - Fecha: '202010282043' -[10:55:15] - Subject: 'FW: Post Operations Meeting Logistics Update - 10/28/2020' -[10:55:15] - Contenido (500 chars): 'Cc: Caudill Micah ; Colley Mick ; Colley Sam ; Horn James ; Fritz Robert ; Jenkins Laura ; Colley Sam Subject: Post Operations Meeting Logistics Update - 10/28/2020 All, Good Afternoon. Please find below an update on the current fill plans and production plans. Please note there are two change-overs scheduled for Henkel lines in the n' -[10:55:15] - Texto completo hash: 'Sam.Colley@alpla.com|202010282043|FW: Post Operations Meeting Logistics Update - 10/28/2020|Cc: Caud...' -[10:55:15] --- Message 15/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] Fecha: 2020-05-21 18:13:13 -[10:55:15] Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] Hash: 5aeb89b3c5bfb98c645b9101e3487b13 -[10:55:15] Adjuntos: ['AlplaProd_Articles - VM.xlsx'] -[10:55:15] ⚠ DUPLICADO - Ya existe un mensaje con este hash -[10:55:15] 📋 Comparación de mensajes duplicados: -[10:55:15] Mensaje existente: -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2020-05-21 18:13:13 -[10:55:15] - Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] Mensaje nuevo (rechazado): -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2020-05-21 18:13:13 -[10:55:15] - Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] 🔍 Debug detallado del hash duplicado: -[10:55:15] Hash: 5aeb89b3c5bfb98c645b9101e3487b13 -[10:55:15] 🔍 Debug Hash: -[10:55:15] - Remitente: 'Maximilian Rossi - Vetromeccanica Srl' -[10:55:15] - Fecha: '202005211813' -[10:55:15] - Subject: 'R: Alpla - Vetro SKU via OPC 9.3040-3074' -[10:55:15] - Contenido (500 chars): 'Dear Siegfried, Thank you for your prompt response. Hereby our feedback: We confirm we accept fully your SKU structure (see below image) but please specify the number of characters for AV description, we considered for now 36 and needs to be defined. Waiting for your confirmation of structure and characters.The list as per your request will remain persistent, it means it will remain saved on our supervision PLC even after restart of our superivision control cabinet or shut down of your SCADA. We' -[10:55:15] - Texto completo hash: 'Maximilian Rossi - Vetromeccanica Srl|202005211813|R: Alpla - Vetro SKU via OPC 9.3040-3074|Dear Sie...' -[10:55:15] --- Message 16/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] Fecha: 2020-10-29 20:31:40 -[10:55:15] Subject: R: 9.3040-3074 ALPLA data exchange with HENKEL - line commisioning -[10:55:15] Hash: 75afe67ccafa6b84a110e397b173e69f -[10:55:15] Adjuntos: ['AlplaProd_Articles - VM.xlsx'] -[10:55:15] ⚠ DUPLICADO - Ya existe un mensaje con este hash -[10:55:15] 📋 Comparación de mensajes duplicados: -[10:55:15] Mensaje existente: -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2020-10-29 20:31:40 -[10:55:15] - Subject: R: 9.3040-3074 ALPLA data exchange with HENKEL - line commisioning -[10:55:15] Mensaje nuevo (rechazado): -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2020-10-29 20:31:40 -[10:55:15] - Subject: R: 9.3040-3074 ALPLA data exchange with HENKEL - line commisioning -[10:55:15] 🔍 Debug detallado del hash duplicado: -[10:55:15] Hash: 75afe67ccafa6b84a110e397b173e69f -[10:55:15] 🔍 Debug Hash: -[10:55:15] - Remitente: 'Maximilian Rossi - Vetromeccanica Srl' -[10:55:15] - Fecha: '202010292031' -[10:55:15] - Subject: 'R: 9.3040-3074 ALPLA data exchange with HENKEL - line commisioning' -[10:55:15] - Contenido (500 chars): 'Dear Siegfried, Thank you for your prompt response. Hereby our feedback: We confirm we accept fully your SKU structure (see below image) but please specify the number of characters for AV description, we considered for now 36 and needs to be defined. Waiting for your confirmation of structure and characters.The list as per your request will remain persistent, it means it will remain saved on our supervision PLC even after restart of our superivision control cabinet or shut down of your SCADA. We' -[10:55:15] - Texto completo hash: 'Maximilian Rossi - Vetromeccanica Srl|202010292031|R: 9.3040-3074 ALPLA data exchange with HENKEL - ...' -[10:55:15] --- Message 17/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Sam.Colley@alpla.com -[10:55:15] Fecha: 2020-10-28 20:43:57 -[10:55:15] Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] Hash: 426b39b4f49078cb1c38f6b115d94c67 -[10:55:15] Adjuntos: [] -[10:55:15] ⚠ DUPLICADO - Ya existe un mensaje con este hash -[10:55:15] 📋 Comparación de mensajes duplicados: -[10:55:15] Mensaje existente: -[10:55:15] - Remitente: Sam.Colley@alpla.com -[10:55:15] - Fecha: 2020-10-28 20:43:57 -[10:55:15] - Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] Mensaje nuevo (rechazado): -[10:55:15] - Remitente: Sam.Colley@alpla.com -[10:55:15] - Fecha: 2020-10-28 20:43:57 -[10:55:15] - Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] 🔍 Debug detallado del hash duplicado: -[10:55:15] Hash: 426b39b4f49078cb1c38f6b115d94c67 -[10:55:15] 🔍 Debug Hash: -[10:55:15] - Remitente: 'Sam.Colley@alpla.com' -[10:55:15] - Fecha: '202010282043' -[10:55:15] - Subject: 'FW: Post Operations Meeting Logistics Update - 10/28/2020' -[10:55:15] - Contenido (500 chars): 'Cc: Caudill Micah ; Colley Mick ; Colley Sam ; Horn James ; Fritz Robert ; Jenkins Laura ; Colley Sam Subject: Post Operations Meeting Logistics Update - 10/28/2020 All, Good Afternoon. Please find below an update on the current fill plans and production plans. Please note there are two change-overs scheduled for Henkel lines in the n' -[10:55:15] - Texto completo hash: 'Sam.Colley@alpla.com|202010282043|FW: Post Operations Meeting Logistics Update - 10/28/2020|Cc: Caud...' -[10:55:15] --- Message 18/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] Fecha: 2020-05-21 18:13:13 -[10:55:15] Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] Hash: 5aeb89b3c5bfb98c645b9101e3487b13 -[10:55:15] Adjuntos: ['AlplaProd_Articles - VM.xlsx'] -[10:55:15] ⚠ DUPLICADO - Ya existe un mensaje con este hash -[10:55:15] 📋 Comparación de mensajes duplicados: -[10:55:15] Mensaje existente: -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2020-05-21 18:13:13 -[10:55:15] - Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] Mensaje nuevo (rechazado): -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2020-05-21 18:13:13 -[10:55:15] - Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] 🔍 Debug detallado del hash duplicado: -[10:55:15] Hash: 5aeb89b3c5bfb98c645b9101e3487b13 -[10:55:15] 🔍 Debug Hash: -[10:55:15] - Remitente: 'Maximilian Rossi - Vetromeccanica Srl' -[10:55:15] - Fecha: '202005211813' -[10:55:15] - Subject: 'R: Alpla - Vetro SKU via OPC 9.3040-3074' -[10:55:15] - Contenido (500 chars): 'Dear Siegfried, Thank you for your prompt response. Hereby our feedback: We confirm we accept fully your SKU structure (see below image) but please specify the number of characters for AV description, we considered for now 36 and needs to be defined. Waiting for your confirmation of structure and characters.The list as per your request will remain persistent, it means it will remain saved on our supervision PLC even after restart of our superivision control cabinet or shut down of your SCADA. We' -[10:55:15] - Texto completo hash: 'Maximilian Rossi - Vetromeccanica Srl|202005211813|R: Alpla - Vetro SKU via OPC 9.3040-3074|Dear Sie...' -[10:55:15] --- Message 19/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Sam.Colley@alpla.com -[10:55:15] Fecha: 2020-10-28 20:43:57 -[10:55:15] Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] Hash: 426b39b4f49078cb1c38f6b115d94c67 -[10:55:15] Adjuntos: [] -[10:55:15] ⚠ DUPLICADO - Ya existe un mensaje con este hash -[10:55:15] 📋 Comparación de mensajes duplicados: -[10:55:15] Mensaje existente: -[10:55:15] - Remitente: Sam.Colley@alpla.com -[10:55:15] - Fecha: 2020-10-28 20:43:57 -[10:55:15] - Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] Mensaje nuevo (rechazado): -[10:55:15] - Remitente: Sam.Colley@alpla.com -[10:55:15] - Fecha: 2020-10-28 20:43:57 -[10:55:15] - Subject: FW: Post Operations Meeting Logistics Update - 10/28/2020 -[10:55:15] 🔍 Debug detallado del hash duplicado: -[10:55:15] Hash: 426b39b4f49078cb1c38f6b115d94c67 -[10:55:15] 🔍 Debug Hash: -[10:55:15] - Remitente: 'Sam.Colley@alpla.com' -[10:55:15] - Fecha: '202010282043' -[10:55:15] - Subject: 'FW: Post Operations Meeting Logistics Update - 10/28/2020' -[10:55:15] - Contenido (500 chars): 'Cc: Caudill Micah ; Colley Mick ; Colley Sam ; Horn James ; Fritz Robert ; Jenkins Laura ; Colley Sam Subject: Post Operations Meeting Logistics Update - 10/28/2020 All, Good Afternoon. Please find below an update on the current fill plans and production plans. Please note there are two change-overs scheduled for Henkel lines in the n' -[10:55:15] - Texto completo hash: 'Sam.Colley@alpla.com|202010282043|FW: Post Operations Meeting Logistics Update - 10/28/2020|Cc: Caud...' -[10:55:15] --- Message 20/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] Fecha: 2020-05-21 18:13:13 -[10:55:15] Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] Hash: 5aeb89b3c5bfb98c645b9101e3487b13 -[10:55:15] Adjuntos: ['AlplaProd_Articles - VM.xlsx'] -[10:55:15] ⚠ DUPLICADO - Ya existe un mensaje con este hash -[10:55:15] 📋 Comparación de mensajes duplicados: -[10:55:15] Mensaje existente: -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2020-05-21 18:13:13 -[10:55:15] - Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] Mensaje nuevo (rechazado): -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2020-05-21 18:13:13 -[10:55:15] - Subject: R: Alpla - Vetro SKU via OPC 9.3040-3074 -[10:55:15] 🔍 Debug detallado del hash duplicado: -[10:55:15] Hash: 5aeb89b3c5bfb98c645b9101e3487b13 -[10:55:15] 🔍 Debug Hash: -[10:55:15] - Remitente: 'Maximilian Rossi - Vetromeccanica Srl' -[10:55:15] - Fecha: '202005211813' -[10:55:15] - Subject: 'R: Alpla - Vetro SKU via OPC 9.3040-3074' -[10:55:15] - Contenido (500 chars): 'Dear Siegfried, Thank you for your prompt response. Hereby our feedback: We confirm we accept fully your SKU structure (see below image) but please specify the number of characters for AV description, we considered for now 36 and needs to be defined. Waiting for your confirmation of structure and characters.The list as per your request will remain persistent, it means it will remain saved on our supervision PLC even after restart of our superivision control cabinet or shut down of your SCADA. We' -[10:55:15] - Texto completo hash: 'Maximilian Rossi - Vetromeccanica Srl|202005211813|R: Alpla - Vetro SKU via OPC 9.3040-3074|Dear Sie...' -[10:55:15] --- Message 21/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] Fecha: 2024-01-04 15:10:35 -[10:55:15] Subject: I: Bottle counters / Batch handling -[10:55:15] Hash: b8a392590c2ec14bdc907df9ed6bfde1 -[10:55:15] Adjuntos: ['Changeover process map v1.xlsx'] -[10:55:15] ✓ NUEVO mensaje - Agregando a la cronología -[10:55:15] --- Message 22/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] Fecha: 2024-01-04 15:29:02 -[10:55:15] Subject: I: 9.3061-TLO26-L42 automatic change over test -[10:55:15] Hash: e24d10cb7260612292f2979ea382bf80 -[10:55:15] Adjuntos: [] -[10:55:15] ✓ NUEVO mensaje - Agregando a la cronología -[10:55:15] --- Message 23/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] Fecha: 2024-01-04 15:11:21 -[10:55:15] Subject: I: Alpla BOW: Batch Handling Issue for TG10 & TG20 -[10:55:15] Hash: 65b06d9edf0c5c3af15b15b276aa0139 -[10:55:15] Adjuntos: [] -[10:55:15] ✓ NUEVO mensaje - Agregando a la cronología -[10:55:15] --- Message 24/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] Fecha: 2024-01-04 15:11:32 -[10:55:15] Subject: I: Alpla BOW: Batch handling 9.3040-3074 ALPLA BG -[10:55:15] Hash: b48ae2825aa32aa86a19d448a6635977 -[10:55:15] Adjuntos: [] -[10:55:15] ✓ NUEVO mensaje - Agregando a la cronología -[10:55:15] --- Message 25/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Osswald Ulrich (ASG) (Ulrich.Osswald@autefa.com) -[10:55:15] Fecha: 2020-02-24 09:50:20 -[10:55:15] Subject: Alpla BG: updated telegram description -[10:55:15] Hash: ced079dd654ff7fc7104943e29379205 -[10:55:15] Adjuntos: ['Vetro AUTEFA Communication Alpla BG IBSS_V3.pptx', 'Vetro_communication_v0.2.docx'] -[10:55:15] ✓ NUEVO mensaje - Agregando a la cronología -[10:55:15] --- Message 26/26 from I_ R_ I_ [EXT] R_ Vetro Conveyor 9.3674.eml --- -[10:55:15] Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] Fecha: 2025-02-04 16:49:00 -[10:55:15] Subject: I: R: I: [EXT] R: Vetro Conveyor 9.3674 -[10:55:15] Hash: d10837b5ddae5c6edf954b5f921a464e -[10:55:15] Adjuntos: ['AlplaProd_Articles - VM.xlsx', 'Changeover process map v1.xlsx', 'Vetro AUTEFA Communication Alpla BG IBSS_V3.pptx', 'Vetro_communication_v0.2.docx'] -[10:55:15] ✓ NUEVO mensaje - Agregando a la cronología -[10:55:15] ============================================================ -[10:55:15] Processing file: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails\Max - Alpla-Henkel - AutoChange.eml -[10:55:15] 📧 Abriendo archivo: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails\Max - Alpla-Henkel - AutoChange.eml -[10:55:15] ✉️ Mensaje extraído: -[10:55:15] - Subject: Max - Alpla-Henkel - AutoChange -[10:55:15] - Remitente: Miguel Angel Vera - Vetromeccanica Srl -[10:55:15] - Fecha: 2025-07-22 07:54:43 -[10:55:15] - Adjuntos: 0 archivos -[10:55:15] - Contenido: 337 caracteres -[10:55:15] - Hash generado: 44c2f4a4e9f50385b7f8968d55d4241a -[10:55:15] 📧 Procesamiento completado: 1 mensajes extraídos -[10:55:15] Extracted 1 messages from Max - Alpla-Henkel - AutoChange.eml -[10:55:15] --- Message 1/1 from Max - Alpla-Henkel - AutoChange.eml --- -[10:55:15] Remitente: Miguel Angel Vera - Vetromeccanica Srl -[10:55:15] Fecha: 2025-07-22 07:54:43 -[10:55:15] Subject: Max - Alpla-Henkel - AutoChange -[10:55:15] Hash: 44c2f4a4e9f50385b7f8968d55d4241a -[10:55:15] Adjuntos: [] -[10:55:15] ✓ NUEVO mensaje - Agregando a la cronología -[10:55:15] ============================================================ -[10:55:15] Processing file: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails\Next + 1 - HENKEL - ALPLA - AUTEFA.eml -[10:55:15] 📧 Abriendo archivo: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails\Next + 1 - HENKEL - ALPLA - AUTEFA.eml -[10:55:15] ✉️ Mensaje extraído: -[10:55:15] - Subject: Next + 1 - HENKEL - ALPLA - AUTEFA -[10:55:15] - Remitente: Miguel Angel Vera - Vetromeccanica Srl -[10:55:15] - Fecha: 2025-02-04 16:05:12 -[10:55:15] - Adjuntos: 0 archivos -[10:55:15] - Contenido: 971 caracteres -[10:55:15] - Hash generado: e7b1f7771eab45adb515253b612ba97b -[10:55:15] 📧 Procesamiento completado: 1 mensajes extraídos -[10:55:15] Extracted 1 messages from Next + 1 - HENKEL - ALPLA - AUTEFA.eml -[10:55:15] --- Message 1/1 from Next + 1 - HENKEL - ALPLA - AUTEFA.eml --- -[10:55:15] Remitente: Miguel Angel Vera - Vetromeccanica Srl -[10:55:15] Fecha: 2025-02-04 16:05:12 -[10:55:15] Subject: Next + 1 - HENKEL - ALPLA - AUTEFA -[10:55:15] Hash: e7b1f7771eab45adb515253b612ba97b -[10:55:15] Adjuntos: [] -[10:55:15] ✓ NUEVO mensaje - Agregando a la cronología -[10:55:15] ============================================================ -[10:55:15] Processing file: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails\NEXT2 - Data - ALPLA information verification.eml -[10:55:15] 📧 Abriendo archivo: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails\NEXT2 - Data - ALPLA information verification.eml -[10:55:15] ✉️ Mensaje extraído: -[10:55:15] - Subject: NEXT2 - Data - ALPLA information verification -[10:55:15] - Remitente: Miguel Angel Vera - Vetromeccanica Srl -[10:55:15] - Fecha: 2025-02-03 12:55:37 -[10:55:15] - Adjuntos: 0 archivos -[10:55:15] - Contenido: 1145 caracteres -[10:55:15] - Hash generado: 5c1fa79b53f87f1f70de1fb1e1c47935 -[10:55:15] 📧 Procesamiento completado: 1 mensajes extraídos -[10:55:15] Extracted 1 messages from NEXT2 - Data - ALPLA information verification.eml -[10:55:15] --- Message 1/1 from NEXT2 - Data - ALPLA information verification.eml --- -[10:55:15] Remitente: Miguel Angel Vera - Vetromeccanica Srl -[10:55:15] Fecha: 2025-02-03 12:55:37 -[10:55:15] Subject: NEXT2 - Data - ALPLA information verification -[10:55:15] Hash: 5c1fa79b53f87f1f70de1fb1e1c47935 -[10:55:15] Adjuntos: [] -[10:55:15] ✓ NUEVO mensaje - Agregando a la cronología -[10:55:15] ============================================================ -[10:55:15] Processing file: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails\RE_ EXT Next + 1 - HENKEL - ALPLA - AUTEFA.eml -[10:55:15] 📧 Abriendo archivo: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails\RE_ EXT Next + 1 - HENKEL - ALPLA - AUTEFA.eml -[10:55:15] ✉️ Mensaje extraído: -[10:55:15] - Subject: RE: EXT Next + 1 - HENKEL - ALPLA - AUTEFA -[10:55:15] - Remitente: Lenin Vera -[10:55:15] - Fecha: 2025-02-20 15:09:56 -[10:55:15] - Adjuntos: 0 archivos -[10:55:15] - Contenido: 3803 caracteres -[10:55:15] - Hash generado: 82d5b0bd5ce95f99b9be3585b8f337c5 -[10:55:15] 📧 Procesamiento completado: 1 mensajes extraídos -[10:55:15] Extracted 1 messages from RE_ EXT Next + 1 - HENKEL - ALPLA - AUTEFA.eml -[10:55:15] --- Message 1/1 from RE_ EXT Next + 1 - HENKEL - ALPLA - AUTEFA.eml --- -[10:55:15] Remitente: Lenin Vera -[10:55:15] Fecha: 2025-02-20 15:09:56 -[10:55:15] Subject: RE: EXT Next + 1 - HENKEL - ALPLA - AUTEFA -[10:55:15] Hash: 82d5b0bd5ce95f99b9be3585b8f337c5 -[10:55:15] Adjuntos: [] -[10:55:15] ✓ NUEVO mensaje - Agregando a la cronología -[10:55:15] ============================================================ -[10:55:15] Processing file: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails\RE_ [EXT] FW_ Automatic changeover trial - .eml -[10:55:15] 📧 Abriendo archivo: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails\RE_ [EXT] FW_ Automatic changeover trial - .eml -[10:55:15] ✉️ Mensaje extraído: -[10:55:15] - Subject: RE: [EXT] FW: Automatic changeover trial - -[10:55:15] - Remitente: Sam.Colley@alpla.com -[10:55:15] - Fecha: 2025-07-15 22:34:28 -[10:55:15] - Adjuntos: 0 archivos -[10:55:15] - Contenido: 11632 caracteres -[10:55:15] - Hash generado: a0dbf41b0300470ad03a1c48552578eb -[10:55:15] 📧 Procesamiento completado: 1 mensajes extraídos -[10:55:15] Extracted 1 messages from RE_ [EXT] FW_ Automatic changeover trial - .eml -[10:55:15] --- Message 1/1 from RE_ [EXT] FW_ Automatic changeover trial - .eml --- -[10:55:15] Remitente: Sam.Colley -[10:55:15] Fecha: 2025-07-15 22:34:28 -[10:55:15] Subject: RE: [EXT] FW: Automatic changeover trial - -[10:55:15] Hash: a0dbf41b0300470ad03a1c48552578eb -[10:55:15] Adjuntos: [] -[10:55:15] ✓ NUEVO mensaje - Agregando a la cronología -[10:55:15] ============================================================ -[10:55:15] Processing file: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails\RE_ [EXT] FW_ Automatic changeover trial2 - .eml -[10:55:15] 📧 Abriendo archivo: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails\RE_ [EXT] FW_ Automatic changeover trial2 - .eml -[10:55:15] ✉️ Mensaje extraído: -[10:55:15] - Subject: RE: [EXT] FW: Automatic changeover trial - -[10:55:15] - Remitente: Sam.Colley@alpla.com -[10:55:15] - Fecha: 2025-07-15 22:34:28 -[10:55:15] - Adjuntos: 0 archivos -[10:55:15] - Contenido: 11632 caracteres -[10:55:15] - Hash generado: a0dbf41b0300470ad03a1c48552578eb -[10:55:15] 📧 Procesamiento completado: 1 mensajes extraídos -[10:55:15] Extracted 1 messages from RE_ [EXT] FW_ Automatic changeover trial2 - .eml -[10:55:15] --- Message 1/1 from RE_ [EXT] FW_ Automatic changeover trial2 - .eml --- -[10:55:15] Remitente: Sam.Colley -[10:55:15] Fecha: 2025-07-15 22:34:28 -[10:55:15] Subject: RE: [EXT] FW: Automatic changeover trial - -[10:55:15] Hash: a0dbf41b0300470ad03a1c48552578eb -[10:55:15] Adjuntos: [] -[10:55:15] ⚠ DUPLICADO - Ya existe un mensaje con este hash -[10:55:15] 📋 Comparación de mensajes duplicados: -[10:55:15] Mensaje existente: -[10:55:15] - Remitente: Sam.Colley -[10:55:15] - Fecha: 2025-07-15 22:34:28 -[10:55:15] - Subject: RE: [EXT] FW: Automatic changeover trial - -[10:55:15] Mensaje nuevo (rechazado): -[10:55:15] - Remitente: Sam.Colley -[10:55:15] - Fecha: 2025-07-15 22:34:28 -[10:55:15] - Subject: RE: [EXT] FW: Automatic changeover trial - -[10:55:15] 🔍 Debug detallado del hash duplicado: -[10:55:15] Hash: a0dbf41b0300470ad03a1c48552578eb -[10:55:15] 🔍 Debug Hash: -[10:55:15] - Remitente: 'Sam.Colley' -[10:55:15] - Fecha: '202507152234' -[10:55:15] - Subject: 'RE: [EXT] FW: Automatic changeover trial -' -[10:55:15] - Contenido (500 chars): 'Hi all, We have made arrangements for the site pre-evaluation for the automatic changeover function of the Autefa and Vetro systems. The plan is to use the current scheduled downtime on line 41 on the July 30th and 31st. @John Sledge Could you please have lots made on the line for those dates so we can cycle through the changeovers for the trial? I believe William may have already mentioned this? @Robert Nation@Brandon B Miller Once Lenin and Sudheesh are set up and ready I will reach out to you' -[10:55:15] - Texto completo hash: 'Sam.Colley|202507152234|RE: [EXT] FW: Automatic changeover trial -|Hi all, We have made arrangements...' -[10:55:15] ============================================================ -[10:55:15] Processing file: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails\Re_ [EXT] RE_ Vetro_ALPLA information verification.eml -[10:55:15] 📧 Abriendo archivo: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails\Re_ [EXT] RE_ Vetro_ALPLA information verification.eml -[10:55:15] ✉️ Mensaje extraído: -[10:55:15] - Subject: Re: [EXT] RE: Vetro/ALPLA information verification -[10:55:15] - Remitente: L&E -[10:55:15] - Fecha: 2024-12-19 10:55:42 -[10:55:15] - Adjuntos: 0 archivos -[10:55:15] - Contenido: 37604 caracteres -[10:55:15] - Hash generado: 534656dd41f6d25df1c1b17a328e34e5 -[10:55:15] 📧 Procesamiento completado: 1 mensajes extraídos -[10:55:15] Extracted 1 messages from Re_ [EXT] RE_ Vetro_ALPLA information verification.eml -[10:55:15] --- Message 1/1 from Re_ [EXT] RE_ Vetro_ALPLA information verification.eml --- -[10:55:15] Remitente: L&E -[10:55:15] Fecha: 2024-12-19 10:55:42 -[10:55:15] Subject: Re: [EXT] RE: Vetro/ALPLA information verification -[10:55:15] Hash: 534656dd41f6d25df1c1b17a328e34e5 -[10:55:15] Adjuntos: [] -[10:55:15] ✓ NUEVO mensaje - Agregando a la cronología -[10:55:15] ============================================================ -[10:55:15] Processing file: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails\R_ [EXT] RE_ Vetro_ALPLA information verification 9.3060-3067.eml -[10:55:15] 📧 Abriendo archivo: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\Entregado por VM\01 - 26-07-2025 Max - Emails\R_ [EXT] RE_ Vetro_ALPLA information verification 9.3060-3067.eml -[10:55:15] ✉️ Mensaje extraído: -[10:55:15] - Subject: R: [EXT] RE: Vetro/ALPLA information verification 9.3060-3067 -[10:55:15] - Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] - Fecha: 2025-02-04 15:06:14 -[10:55:15] - Adjuntos: 0 archivos -[10:55:15] - Contenido: 43874 caracteres -[10:55:15] - Hash generado: 4f3aed45042886599a853fe58b814f4b -[10:55:15] 📧 Procesamiento completado: 1 mensajes extraídos -[10:55:15] Extracted 1 messages from R_ [EXT] RE_ Vetro_ALPLA information verification 9.3060-3067.eml -[10:55:15] --- Message 1/1 from R_ [EXT] RE_ Vetro_ALPLA information verification 9.3060-3067.eml --- -[10:55:15] Remitente: Maximilian Rossi - Vetromeccanica Srl -[10:55:15] Fecha: 2025-02-04 15:06:14 -[10:55:15] Subject: R: [EXT] RE: Vetro/ALPLA information verification 9.3060-3067 -[10:55:15] Hash: 4f3aed45042886599a853fe58b814f4b -[10:55:15] Adjuntos: [] -[10:55:15] ✓ NUEVO mensaje - Agregando a la cronología -[10:55:15] Estadísticas de procesamiento: -[10:55:15] - Total mensajes encontrados: 36 -[10:55:15] - Mensajes únicos añadidos: 19 -[10:55:15] - Mensajes duplicados ignorados: 17 -[10:55:15] Writing 19 messages to C:\Users\migue\OneDrive\Miguel\Obsidean\Trabajo\VM\03-VM\45 - HENKEL - VM Auto Changeover\cronologia.md -[10:55:15] ✅ Cronología guardada exitosamente en: C:\Users\migue\OneDrive\Miguel\Obsidean\Trabajo\VM\03-VM\45 - HENKEL - VM Auto Changeover\cronologia.md -[10:55:15] 📊 Total de mensajes en la cronología: 19 -[10:55:15] Ejecución de x1.py finalizada (success). Duración: 0:00:01.373196. -[10:55:15] Log completo guardado en: D:\Proyectos\Scripts\ParamManagerScripts\backend\script_groups\EmailCrono\.log\log_x1.txt