home-assistant / core

:house_with_garden: Open source home automation that puts local control and privacy first.
https://www.home-assistant.io
Apache License 2.0
71.14k stars 29.81k forks source link

New IMAP sensor not updating until template entities manually updated #93167

Closed drjjr2 closed 1 year ago

drjjr2 commented 1 year ago

The problem

After migrating to the new imap format, the sensor I have configured does not always get updated until I either restart Home Assistant or reload template entities in Developer Tools. The "generic" imap_content sensor I have created does show that the email I am looking for was received at some point. However, I have seen instances where this sensor also stops being updated until a restart of HA.

What version of Home Assistant Core has the issue?

2023.5.3

What was the last working version of Home Assistant Core?

2023.4.x

What type of installation are you running?

Home Assistant OS

Integration causing the issue

imap

Link to integration documentation on our website

https://www.home-assistant.io/integrations/imap/

Diagnostics information

No response

Example YAML snippet

template:
  - trigger:
      - platform: event      
        event_type: "imap_content"
        id: "custom_event"
        event_data:
          sender: "no-reply.notification@example.com"
    sensor:
      - name: Alarm Status
        state: >
          {% if 'Armed Away' in trigger.event.data["subject"] %}
            armed_away
          {% elif 'Armed Stay' in trigger.event.data["subject"] %}
            armed_stay
          {% elif 'Disarmed' in trigger.event.data["subject"] %}
            disarmed
          {% endif %}

  - trigger:
      - platform: event
        event_type: "imap_content"
        id: "custom_event"
    sensor:
      - name: imap_content
        state: "{{ trigger.event.data['subject'] }}"
        attributes:
          Message: "{{ trigger.event.data['text'] }}"
          Server: "{{ trigger.event.data['server'] }}"
          Username: "{{ trigger.event.data['username'] }}"
          Search: "{{ trigger.event.data['search'] }}"
          Folder: "{{ trigger.event.data['folder'] }}"
          Sender: "{{ trigger.event.data['sender'] }}"
          Date: "{{ trigger.event.data['date'] }}"
          Subject: "{{ trigger.event.data['subject'] }}"
          Return_Path: "{{ trigger.event.data['headers']['Return-Path'][0] }}"
          Received-first: "{{ trigger.event.data['headers']['Received'][0] }}"
          Received-last: "{{ trigger.event.data['headers']['Received'][-1] }}"

Anything in the logs that might be useful for us?

Nothing in the logs indicates a problem.

Additional information

This worked perfectly in previous versions of HA. Something with the new events is causing the inconsistency, or there's something I'm missing in the migration that was suggested by HA.

home-assistant[bot] commented 1 year ago

Hey there @engrbm87, @jbouwh, mind taking a look at this issue as it has been labeled with an integration (imap) you are listed as a code owner for? Thanks!

Code owner commands Code owners of `imap` can trigger bot actions by commenting: - `@home-assistant close` Closes the issue. - `@home-assistant rename Awesome new title` Renames the issue. - `@home-assistant reopen` Reopen the issue. - `@home-assistant unassign imap` Removes the current integration label and assignees on the issue, add the integration domain after the command.

(message by CodeOwnersMention)


imap documentation imap source (message by IssueLinks)

jbouwh commented 1 year ago

I believe this a duplicate of #93092 and will be fixed by #93119. May be you can check if this is the case.

drjjr2 commented 1 year ago

It does look very similar. However, this was still broken for me in 2023.5.2 and that problem #93092 says it was working in 2023.5.2. I can test it in 2023.5.4.

jbouwh commented 1 year ago

I am closing this issue, assuming this is resolved, if that is not the case, you can reopen the issue.

drjjr2 commented 1 year ago

This issue is not fixed. My imap sensor quit working about 6 hours ago but I have received emails in the meantime.

jbouwh commented 1 year ago

Is the counter still updating?

jbouwh commented 1 year ago

If you can reproduce your issue, maybe you can open a new issue for this. As this issue is for specific case that is solved. I am not seeing issues over time at the moment.

drjjr2 commented 1 year ago

Is the counter still updating?

In this instance the counter was not still updating. This issue was my issue that I originally opened and the behavior is still the same under 2023.5.4. The sensor worked for about 18 hours and then stopped and the counter stopped updating. I have reloaded the integration and the counter is now updating. I have reloaded template entities and the sensor is updated. I have turned on debug logging and will keep an eye out for when it stops updating.

But since this is my original issue I would like for it to be reopened.

jbouwh commented 1 year ago

Right, fair enough. Question though if your case is reproducable. Could you share more info about your configuration, the imap service your are using and the imap logging (debug logging is appreciated)?

drjjr2 commented 1 year ago

It's a Gmail IMAP sensor. The template itself is in the original issue post. I have enabled debugging and the last message I have when it stops working is:

2023-05-25 10:01:44.818 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'IMID62 OK Success'
2023-05-25 10:31:44.932 DEBUG (MainThread) [aioimaplib.aioimaplib] connection lost: None
drjjr2 commented 1 year ago

Is it helpful to see the dump of the last successful email received? Not sure if it's coincidence but it's an email with several images in it.

drjjr2 commented 1 year ago

After reloading the integration, the count updates and the log shows:

2023-05-25 12:55:24.933 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'IMID63 CLOSE\r\n'
2023-05-25 12:55:34.952 DEBUG (MainThread) [homeassistant.components.imap.coordinator] Error while cleaning up imap connection
2023-05-25 12:55:35.034 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* OK Gimap ready for requests from xxx.xxx.xxx.xxx bl15mb4053687otb\r\n'
2023-05-25 12:55:35.035 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'LJEN0 CAPABILITY\r\n'
2023-05-25 12:55:35.053 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* CAPABILITY IMAP4rev1 UNSELECT IDLE NAMESPACE QUOTA ID XLIST CHILDREN X-GM-EXT-1 XYZZY SASL-IR AUTH=XOAUTH2 AUTH=PLAIN AUTH=PLAIN-CLIENTTOKEN AUTH=OAUTHBEARER AUTH=XOAUTH\r\nLJEN0 OK Thats all she wrote! bl15mb4053687otb\r\n'
2023-05-25 12:55:35.053 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'LJEN0 OK Thats all she wrote! bl15mb4053687otb'
2023-05-25 12:55:35.054 DEBUG (MainThread) [aioimaplib.aioimaplib] state -> NONAUTH
jbouwh commented 1 year ago

It is normal that gmail looses a connection every 30 minutes, but after that point it should silently reconnect. Not sure what happens. When we are reconnecting we make sure we take all steps. Can you also show the homeassistant.components.imap debug message, I do not see them in your log.

To turn them on, place this in configuration.yaml:

logger:
  default: info
  logs:
    homeassistant.components.imap: debug
drjjr2 commented 1 year ago

OK, will report back when it occurs again.

drjjr2 commented 1 year ago

OK, so it is again in a state where the count doesn't update and the sensor doesn't update. The last entries in the log are:

2023-05-26 09:23:25.477 DEBUG (MainThread) [homeassistant.components.imap.coordinator] Message processed, sender: mail@thedrinksbusiness.com, subject: 📢 Win £1k - Swap Beer For Cider On World Cider Day 🍺
2023-05-26 09:23:25.477 DEBUG (MainThread) [homeassistant.components.imap.coordinator] Manually updated imap data
2023-05-26 09:23:25.479 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'JIGD6 IDLE\r\n'
2023-05-26 09:23:25.571 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'+ idling\r\n'
2023-05-26 09:23:25.571 DEBUG (MainThread) [aioimaplib.aioimaplib] continuation line -- assuming IDLE is active : b'+ idling'
2023-05-26 09:34:04.230 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* 78 EXISTS\r\n'
2023-05-26 09:34:04.231 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'DONE\r\n'
2023-05-26 09:34:04.355 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'JIGD6 OK IDLE terminated (Success)\r\n'
2023-05-26 09:34:04.356 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'JIGD6 OK IDLE terminated (Success)'
2023-05-26 09:34:04.358 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'JIGD7 NOOP\r\n'
2023-05-26 09:34:04.516 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'JIGD7 OK Success\r\n'
2023-05-26 09:34:04.517 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'JIGD7 OK Success'
2023-05-26 09:34:04.518 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'JIGD8 SEARCH CHARSET utf-8 UnSeen UnDeleted\r\n'
2023-05-26 09:34:04.649 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* SEARCH 8 9 14 18 20 24 28 29 30 39 41 42 45 52 53 55 56 57 58 59 62 63 64 65 66 67 68 71 72 73 74 75 76 77 78\r\nJIGD8 OK SEARCH completed (Success)\r\n'
2023-05-26 09:34:04.650 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'JIGD8 OK SEARCH completed (Success)'
2023-05-26 09:34:04.651 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'JIGD9 FETCH 78 BODY.PEEK[]\r\n'
2023-05-26 09:34:04.772 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* 78 FETCH (BODY[] {59361}\r\nDelivered-To: info@brixcellars.com\r\nReceived: by 2002:a0c:e912:0:b0:626:7ec:17b6 with SMTP id a18csp429698qvo;\r\n        Fri, 26 May 2023 07:34:02 -0700 (PDT)\r\nX-Received: by 2002:a81:570f:0:b0:565:9103:85b2 with SMTP id l15-20020a81570f000000b00565910385b2mr1855050ywb.3.1685111641889;\r\n        Fri, 26 May 2023 07:34:01 -0700 (PDT)\r\nARC-Seal: i=2; a=rsa-sha256; t=1685111641; cv=pass;\r\n        d=google.com; s=arc-20160816;\r\n        b=DRXya0lu0AnG3tuOsiQtQk5hS1YWq2kUykkzW7eHM/ADjQ3f2X'
2023-05-26 09:34:04.773 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'r+mS4O+XWjjfQVPk\r\n         lbC3+ZGR01pOiXQ7SS/OHPWALWtkcKuZtzs7F3eIaizsm5yWbB9YLVsrSz/nJZrYJdfT\r\n         VdFehlBYtVqQ19yf0WUv6lpl7qEfr3bvJdoro2wyKkKZkCEO0ENdTF4UFk7YlG1QhyUC\r\n         5bhSG04JrYvYFsyizbJQqIDslJ384jAkIrPl4E/DkRnzXnuIMYOOOJQtKhUrzHGB5BqA\r\n         wZSh8Y4IHBNyY3JbVcTszP7OKQZ2W0in9DonhzYJFHIyqpViGCpr/pO4BGWoXSM/6kMu\r\n         hbRw==\r\nARC-Message-Signature: i=2; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816;\r\n        h=content-transfer-encoding:subject:auto-submitted:date:reply-to:to\r\n         :from:sender:auto-submitted:precedence:list-unsubscribe\r\n         :dkim-signature:message-id:delivered-to;\r\n        bh=nzOHwbH0udEdGWknz7/i6NE75pfNLj+h+vA7e6zbwsY=;\r\n        b=nmsUo7uZjaOwUQW/j47oKldLGjqYqfBU6b7pCuPY8+Qt9g1TMBEjJq5DkC4iJ7Rrvc\r\n         vEI/v4IUDHUZ9tHLTfd1FbBJ0NI8xpnPXJq0yz6qNe5fHENZFRXWE7/tKqToTUm27tkA\r\n         C6o3UUisAqrLmRJ/8ihs3HrFe26arzEp0kaBDSEaa5mNCism+BKQrT4BgJ+YptM/DR2f\r\n         C8wMBoieg0SsR3R91LaK2ocv+QhndFSCOTr/UfG/XHxDKECIRrnjrs6iT7DdTE1IYoDT\r\n         ZxluEYG'
2023-05-26 09:34:04.776 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'0e0a2OUeVGSVsfga+7V7WCNnUB9cdy0fw8DIlzbHLcuhTmw0QJuQI44fMoFfl\r\n         uKpg==\r\nARC-Authentication-Results: i=2; mx.google.com;\r\n       dkim=pass header.i=@webstaurantstore.com header.s=blue header.b=gSQtHdgi;\r\n       arc=pass (i=1 spf=pass spfdomain=webstaurantstore.com dkim=pass dkdomain=webstaurantstore.com dmarc=pass fromdomain=webstaurantstore.com);\r\n       spf=neutral (google.com: 209.85.220.41 is neither permitted nor denied by best guess record for domain of jonathan+caf_=info=brixcellars.com@brixcellars.com) smtp.mailfrom="jonathan+caf_=info=brixcellars.com@brixcellars.com";\r\n       dmarc=pass (p=REJECT sp=REJECT dis=NONE) header.from=webstaurantstore.com\r\nReturn-Path: <jonathan+caf_=info=brixcellars.com@brixcellars.com>\r\nReceived: from mail-sor-f41.google.com (mail-sor-f41.google.com. [209.85.220.41])\r\n        by mx.google.com with SMTPS id z17-20020a814c11000000b0056536d971e5sor2291582ywa.8.2023.05.26.07.34.01\r\n        for <info@brixcellars.com>\r\n        (Google Transport Security);\r\n        Fri, 26 May 2023 07:34:01 -0700 (PDT)\r\nReceived-SPF: neutral (google.com: 209.85.220.41 is neither permitted nor denied by best guess record for domain of jonathan+caf_=info=brixcellars.com@brixcellars.com) client-ip=209.85.220.41;\r\nAuthentication-Results: mx.google.com;\r\n       dkim=pass header.i=@webstaurantstore.com header.s=blue header.b=gSQtHdgi;\r\n     '
2023-05-26 09:34:04.776 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'  arc=pass (i=1 spf=pass spfdomain=webstaurantstore.com dkim=pass dkdomain=webstaurantstore.com dmarc=pass fromdomain=webstaurantstore.com);\r\n       spf=neutral (google.com: 209.85.220.41 is neither permitted nor denied by best guess record for domain of jonathan+caf_=info=brixcellars.com@brixcellars.com) smtp.mailfrom="jonathan+caf_=info=brixcellars.com@brixcellars.com";\r\n       dmarc=pass (p=REJECT sp=REJECT dis=NONE) header.from=webstaurantstore.com\r\nX-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;\r\n        d=1e100.net; s=20221208; t=1685111641; x=1687703641;\r\n        h=content-transfer-encoding:subject:auto-submitted:date:reply-to:to\r\n         :f'
2023-05-26 09:34:04.777 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'rom:sender:auto-submitted:precedence:list-unsubscribe\r\n         :dkim-signature:message-id:delivered-to:x-forwarded-for\r\n         :x-forwarded-to:x-gm-message-state:from:to:cc:subject:date\r\n         :message-id:reply-to;\r\n        bh=nzOHwbH0udEdGWknz7/i6NE75pfNLj+h+vA7e6zbwsY=;\r\n        b=AGuoKDVwaQ8CZ7ot7ZApAss8ECCUGa4Mmzfn3HmMLVWLhu0YYKqURUGudse21+I+Pe\r\n         h0Gj2ltrj32531EnfuH2qoQYnaMqjG+3ZbJ/PPESAUQtrtyFjZVAdoWN++zZfxc7c3LG\r\n         K8euuWVQlxjqO6qBC0uNmcfahYqoYmr3184vs0BtqGrmlEH5u7lgi3du/l002QTHBqWT\r\n         9FBq3q9MCxJdzcirk4pudbaHBjh7YINjfVMdE+5xm0jUgj5YBSg2XBHhfjhpeRIXKtPY\r\n         Z1YzKm1styYWTUPmnU+7HOAlIBl0VYGzJnPAk3pXi/D6km8ANhui0EmT0hjHy+Ec9M95\r\n         jwVw==\r\nX-Gm-Message-State: AC+VfDyQgfZYgzs2elCLiIWSQSL4HmBHSdOedc3uVSU+bGBpOI0WJKpf\r\n\txtCQTAb9DYU42t2tp9NpkyJaF3utwq9sARR0GC+b+E95gbwz5Jrul2dzZHSn5XGL\r\nX-Received: by 2002:a81:b614:0:b0:565:88dd:b071 with SMTP id u20-20020a81b614000000b0056588ddb071mr1241219ywh.8.1685111641564;\r\n        Fri, 26 May 2023 07:34:01 -0700 (PDT)\r\nX-Forwarded-To: info@brixcellars.com\r\nX-Forwarded-For: jonathan@brixcellars.com info@brixcellars.com\r\nDelivered-To: jonathan@brixcellars.com\r\nReceived: by 2002:a05:6918:9144:b0:180:4f81:12d1 with SMTP id z4csp1098521ysm;\r\n        Fri, 26 May 2023 07:33:59 -0700 (PDT)\r\nX-Google-Smtp-Source: ACHHUZ6XXabaRzfV0Dd9KAXgZZxYVbs8FkSY+DfQFkwkAh6KjDT7ynyufpz9Ur/aFGmEjwmn9rDH'
2023-05-26 09:34:04.777 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'\r\nX-Received: by 2002:ad4:5948:0:b0:5ee:2789:160e with SMTP id eo8-20020ad45948000000b005ee2789160emr1844399qvb.52.1685111638688;\r\n        Fri, 26 May 2023 07:33:58 -0700 (PDT)\r\nARC-Seal: i=1; a=rsa-sha256; t=1685111638; cv=none;\r\n        d=google.com; s=arc-20160816;\r\n        b=tZS7KatWRiF2O9cOi4UB5Cb13136TtKtJJdx+58DlqOl3e0bbBT1p9fBUR2TOEZEXm\r\n         bPToLjsYQ/gC5fcPOXXebdeiB9kRTae/AH4C2Mig4m4ITYBg10Q5TLD4hxWQB6V3Lt0M\r\n         Bu3MOWom+T5+v+kVgkkdKQwefriw6o8oSS8/OhISxuyTKjWHGWy9z0+ekap+k7aW3aZ0\r\n         U1SI/X10Z+n+ijM77/IMudFTvkaQlUe9z5hLWiJKN1tHYfECkE2mmrEp+kdae4zhyFP7\r\n         ZHVkpfFldWc6zT8TymJ7GHM8aVZI6AIJWDelWwaUKm2W+puA8HljBk9W27Z7OSAonjWn\r\n         4t4w==\r\nARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816;\r\n        h=content-transfer-encoding:subject:auto-submitted:date:reply-to:to\r\n         :from:sender:auto-submitted:precedence:list-unsubscribe\r\n         :dkim-signature:message-id;\r\n        bh=nzOHwbH0udEdGWknz7/i6NE75pfNLj+h+vA7e6zbwsY=;\r\n        b=owqika5HFB/j2+mTCtexRQJqw7kENF07WfdbYF5WmfgzX9us84dkdlweI7BeaaUkKf\r\n         8UDvlJqQHKUvEjJ8i2IPurOlL5xHourWYmfTM9nljn2LqXwFHLB2RIJS0WBg4+inhwkz\r\n         AgULNbhyyP1NJzpDcN1vtd+Om/IDnTIOJDPqo5Ic9soLEx3T6xVJexdrlMVXV8BEEyLD\r\n         ZpoSWspZ3FUV6WLmRWnlXf/2DVnf3N4NO1aCnOigIPRRFYN4iFSzeSi1p4ucXxcgScOk\r\n         GcpwDvmh1M2i8G4PV6CDQCmhIaDBVVWBlcwBjbBsJl'
2023-05-26 09:34:04.778 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'd0WxA1N8PhQV1YVmxG3HijBHe6\r\n         IXcQ==\r\nARC-Authentication-Results: i=1; mx.google.com;\r\n       dkim=pass header.i=@webstaurantstore.com header.s=blue header.b=gSQtHdgi;\r\n       spf=pass (google.com: domain of flyers@webstaurantstore.com designates 158.51.243.37 as permitted sender) smtp.mailfrom=flyers@webstaurantstore.com;\r\n       dmarc=pass (p=REJECT sp=REJECT dis=NONE) header.from=webstaurantstore.com\r\nReturn-Path: <flyers@webstaurantstore.com>\r\nReceived: from mta105.webstaurantstore.com (mta105.webstaurantstore.com. [158.51.243.37])\r\n        by mx.google.com with ESMTPS id iy5-20020a0562140f6500b0062119cedb7fsi1466723qvb.18.2023.05.26.07.33.58\r\n        for <jonathan@brixcellars.com>\r\n        (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128);\r\n        Fri, 26 May 2023 07:33:58 -0700 (PDT)\r\nReceived-SPF: pass (google.com: domain of flyers@webstaurantstore.com designates 158.51.243.37 as permitted sender) client-ip=158.51.243.37;\r\nMessage-ID: <6470c356.050a0220.9c1f7.6319SMTPIN_ADDED_MISSING@mx.google.com>\r\nReceived: from [127.0.0.1] (localhost.localdomain [127.0.0.1])\r\n\tby l-postfix105.wpn.clarkinc.io (Postfix) with ESMTP id D97D9738FC\r\n\tfor <jonathan@brixcellars.com>; Fri, 26 May 2023 10:33:27 -0400 (EDT)\r\nDKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;\r\n\td=webstaurantstore.com; s=blue; t='
2023-05-26 09:34:04.781 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'1685111607;\r\n\tbh=nzOHwbH0udEdGWknz7/i6NE75pfNLj+h+vA7e6zbwsY=;\r\n\th=List-Unsubscribe:From:To:Reply-To:Date:Subject;\r\n\tb=gSQtHdgiDX7cODTFdbuQ9MSYXcyOcMluDFj4Bkkrof/kxT6EhDz4pChUXK3xiP8cQ\r\n\t nvxk/EyY3PfSu8cw3nVv8iQkrhN8gMGuTH/m7kCqudbYqwPq1Minw+xHXrKv4oi2Ul\r\n\t 3kQeTBpyNtCaQFLDKUJPdEnwL1p+dYn2eIRtEgTo=\r\nList-Unsubscribe: <mailto:feedbackloop@webstaurantstore.com>\r\nX-Auto-Response-Suppress: OOF\r\nPrecedence: Bulk\r\nAuto-Submitted: auto-generated\r\nX-Script: FlyerService\r\nSender: flyers@webstaurantstore.com\r\nFrom: "WebstaurantStore" <flyers@webstaurantstore.com>\r\nTo: jonathan@brixcellars.com\r\nReply-To: help@webstaurantstore.com\r\nDate: 26 May 2023 10:33:28 -0400\r\nAuto-Submitted: auto-generated\r\nSubject: =?utf-8?B?RXhwaXJpbmcgc29vbiEgQ2FuJ3QtbWlzcyBkZWFscyDwn5iK?=\r\nContent-Type: text/html; charset=utf-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "h=\r\nttp://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">=0D=0A<ht=\r\nml xmlns=3D"http://www.w3.org/1999/xhtml">=0D=0A<head>=0D=0A  <me=\r\nta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Dut=\r\nf-8">=0D=0A  <meta name=3D"viewport" content=3D"width=3Ddevice-wi=\r\ndth, initial-scale=3D1">=0D=0A  <meta content=3D"telephone=3Dno" =\r\nname=3D"format-detection">=0D=0A  <meta http-equiv=3D"X-UA-Compat=\r\nible" content=3D"IE=3Dedge">=0D=0A  <title>Expirin'
2023-05-26 09:34:04.782 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'g soon! Can\'t-m=\r\niss deals ??</title>=0D=0A  <style type=3D"text/css">=0D=0A    ht=\r\nml{background:#fff}body,#bodyTable{width:100%!important;margin:0;=\r\npadding:0}body,table,td,p,a,li,blockquote{-ms-text-size-adjust:no=\r\nne;-webkit-text-size-adjust:none;text-size-adjust:none}.thread-it=\r\nem.expanded .thread-body .body,.msg-body{width:100%!important;dis=\r\nplay:block!important}.ReadMsgBody,.ExternalClass{width:100%;backg=\r\nround-color:#f4f4f4}.ExternalClass,.ExternalClass p,.ExternalClas=\r\ns span,.ExternalClass font,.ExternalClass td,.ExternalClass div{l=\r\nine-height:100%}table{border-spacing:0}table,td{border-collapse:c=\r\nollapse;mso-table-lspace:0;mso-table-rspace:0}img{-ms-interpolati=\r\non-mode:bicubic}img,a img{border:0;outline:none;text-decoration:n=\r\none}.yshortcuts a{border-bottom:none!important}a[href^=3Dtel],.mo=\r\nbile_link,.mobile_link a{color:#888!important;text-decoration:non=\r\ne!important}=0D=0A    @media only screen and (min-width:0px) and =\r\n(max-width:600px){.mobile-pad {width: 97% !important;}.business-t=\r\nype { font-size: 12px !important; padding: 0 5px !important; }.ap=\r\nplelinksgray a {color:#888888 !important; text-decoration: none;;=\r\n}}=0D=0A=0D=0A    /*=0D=0A        OUTLET - STYLING START=0D=0A   =\r\n */=0D=0A=0D=0A    .two-column {=0D=0A        text-align: center;=\r\n=0D=0A    }=0D=0A    .two-column .column {=0D=0A        width: 10=\r\n'
2023-05-26 09:34:04.782 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'0%;=0D=0A        max-width: 300px;=0D=0A        display: inline-b=\r\nlock;=0D=0A        vertical-align: top;=0D=0A    }=0D=0A=0D=0A   =\r\n @media only screen and (max-width: 660px) {=0D=0A        .three-=\r\ncolumn .column {=0D=0A            max-width: none;=0D=0A=0D=0A   =\r\n     }=0D=0A        .two-column .column {=0D=0A            max-wi=\r\ndth: none;=0D=0A        }=0D=0A    }=0D=0A=0D=0A=0D=0A    .outlet=\r\n-image {=0D=0A      width: 100% !important;=0D=0A    }=0D=0A    /=\r\n*=0D=0A        OUTLET - STYLING END=0D=0A    */=0D=0A=0D=0A=0D=0A=\r\n=0D=0A     .columns-container {=0D=0A        width: 100% !importa=\r\nnt;=0D=0A        max-width: 640px !important;=0D=0A    }=0D=0A   =\r\n .column__image {=0D=0A        max-width: 100%;=0D=0A        heig=\r\nht: auto;=0D=0A    }=0D=0A    .column--cta {=0D=0A        max-wid=\r\nth: 200px;=0D=0A        margin: 0 auto 8px;=0D=0A        padding:=\r\n 0 5px;=0D=0A    }=0D=0A    .desktop--show {=0D=0A        display=\r\n: none !important;=0D=0A    }=0D=0A    @media only screen and (mi=\r\nn-width: 600px) {=0D=0A        .column--first {=0D=0A            =\r\npadding-right: 10px;=0D=0A        }=0D=0A        .column--last {=0D=0A=\r\n            padding-left: 10px;=0D=0A        }=0D=0A        /*** =\r\nhidden  ***/=0D=0A        .desktop--show {=0D=0A            displ=\r\nay: table-cell !important=0D=0A        }=0D=0A        .desktop--f=\r\nont-size-14 {'
2023-05-26 09:34:04.783 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'=0D=0A            font-size: 14px !important;=0D=0A =\r\n           line-height: 16px !important;=0D=0A        }=0D=0A=0D=0A=\r\n        .desktop--image-50 {=0D=0A            width: 50px !import=\r\nant;=0D=0A        }=0D=0A=0D=0A        .desktop--image-90 {=0D=0A=\r\n            width: 90px !important;=0D=0A            /* max-width=\r\n: 100px !important; */=0D=0A        }=0D=0A        .desktop--font=\r\nsize-36 {=0D=0A            font-size: 36px !important;=0D=0A     =\r\n   }=0D=0A=0D=0A        .desktop--fontsize-46 {=0D=0A            =\r\nfont-size: 46px !important;=0D=0A        }=0D=0A=0D=0A        .pa=\r\ndding-top--15 {=0D=0A            padding-top: 25px !important;=0D=0A=\r\n=0D=0A        }=0D=0A        .text--left {=0D=0A          text-al=\r\nign: left !important;=0D=0A        }=0D=0A        .text--right {=0D=0A=\r\n          text-align: right !important;=0D=0A        }=0D=0A=0D=0A=\r\n    }=0D=0A    @media only screen and (max-width: 599px) {=0D=0A =\r\n       .columns-container {=0D=0A            width: 100% !importa=\r\nnt;=0D=0A        }=0D=0A        .column {=0D=0A            displa=\r\ny: block !important;=0D=0A            width: 100% !important;=0D=0A=\r\n        }=0D=0A        .column__image {=0D=0A            height: =\r\nauto !important;=0D=0A            max-width: 600px !important;=0D=0A=\r\n            width: 100% !important;=0D=0A        }=0D=0A        .=\r\ncolumn__content'
2023-05-26 09:34:04.783 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b' {=0D=0A            font-size: 16px !important;=0D=0A=\r\n        }=0D=0A=0D=0A         .padding-top--0 {=0D=0A            =\r\npadding-top: 0 !important;=0D=0A=0D=0A        }=0D=0A=0D=0A=0D=0A=\r\n    }=0D=0A  </style>=0D=0A<!--[if gt mso 15]>=0D=0A     <style t=\r\nype=3D"text/css" media=3D"all">=0D=0A     /* Outlook 2016 Height =\r\nFix */=0D=0A     table, tr, td {border-collapse: collapse;}=0D=0A=\r\n     tr { font-size:0px; line-height:0px; border-collapse: collap=\r\nse; }=0D=0A     </style>=0D=0A     <![endif]-->=0D=0A=0D=0A     <=\r\n!--[if mso]>=0D=0A<style type=3D"text/css">=0D=0Abody, a, table, =\r\ntd, tr, span, font, b, strong, li, ul, u, i, div, p, font {font-f=\r\namily: Arial, Helvetica, sans-serif !important;}=0D=0A</style>=0D=0A=\r\n<![endif]-->=0D=0A=0D=0A</head>=0D=0A=0D=0A<body bgcolor=3D"#ffff=\r\nff" style=3D"margin:0; padding:0; -webkit-text-size-adjust:none; =\r\n-ms-text-size-adjust:none; text-size-adjust:none; background-colo=\r\nr:#ffffff;">=0D=0A=0D=0A<table cellpadding=3D"0" cellspacing=3D"0=\r\n" border=3D"0" width=3D"100%" bgcolor=3D"#ffffff" id=3D"bodyTable=\r\n" style=3D"margin:0 auto; max-width: 640px;">=0D=0A<tr>=0D=0A    =\r\n<td>=0D=0A      <!--[if (gte mso 9)|(IE)]>=0D=0A      <table widt=\r\nh=3D"100%" align=3D"center" cellpadding=3D"0" cellspacing=3D"0" b=\r\norder=3D"0">=0D=0A        <tr>=0D=0A          <td>=0D=0A      <![=\r\nendif]-->=0D=0A      <table'
2023-05-26 09:34:04.784 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b' border=3D"0" width=3D"100%" cellpaddi=\r\nng=3D"0" cellspacing=3D"0" align=3D"center" style=3D"max-width: 6=\r\n40px; margin: auto;" class=3D"mobile-pad" bgcolor=3D"#f9f7f7">=0D=0A=\r\n=0D=0A            <!--[if (gte mso 9)|(IE)]>=0D=0A            <tr=\r\n>=0D=0A              <td>=0D=0A                <table width=3D"64=\r\n0" align=3D"center" cellpadding=3D"0" cellspacing=3D"0" border=3D=\r\n"0">=0D=0A              <![endif]-->=0D=0A              <tr>=0D=0A=\r\n                  <!-- HIDDEN PREVIEW TEXT -->=0D=0A             =\r\n     <td colspan=3D"2" style=3D"margin:0!important;padding:0!impo=\r\nrtant;width:100%!important;display:none;max-height:0;font-size:0;=\r\nline-height:0; color: #f9f7f7;">=0D=0A                      Use c=\r\node: EXCLUSIVE - Deals end 5/27/23 at Midnight EST=0D=0A         =\r\n         </td>=0D=0A                </tr>=0D=0A              <tr>=\r\n<td colspan=3D"2" height=3D"8"></td></tr>=0D=0A              <tr>=\r\n=0D=0A                  <td>=0D=0A                      <table wi=\r\ndth=3D"100%" cellpadding=3D"0" cellspacing=3D"0">=0D=0A          =\r\n                <tr>=0D=0A                              <td align=\r\n=3D"center" style=3D"padding-right:10px; font-size:12px; line-hei=\r\nght:12px; font-family: arial, sans-serif; color:#7f7f7f;" valign=3D=\r\n"middle">=0D=0A                '
2023-05-26 09:34:04.784 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'  '
2023-05-26 09:34:04.784 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'                <a href=3D"https=\r\n://www.webstaurantstore.com/emailgo.cfm?go=3D577743" style=3D"col=\r\nor: #7f7f7f; text-decoration: none;" target=3D"_blank">=0D=0A    =\r\n                                  <img src=3D"https://cdnimg.webs=\r\ntaurantstore.com/uploads/custom_emails/2018/1/plus_email_tag_2x.p=\r\nng" style=3D"margin-bottom: 2px; vertical-align: middle; display:=\r\n inline-block; line-height: 10px;" width=3D"37">Sign up for Fast =\r\n& Free Shipping! <b>Learn More</b>=0D=0A                         =\r\n         </a>=0D=0A                              </td>=0D=0A     =\r\n                     </tr>=0D=0A                      </table>=0D=0A=\r\n                  </td>=0D=0A              </tr>=0D=0A           =\r\n   <tr><td colspan=3D"2" height=3D"8"></td></tr>=0D=0A           =\r\n <!--[if (gte mso 9)|(IE)]>=0D=0A                </table>=0D=0A  =\r\n            </td>=0D=0A            </tr>=0D=0A            <![endi=\r\nf]-->=0D=0A        </table>=0D=0A=0D=0A        <!--[if (gte mso 9=\r\n)|(IE)]>=0D=0A            </td>=0D=0A          </tr>=0D=0A       =\r\n </table>=0D=0A        <![endif]-->=0D=0A=0D=0A      </td>=0D=0A =\r\n   </tr>=0D=0A=0D=0A  <tr>=0D=0A    <td>=0D=0A      <!--[if (gte =\r\nmso 9)|(IE)]>=0D=0A      <table width=3D"640" align=3D"center" ce=\r\nllpadding=3D"0" cellspacing=3D"0" border=3D"0">=0D=0A        <tr>=\r\n=0D=0A          <td>=0D=0A      <![endif]-->=0D='
2023-05-26 09:34:04.785 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'0A=0D=0A      <ta=\r\nble border=3D"0" width=3D"100%" cellpadding=3D"0" cellspacing=3D"=\r\n0" align=3D"center" style=3D"max-width: 640px; margin: auto;" cla=\r\nss=3D"mobile-pad">=0D=0A        <tr>=0D=0A          <td>=0D=0A=0D=0A=\r\n              <!-- Header Image Area -->=0D=0A              <tabl=\r\ne border=3D"0" width=3D"100%" cellpadding=3D"0" cellspacing=3D"0"=\r\n>=0D=0A                   <tr><td height=3D"20"></td></tr>=0D=0A =\r\n                 <tr>=0D=0A                    <td align=3D"cente=\r\nr">=0D=0A                      <font style=3D"font-size:10px; lin=\r\ne-height:12px; font-family: arial, sans-serif;"><a style=3D"color=\r\n:#7f7f7f; text-decoration:none;" href=3D"https://www.webstaurants=\r\ntore.com/emailgo.cfm?go=3D577793" target=3D"_blank">View Email in=\r\n Browser</a></font>=0D=0A                    </td>=0D=0A         =\r\n         </tr>=0D=0A                <tr><td height=3D"0"></td></t=\r\nr>=0D=0A                <tr>=0D=0A                  <td align=3D"=\r\nmiddle">=0D=0A                    <a href=3D"https://www.webstaur=\r\nantstore.com/emailgo.cfm?go=3D577741" target=3D"_blank">=0D=0A   =\r\n                     <img class=3D"weblogo" src=3D"https://cdnimg=\r\n.webstaurantstore.com/uploads/custom_emails/2018/1/webstaurantsto=\r\nre-email-logo-with-tag.png" width=3D"100%" border=3D"0" style=3D"=\r\ndisplay: block;" alt=3D"WebstaurantStore - Restaurant Supplies '
2023-05-26 09:34:04.785 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'An=\r\nd Equipment">=0D=0A                    </a>=0D=0A                =\r\n  </td>=0D=0A                </tr>=0D=0A              </table>=0D=0A=\r\n              <!-- End Header Image Area -->=0D=0A            <!-=\r\n- Navigation -->=0D=0A                <table border=3D"0" width=3D=\r\n"100%" cellpadding=3D"0" cellspacing=3D"0">=0D=0A                =\r\n  <tr><td height=3D"10"></td></tr>=0D=0A                  <tr>=0D=0A=\r\n                    <td colspan=3D"2" height=3D"1" bgcolor=3D"#ff=\r\nffff" style=3D"border-bottom: 1px solid #D9DDD7; font-size: 0px !=\r\nimportant; line-height: 0px !important; max-height: 1px; height: =\r\n1px;"></td>=0D=0A                  </tr>=0D=0A                  <=\r\ntr><td height=3D"10"></td></tr>=0D=0A                  <tr>=0D=0A=\r\n                    <td align=3D"center" width=3D"100%" style=3D"=\r\nline-height:14px; padding: 5px 0;" class=3D"business-type">=0D=0A=\r\n                      <a href=3D"https://www.webstaurantstore.com=\r\n/emailgo.cfm?go=3D577793" target=3D"_blank" style=3D"padding: 10p=\r\nx 2px; color:#218c15; font-family: \'Open Sans\', \'Arial\', sans-ser=\r\nif; text-decoration:none; font-size: 14px; line-height: 26px;">=C2=\r\n=A0Shop Now=C2=A0=C2=A0=C2=A0</a>=0D=0A                      <a h=\r\nref=3D"https://www.webstaurantstore.com/emailgo.cfm?go=3D577745" =\r\ntarget=3D"_blank" style=3D"padding: 10px 2px; color:#7f7f7f; font=\r\n-fami'
2023-05-26 09:34:04.786 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'ly: \'Open Sans\', \'Arial\', sans-serif; text-decoration:none; =\r\nfont-size: 14px; line-height: 26px;">=C2=A0Equipment=C2=A0=C2=A0=C2=\r\n=A0</a>=0D=0A                      <a href=3D"https://www.webstau=\r\nrantstore.com/emailgo.cfm?go=3D577747" target=3D"_blank" style=3D=\r\n"padding: 10px 2px; color:#7f7f7f; font-family: \'Open Sans\', \'Ari=\r\nal\', sans-serif; text-decoration:none; font-size: 14px; line-heig=\r\nht: 26px;">=C2=A0Food=C2=A0&=C2=A0Beverage=C2=A0=C2=A0</a>=0D=0A =\r\n                     <a href=3D"https://www.webstaurantstore.com/=\r\nemailgo.cfm?go=3D577749" target=3D"_blank" style=3D"padding: 10px=\r\n 2px; color:#7f7f7f; font-family: \'Open Sans\', \'Arial\', sans-seri=\r\nf; text-decoration:none; font-size: 14px; line-height: 26px;">=C2=\r\n=A0Dinnerware=C2=A0=C2=A0=C2=A0</a>=0D=0A                      <a=\r\n href=3D"https://www.webstaurantstore.com/emailgo.cfm?go=3D577751=\r\n" target=3D"_blank" style=3D"padding: 10px 2px; color:#7f7f7f; fo=\r\nnt-family: \'Open Sans\', \'Arial\', sans-serif; text-decoration:none=\r\n; font-size: 14px; line-height: 26px;">=C2=A0Disposables=C2=A0=C2=\r\n=A0</a>=0D=0A                  </td>=0D=0A                  </tr>=\r\n=0D=0A                  <tr><td height=3D"10"></td></tr>=0D=0A=0D=0A=\r\n=0D=0A                    <!-- Coupon Code SHOP ALL LINK -->=0D=0A=\r\n                    <tr>=0D=0A                        <td style=3D=\r\n"text-align: cen'
2023-05-26 09:34:04.800 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'ter;">=0D=0A                            <table st=\r\nyle=3D"max-width: 100%;" width=3D"100%" cellspacing=3D"0" cellpad=\r\nding=3D"0" bgcolor=3D"#111111">=0D=0A                            =\r\n      <tbody><tr>=0D=0A                                    <td cl=\r\nass=3D"column" width=3D"55%" valign=3D"middle" style=3D"text-alig=\r\nn:center; text-decoration:none;" bgcolor=3D"#111111">=0D=0A      =\r\n                                  <table width=3D"100%" cellspaci=\r\nng=3D"0" cellpadding=3D"0">=0D=0A                                =\r\n              <tbody><tr>=0D=0A                                  =\r\n              <td class=3D"text--right" style=3D"padding-bottom: =\r\n10px; padding-top: 20px; padding-right: 10px; padding-left: 10px;=\r\n text-align: center;">=0D=0A                                     =\r\n                <!--[if (gte mso 6)|(IE)]>=0D=0A                 =\r\n                                       <table width=3D"100%" cell=\r\nspacing=3D"0" cellpadding=3D"0">=0D=0A                           =\r\n                                 <tr>=0D=0A                      =\r\n                                        <td align=3D"right">=0D=0A=\r\n                                                      <![endif]--=\r\n>=0D=0A                                                    <div>=0D=0A=\r\n                                                        <!--[if m=\r\nso]>=0D=0A                  '
2023-05-26 09:34:04.801 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'                                     =\r\n   <span style=3D"text-align: right !important; display: inline-b=\r\nlock;">=0D=0A                                                    =\r\n      <v:roundrect href=3D"https://www.webstaurantstore.com/email=\r\ngo.cfm?go=3D577791" xmlns:v=3D"urn:schemas-microsoft-com:vml" xml=\r\nns:w=3D"urn:schemas-microsoft-com:office:word" style=3D"height:49=\r\npx;v-text-anchor:middle;width:200px;" arcsize=3D"3%" stroke=3D"f"=\r\n fillcolor=3D"#D72322">=0D=0A                                    =\r\n                      <w:anchorlock/>=0D=0A                      =\r\n                                    <center>=0D=0A               =\r\n                                         <![endif]-->=0D=0A      =\r\n                                                  <a href=3D"http=\r\ns://www.webstaurantstore.com/emailgo.cfm?go=3D577791" target=3D"_=\r\nblank" style=3D"display: block; text-decoration:none; color: #fff=\r\nfff;">=0D=0A                                                     =\r\n   <span style=3D"background-color:#D72322;color:#ffffff;display:=\r\ninline-block;font-family: \'proxima-ss-bold\', \'Open Sans\', \'Arial\'=\r\n, sans-serif;font-size:14px;line-height:49px;text-align:center;te=\r\nxt-decoration:none;width:220px;-webkit-text-size-adjust:none;marg=\r\nin:0 auto;">=0D=0A                    '
2023-05-26 09:34:04.801 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'                           =\r\n           <b>SHOP ALL DEALS!</b>=0D=0A                          =\r\n                              </span>=0D=0A                      =\r\n                                  </a>=0D=0A                     =\r\n                                   <!--[if mso]>=0D=0A           =\r\n                                               </center>=0D=0A   =\r\n                                                       </v:roundr=\r\nect>=0D=0A                                                       =\r\n   </span>=0D=0A                                                 =\r\n     <![endif]-->=0D=0A                                          =\r\n          </div>=0D=0A                                           =\r\n          <!--[if (gte mso 6)|(IE)]>=0D=0A                       =\r\n                                   </td>=0D=0A                   =\r\n                                       </tr>=0D=0A               =\r\n                                           </table>=0D=0A        =\r\n                                              <![endif]-->=0D=0A =\r\n                                               </td>=0D=0A       =\r\n                                       </tr>=0D=0A               =\r\n                           </tbody></table>=0D=0A                =\r\n                    </td>=0D=0A                                  =\r\n  <td class=3D"column" width=3D"45%" valign=3D"middle" s'
2023-05-26 09:34:04.802 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'tyle=3D"t=\r\next-decoration:none; text-align: center;" bgcolor=3D"#111111">=0D=0A=\r\n                                        <table width=3D"100%" cel=\r\nlspacing=3D"0" cellpadding=3D"0">=0D=0A                          =\r\n                  <tbody><tr>=0D=0A                              =\r\n                  <td class=3D"padding-top--0 text--left" style=3D=\r\n"padding-bottom: 5px; padding-top: 15px; padding-right: 10px; pad=\r\nding-left: 10px; background-color: #111111;">=0D=0A              =\r\n                                    <a href=3D"https://www.websta=\r\nurantstore.com/emailgo.cfm?go=3D577791" target=3D"_blank" style=3D=\r\n"display: block; text-decoration:none; color: #ffffff;">=0D=0A   =\r\n                                                   <span style=3D=\r\n"font-size:12px; line-height:16px; font-family: \'proxima-ss-reg\',=\r\n \'Open Sans\', \'Arial\', sans-serif;  color:#e0e0e0;">Use code:=C2=A0=\r\n</span>=0D=0A                                                    =\r\n<span style=3D"font-size:16px; line-height:16px; font-family: \'pr=\r\noxima-ss-bold\', \'Open Sans\', \'Arial\', sans-serif;  color:#eb212e;=\r\n"><b>EXCLUSIVE</b></span><br>=0D=0A                              =\r\n                      <span style=3D"font-size:11px; line-height:=\r\n16px; font-family: \'proxima-ss-reg\', \'Open Sans\', \'Arial\', sans-s=\r\nerif;  color:#aeaeae;">Deals=C2=A0end=C2=A05/27 at=C2=A0Midnight=C2'
2023-05-26 09:34:04.802 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'=\r\n=A0EST</span>=0D=0A                                              =\r\n      </a>=0D=0A                                                <=\r\n/td>=0D=0A                                            </tr>=0D=0A=\r\n                                        </tbody></table>=0D=0A   =\r\n                                 </td>=0D=0A                     =\r\n           </tr>=0D=0A                                <tr><td hei=\r\nght=3D"10"></td></tr>=0D=0A                            </tbody></=\r\ntable>=0D=0A=0D=0A                        </td>=0D=0A            =\r\n        </tr>=0D=0A                    <!-- End SHOP ALL link -->=\r\n=0D=0A                  <!-- End Promo Code Bar -->=0D=0A=0D=0A  =\r\n              </table>=0D=0A                <!-- End Browse By Bu=\r\nsiness Type -->=0D=0A=0D=0A=0D=0A            <!-- Message Content=\r\n -->=0D=0A           <table border=3D"0" width=3D"100%" cellpaddi=\r\nng=3D"0" cellspacing=3D"0" bgcolor=3D"#ffffff">=0D=0A=0D=0A    <!=\r\n-- One Block Grid Section -->=0D=0A    <tr>=0D=0A      <td valign=\r\n=3D"middle" align=3D"center" style=3D"text-align: center;">=0D=0A=\r\n          <a href=3D"https://www.webstaurantstore.com/emailgo.cfm=\r\n?go=3D577759" target=3D"_blank">=0D=0A          <img alt=3D"Ice C=\r\nream Toppings" src=3D"https://www.webstaurantstore.com/uploads/fl=\r\nyer/2023/5/5.25_Standard/may25-email_01.jpg" width=3D"100%" align=\r\n=3D"center" bor'
2023-05-26 09:34:04.803 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'der=3D"0" style=3D"margin: auto; text-align: cente=\r\nr; display: block;">=0D=0A          </a>=0D=0A      </td>=0D=0A  =\r\n  </tr>=0D=0A    <!-- One Block Grid Section End-->=0D=0A\t<!-- On=\r\ne Block Grid Section -->=0D=0A    <tr>=0D=0A      <td valign=3D"m=\r\niddle" align=3D"center" style=3D"text-align: center;">=0D=0A     =\r\n     <a href=3D"https://www.webstaurantstore.com/emailgo.cfm?go=3D=\r\n577761" target=3D"_blank">=0D=0A          <img alt=3D"Ice Cream T=\r\nopping Ideas" src=3D"https://www.webstaurantstore.com/uploads/fly=\r\ner/2023/5/5.25_Standard/may25-email_02.jpg" width=3D"100%" align=3D=\r\n"center" border=3D"0" style=3D"margin: auto; text-align: center; =\r\ndisplay: block;">=0D=0A          </a>=0D=0A      </td>=0D=0A    <=\r\n/tr>=0D=0A    <!-- One Block Grid Section End-->=0D=0A\t<!-- One B=\r\nlock Grid Section -->=0D=0A    <tr>=0D=0A      <td valign=3D"midd=\r\nle" align=3D"center" style=3D"text-align: center;">=0D=0A        =\r\n  <a href=3D"https://www.webstaurantstore.com/emailgo.cfm?go=3D57=\r\n7763" target=3D"_blank">=0D=0A          <img alt=3D"Serving & Dis=\r\nplay Trays" src=3D"https://www.webstaurantstore.com/uploads/flyer=\r\n/2023/5/5.25_Standard/may25-email_03.jpg" width=3D"100%" align=3D=\r\n"center" border=3D"0" style=3D"margin: auto; text-align: center; =\r\ndisplay: block;">=0D=0A          </a>=0D=0A      </td>=0D=0A    <=\r\n/tr>=0D=0A    <!-- One Block G'
2023-05-26 09:34:04.803 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'rid Section End-->=0D=0A\t<!-- One B=\r\nlock Grid Section -->=0D=0A    <tr>=0D=0A      <td valign=3D"midd=\r\nle" align=3D"center" style=3D"text-align: center;">=0D=0A        =\r\n  <a href=3D"https://www.webstaurantstore.com/emailgo.cfm?go=3D57=\r\n7765" target=3D"_blank">=0D=0A          <img alt=3D"Outdoor Dinin=\r\ng Must Haves" src=3D"https://www.webstaurantstore.com/uploads/fly=\r\ner/2023/5/5.25_Standard/may25-email_04.jpg" width=3D"100%" align=3D=\r\n"center" border=3D"0" style=3D"margin: auto; text-align: center; =\r\ndisplay: block;">=0D=0A          </a>=0D=0A      </td>=0D=0A    <=\r\n/tr>=0D=0A    <!-- One Block Grid Section End-->=0D=0A\t<!-- One B=\r\nlock Grid Section -->=0D=0A    <tr>=0D=0A      <td valign=3D"midd=\r\nle" align=3D"center" style=3D"text-align: center;">=0D=0A        =\r\n  <a href=3D"https://www.webstaurantstore.com/emailgo.cfm?go=3D57=\r\n7767" target=3D"_blank">=0D=0A          <img alt=3D"Ice Cream Top=\r\npings" src=3D"https://www.webstaurantstore.com/uploads/flyer/2023=\r\n/5/5.25_Standard/may25-email_05.jpg" width=3D"100%" align=3D"cent=\r\ner" border=3D"0" style=3D"margin: auto; text-align: center; displ=\r\nay: block;">=0D=0A          </a>=0D=0A      </td>=0D=0A    </tr>=0D=0A=\r\n    <!-- One Block Grid Section End-->=0D=0A\t<!-- One Block Grid =\r\nSection -->=0D=0A    <tr>=0D=0A      <td valign=3D"middle" align=3D=\r\n"center" style=3D"text-align: center;">'
2023-05-26 09:34:04.804 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'=0D=0A          <a href=3D=\r\n"https://www.webstaurantstore.com/emailgo.cfm?go=3D577789" target=\r\n=3D"_blank">=0D=0A          <img alt=3D"How to Start an Ice Cream=\r\n Shop" src=3D"https://www.webstaurantstore.com/uploads/flyer/2023=\r\n/5/5.25_Standard/may25-email_06.jpg" width=3D"100%" align=3D"cent=\r\ner" border=3D"0" style=3D"margin: auto; text-align: center; displ=\r\nay: block;">=0D=0A          </a>=0D=0A      </td>=0D=0A    </tr>=0D=0A=\r\n    <!-- One Block Grid Section End-->=0D=0A\t<!-- One Block Grid =\r\nSection -->=0D=0A    <tr>=0D=0A      <td valign=3D"middle" align=3D=\r\n"center" style=3D"text-align: center;">=0D=0A          <a href=3D=\r\n"https://www.webstaurantstore.com/emailgo.cfm?go=3D577769" target=\r\n=3D"_blank">=0D=0A          <img alt=3D"Bubble Tea Supplies" src=3D=\r\n"https://www.webstaurantstore.com/uploads/flyer/2023/5/5.25_Stand=\r\nard/may25-email_07.jpg" width=3D"100%" align=3D"center" border=3D=\r\n"0" style=3D"margin: auto; text-align: center; display: block;">=0D=0A=\r\n          </a>=0D=0A      </td>=0D=0A    </tr>=0D=0A    <!-- One =\r\nBlock Grid Section End-->=0D=0A\t<!-- One Block Grid Section -->=0D=0A=\r\n    <tr>=0D=0A      <td valign=3D"middle" align=3D"center" style=3D=\r\n"text-align: center;">=0D=0A          <a href=3D"https://www.webs=\r\ntaurantstore.com/emailgo.cfm?'
2023-05-26 09:34:04.804 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'go'
2023-05-26 09:34:04.804 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'=3D577771" target=3D"_blank">=0D=0A=\r\n          <img alt=3D"Ice Cream Shop Essentials" src=3D"https://w=\r\nww.webstaurantstore.com/uploads/flyer/2023/5/5.25_Standard/may25-=\r\nemail_08.jpg" width=3D"100%" align=3D"center" border=3D"0" style=3D=\r\n"margin: auto; text-align: center; display: block;">=0D=0A       =\r\n   </a>=0D=0A      </td>=0D=0A    </tr>=0D=0A    <!-- One Block G=\r\nrid Section End-->=0D=0A\t<!-- One Block Grid Section -->=0D=0A   =\r\n <tr>=0D=0A      <td valign=3D"middle" align=3D"center" style=3D"=\r\ntext-align: center;">=0D=0A          <a href=3D"https://www.webst=\r\naurantstore.com/emailgo.cfm?go=3D577773" target=3D"_blank">=0D=0A=\r\n          <img alt=3D"Hand Sinks and Accessories" src=3D"https://=\r\nwww.webstaurantstore.com/uploads/flyer/2023/5/5.25_Standard/may25=\r\n-email_09.jpg" width=3D"100%" align=3D"center" border=3D"0" style=\r\n=3D"margin: auto; text-align: center; display: block;">=0D=0A    =\r\n      </a>=0D=0A      </td>=0D=0A    </tr>=0D=0A    <!-- One Bloc=\r\nk Grid Section End-->=0D=0A\t<!-- One Block Grid Section -->=0D=0A=\r\n    <tr>=0D=0A      <td valign=3D"middle" align=3D"center" style=3D=\r\n"text-align: center;">=0D=0A          <a href=3D"https://www.webs=\r\ntaurantstore.com/emailgo.cfm?go=3D577775" target=3D"_blank">=0D=0A=\r\n          <img alt=3D"Detergent" src=3D"https://www.webstaurantst=\r\nore.com/uploads/flyer/2023/5/5.25_Standard/'
2023-05-26 09:34:04.805 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'may25-email_10.jpg" wi=\r\ndth=3D"100%" align=3D"center" border=3D"0" style=3D"margin: auto;=\r\n text-align: center; display: block;">=0D=0A          </a>=0D=0A =\r\n     </td>=0D=0A    </tr>=0D=0A    <!-- One Block Grid Section En=\r\nd-->=0D=0A\t<!-- One Block Grid Section -->=0D=0A    <tr>=0D=0A   =\r\n   <td valign=3D"middle" align=3D"center" style=3D"text-align: ce=\r\nnter;">=0D=0A          <a href=3D"https://www.webstaurantstore.co=\r\nm/emailgo.cfm?go=3D577777" target=3D"_blank">=0D=0A          <img=\r\n alt=3D"Pizza Tools" src=3D"https://www.webstaurantstore.com/uplo=\r\nads/flyer/2023/5/5.25_Standard/may25-email_11.jpg" width=3D"100%"=\r\n align=3D"center" border=3D"0" style=3D"margin: auto; text-align:=\r\n center; display: block;">=0D=0A          </a>=0D=0A      </td>=0D=0A=\r\n    </tr>=0D=0A    <!-- One Block Grid Section End-->=0D=0A\t<!-- =\r\nOne Block Grid Section -->=0D=0A    <tr>=0D=0A      <td valign=3D=\r\n"middle" align=3D"center" style=3D"text-align: center;">=0D=0A   =\r\n       <a href=3D"https://www.webstaurantstore.com/emailgo.cfm?go=\r\n=3D577779" target=3D"_blank">=0D=0A          <img alt=3D"Sanitair=\r\ne Floor Care" src=3D"https://www.webstaurantstore.com/uploads/fly=\r\ner/2023/5/5.25_Standard/may25-email_12.jpg" width=3D"100%" align=3D=\r\n"center" border=3D"0" style=3D"margin: auto; text-align: center; =\r\ndisplay: block;">=0D=0A          </a>=0D=0A      </td>='
2023-05-26 09:34:04.806 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'0D=0A    <=\r\n/tr>=0D=0A    <!-- One Block Grid Section End-->=0D=0A\t<!-- One B=\r\nlock Grid Section -->=0D=0A    <tr>=0D=0A      <td valign=3D"midd=\r\nle" align=3D"center" style=3D"text-align: center;">=0D=0A        =\r\n  <a href=3D"https://www.webstaurantstore.com/emailgo.cfm?go=3D57=\r\n7781" target=3D"_blank">=0D=0A          <img alt=3D"Trash Can Lin=\r\ners" src=3D"https://www.webstaurantstore.com/uploads/flyer/2023/5=\r\n/5.25_Standard/may25-email_13.jpg" width=3D"100%" align=3D"center=\r\n" border=3D"0" style=3D"margin: auto; text-align: center; display=\r\n: block;">=0D=0A          </a>=0D=0A      </td>=0D=0A    </tr>=0D=0A=\r\n    <!-- One Block Grid Section End-->=0D=0A\t<!-- One Block Grid =\r\nSection -->=0D=0A    <tr>=0D=0A      <td valign=3D"middle" align=3D=\r\n"center" style=3D"text-align: center;">=0D=0A          <a href=3D=\r\n"https://www.webstaurantstore.com/emailgo.cfm?go=3D577783" target=\r\n=3D"_blank">=0D=0A          <img alt=3D"Rational Intelligent Cook=\r\ning" src=3D"https://www.webstaurantstore.com/uploads/flyer/2023/5=\r\n/5.25_Standard/may25-email_14.jpg" width=3D"100%" align=3D"center=\r\n" border=3D"0" style=3D"margin: auto; text-align: center; display=\r\n: block;">=0D=0A          </a>=0D=0A      </td>=0D=0A    </tr>=0D=0A=\r\n    <!-- One Block Grid Section End-->=0D=0A\t<!-- One Block Grid =\r\nSection -->=0D=0A    <tr>=0D=0A      <td valign=3D"middle" align='
2023-05-26 09:34:04.806 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'3D=\r\n"center" style=3D"text-align: center;">=0D=0A          <a href=3D=\r\n"https://www.webstaurantstore.com/emailgo.cfm?go=3D577785" target=\r\n=3D"_blank">=0D=0A          <img alt=3D"Host Signs and Stations" =\r\nsrc=3D"https://www.webstaurantstore.com/uploads/flyer/2023/5/5.25=\r\n_Standard/may25-email_15.jpg" width=3D"100%" align=3D"center" bor=\r\nder=3D"0" style=3D"margin: auto; text-align: center; display: blo=\r\nck;">=0D=0A          </a>=0D=0A      </td>=0D=0A    </tr>=0D=0A  =\r\n  <!-- One Block Grid Section End-->=0D=0A\t<!-- One Block Grid Se=\r\nction -->=0D=0A    <tr>=0D=0A      <td valign=3D"middle" align=3D=\r\n"center" style=3D"text-align: center;">=0D=0A          <a href=3D=\r\n"https://www.webstaurantstore.com/emailgo.cfm?go=3D577787" target=\r\n=3D"_blank">=0D=0A          <img alt=3D"Ceiling Fans" src=3D"http=\r\ns://www.webstaurantstore.com/uploads/flyer/2023/5/5.25_Standard/m=\r\nay25-email_16.jpg" width=3D"100%" align=3D"center" border=3D"0" s=\r\ntyle=3D"margin: auto; text-align: center; display: block;">=0D=0A=\r\n          </a>=0D=0A      </td>=0D=0A    </tr>=0D=0A    <!-- One =\r\nBlock Grid Section End-->=0D=0A=0D=0A</table>=0D=0A=0D=0A        =\r\n    <!-- End Message Content -->=0D=0A=0D=0A            <!-- Outl=\r\net Footer -->=0D=0A           =0D=0A\t<!--=0D=0A\tOUTLET - MESSAGE =\r\nSTART=0D=0A\t-->=0D=0A\t<table width=3D"100%" cellpadding=3D"0" cel=\r\nlspacing=3D"0'
2023-05-26 09:34:04.807 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'" align=3D"center" style=3D"margin: 20px auto; borde=\r\nr: 1px solid #d9ddd7;">=0D=0A\t\t<tr>=0D=0A\t\t\t<td style=3D"padding:=\r\n 10px 0 0; text-align: center;">=0D=0A\t\t\t\t<a href=3D"https://www.=\r\nwebstaurantstore.com/emailgo.cfm?go=3D578011">=0D=0A\t\t\t\t\t<img src=\r\n=3D"https://www.webstaurantstore.com/uploads/images/2017/6/scratc=\r\nh-and-dent-header.jpg" alt=3D"Outlet Items" width=3D"100%" align=3D=\r\n"center" border=3D"0" style=3D"margin: auto; text-align: center; =\r\ndisplay: block;">=0D=0A\t\t\t\t</a>=0D=0A\t\t\t</td>=0D=0A\t\t</tr>=0D=0A\t=\r\n\t<tr>=0D=0A\t\t\t<td style=3D"background-color: #f1f1f1; font-family=\r\n: arial, sans-serif; font-size: 12px; color: #000; text-align: ce=\r\nnter; padding: 10px; font-weight: 700;" align=3D"center">=0D=0A\t\t=\r\n\t\t<b>Outlet Items priced to sell - Check out some featured items =\r\nbelow!</b>=0D=0A\t\t\t</td>=0D=0A\t\t</tr>=0D=0A\t\t<tr>=0D=0A\t\t\t<td>=0D=0A=\r\n\t\t\t\t<table cellpadding=3D"0" cellspacing=3D"0" align=3D"center" b=\r\norder=3D"0" width=3D"100%" id=3D"bodyTable" style=3D"margin:0 aut=\r\no;">=0D=0A\t\t\t\t\t<!--[if (gte mso 9)|(IE)]>=0D=0A\t\t\t\t\t<tr>=0D=0A\t\t\t=\r\n\t\t\t<td>=0D=0A\t\t\t\t\t\t\t<table width=3D"620" align=3D"center" cellpad=\r\nding=3D"0" cellspacing=3D"0" border=3D"0">=0D=0A\t\t\t\t\t<![endif]-->=\r\n=0D=0A\t\t\t\t\t<tr>=0D=0A\t\t\t\t\t\t<td>=0D=0A\t\t\t\t\t\t\t<table border=3D"0" w=\r\nidth=3D"100%" cellpadding=3D"10" cellspacing=3D"0" align=3D"cente=\r\nr" style=3D"max-width: 640'
2023-05-26 09:34:04.807 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'px; margin: auto; text-align:center;" c=\r\nlass=3D"email-container">=0D=0A\t\t\t\t\t\t\t\t<!-- //////////////// TWO =\r\nCOLUMN LAYOUT /// COLLAPSES TO ONE ////////////////////-->=0D=0A\t=\r\n\t\t\t\t\t\t\t<tr>=0D=0A\t\t\t\t\t\t\t\t\t<td class=3D"two-column">=0D=0A\t\t\t\t\t\t\t\t=\r\n\t\t<!--[if (gte mso 9)|(IE)]>=0D=0A\t\t\t\t\t\t\t\t\t\t<table width=3D"100%"=\r\n>=0D=0A\t\t\t\t\t\t\t\t\t\t\t<tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t<td width=3D"50%" valign=3D=\r\n"top">=0D=0A\t\t\t\t\t\t\t\t\t\t<![endif]-->=0D=0A\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t=\r\n\t\t<div class=3D"column" style=3D"display:inline-block;">=0D=0A\t\t\t=\r\n\t\t\t\t\t\t\t\t\t<table width=3D"100%" style=3D"margin: 0 auto;">=0D=0A\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t<tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td class=3D"inner" align=3D"c=\r\nenter">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<table class=3D"contents" width=3D"10=\r\n0%">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t<td align=3D"left" colspan=3D"2" valign=3D"top" style=\r\n=3D"font-size:20px; text-decoration:none; font-family: arial, san=\r\ns-serif; line-height:20px; padding: 10px; width:50%;">=0D=0A\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<table border=3D"0" cellpadding=3D"0" cellspacing=3D=\r\n"0" width=3D"100%">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tbody>=0D=0A\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td><a rel=3D"nofol=\r\nlow" rel=3D"noreferrer" href=3D"https://www.webstaurantstore.com/=\r\nemailgo.cfm?go=3D578013">=0D=0A\t\t'
2023-05-26 09:34:04.808 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img src=3D=\r\n"https://cdnimg.webstaurantstore.com/images/outlet/flyers/6/1/613=\r\n99.jpg" class=3D"outlet-image" width=3D"135" style=3D"border:0">=0D=0A=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</a>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>=0D=0A=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr>=0D=0A\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td height=3D"10"></td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t</tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=\r\n\t\t\t\t<td height=3D"50" valign=3D"top" style=3D"overflow:hidden; he=\r\night:50px;">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a rel=3D"nofollow" rel=3D=\r\n"noreferrer" href=3D"https://www.webstaurantstore.com/emailgo.cfm=\r\n?go=3D578013" style=3D"font-family:arial,sans-serif; font-size:12=\r\npx; color:#298200; text-decoration:none; line-height:1.4; font-we=\r\night:700; height:50px; max-height:50px; overflow:hidden; display:=\r\nblock;">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=\r\n\t\t\t\t<b>Regency 84 1/2" 16-Gauge Stainless Steel Three Compartment=\r\n C...</b>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=\r\n\t\t\t</a>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=\r\n\t\t</tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=\r\n\t<td height=3D"10"></td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td height=3D"2=\r\n0" style=3D"font-family:arial,sans-serif; f'
2023-05-26 09:34:04.808 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'ont-size:11px; color:#=\r\n000">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<=\r\nb>Price New: $809.00</b>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td height=3D"30" =\r\nvalign=3D"center" style=3D"padding-top:2px">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span style=3D"font-family:=\r\narial,sans-serif; font-size:22px; color:#CE3C11; font-weight:700"=\r\n>$473.40</span>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span style=3D"font-=\r\nfamily:arial,sans-serif; font-size:14px; color:#000; font-weight:=\r\n700">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<b>/EA</b>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t</span>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t</td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t</tbody>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</table>=0D=0A\t\t\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t</td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td a=\r\nlign=3D"left" colspan=3D"2" valign=3D"top" style=3D"font-size:20p=\r\nx; text-decoration:none; font-family: arial, sans-serif; line-hei=\r\nght:20px; padding: 10px; width:50%;">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ta=\r\nble border=3D"0" cellpadding=3D"0" cellspacing=3D"0" width=3D"100=\r\n%">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tbody>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<t=\r\nr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td><a rel=3D"nofollow" rel=3D"'
2023-05-26 09:34:04.808 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'nore=\r\nferrer" href=3D"https://www.webstaurantstore.com/emailgo.cfm?go=3D=\r\n578015">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img src=3D"https://cdnimg.w=\r\nebstaurantstore.com/images/outlet/flyers/6/1/61649.jpg" class=3D"=\r\noutlet-image" width=3D"135" style=3D"border:0">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t</a>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t<td height=3D"10"></td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td height=3D=\r\n"50" valign=3D"top" style=3D"overflow:hidden; height:50px;">=0D=0A=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a rel=3D"nofollow" rel=3D"noreferrer" hre=\r\nf=3D"https://www.webstaurantstore.com/emailgo.cfm?go=3D578015" st=\r\nyle=3D"font-family:arial,sans-serif; font-size:12px; color:#29820=\r\n0; text-decoration:none; line-height:1.4; font-weight:700; height=\r\n:50px; max-height:50px; overflow:hidden; display:block;">=0D=0A\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<b>Vulcan VC=\r\n4GD-1 1D150K Natural Gas Single Deck Full Size Gas ...</b>=0D=0A\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</a>=0D=0A\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td height=3D"1=\r\n0"></td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=\r\n\t\t<'
2023-05-26 09:34:04.809 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td height=3D"20" style=3D"font=\r\n-family:arial,sans-serif; font-size:11px; color:#000">=0D=0A\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<b>Price New: $6,=\r\n680.00</b>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=\r\n\t\t</td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=\r\n\t<tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td height=3D"30" valign=3D"cent=\r\ner" style=3D"padding-top:2px">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span style=3D"font-family:arial,sans-ser=\r\nif; font-size:22px; color:#CE3C11; font-weight:700">$6,012.00</sp=\r\nan>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span style=3D"font-family:arial=\r\n,sans-serif; font-size:14px; color:#000; font-weight:700">=0D=0A\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<b>/EA</b>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<=\r\n/span>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</=\r\ntd>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tb=\r\nody>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</table>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td=\r\n>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t</table>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A=\r\n\t\t\t\t\t\t\t\t\t\t\t\t</table>=0D=0A\t\t\t\t\t\t\t\t\t\t\t</div>=0D=0A\t\t\t\t\t\t\t\t\t\t\t=0D=0A=\r\n\t\t\t\t\t\t\t\t\t\t\t\t<!--[if (gte mso 9)|(IE)]>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>=0D=0A=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td width=3D"50%" valign=3D"top">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t=\r\n<![endif]--'
2023-05-26 09:34:04.809 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'>=0D=0A\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t<div class=3D"colum=\r\nn" style=3D"display:inline-block;">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t<table width=\r\n=3D"100%" style=3D"margin: 0 auto;">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t<tr>=0D=0A=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td class=3D"inner" align=3D"center">=0D=0A\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t<table class=3D"contents" width=3D"100%">=0D=0A\t\t\t\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t<tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td align=\r\n=3D"left" colspan=3D"2" valign=3D"top" style=3D"font-size:20px; t=\r\next-decoration:none; font-family: arial, sans-serif; line-height:=\r\n20px; padding: 10px; width:50%;">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<table =\r\nborder=3D"0" cellpadding=3D"0" cellspacing=3D"0" width=3D"100%">=0D=0A=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tbody>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr>=0D=0A\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td><a rel=3D"nofollow" rel=3D"noreferrer" h=\r\nref=3D"https://www.webstaurantstore.com/emailgo.cfm?go=3D578017">=\r\n=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img src=3D"https://cdnimg.webstaura=\r\nntstore.com/images/outlet/flyers/6/1/61655.jpg" class=3D"outlet-i=\r\nmage" width=3D"135" style=3D"border:0">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=\r\n\t\t\t</a>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=\r\n\t\t</tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=\r\n\t<td height=3D"10"></td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td height=3D"5=\r\n0" valign=3D"top" style='
2023-05-26 09:34:04.810 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'3D"overflow:hidden; height:50px;">=0D=0A\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a rel=3D"nofollow" rel=3D"noreferrer" href=\r\n=3D"https://www.webstaurantstore.com/emailgo.cfm?go=3D578017" sty=\r\nle=3D"font-family:arial,sans-serif; font-size:12px; color:#298200=\r\n; text-decoration:none; line-height:1.4; font-weight:700; height:=\r\n50px; max-height:50px; overflow:hidden; display:block;">=0D=0A\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<b>Beverage-A=\r\nir SPE60HC-16 Elite Series 60" 2 Door Refrigerated...</b>=0D=0A\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</a>=0D=0A\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td height=3D"10=\r\n"></td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=\r\n\t<tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td height=3D"20" style=3D"font-=\r\nfamily:arial,sans-serif; font-size:11px; color:#000">=0D=0A\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<b>Price New: $4,9=\r\n64.00</b>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=\r\n\t</td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=\r\n<tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td height=3D"30" valign=3D"cente=\r\nr" style=3D"padding-top:2px">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span style'
2023-05-26 09:34:04.810 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'=3D"font-family:arial,sans-seri=\r\nf; font-size:22px; color:#CE3C11; font-weight:700">$3,971.20</spa=\r\nn>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span style=3D"font-family:arial,=\r\nsans-serif; font-size:14px; color:#000; font-weight:700">=0D=0A\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<b>/EA</b>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=09\t\t\t\t\t\t=\r\n</span>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<=\r\n/td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</t=\r\nbody>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</table>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</t=\r\nd>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td align=3D"lef=\r\nt" colspan=3D"2" valign=3D"top" style=3D"font-size:20px; text-dec=\r\noration:none; font-family: arial, sans-serif; line-height:20px; p=\r\nadding: 10px; width:50%;">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<table border=3D=\r\n"0" cellpadding=3D"0" cellspacing=3D"0" width=3D"100%">=0D=0A\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tbody>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr>=0D=0A\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td><a rel=3D"nofollow" rel=3D"noreferrer" href=3D=\r\n"https://www.webstaurantstore.com/emailgo.cfm?go=3D578019">=0D=0A=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img src=3D"https://cdnimg.webstaurantstor=\r\ne.com/images/outlet/flyers/6/1/61669.jpg" class=3D"outlet-image" =\r\nwidth=3D"135" style=3D"border:0">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</a=\r\n>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tr=\r\n>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr>=0D=0A\t\t\t\t\t\t\t\t\t\t'
2023-05-26 09:34:04.810 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'\t\t\t\t\t\t\t\t\t\t\t\t<td h=\r\neight=3D"10"></td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A\t\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t<tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td height=3D"50" val=\r\nign=3D"top" style=3D"overflow:hidden; height:50px;">=0D=0A\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a rel=3D"nofollow" rel=3D"noreferrer" href=3D"ht=\r\ntps://www.webstaurantstore.com/emailgo.cfm?go=3D578019" style=3D"=\r\nfont-family:arial,sans-serif; font-size:12px; color:#298200; text=\r\n-decoration:none; line-height:1.4; font-weight:700; height:50px; =\r\nmax-height:50px; overflow:hidden; display:block;">=0D=0A\t\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<b>Eagle Group SHT2=\r\n Natural Gas Steam Table Two Pan - All Stain...</b>=0D=0A\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</a>=0D=0A\t\t\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t</td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A\t\t\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t<tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td height=3D"10"></td=\r\n>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr>=0D=0A=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td height=3D"20" style=3D"font-family:aria=\r\nl,sans-serif; font-size:11px; color:#000">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<b>Price New: $1,379.00</b>=0D=0A=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>=0D=0A\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr>=0D=0A\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td height=3D"30" valign=3D"center" styl'
2023-05-26 09:34:04.811 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'e=3D"pad=\r\nding-top:2px">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t<span style=3D"font-family:arial,sans-serif; font-size:22=\r\npx; color:#CE3C11; font-weight:700">$896.35</span>=0D=0A\t\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span style=3D"font-family:arial,sans-serif; font-=\r\nsize:14px; color:#000; font-weight:700">=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t<b>/EA</b>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</span>=0D=0A\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>=0D=0A\t\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tbody>=0D=0A\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t\t\t\t\t\t</table>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t=\r\n\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</table>=0D=0A=\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t</ta=\r\nble>=0D=0A\t\t\t\t\t\t\t\t\t\t\t</div>=0D=0A\t\t\t\t\t\t\t\t\t\t\t=0D=0A\t\t\t\t\t\t\t\t\t\t<!--[=\r\nif (gte mso 9)|(IE)]>=0D=0A\t\t\t\t\t\t\t\t\t\t\t\t</td>=0D=0A\t\t\t\t\t\t\t\t\t\t\t</tr=\r\n>=0D=0A\t\t\t\t\t\t\t\t\t\t</table>=0D=0A\t\t\t\t\t\t\t\t\t\t<![endif]-->=0D=0A\t\t\t\t\t\t=\r\n\t\t\t</td>=0D=0A\t\t\t\t\t\t\t\t</tr>=0D=0A\t\t\t\t\t\t\t\t<!-- ////////////  END T=\r\nWO COLUMN LAYOUT  ////////////// -->=0D=0A\t\t\t\t\t\t\t</table>=0D=0A\t\t=\r\n\t\t\t\t</td>=0D=0A\t\t\t\t\t</tr>=0D=0A\t\t\t\t\t<!--[if (gte mso 9)|(IE)]>=0D=0A=\r\n\t\t\t\t\t\t\t</table>=0D=0A\t\t\t\t\t\t</td>=0D=0A\t\t\t\t\t</tr>=0D=0A\t\t\t\t\t<![end=\r\nif]-->=0D=0A\t\t\t\t</table>=0D=0A\t\t\t</td>=0D=0A\t\t</tr>=0D=0A\t\t<tr>=0D=0A=\r\n\t\t\t<!--[if (gte mso 9)|(IE)]>=0D=0A\t\t\t<td style=3D"border-top: 1p'
2023-05-26 09:34:04.811 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'=\r\nx solid #d9ddd7;" width=3D"100%" height=3D"1px"></td>=0D=0A\t\t\t<![=\r\nendif]-->=0D=0A\t\t\t<td>=0D=0A\t\t\t\t<div style=3D"margin-left:20px; m=\r\nargin-right:20px; border-top:1px solid #d9ddd7; height:1px;"></di=\r\nv>=0D=0A\t\t\t</td>=0D=0A\t\t</tr>=0D=0A\t\t<tr>=0D=0A\t\t\t<td align=3D"ce=\r\nnter" style=3D"text-align:center; padding:10px;">=0D=0A\t\t\t\t<a rel=\r\n=3D"nofollow" rel=3D"noreferrer" href=3D"https://www.webstaurants=\r\ntore.com/emailgo.cfm?go=3D578011" style=3D"font-family:arial,sans=\r\n-serif; font-size:19px; font-weight:700; text-decoration:none;"><=\r\nb style=3D"color:#000;">More Available!</b>=0D=0A\t\t\t\t\t&nbsp;&nbsp=\r\n;<b style=3D"color:#CE3C11;">Shop Now</b>=0D=0A\t\t\t\t</a>=0D=0A\t\t\t<=\r\n/td>=0D=0A\t\t</tr>=0D=0A\t</table>=0D=0A\t<!--=0D=0A\tOUTLET - MESSAG=\r\nE END=0D=0A\t-->=0D=0A=0D=0A            <!-- End Outlet Footer -->=\r\n=0D=0A=0D=0A=0D=0A            <!-- Footer Content -->=0D=0A      =\r\n      <table cellpadding=3D"0" cellspacing=3D"0" align=3D"center"=\r\n style=3D"margin:0 auto;">=0D=0A              <tr><td height=3D"2=\r\n0"></td></tr>=0D=0A              <tr>=0D=0A                <td al=\r\nign=3D"center">=0D=0A                  <font style=3D"text-align:=\r\n center; font-family: sans-serif; font-size: 10px; line-height: 1=\r\n2px; display: block; color: #888888;"><span class=3D"applelinksgr=\r\nay">Deals end 5/27/2023 at Midnight EST</span></font>=0D=0A      =\r\n          </td>'
2023-05-26 09:34:04.812 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'=0D=0A              </tr>=0D=0A            </table=\r\n>=0D=0A            <table cellpadding=3D"0" cellspacing=3D"0" ali=\r\ngn=3D"center" style=3D"margin:0 auto;">=0D=0A              <tr><t=\r\nd height=3D"50"></td></tr>=0D=0A              <tr>=0D=0A         =\r\n       <td style=3D"padding:0 2px;"><a href=3D"https://twitter.co=\r\nm/Webstaurant" target=3D"_blank"><img class=3D"social-icon" width=\r\n=3D"30" src=3D"https://cdnimg.webstaurantstore.com/uploads/custom=\r\n_emails/2016/9/email-twitter-icon.png" style=3D"width:30px;" bord=\r\ner=3D"0"></a></td>=0D=0A                <td style=3D"padding:0 2p=\r\nx;"><a href=3D"https://www.instagram.com/WebstaurantStore/" targe=\r\nt=3D"_blank"><img class=3D"social-icon" width=3D"30" src=3D"https=\r\n://cdnimg.webstaurantstore.com/uploads/custom_emails/2016/9/email=\r\n-instagram-icon.png" style=3D"width:30px;" border=3D"0"></a></td>=\r\n=0D=0A                <td style=3D"padding:0 2px;"><a href=3D"htt=\r\nps://www.facebook.com/WebstaurantStore" target=3D"_blank"><img cl=\r\nass=3D"social-icon" width=3D"30" src=3D"https://cdnimg.webstauran=\r\ntstore.com/uploads/custom_emails/2016/9/email-fb-icon.png" style=3D=\r\n"width:30px;" border=3D"0"></a></td>=0D=0A                <td sty=\r\nle=3D"padding:0 2px;"><a href=3D"https://www.youtube.com/user/Web=\r\nstaurantStore" target=3D"_blank"><img class=3D"social-icon" width=\r\n=3D"30" src=3D"https://cdnimg.w'
2023-05-26 09:34:04.812 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'ebstaurantstore.com/uploads/custom=\r\n_emails/2016/9/email-youtube-icon.png" style=3D"width:30px;" bord=\r\ner=3D"0"></a></td>=0D=0A                <td style=3D"padding:0 2p=\r\nx;"><a href=3D"https://www.pinterest.com/webstaurant/" target=3D"=\r\n_blank"><img class=3D"social-icon" width=3D"30" src=3D"https://cd=\r\nnimg.webstaurantstore.com/uploads/custom_emails/2016/9/email-pint=\r\nerest-icon.png" style=3D"width:30px;" border=3D"0"></a></td>=0D=0A=\r\n                <td style=3D"padding:0 2px;"><a href=3D"https://w=\r\nww.webstaurantstore.com/blog/" target=3D"_blank"><img class=3D"so=\r\ncial-icon" width=3D"30" src=3D"https://cdnimg.webstaurantstore.co=\r\nm/uploads/custom_emails/2016/9/email-blog-icon.png" style=3D"widt=\r\nh:30px;" border=3D"0"></a></td>=0D=0A                </tr>=0D=0A =\r\n           </table>=0D=0A            <table cellpadding=3D"0" cel=\r\nlspacing=3D"0" align=3D"center" style=3D"margin:0 auto;">=0D=0A  =\r\n            <tr><td height=3D"15"></td></tr>=0D=0A              <=\r\ntr>=0D=0A                <td style=3D"font-family: arial, sans-se=\r\nrif; font-size:15px; color:#4b4b4b; text-align:center;">=0D=0A   =\r\n                 <a href=3D"https://www.webstaurantstore.com/emai=\r\nlgo.cfm?go=3D577753" target=3D"_blank" style=3D"color:#097f3b; fo=\r\nnt-size:11px; text-decoration:none;">My '
2023-05-26 09:34:04.813 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'Account</a>=C2=A0=C2=A0<f=\r\nont style=3D"color:#e0e0e0">|</font>=C2=A0=C2=A0=0D=0A           =\r\n         <a href=3D"https://www.webstaurantstore.com/emailgo.cfm?=\r\ngo=3D577757" target=3D"_blank" style=3D"color:#097f3b; font-size:=\r\n11px; text-decoration:none;">Food Service Resources</a>=C2=A0=C2=A0=\r\n<font style=3D"color:#e0e0e0;">|</font>=C2=A0=C2=A0=0D=0A        =\r\n            <a href=3D"https://www.webstaurantstore.com/emailgo.c=\r\nfm?go=3D577755" target=3D"_blank" style=3D"color:#097f3b; font-si=\r\nze:11px; text-decoration:none;">About Us</a>=0D=0A               =\r\n </td>=0D=0A              </tr>=0D=0A              <tr><td height=\r\n=3D"15"></td></tr>=0D=0A              <tr>=0D=0A                <=\r\ntd style=3D"text-align: center; font-family: sans-serif; font-siz=\r\ne: 11px; line-height: 12px; display: block; color: #888888;">=0D=0A=\r\n                  If you no longer wish to receive this type of e=\r\nmail, you=C2=A0can=C2=A0<a href=3D"https://www.webstaurantstore.c=\r\nom/unsubscribe.cfm?action=3Dupdate&tagIds=3D1&email=3Djonathan@br=\r\nixcellars.com&n=3D5927" style=3D"color:#777777; font-size:10px; t=\r\next-decoration:none;"><b>unsubscribe</b></a>.<br>=0D=0A          =\r\n      </td>=0D=0A              </tr>=0D=0A              <tr><td h=\r\neight=3D"8"></td></tr>=0D=0A              <tr>=0D=0A             =\r\n   <td style=3D"text-align: center; font-family: sans-'
2023-05-26 09:34:04.813 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'serif; font=\r\n-size: 11px; line-height: 15px; display: block; color: #888888;">=\r\n=0D=0A                 All Material Copyright =C2=A9 <font style=3D=\r\n"color:#888888 !important; text-decoration: none !important;">200=\r\n3-2023</font> WebstaurantStore<br>=0D=0A                  40 Cita=\r\ntion Lane, Lititz, PA <font style=3D"color:#888888 !important; te=\r\nxt-decoration: none !important;">17543</font>=0D=0A              =\r\n  </td>=0D=0A              </tr>=0D=0A              <tr><td heigh=\r\nt=3D"20"></td></tr>=0D=0A              <td><img src=3D"https://st=\r\nash.webstaurantstore.com/sm_box/?e=3D5549B5F669859C89B3D76F544EFD=\r\n8AA1437A4C9DC997A25A&e_num=3D5927" / height=3D"1" width=3D"1"></t=\r\nd>=0D=0A            </table>=0D=0A            <!-- End Footer Con=\r\ntent -->=0D=0A=0D=0A          </td>=0D=0A        </tr>=0D=0A=0D=0A=\r\n      </table>=0D=0A=0D=0A      <!-- End of Outlook-specific wrap=\r\nper-->=0D=0A      <!--[if (gte mso 9)|(IE)]>=0D=0A          </td>=\r\n=0D=0A        </tr>=0D=0A      </table>=0D=0A      <![endif]-->=0D=0A=\r\n      <!-- End of Outlook-specific wrapper-->=0D=0A    </td>=0D=0A=\r\n  </tr>=0D=0A</table>=0D=0A</body>=0D=0A</html>=0D=0A\r\n\r\n)\r\nJIGD9 OK Success\r\n'
2023-05-26 09:34:04.814 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'JIGD9 OK Success'
drjjr2 commented 1 year ago

Reloading the integration gives me this (I changed the email and password for the log)

2023-05-26 09:46:28.891 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'JIGD10 CLOSE\r\n'
2023-05-26 09:46:28.987 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'JIGD10 OK Returned to authenticated state. (Success)\r\n'
2023-05-26 09:46:28.988 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'JIGD10 OK Returned to authenticated state. (Success)'
2023-05-26 09:46:28.988 DEBUG (MainThread) [aioimaplib.aioimaplib] state -> AUTH
2023-05-26 09:46:28.990 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'JIGD11 LOGOUT\r\n'
2023-05-26 09:46:29.068 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* BYE LOGOUT Requested\r\nJIGD11 OK 73 good day (Success)\r\n'
2023-05-26 09:46:29.069 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'JIGD11 OK 73 good day (Success)'
2023-05-26 09:46:29.070 DEBUG (MainThread) [aioimaplib.aioimaplib] state -> LOGOUT
2023-05-26 09:46:29.113 DEBUG (MainThread) [aioimaplib.aioimaplib] connection lost: None
2023-05-26 09:46:29.147 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* OK Gimap ready for requests from 104.202.176.247 b22mb15295605otq\r\n'
2023-05-26 09:46:29.148 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'OANL0 CAPABILITY\r\n'
2023-05-26 09:46:29.169 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* CAPABILITY IMAP4rev1 UNSELECT IDLE NAMESPACE QUOTA ID XLIST CHILDREN X-GM-EXT-1 XYZZY SASL-IR AUTH=XOAUTH2 AUTH=PLAIN AUTH=PLAIN-CLIENTTOKEN AUTH=OAUTHBEARER AUTH=XOAUTH\r\nOANL0 OK Thats all she wrote! b22mb15295605otq\r\n'
2023-05-26 09:46:29.169 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'OANL0 OK Thats all she wrote! b22mb15295605otq'
2023-05-26 09:46:29.170 DEBUG (MainThread) [aioimaplib.aioimaplib] state -> NONAUTH
2023-05-26 09:46:29.171 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'OANL1 LOGIN example@example.com "apppasswordhere"\r\n'
2023-05-26 09:46:29.525 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* CAPABILITY IMAP4rev1 UNSELECT IDLE NAMESPACE QUOTA ID XLIST CHILDREN X-GM-EXT-1 UIDPLUS COMPRESS=DEFLATE ENABLE MOVE CONDSTORE ESEARCH UTF8=ACCEPT LIST-EXTENDED LIST-STATUS LITERAL- SPECIAL-USE APPENDLIMIT=35651584\r\nOANL1 OK example@example.com authenticated (Success)\r\n'
2023-05-26 09:46:29.525 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'OANL1 OK example@example.com authenticated (Success)'
2023-05-26 09:46:29.526 DEBUG (MainThread) [aioimaplib.aioimaplib] state -> AUTH
2023-05-26 09:46:29.527 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'OANL2 SELECT Inbox\r\n'
2023-05-26 09:46:29.652 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* FLAGS (\\Answered \\Flagged \\Draft \\Deleted \\Seen $Forwarded $Junk $NotJunk $NotPhishing $Phishing NotJunk)\r\n* OK [PERMANENTFLAGS (\\Answered \\Flagged \\Draft \\Deleted \\Seen $Forwarded $Junk $NotJunk $NotPhishing $Phishing NotJunk \\*)] Flags permitted.\r\n* OK [UIDVALIDITY 600650257] UIDs valid.\r\n* 79 EXISTS\r\n* 0 RECENT\r\n* OK [UIDNEXT 338360] Predicted next UID.\r\n* OK [HIGHESTMODSEQ 45215472]\r\nOANL2 OK [READ-WRITE] Inbox selected. (Success)\r\n'
2023-05-26 09:46:29.652 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'OANL2 OK [READ-WRITE] Inbox selected. (Success)'
2023-05-26 09:46:29.653 DEBUG (MainThread) [aioimaplib.aioimaplib] state -> SELECTED
2023-05-26 09:46:29.654 DEBUG (MainThread) [homeassistant.components.imap.coordinator] Finished fetching imap data in 0.000 seconds (success: True)
2023-05-26 09:46:29.656 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'OANL3 NOOP\r\n'
2023-05-26 09:46:29.700 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'OANL3 OK Success\r\n'
2023-05-26 09:46:29.701 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'OANL3 OK Success'
2023-05-26 09:46:29.702 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'OANL4 SEARCH CHARSET utf-8 UnSeen UnDeleted\r\n'
2023-05-26 09:46:29.866 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* SEARCH 8 9 14 18 20 24 28 29 30 39 41 42 45 52 53 55 56 57 58 59 62 63 64 65 66 67 68 71 72 73 74 75 76 77 78 79\r\nOANL4 OK SEARCH completed (Success)\r\n'
2023-05-26 09:46:29.866 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'OANL4 OK SEARCH completed (Success)'
2023-05-26 09:46:29.868 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'OANL5 FETCH 79 BODY.PEEK[]\r\n'
2023-05-26 09:46:29.930 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* 79 FETCH (BODY[] {4972}\r\nDelivered-To: example@example.com\r\nReceived: by 2002:a0c:e912:0:b0:626:7ec:17b6 with SMTP id a18csp434923qvo;\r\n        Fri, 26 May 2023 07:42:41 -0700 (PDT)\r\nX-Received: by 2002:aca:a80c:0:b0:38e:1564:9527 with SMTP id r12-20020ac'
2023-05-26 09:46:29.931 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'aa80c000000b0038e15649527mr1004908oie.1.1685112161473;\r\n        Fri, 26 May 2023 07:42:41 -0700 (PDT)\r\nARC-Seal: i=1; a=rsa-sha256; t=1685112161; cv=none;\r\n        d=google.com; s=arc-20160816;\r\n        b=xq64TSEuUtJstDtHJabeUxJzIFrjSz+zE01qU7TWjtc4+Yatocy481NYd9ZGxF/2CB\r\n         hEBEe+FSu2bFwC8s9Sx4oy527Nj7f6vImScai2wAgoKGjVQGSGfIlUY+gbiJiUnpTUEu\r\n         2k0CGlUbhs/gaBncGJNvllDWONgq1c1YqX8ZT3XewF+gUU+08nnX58KKAfhx9g/mxOfx\r\n         Djb16hhQ2AatWZsz4oTDDKiu7FpmJ/rnUtxaMoJSYUcVTz5VyTBlVeKRpxoQOojJvKic\r\n         HS2qGNYbespQK7h0mI9G36oRpmeU7DxsBve/kR+Lwd/WOkVF7intbPwV5wm+XqVPpWK3\r\n         9oWA==\r\nARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816;\r\n        h=to:subject:message-id:date:from:mime-version:dkim-signature;\r\n        bh=W+NUP6TTOGIJbfOvTKk4EX6f8dJ2wEBjLmE47DjFIqM=;\r\n        b=jdNfqopxcjopKuvnAweCSJoJHdp0VxS4ikvUnS4Hc7rYPsp2guq6YYrmEBxRoY535y\r\n         b+ER+7cFmaKxA1PcHPkqpAazatiJtkU8zD/Ah1pDmps7vgNLvn40VG8/ba9PcClbezPm\r\n         1oQjNIPUIs+Pey1a4PXYeoymplgClvuTcRKsmk6nCQJ43y4gZKR68gCHWWr0EV0bB0XU\r\n         V2DVa/DXP9zCPx/woQshnN5R5uFKoMR+4M08WDuq5FKNhtSLBGKpxsO3wI8FtdkEMktE\r\n         oWV/JE1e13k6Cw5GnxJrhw3zrpIrvsi5HE8NYl2kwiTcHNh+bXfrF+1gDmRjIxncX6l4\r\n         rd9w==\r\nARC-Authentication-Results: i=1; mx.google.com;\r\n       dkim=pass header.i=@gmail.com header.s=20221208 header.b=GB0CKyFB;\r\n       spf=pass'
2023-05-26 09:46:29.931 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b' (google.com: domain of drjjr2@gmail.com designates 209.85.220.41 as permitted sender) smtp.mailfrom=drjjr2@gmail.com;\r\n       dmarc=pass (p=NONE sp=QUARANTINE di'
2023-05-26 09:46:29.931 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b's=NONE) header.from=gmail.com\r\nReturn-Path: <drjjr2@gmail.com>\r\nReceived: from mail-sor-f41.google.com (mail-sor-f41.google.com. [209.85.220.41])\r\n        by mx.google.com with SMTPS id r127-20020acaf385000000b00398404b446fsor495166oih.10.2023.05.26.07.42.41\r\n        for <example@example.com>\r\n        (Google Transport Security);\r\n        Fri, 26 May 2023 07:42:41 -0700 (PDT)\r\nReceived-SPF: pass (google.com: domain of drjjr2@gmail.com designates 209.85.220.41 as permitted sender) client-ip=209.85.220.41;\r\nAuthentication-Results: mx.google.com;\r\n       dkim=pass header.i=@gmail.com header.s=20221208 header.b=GB0CKyFB;\r\n       spf=pass (google.com: domain of drjjr2@gmail.com designates 209.85.220.41 as permitted sender) smtp.mailfrom=drjjr2@gmail.com;\r\n       dmarc=pass (p=NONE sp=QUARANTINE dis=NONE) header.from=gmail.com\r\nDKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;\r\n        d=gmail.com; s=20221208; t=1685112161; x=1687704161;\r\n        h=to:subject:message-id:date:from:mime-version:from:to:cc:subject\r\n         :date:message-id:reply-to;\r\n        bh=W+NUP6TTOGIJbfOvTKk4EX6f8dJ2wEBjLmE47DjFIqM=;\r\n        b=GB0CKyFBMhBC1vhwyw+tQRp3xS4ztUSkrt3iIg22dkxGgV8E91lLG7DFo1fNp+jMRd\r\n         N5IqtyYmjL/2ZWeeFLFJPLdWT+Q0qODIyoNM9iagcH8Y8Dpag925dxbqBc1WkhkRCGAy\r\n         IqHcPm5P0FuQyt4Wnksakow8/hGebVXBJcu2Kz1mf+UX4qEIzM9vge/3/KmBGapMIZza\r\n         KWUy4Xnfsqv'
2023-05-26 09:46:29.932 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'2ZWwmqlhJOQ97CTaPDSYtOxgzjOiy8i4DVu4ipXshMDL50Ql6Qv8KUJqo\r\n         FnwDaO25Vd6v4BXXqnPvtnAENg/OuyOiZZIsZJpjZwZafdDIFrgi/TDIE9EWnvYs6Bp6\r\n         B/OQ==\r\nX-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;\r\n        d=1e100.net; s=20221208; t=1685112161; x=1687704161;\r\n        h=to:subject:message-id:date:from:mime-version:x-gm-message-state\r\n         :from:to:cc:subject:date:message-id:reply-to;\r\n        bh=W+NUP6TTOGIJbfOvTKk4EX6f8dJ2wEBjLmE47DjFIqM=;\r\n        b=fzNiaQ50GpzUnNbRzqYfGQRaPb0DA2TjNdpqGwBEn312S2bHo7aw1xE/cBIVW0so28\r\n         8bcCariZbbgIN6jnioGb1zU6P8FCjF1iz38M9sS2roS73qsJBRa1LedzC63dVS639NIY\r\n         DG0Uj3RnC1ZOBpOrTXE3OKB8gN38RP7BweCb'
2023-05-26 09:46:29.934 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'LKLJuTWEjhzMjeE2+0HrEGodnytaSf1f\r\n         H20REULYXYDs28z9YfQmu0SCPvOMGY2h4tJLDjhFHWR3AKK5Nmg6c3sO9rx35ynHS7yA\r\n         XZt/pQMqiUCU2sLHXYGExreMfDxj8moApBvySoM3EQ63+muUemXlhmTWNicKLQ4IbAIy\r\n         qXIQ==\r\nX-Gm-Message-State: AC+VfDzE35RZF2eq+7tqKQJzsu3rApbpALbkF+3/xebBRUqfcaiB1nAQ\r\n\tmWxp+RaW2b6kBMjrlFk6WQctqh4aS04vv6hHUmdTCXAc\r\nX-Google-Smtp-Source: ACHHUZ4l/etFDBohvGqdnT5yqApPNuAMAJdWzNWnhrMDZEdY/TT3S4xTNlRxgIoCY5RmMTFdDo/+I6G8HQZ1yynmOhE=\r\nX-Received: by 2002:a05:6808:653:b0:397:fb0a:b665 with SMTP id\r\n z19-20020a056808065300b00397fb0ab665mr1041120oih.6.1685112160770; Fri, 26 May\r\n 2023 07:42:40 -0700 (PDT)\r\nMIME-Version: 1.0\r\nFrom: Don James <drjjr2@gmail.com>\r\nDate: Fri, 26 May 2023 09:42:30 -0500\r\nMessage-ID: <CAH_bnyRd1JoKt6PMV_BpqY+FcvoBD=4eysVrZMoqEL1qBzTG6w@mail.gmail.com>\r\nSubject: test\r\nTo: Don James <example@example.com>\r\nContent-Type: multipart/alternative; boundary="000000000000bfdfc905fc99bfa1"\r\n\r\n--000000000000bfdfc905fc99bfa1\r\nContent-Type: text/plain; charset="UTF-8"\r\n\r\n\r\n\r\n--000000000000bfdfc905fc99bfa1\r\nContent-Type: text/html; charset="UTF-8"\r\n\r\n<div dir="ltr"><br></div>\r\n\r\n--000000000000bfdfc905fc99bfa1--\r\n)\r\nOANL5 OK Success\r\n'
2023-05-26 09:46:29.934 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'OANL5 OK Success'
2023-05-26 09:46:29.942 DEBUG (MainThread) [homeassistant.components.imap.coordinator] Message processed, sender: drjjr2@gmail.com, subject: test
2023-05-26 09:46:29.943 DEBUG (MainThread) [homeassistant.components.imap.coordinator] Manually updated imap data
2023-05-26 09:46:29.958 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'OANL6 IDLE\r\n'
2023-05-26 09:46:30.014 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'+ idling\r\n'
2023-05-26 09:46:30.015 DEBUG (MainThread) [aioimaplib.aioimaplib] continuation line -- assuming IDLE is active : b'+ idling'
drjjr2 commented 1 year ago

Failed again. Last log entries are: Again, reloading the integration starts updating the sensor and count again.

2023-05-26 10:02:10.068 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'OANL21 OK Success'
2023-05-26 10:02:10.084 DEBUG (MainThread) [homeassistant.components.imap.coordinator] Message processed, sender: nytdirect@nytimes.com, subject: Roasted potato salad, crisp-edged smash burgers and straight-up rhubarb pie
2023-05-26 10:02:10.084 DEBUG (MainThread) [homeassistant.components.imap.coordinator] Manually updated imap data
2023-05-26 10:02:10.101 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'OANL22 IDLE\r\n'
2023-05-26 10:02:10.146 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'+ idling\r\n'
2023-05-26 10:02:10.146 DEBUG (MainThread) [aioimaplib.aioimaplib] continuation line -- assuming IDLE is active : b'+ idling'
2023-05-26 10:03:56.396 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* 84 EXISTS\r\n'
2023-05-26 10:03:56.398 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'DONE\r\n'
2023-05-26 10:03:56.468 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'OANL22 OK IDLE terminated (Success)\r\n'
2023-05-26 10:03:56.468 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'OANL22 OK IDLE terminated (Success)'
2023-05-26 10:03:56.469 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'OANL23 NOOP\r\n'
2023-05-26 10:03:56.514 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'OANL23 OK Success\r\n'
2023-05-26 10:03:56.514 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'OANL23 OK Success'
2023-05-26 10:03:56.515 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'OANL24 SEARCH CHARSET utf-8 UnSeen UnDeleted\r\n'
2023-05-26 10:03:56.596 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* SEARCH 8 9 14 18 20 24 28 29 30 39 41 42 45 52 53 55 56 57 58 59 62 63 64 65 66 67 68 71 72 73 74 75 76 77 78 79 80 81 82 83 84\r\nOANL24 OK SEARCH completed (Success)\r\n'
2023-05-26 10:03:56.596 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'OANL24 OK SEARCH completed (Success)'
2023-05-26 10:03:56.597 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'OANL25 FETCH 84 BODY.PEEK[]\r\n'
2023-05-26 10:03:56.702 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* 84 FETCH (BODY[] {32166}\r\nDelivered-To: example@example.com\r\nReceived: by 2002:a0c:e912:0:b0:626:7ec:17b6 with SMTP id a18csp448446qvo;\r\n        Fri, 26 May 2023 08:03:50 -0700 (PDT)\r\nX-Google-Smtp-Source: ACHHUZ6EBds26q+lbihIOiIndo83LYpgc+5OA8Pkeboaf1HCix10gHSJkjQ7aQeKWF58nLKjU6Ai\r\nX-Received: by 2002:a05:620a:4149:b0:75b:23a1:69e3 with SMTP id k9-20020a05620a414900b0075b23a169e3mr2751593qko.3.1685113430676;\r\n        Fri, 26 May 2023 08:03:50 -0700 (PDT)\r\nARC-Seal: i=1; a=rsa-sha256; t=1685113430; cv=none;\r\n        d=google.com; s=arc-20160816;\r\n        b=VWSTOZ4rjZVulPhHWPNKcfK0bQNdj8jQ2Nt+nQYjiBVz5Gr8wOi0BwAqEVuArINIXQ\r\n         FpfrNv8X7+92WLYS80ueTmjSokmvCC4u8dEvqZ/IY5/A+aXvGA4Qkzv2ZlIc3HdzSWJp\r\n         J1/ga6+Vr0rztZUpVxak9NZs5P/KmW4Zne6TcYkUnI0viRuaY2WB+DgDwJahYHTyUau4\r\n         7KAU8int/eLH6fCKADCXJIKG10XaAgAu2gGQ/arYH8kmEo8qiOCjvMd7YWkkb54c1fMW\r\n         uoWDPJshAp8k/mW+cfwwyyM+JNAsxNCPlw7T/ezsVfIzW5al5Sr0G7Il3777PDHLRbRy\r\n         P72A==\r\nARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816;\r\n        h=message-id:errors-to:to:date:from:subject:mime-version\r\n         :dkim-signature:dkim-signature;\r\n        bh=bnKfwhoX9aQt8Az7Eq8MlGdTwkStqmMVr8jgIU5VYMY=;\r\n        b=fwFr2E++gBBo6fkCSLewiM2OLLzs+WRdU7rXRD6/CS3zk+PZjPbkbfpcKMtaoYsMF2\r\n         RqwG6GvDFKXmols2azm8tGNxtOMbsUahRCArLyJR2Pbw7dkNBDufQmCqUsyqgzGYEk'
2023-05-26 10:03:56.703 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'hN\r\n         yPKqJ9Uwl4gDrlIMNjqzn+yzz8anEqHQbccS99sA+Kxhmb59IQjeJMsSgOL1ITxphlVf\r\n         McwLQZskmoI9Dh6sToBkP8avItVnMLmxgo/P0f8dO4g+P4i6iIO3OO0PYGLLUR0izN6Y\r\n         lShnYrujARocyQEwwTI4w8wP4hkx1MIdiDLzCGdHfAYcQ7RUa5VVdPbkxoWqAcPWyplo\r\n         ipBg==\r\nARC-Authentication-Results: i=1; mx.google.com;\r\n       dkim=pass header.i=@giftcards.com header.s=listrak header.b=EzJUK70j;\r\n       dkim=pass header.i=@esp1.co header.s=app header.b=mrsAmild;\r\n       spf=pass (google.com: domain of ecbi9b35ebb3b56d8o9h834cb9ih1dhbd41tc9cs8c9@b.lt02.net designates 142.0.81.135 as permitted sender) smtp.mailfrom=ECBI9B35EBB3B56D8O9H834CB9IH1DHBD41TC9CS8C9@b.lt02.net\r\nReturn-Pat'
2023-05-26 10:03:56.704 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'h: <ECBI9B35EBB3B56D8O9H834CB9IH1DHBD41TC9CS8C9@b.lt02.net>\r\nReceived: from vmta135.81.lstrk.net (vmta135.81.lstrk.net. [142.0.81.135])\r\n        by mx.google.com with ESMTPS id e23-20020a05620a12d700b006fca83b669dsi1479246qkl.61.2023.05.26.08.03.50\r\n        for <example@example.com>\r\n        (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256);\r\n        Fri, 26 May 2023 08:03:50 -0700 (PDT)\r\nReceived-SPF: pass (google.com: domain of ecbi9b35ebb3b56d8o9h834cb9ih1dhbd41tc9cs8c9@b.lt02.net designates 142.0.81.135 as permitted sender) client-ip=142.0.81.135;\r\nAuthentication-Results: mx.google.com;\r\n       dkim=pass header.i=@giftcards.com header.s=listrak header.b=EzJUK70j;\r\n       dkim=pass header.i=@esp1.co header.s=app header.b=mrsAmild;\r\n       spf=pass (google.com: domain of ecbi9b35ebb3b56d8o9h834cb9ih1dhbd41tc9cs8c9@b.lt02.net designates 142.0.81.135 as permitted sender) smtp.mailfrom=ECBI9B35EBB3B56D8O9H834CB9IH1DHBD41TC9CS8C9@b.lt02.net\r\nDKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=listrak; d=giftcards.com;\r\n h=MIME-Version:Subject:From:Date:To:Content-Type:Message-ID;\r\n i=info@giftcards.com;\r\n bh=bnKfwhoX9aQt8Az7Eq8MlGdTwkStqmMVr8jgIU5VYMY=;\r\n b=EzJUK70jGOMednmK9ga3SNwpTKIfl3ekfnJ/4hsiUP5+ueU9+lDpQ/o0a5xwjri4keQp/GyZ4FkN\r\n   uLMs9JWTB1dWoN33ISEiEsKaFo0bcsv1NiNzFZIrmqq8fG2IUNXnAHtJr5Abyl/W24V3fXpWgIzi\r\n   uQypRqm15Yf2PQY80rk=\r\nDKIM-'
2023-05-26 10:03:56.704 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=app; d=esp1.co;\r\n h=MIME-Version:Subject:From:Date:To:Content-Type:Message-ID;\r\n bh=bnKfwhoX9aQt8Az7Eq8MlGdTwkStqmMVr8jgIU5VYMY=;\r\n b=mrsAmildeXYmtvtqTmjaVcF/GpL0x5Mf6nqne12nldLrG3prGOOgTaGCoIAKQmRGxlO1z6xbhXwt\r\n   hhyzm4JBYuPdroLlbRQN8rY8i+aFzNs7Pk15TWf4JUd8986UmFSwvrZczGnt4XmvFKuxNxunJbye\r\n   kl3KUiQbi9TU/XvuxLE=\r\nReceived: by vmta135.81.lstrk.net id he355c2r5is2 for <example@example.com>; Fri, 26 May 2023 11:01:21 -0400 (envelope-from <ECBI9B35EBB3B56D8O9H834CB9IH1DHBD41TC9CS8C9@b.lt02.net>)\r\nX-Message-Reference: 6PJEI3VKN31413R936KV6ADOF0\r\nX-RPCampaign: esp5480746973518675785149524951825751547586546568797048\r\nMIME-Version: 1.0\r\nSubject: =?utf-8?B?8J+kpuKAjeKZgO+4jyBLaWRzLi4uIEFtIEkgcmlnaHQ/?=\r\nFrom: "Giftcards.com" <info@giftcards.com>\r\nDate: 26 May 2023 11:01:21 -0400\r\nTo: example@example.com\r\nX-Mailer-Reference: ECBI9B35EBB3B56D8O9H834CB9IH1DHBD41TC9CS8C9\r\nErrors-To: ECBI9B35EBB3B56D8O9H834CB9IH1DHBD41TC9CS8C9@b.lt02.net\r\nContent-Type: multipart/alternative;\r\n boundary=--boundary_83ff5f1472664b978dc02a7696b00b89\r\nMessage-ID: <0.1.17C.6A5.1D98FE2EEB1D2B2.6E55@vmta135.81.lstrk.net>\r\n\r\n----boundary_83ff5f1472664b978dc02a7696b00b89\r\nContent-Type: text/plain; charset=us-ascii\r\nContent-Transfer-Encoding: 7bit\r\n\r\nR-E-L-I-E-F inside!\r\nView this message in your browser (http://t.lt02.net/q/Co5RKH33mQybXqsnS'
2023-05-26 10:03:56.705 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b"UzPGx2IHMPiW6G_lEOHXnVrrFVfvZ4QDnBBWwwWq)\r\n\r\nGiftcards.com.Save 15% off a $50 Carter's Gift Cards (http://t.lt02.net/q/p5Q_cvH_0J10XWJkPwAL8YY3JqDoce1QR3zZcOJaW5mb0Bicml4Y2VsbGFycy5jb23DiAtJp0mJjbeKvLj_nytcbiJFraZcw)\r\n\r\nWe know...kids grow so fast\r\n\r\nCarters/Oshkosh B'Gosh Gift Card (http://t.lt02.net/q/kvFeIwAYG4I0X8_dW_CpsvX13GGPItJAXN3ZcOJaW5mb0Bicml4Y2VsbGFycy5jb23DiAgGly7a_-eaCLKLdVOuNBQpoJqdQ)\r\n\r\nSave 15%\r\nwith promo code KIDDOS15\r\n\r\nwith the purchase of a$50 Carter's(R) Gift Card\r\n\r\nShop Now (http://t.lt02.net/q/K8vHuwYJBoz0XehoeQfj60GOnQcOuWqyCc8ZcOJaW5mb0Bicml4Y2VsbGFycy5jb23DiAakZs09pWdI1L1fMIWr2eYV2hFaw)\r\n\r\n(c) Giftcards.com.All Rights Reserved\r\n6220 Stoneridge Mall Road, Pleasanton, CA 94588\r\n\r\nFacebook (http://t.lt02.net/q/Ep9nM_2AZca0XDkBCbPUx8uBH_8UMF4nYX3ZcOJaW5mb0Bicml4Y2VsbGFycy5jb23DiALB602KvMfb3LFZBtkgeyiiy4dsw)\r\n\r\nInstagram (http://t.lt02.net/q/wc3KdEL6Aoe0Xs16hP85U2YxmIy4dEofexGZcOJaW5mb0Bicml4Y2VsbGFycy5jb23DiARV9GYrX3eJbLe12bSeVw3c0dcQQ)\r\n\r\nTwitter (http://t.lt02.net/q/usvgnJEWVTC0XI9BxbaXxkuMHIHgnY-Jh4SZcOJaW5mb0Bicml4Y2VsbGFycy5jb23DiAgZkI2iB6cbDLEH3cnC7NAdYOaDw)\r\n\r\nPinterest (http://t.lt02.net/q/gkvyDOMrmAM0XALnJo-OtAiS0oZIDBMSJ7YZcOJaW5mb0Bicml4Y2VsbGFycy5jb23DiAmRQ9azpJd7CL3buGreSI7iZsXOg)\r\n\r\nPromo code KIDDOS15 valid 5/26/23 - 6/04/23 for 15% off the purchase of a $50 Carter's gift card whil"
2023-05-26 10:03:56.712 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b"e supplies last (max discount $7.50).Promo code KIDDOS15 is a one-time use code and cannot be combined with other offers.\r\n\r\nThe merchants represented are not sponsors of Giftcards.com or otherwise affiliated with Giftcards.com. The logos and other identifying marks attached are trademarks of and owned by each represented company and/or its affiliates. Please visit each company's website for additional terms and conditions.\r\n\r\nPrivacy Policy (http://t.lt02.net/q/KnQvVmTupum0X8rbwiv31H2xyL5PVaqXz-3ZcOJaW5mb0Bicml4Y2VsbGFycy5jb23DiAcRYdIcNIeqUL9Fd6L6i28AHMVGg) |Unsubscribe (http://t.lt02.net/q/aV5-9t_kSO2yDZ1RPWb0EXmDKNPwqAq0oAUKYQPnvUuxvB1BIz5IUddcZ)\r\nYou are receiving this email at your request.This is an advertisement.\r\n----boundary_83ff5f1472664b978dc02a7696b00b89\r\nContent-Type: text/html; charset=utf-8\r\nContent-Transfer-Encoding: base64\r\n\r\nPCFET0NUWVBFIGh0bWw+DQo8aHRtbCBsYW5nPSJlbiI+DQo8aGVhZD4NCjx0aXRsZT7wn6Sm4oCN\r\n4pmA77iPIEtpZHMuLi4gQW0gSSByaWdodD88L3RpdGxlPg0KPG1ldGEgaHR0cC1lcXVpdj0iQ29u\r\ndGVudC1UeXBlIiBjb250ZW50PSJ0ZXh0L2h0bWw7IiBjaGFyc2V0PSJ1dGYtOCI+DQo8bWV0YSBu\r\nYW1lPSJ2aWV3cG9ydCIgY29udGVudD0id2lkdGg9ZGV2aWNlLXdpZHRoLCBpbml0aWFsLXNjYWxl\r\nPTEiPg0KPG1ldGEgaHR0cC1lcXVpdj0iWC1VQS1Db21wYXRpYmxlIiBjb250ZW50PSJJRT1lZGdl\r\nIj4NCjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iaHR0cHM6Ly91c2UudHlwZWtpdC5uZXQv\r\nYWFxN2dteC5jc3MiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgk"
2023-05-26 10:03:56.713 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'JCWltZ3sNCgkJCWJvcmRl\r\ncjogMDsNCgkJCWxpbmUtaGVpZ2h0OiAxMDAlOw0KCQkJb3V0bGluZTogbm9uZTsNCgkJCXRleHQt\r\nZGVjb3JhdGlvbjogbm9uZTsNCgkJCX0NCgkJCXRhYmxlew0KCQkJYm9yZGVyLWNvbGxhcHNlOiBj\r\nb2xsYXBzZSAhaW1wb3J0YW50Ow0KCQkJdGFibGUtbGF5b3V0OiBmaXhlZDsNCgkJCW92ZXJmbG93\r\nLXdyYXA6IGJyZWFrLXdvcmQ7DQoJCQl3b3JkLXdyYXA6IGJyZWFrLXdvcmQ7DQoJCQktbXMtd29y\r\nZC1icmVhazogYnJlYWstYWxsOw0KCQkJd29yZC1icmVhazogYnJlYWstd29yZDsNCgkJCX0NCgkJ\r\nCXRhYmxlIHRhYmxlIHRhYmxlew0KCQkJdGFibGUtbGF5b3V0OiBhdXRvOw0KCQkJfQ0KCQkJLmlt\r\nYWdlIHRhYmxlLCAuc29jaWFsIHRhYmxlLCAuZGl2aWRlciB0YWJsZXsNCgkJCXRhYmxlLWxheW91\r\ndDogYXV0bzsNCgkJCX0NCgkJCWJvZHl7DQoJCQloZWlnaHQ6IDEwMCUgIWltcG9ydGFudDsNCgkJ\r\nCW1hcmdpbjogMCAhaW1wb3J0YW50Ow0KCQkJcGFkZGluZzogMCAhaW1wb3J0YW50Ow0KCQkJd2lk\r\ndGg6IDEwMCUgIWltcG9ydGFudDsNCgkJCWZvbnQtZmFtaWx5OiBzb2ZpYS1wcm8sIHNhbnMtc2Vy\r\naWY7DQoJCQlmb250LXNpemU6IDEycHg7DQoJCQljb2xvcjogIzIyMjIyMjsNCgkJCX0NCgkJCWlt\r\nZ3sNCgkJCS1tcy1pbnRlcnBvbGF0aW9uLW1vZGU6IGJpY3ViaWM7DQoJCQl9DQoJCQlkaXYsIGJ1\r\ndHRvbnsNCgkJCXZlcnRpY2FsLWFsaWduOiB0b3A7DQoJCQltYXJnaW46IDA7DQoJCQl9DQoJCQlh\r\nW3gtYXBwbGUtZGF0YS1kZXRlY3RvcnNdew0KCQkJY29sb3I6IGluaGVyaXQgIWltcG9ydGFudDsN\r\nCgkJCXRleHQtZGVjb3JhdGlvbjogbm9uZSAhaW1wb3J0YW50Ow0KCQkJZm9udC1zaXplOiBpbmhl\r\ncml0ICFpbXBvcnRhbnQ7DQoJCQlmb250LWZhbWlseTogaW5oZXJpdCAhaW1wb3J0YW50Ow0KCQkJ\r\nZm9udC13ZWlnaHQ6IGluaGVyaXQgIWltcG9ydGFudDsNCgkJCWxpbmUtaGVpZ2h0OiBpbmhlcml0\r\nICFpbXBvcnRhbnQ7DQoJCQl9DQoJC'
2023-05-26 10:03:56.714 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'Ql1bCwgb2x7DQoJCQltYXJnaW4tdG9wOiAwOw0KCQkJbWFy\r\nZ2luLWJvdHRvbTogMDsNCgkJCX0NCgkJCWxpew0KCQkJbWFyZ2luOiAwOw0KCQkJfQ0KCQkJb2wg\r\nbGkgJmd0OyBvbCwgb2wgbGkgJmd0OyBvbCBsaSAmZ3Q7IG9sIGxpICZndDsgb2wgbGkgJmd0OyBv\r\nbHsNCgkJCWxpc3Qtc3R5bGUtdHlwZTogbG93ZXItYWxwaGE7DQoJCQl9DQoJCQlvbCBsaSAmZ3Q7\r\nIG9sIGxpICZndDsgb2wsIG9sIGxpICZndDsgb2wgbGkgJmd0OyBvbCBsaSAmZ3Q7IG9sIGxpICZn\r\ndDsgb2wgbGkgJmd0OyBvbHsNCgkJCWxpc3Qtc3R5bGUtdHlwZTogbG93ZXItcm9tYW47DQoJCQl9\r\nDQoJCQlvbCBsaSAmZ3Q7IG9sIGxpICZndDsgb2wgbGkgJmd0OyBvbHsNCgkJCWxpc3Qtc3R5bGUt\r\ndHlwZTogZGVjaW1hbDsNCgkJCX0NCgkJCUBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1heC13aWR0\r\naDogNDgwcHgpew0KCQkJLm1vYmlsZS1oaWRlLCAubW9iaWxlLWhpZGUuZGVza3RvcC1oaWRlew0K\r\nCQkJZGlzcGxheTogbm9uZSAhaW1wb3J0YW50Ow0KCQkJfQ0KCQkJLm1vYmlsZS1hbGlnbi1jZW50\r\nZXIgdGR7DQoJCQl0ZXh0LWFsaWduOiBjZW50ZXIgIWltcG9ydGFudDsNCgkJCX0NCgkJCS5tb2Jp\r\nbGUtYWxpZ24tbGVmdCB0ZHsNCgkJCXRleHQtYWxpZ246IGxlZnQgIWltcG9ydGFudDsNCgkJCX0N\r\nCgkJCS5tb2JpbGUtYWxpZ24tcmlnaHQgdGR7DQoJCQl0ZXh0LWFsaWduOiByaWdodCAhaW1wb3J0\r\nYW50Ow0KCQkJfQ0KCQkJLm1vYmlsZS1hbGlnbi1jZW50ZXIgaW1nLCAubW9iaWxlLWFsaWduLWxl\r\nZnQgaW1nLCAubW9iaWxlLWFsaWduLXJpZ2h0IGltZ3sNCgkJCWRpc3BsYXk6IGlubGluZS1ibG9j\r\nayAhaW1wb3J0YW50Ow0KCQkJbWFyZ2luOiAwOw0KCQkJdmVydGljYWwtYWxpZ246IHRvcDsNCgkJ\r\nCX0NCgkJCS5Db2x1bW4tMiBkaXYsIC5Db2x1bW4tMyBkaXYsIC5Db2x1bW4tNCBkaXZ7DQoJCQlk\r\naXNwbGF5OiBibG9jayAhaW1wb3J0YW50Ow0KCQkJd2lkdGg6IDEwMCUgIWltcG9ydGFudDsNCgkJ\r\nCW1'
2023-05-26 10:03:56.714 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'heC13aWR0aDogMTAwJSAhaW1wb3J0YW50Ow0KCQkJfQ0KCQkJLkNvbHVtbi0zIGRpdi5oYWxm\r\nLXdpZHRoew0KCQkJZGlzcGxheTogaW5saW5lLWJsb2NrICFpbXBvcnRhbnQ7DQoJCQl3aWR0aDog\r\nNTAlICFpbXBvcnRhbnQ7DQoJCQltYXgtd2lkdGg6IDUwJSAhaW1wb3J0YW50Ow0KCQkJfQ0KCQkJ\r\nLm5hdi5zdGFjayBhew0KCQkJZGlzcGxheTogYmxvY2sgIWltcG9ydGFudDsNCgkJCXdpZHRoOiAx\r\nMDAlICFpbXBvcnRhbnQ7DQoJCQlib3JkZXI6IDAgIWltcG9ydGFudDsNCgkJCXBhZGRpbmc6IDE1\r\ncHggMCAhaW1wb3J0YW50Ow0KCQkJfQ0KCQkJLmRlc2t0b3AtaGlkZSwgLmRlc2t0b3AtaGlkZSB0\r\nciwgLmRlc2t0b3AtaGlkZSB0ZHsNCgkJCXdpZHRoOiAxMDAlICFpbXBvcnRhbnQ7DQoJCQltYXgt\r\naGVpZ2h0OiBpbmhlcml0ICFpbXBvcnRhbnQ7DQoJCQlvdmVyZmxvdzogdmlzaWJsZSAhaW1wb3J0\r\nYW50Ow0KCQkJZGlzcGxheTogYmxvY2sgIWltcG9ydGFudDsNCgkJCWZsb2F0OiBub25lICFpbXBv\r\ncnRhbnQ7DQoJCQl9DQoJCQkuZGVza3RvcC1oaWRlew0KCQkJZGlzcGxheTogdGFibGUgIWltcG9y\r\ndGFudDsNCgkJCXdpZHRoOiAxMDAlICFpbXBvcnRhbnQ7DQoJCQl9DQoJCQkuZGVza3RvcC1oaWRl\r\nIHRyew0KCQkJZGlzcGxheTogdGFibGUtcm93ICFpbXBvcnRhbnQ7DQoJCQl9DQoJCQkuZGVza3Rv\r\ncC1oaWRlIHRkew0KCQkJZGlzcGxheTogdGFibGUtY2VsbCAhaW1wb3J0YW50Ow0KCQkJfQ0KCQkJ\r\nfUBtZWRpYSBzY3JlZW4gYW5kIChtaW4td2lkdGg6IDQ4MXB4KXsNCgkJCS5Db2x1bW4tMiBkaXZ7\r\nDQoJCQltYXgtd2lkdGg6IDUwJSAhaW1wb3J0YW50Ow0KCQkJfQ0KCQkJLkNvbHVtbi0yIGRpdi5j\r\nb2x1bW4tMjV7DQoJCQltYXgtd2lkdGg6IDI1JSAhaW1wb3J0YW50Ow0KCQkJfQ0KCQkJLkNvbHVt\r\nbi0yIGRpdi5jb2x1bW4tMzN7DQoJCQltYXgtd2lkdGg6IDMzLjMzNCUgIWltcG9ydGFudDsNCgkJ\r\nCX0NCgkJCS5Db2x1bW4tMiBkaXYuY29sdW1uLTY2ew0KCQkJbWF4LXd'
2023-05-26 10:03:56.715 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'pZHRoOiA2Ni42NjclICFp\r\nbXBvcnRhbnQ7DQoJCQl9DQoJCQkuQ29sdW1uLTIgZGl2LmNvbHVtbi03NXsNCgkJCW1heC13aWR0\r\naDogNzUlICFpbXBvcnRhbnQ7DQoJCQl9DQoJCQkuQ29sdW1uLTMgZGl2ew0KCQkJbWF4LXdpZHRo\r\nOiAzMy4zMzQlICFpbXBvcnRhbnQ7DQoJCQl9DQoJCQkuQ29sdW1uLTQgZGl2ew0KCQkJbWF4LXdp\r\nZHRoOiAyNSUgIWltcG9ydGFudDsNCgkJCX0NCgkJCX0gZGl2W3N0eWxlKj0ibWFyZ2luOiAxNnB4\r\nIDA7Il17DQoJCQltYXJnaW46IDAgIWltcG9ydGFudDsNCgkJCX0NCgkJPC9zdHlsZT4NCjwvaGVh\r\nZD4NCjxib2R5IHN0eWxlPSJtYXJnaW46IDBweDsgcGFkZGluZzogMHB4OyBtaW4td2lkdGg6IDEw\r\nMCU7IGJhY2tncm91bmQtY29sb3I6IHJnYigyNTUsIDI1NSwgMjU1KTsgem9vbTogMTAwJTsiPg0K\r\nPHNwYW4gc3R5bGU9ImRpc3BsYXk6bm9uZSAhaW1wb3J0YW50O3Zpc2liaWxpdHk6aGlkZGVuO21z\r\nby1oaWRlOmFsbDtmb250LXNpemU6MXB4O2xpbmUtaGVpZ2h0OjFweDttYXgtaGVpZ2h0OjBweDtt\r\nYXgtd2lkdGg6MHB4O29wYWNpdHk6MDtvdmVyZmxvdzpoaWRkZW47Ij5SLUUtTC1JLUUtRiBpbnNp\r\nZGUhDQo8YnI+DQombmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmendu\r\najsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsm\r\nenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJz\r\ncDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsm\r\nbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmendu\r\najsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsm\r\nenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJz\r\ncDsmenduajsmbmJzcDsmenduajsmb'
2023-05-26 10:03:56.715 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'mJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsm\r\nbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmendu\r\najsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsm\r\nenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJz\r\ncDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsm\r\nbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajsmbmJzcDsmenduajs8L3NwYW4+DQo8\r\ndGFibGUgd2lkdGg9IjEwMCUiIGNsYXNzPSJib2R5IiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNp\r\nbmc9IjAiIGJvcmRlcj0iMCIgcm9sZT0icHJlc2VudGF0aW9uIj4NCjx0Ym9keT4NCjx0cj4NCjx0\r\nZCBzdHlsZT0iYmFja2dyb3VuZC1jb2xvcjojZmZmZmZmOyI+DQo8dGFibGUgd2lkdGg9IjEwMCUi\r\nIGNsYXNzPSJXcmFwcGVyIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIGJvcmRlcj0i\r\nMCIgcm9sZT0icHJlc2VudGF0aW9uIj4NCjx0Ym9keT4NCjx0cj4NCjx0ZCBhbGlnbj0iY2VudGVy\r\nIiBzdHlsZT0iYmFja2dyb3VuZC1jb2xvcjp0cmFuc3BhcmVudDsgYm9yZGVyLXRvcC1zdHlsZTog\r\nbm9uZTsgYm9yZGVyLWJvdHRvbS1zdHlsZTogbm9uZTsgYm9yZGVyLXJpZ2h0LXN0eWxlOiBub25l\r\nOyBib3JkZXItbGVmdC1zdHlsZTogbm9uZTsgYm9yZGVyLXRvcC13aWR0aDogMHB4OyBib3JkZXIt\r\nYm90dG9tLXdpZHRoOiAwcHg7IGJvcmRlci1yaWdodC13aWR0aDogMHB4OyBib3JkZXItbGVmdC13\r\naWR0aDogMHB4OyBib3JkZXItY29sb3I6ICMyMjIyMjI7Ij4NCjwhLS1baWYoZ3RlIG1zbyA5KXwo\r\nSUUpXT48dGFibGUgd2lkdGg9IjYwMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBi\r\nb3JkZ'
2023-05-26 10:03:56.716 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'XI'
2023-05-26 10:03:56.716 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'9IjAiIHN0eWxlPSJ3aWR0aDogNjAwcHg7IiByb2xlPSJwcmVzZW50YXRpb24iPiA8dHI+\r\nIDx0ZCBhbGlnbj0iY2VudGVyIj48IVtlbmRpZl0tLT4NCjwhLS1CRUdJTiBIRUFERVItLT4NCjx0\r\nYWJsZSB3aWR0aD0iMTAwJSIgY2xhc3M9IkNvbnRhaW5lciIgY2VsbHBhZGRpbmc9IjAiIGNlbGxz\r\ncGFjaW5nPSIwIiBib3JkZXI9IjAiIHN0eWxlPSJtYXgtd2lkdGg6NjAwcHg7IiByb2xlPSJwcmVz\r\nZW50YXRpb24iPg0KPHRib2R5Pg0KPHRyPg0KPHRkIGFsaWduPSJjZW50ZXIiIHN0eWxlPSJiYWNr\r\nZ3JvdW5kLWNvbG9yOiNmZmYiPg0KPHRhYmxlIHdpZHRoPSIxMDAlIiBjbGFzcz0iQ29sdW1uLTEi\r\nIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgYm9yZGVyPSIwIiByb2xlPSJwcmVzZW50\r\nYXRpb24iPg0KPHRib2R5Pg0KPHRyPg0KPHRkIGFsaWduPSJjZW50ZXIiIHN0eWxlPSJ3aWR0aDox\r\nMDAlOyB2ZXJ0aWNhbC1hbGlnbjp0b3A7Ij4NCjx0YWJsZSB3aWR0aD0iMTAwJSIgY2VsbHBhZGRp\r\nbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBib3JkZXI9IjAiIHJvbGU9InByZXNlbnRhdGlvbiI+DQo8\r\ndGJvZHk+DQo8dHIgY2xhc3M9InRleHQiPg0KPHRkIHN0eWxlPSJwYWRkaW5nOiAwcHggMTBweCAw\r\ncHggMTBweDsgYm9yZGVyLXdpZHRoOiAwcHg7IGJvcmRlci1zdHlsZTogbm9uZTsgZm9udC1mYW1p\r\nbHk6IHNvZmlhLXBybywgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxMnB4OyBmb250LXdlaWdodDog\r\nbm9ybWFsOyBjb2xvcjogI2ZmZjsgbGluZS1oZWlnaHQ6IDEuNTsgdGV4dC1hbGlnbjogcmlnaHQi\r\nPg0KPGEgaHJlZj0iaHR0cDovL3QubHQwMi5uZXQvcS9feFNjOTNxcWhtZ2NQWlA0STdOSllaby1u\r\nMExrWHJPbHdsdW45YlduODV0emxkTFFQcWM1bktLSFoiIHN0eWxlPSJjb2xvcjojMDAwO3RleHQt\r\nZGVjb3JhdGlvbjp1bmRlcmxpbmU7IiB0YXJnZXQ9Il9ibGFuayI+PHNwYW4gc3R5bGU9ImZvbnQt\r\nc2l6ZToxMXB4Ij48c3BhbiBmb250dmFsdWU9InNvZmlhLXBybyIgc3R5bGU'
2023-05-26 10:03:56.716 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'9ImZvbnQtZmFtaWx5\r\nOiBzb2ZpYS1wcm8sIHNhbnMtc2VyaWY7Ij48c3BhbiBzdHlsZT0iY29sb3I6IzAwMCI+VmlldyB0\r\naGlzIG1lc3NhZ2UgaW4geW91ciBicm93c2VyPC9zcGFuPjwvc3Bhbj48L3NwYW4+PC9hPg0KPC90\r\nZD4NCjwvdHI+DQo8L3Rib2R5Pg0KPC90YWJsZT4NCjwvdGQ+DQo8L3RyPg0KPC90Ym9keT4NCjwv\r\ndGFibGU+DQo8L3RkPg0KPC90cj4NCjwvdGJvZHk+DQo8L3RhYmxlPg0KPCEtLVtpZihndGUgbXNv\r\nIDkpfChJRSldPjwvdGQ+IDwvdHI+IDwvdGFibGU+PCFbZW5kaWZdLS0+DQo8L3RkPg0KPC90cj4N\r\nCjwvdGJvZHk+DQo8L3RhYmxlPg0KPCEtLUVORCBIRUFERVItLT4NCjwhLS1CRUdJTiBIRVJPLS0+\r\nDQo8dGFibGUgd2lkdGg9IjEwMCUiIGNsYXNzPSJXcmFwcGVyIiBjZWxscGFkZGluZz0iMCIgY2Vs\r\nbHNwYWNpbmc9IjAiIGJvcmRlcj0iMCIgcm9sZT0icHJlc2VudGF0aW9uIj4NCjx0Ym9keT4NCjx0\r\ncj4NCjx0ZCBhbGlnbj0iY2VudGVyIiBzdHlsZT0iYmFja2dyb3VuZC1jb2xvcjp0cmFuc3BhcmVu\r\ndDsgYm9yZGVyLXRvcC1zdHlsZTogbm9uZTsgYm9yZGVyLWJvdHRvbS1zdHlsZTogbm9uZTsgYm9y\r\nZGVyLXJpZ2h0LXN0eWxlOiBub25lOyBib3JkZXItbGVmdC1zdHlsZTogbm9uZTsgYm9yZGVyLXRv\r\ncC13aWR0aDogMHB4OyBib3JkZXItYm90dG9tLXdpZHRoOiAwcHg7IGJvcmRlci1yaWdodC13aWR0\r\naDogMHB4OyBib3JkZXItbGVmdC13aWR0aDogMHB4OyBib3JkZXItY29sb3I6ICMyMjIyMjI7Ij4N\r\nCjx0YWJsZSB3aWR0aD0iMTAwJSIgY2xhc3M9IkNvbnRhaW5lciIgY2VsbHBhZGRpbmc9IjAiIGNl\r\nbGxzcGFjaW5nPSIwIiBib3JkZXI9IjAiIHN0eWxlPSJtYXgtd2lkdGg6NjAwcHg7IiByb2xlPSJw\r\ncmVzZW50YXRpb24iPg0KPHRib2R5Pg0KPHRyPg0KPHRkIGFsaWduPSJjZW50ZXIiIHN0eWxlPSJi\r\nYWNrZ3JvdW5kLWNvbG9yOnRyYW5zcGFyZW50Ij4NCjx0YWJsZSB3aWR0aD0iMTAwJSIgY2xhc3M9\r\nIkNvbHVtbi0xICIgY2VsbHBhZGRpbmc9I'
2023-05-26 10:03:56.717 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'jAiIGNlbGxzcGFjaW5nPSIwIiBib3JkZXI9IjAiIHJv\r\nbGU9InByZXNlbnRhdGlvbiI+DQo8dGJvZHk+DQo8dHI+DQo8dGQgYWxpZ249ImNlbnRlciIgc3R5\r\nbGU9ImJhY2tncm91bmQtY29sb3I6IzE4YjQ2YiI+DQo8dGFibGUgd2lkdGg9IjEwMCUiIGNlbGxw\r\nYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgYm9yZGVyPSIwIiByb2xlPSJwcmVzZW50YXRpb24i\r\nPg0KPHRib2R5Pg0KPHRyIGNsYXNzPSJpbWFnZSI+DQo8dGQgYWxpZ249ImNlbnRlciIgc3R5bGU9\r\nInBhZGRpbmc6IDBweCAwcHggMHB4IDBweDsiPg0KPGEgaHJlZj0iaHR0cDovL3QubHQwMi5uZXQv\r\ncS92djFJbC1HbF9XYTBYZWR2QkxHS2U2YzNGemp4bGFVRkEweVpjT0phVzVtYjBCaWNtbDRZMlZz\r\nYkdGeWN5NWpiMjNEaUFVZTltbEd5cGVvS0xVOXpMQTQ0c1BTRlBzWVEiIHRhcmdldD0iX2JsYW5r\r\nIj4NCjxpbWcgc3JjPSJodHRwczovL21lZGlhY2RuLmVzcHNzbC5jb20vNzczNS8yMDIzL3dlZWsy\r\nMS8yMS4yLXIxLmpwZyIgYWx0PSJHaWZ0Y2FyZHMuY29tLiBTYXZlIDE1JSBvZmYgYSAkNTAgQ2Fy\r\ndGVyJ3MgR2lmdCBDYXJkcyIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7IHdpZHRoOiAxMDAlOyBtYXgt\r\nd2lkdGg6IDYwMHB4ICFpbXBvcnRhbnQ7Ym9yZGVyOjBweDsiIHdpZHRoPSI2MDAiPg0KPC9hPg0K\r\nPC90ZD4NCjwvdHI+DQo8L3Rib2R5Pg0KPC90YWJsZT4NCjwvdGQ+DQo8L3RyPg0KPC90Ym9keT4N\r\nCjwvdGFibGU+DQo8dGFibGUgd2lkdGg9IjEwMCUiIGNsYXNzPSJDb2x1bW4tMSAiIGNlbGxwYWRk\r\naW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgYm9yZGVyPSIwIiByb2xlPSJwcmVzZW50YXRpb24iPg0K\r\nPHRib2R5Pg0KPHRyPg0KPHRkIGFsaWduPSJjZW50ZXIiPg0KPHRhYmxlIHdpZHRoPSIxMDAlIiBj\r\nZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIGJvcmRlcj0iMCIgcm9sZT0icHJlc2VudGF0\r\naW9uIj4NCjx0Ym9keT4NCjx0ciBjbGFzcz0idGV4dCI+DQo8dGQgc3R5bGU9InBhZGRpbmc6IDEw\r\ncHggMTB'
2023-05-26 10:03:56.717 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'weCAyMHB4IDEwcHg7IGJvcmRlci13aWR0aDogMHB4OyBib3JkZXItc3R5bGU6IG5vbmU7\r\nIGZvbnQtZmFtaWx5OiBzb2ZpYS1wcm8sIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTJweDsgZm9u\r\ndC13ZWlnaHQ6IG5vcm1hbDsgY29sb3I6ICMyMjIyMjI7IGxpbmUtaGVpZ2h0OiAxLjI7IHRleHQt\r\nYWxpZ246IGNlbnRlcjsiPg0KPHNwYW4gZm9udHZhbHVlPSJzb2ZpYS1wcm8iIHN0eWxlPSJmb250\r\nLWZhbWlseTogc29maWEtcHJvLCBzYW5zLXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToz\r\nNnB4Ij48Yj5XZSBrbm93Li4ua2lkcyBncm93IHNvIGZhc3QNCjwvYj48L3NwYW4+PC9zcGFuPg0K\r\nPC90ZD4NCjwvdHI+DQo8L3Rib2R5Pg0KPC90YWJsZT4NCjwvdGQ+DQo8L3RyPg0KPC90Ym9keT4N\r\nCjwvdGFibGU+DQo8L3RkPg0KPC90cj4NCjwvdGJvZHk+DQo8L3RhYmxlPg0KPC90ZD4NCjwvdHI+\r\nDQo8L3Rib2R5Pg0KPC90YWJsZT4NCjwhLS1FTkQgSEVSTy0tPg0KPCEtLUJFR0lOIENBUkQgUk9X\r\nUy0tPg0KPHRhYmxlIHdpZHRoPSIxMDAlIiBjbGFzcz0iV3JhcHBlciIgY2VsbHBhZGRpbmc9IjAi\r\nIGNlbGxzcGFjaW5nPSIwIiBib3JkZXI9IjAiIHJvbGU9InByZXNlbnRhdGlvbiI+DQo8dGJvZHk+\r\nDQo8dHI+DQo8dGQgYWxpZ249ImNlbnRlciIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6dHJhbnNw\r\nYXJlbnQ7IGJvcmRlci10b3Atc3R5bGU6IG5vbmU7IGJvcmRlci1ib3R0b20tc3R5bGU6IG5vbmU7\r\nIGJvcmRlci1yaWdodC1zdHlsZTogbm9uZTsgYm9yZGVyLWxlZnQtc3R5bGU6IG5vbmU7IGJvcmRl\r\nci10b3Atd2lkdGg6IDBweDsgYm9yZGVyLWJvdHRvbS13aWR0aDogMHB4OyBib3JkZXItcmlnaHQt\r\nd2lkdGg6IDBweDsgYm9yZGVyLWxlZnQtd2lkdGg6IDBweDsgYm9yZGVyLWNvbG9yOiAjMjIyMjIy\r\nOyI+IDwhLS1baWYoZ3RlIG1zbyA5KXwoSUUpXT48dGFibGUgd2lkdGg9IjYwMCIgY2VsbHBhZGRp\r\nbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBib3JkZXI9IjAiIHN0eWxlPSJ3aWR'
2023-05-26 10:03:56.718 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'0aDogNjAwcHg7IiBy\r\nb2xlPSJwcmVzZW50YXRpb24iPiA8dHI+IDx0ZCBhbGlnbj0iY2VudGVyIj48IVtlbmRpZl0tLT4N\r\nCjx0YWJsZSB3aWR0aD0iMTAwJSIgY2xhc3M9IkNvbnRhaW5lciIgY2VsbHBhZGRpbmc9IjAiIGNl\r\nbGxzcGFjaW5nPSIwIiBib3JkZXI9IjAiIHN0eWxlPSJtYXgtd2lkdGg6NjAwcHg7IiByb2xlPSJw\r\ncmVzZW50YXRpb24iPg0KPHRib2R5Pg0KPHRyPg0KPHRkIGFsaWduPSJjZW50ZXIiIHN0eWxlPSJi\r\nYWNrZ3JvdW5kLWNvbG9yOiB0cmFuc3BhcmVudDsgYmFja2dyb3VuZC1pbWFnZTp1cmwoJ2h0dHBz\r\nOi8vbWVkaWFjZG4uZXNwc3NsLmNvbS83NzM1LzIwMjMvd2VlazIxLzIxLjItY2FyZC1yb3cucG5n\r\nJyk7IGJhY2tncm91bmQtcmVwZWF0Om5vLXJlcGVhdDsiPg0KPHRhYmxlIHdpZHRoPSIxMDAlIiBj\r\nZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIGJvcmRlcj0iMCIgcm9sZT0icHJlc2VudGF0\r\naW9uIj4NCjx0Ym9keT4NCjx0ciBjbGFzcz0iaW1hZ2UiPg0KPHRkIGFsaWduPSJjZW50ZXIiIHN0\r\neWxlPSJwYWRkaW5nOiAxMHB4OyI+DQo8YSBocmVmPSJodHRwOi8vdC5sdDAyLm5ldC9xL2xWSHNB\r\nZWFYYXlCMFhuSzNxV0pWN01Wazl5eWFBR01SbE5KWmNPSmFXNW1iMEJpY21sNFkyVnNiR0Z5Y3k1\r\namIyM0RpQTE4Z3poNW1tZFltTEdVTldBMlktOTE5WExOQSIgdGFyZ2V0PSJfYmxhbmsiPg0KPGlt\r\nZyBzcmM9Imh0dHBzOi8vZ2NjZG4uZ2lmdGNhcmRzLmNvbS9jYXJkcy9jYXJ0ZXJzLWdpZnQtY2Fy\r\nZC5wbmciIGFsdD0iQ2FydGVycy9Pc2hrb3NoIEInR29zaCBHaWZ0IENhcmQiIHN0eWxlPSJkaXNw\r\nbGF5OmJsb2NrOyB3aWR0aDogMTAwJTsgbWF4LXdpZHRoOiAzMDhweCAhaW1wb3J0YW50O2JvcmRl\r\ncjowcHggc29saWQgI2VhZWFlYTsgYm9yZGVyLXJhZGl1czoxMnB4OyIgd2lkdGg9IjkwJSI+DQo8\r\nL2E+DQo8L3RkPg0KPC90cj4NCjwvdGJvZHk+DQo8L3RhYmxlPg0KPC90ZD4NCjwvdHI+DQo8L3Ri\r\nb2R5Pg0KPC90YWJsZT4NCjx0YWJsZSB3a'
2023-05-26 10:03:56.718 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'WR0aD0iMTAwJSIgY2xhc3M9IkNvbHVtbi0xICIgY2Vs\r\nbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBib3JkZXI9IjAiIHJvbGU9InByZXNlbnRhdGlv\r\nbiI+DQo8dGJvZHk+DQo8dHI+DQo8dGQgYWxpZ249ImNlbnRlciI+DQo8dGFibGUgd2lkdGg9IjEw\r\nMCUiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgYm9yZGVyPSIwIiByb2xlPSJwcmVz\r\nZW50YXRpb24iPg0KPHRib2R5Pg0KPHRyIGNsYXNzPSJ0ZXh0Ij4NCjx0ZCBzdHlsZT0icGFkZGlu\r\nZzogMHB4IDEwcHggMTBweCAxMHB4OyBib3JkZXItd2lkdGg6IDBweDsgYm9yZGVyLXN0eWxlOiBu\r\nb25lOyBmb250LWZhbWlseTogc29maWEtcHJvLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDEycHg7\r\nIGZvbnQtd2VpZ2h0OiBub3JtYWw7IGNvbG9yOiAjMjIyMjIyOyBsaW5lLWhlaWdodDogMS4yOyB0\r\nZXh0LWFsaWduOiBjZW50ZXI7Ij4NCjxzcGFuIGZvbnR2YWx1ZT0ic29maWEtcHJvIiBzdHlsZT0i\r\nZm9udC1mYW1pbHk6IHNvZmlhLXBybywgc2Fucy1zZXJpZjsiPjxzcGFuIHN0eWxlPSJmb250LXNp\r\nemU6NDJweCI+PGI+U2F2ZSAxNSU8L2I+PC9zcGFuPjxicj4NCjxzcGFuIHN0eWxlPSJmb250LXNp\r\nemU6MThweDsiPndpdGggcHJvbW8gY29kZSA8c3Ryb25nPktJRERPUzE1IDwvc3Ryb25nPjwvc3Bh\r\nbj48L3NwYW4+DQo8L3RkPg0KPC90cj4NCjx0ciBjbGFzcz0idGV4dCI+DQo8dGQgc3R5bGU9InBh\r\nZGRpbmc6IDBweCAxMHB4IDEwcHggMTBweDsgYm9yZGVyLXdpZHRoOiAwcHg7IGJvcmRlci1zdHls\r\nZTogbm9uZTsgZm9udC1mYW1pbHk6IHNvZmlhLXBybywgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAx\r\nMnB4OyBmb250LXdlaWdodDogbm9ybWFsOyBjb2xvcjogIzIyMjIyMjsgbGluZS1oZWlnaHQ6IDEu\r\nMjsgdGV4dC1hbGlnbjogY2VudGVyOyI+DQo8c3BhbiBmb250dmFsdWU9InNvZmlhLXBybyIgc3R5\r\nbGU9ImZvb'
2023-05-26 10:03:56.723 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'nQtZmFtaWx5OiBzb2ZpYS1wcm8sIHNhbnMtc2VyaWY7Ij48c3BhbiBzdHlsZT0iZm9u\r\ndC1zaXplOjE4cHgiPndpdGggdGhlIHB1cmNoYXNlIG9mIGENCiQ1MCBDYXJ0ZXLigJlzPHN1cD4m\r\ncmVnOzwvc3VwPjwvc3VvPiBHaWZ0IENhcmQ8L3NwYW4+PC9zcGFuPg0KPC90ZD4NCjwvdHI+DQo8\r\ndHIgY2xhc3M9ImJ1dHRvbiI+DQo8dGQgYWxpZ249ImNlbnRlciIgc3R5bGU9InBhZGRpbmc6MTBw\r\neCAyMHB4IDQwcHggMjBweCA7Ij4NCjx0YWJsZSBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9\r\nIjAiIGJvcmRlcj0iMCIgc3R5bGU9ImRpc3BsYXk6aW5saW5lLWJsb2NrOyBtYXJnaW46MDsgdmVy\r\ndGljYWwtYWxpZ246dG9wOyIgcm9sZT0icHJlc2VudGF0aW9uIj4NCjx0Ym9keT4NCjx0cj4NCjx0\r\naCBhbGlnbj0iY2VudGVyIiBzdHlsZT0iZGlzcGxheTpibG9jazsgYmFja2dyb3VuZC1jb2xvcjoj\r\nZmZmZmZmOyBib3JkZXItc3R5bGU6c29saWQ7IGJvcmRlci13aWR0aDo2cHg7IGJvcmRlci1jb2xv\r\ncjojYjI0NmFkO2JvcmRlci10b3AtbGVmdC1yYWRpdXM6IDUwMHB4OyBib3JkZXItdG9wLXJpZ2h0\r\nLXJhZGl1czogNTAwcHg7IGJvcmRlci1ib3R0b20tcmlnaHQtcmFkaXVzOiA1MDBweDsgYm9yZGVy\r\nLWJvdHRvbS1sZWZ0LXJhZGl1czogNTAwcHg7IGNvbG9yOiMyODI3NmY7IGxpbmUtaGVpZ2h0OjEu\r\nNTsiPg0KPGEgaHJlZj0iaHR0cDovL3QubHQwMi5uZXQvcS9hYWNFcDVLX1ZMczBYQmFEaUNVcXZn\r\nZDlRX3gtcGpjSjBXLVpjT0phVzVtYjBCaWNtbDRZMlZzYkdGeWN5NWpiMjNEaUFia0lkS3JjVGZy\r\nN0xCTmU1a2s5VE1hMnhCR2ciIHRhcmdldD0iX2JsYW5rIiBzdHlsZT0iY29sb3I6IzI4Mjc2Zjsg\r\nZm9udC1mYW1pbHk6J3NvZmlhLXBybycsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZToyMHB4OyBmb250\r\nLXN0eWxlOm5vcm1hbDsgbGV0dGVyLXNwYWNpbmc6MHB4OyB0ZXh0LWFsaWduOmNlbnRlcjsgZGlz\r\ncGxheTpibG9jazsgYmFja2dyb3VuZC1jb2xvcjojZmZmZmZmOyBib3JkZXItd'
2023-05-26 10:03:56.724 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'G9wLWxlZnQtcmFk\r\naXVzOiA1MDBweDsgYm9yZGVyLXRvcC1yaWdodC1yYWRpdXM6IDUwMHB4OyBib3JkZXItYm90dG9t\r\nLXJpZ2h0LXJhZGl1czogNTAwcHg7IGJvcmRlci1ib3R0b20tbGVmdC1yYWRpdXM6IDUwMHB4OyB0\r\nZXh0LWRlY29yYXRpb246bm9uZTsgcGFkZGluZzogNXB4IDE1cHggNXB4IDE1cHg7IGJveC1zaXpp\r\nbmc6Ym9yZGVyLWJveDsgLW1vei1ib3gtc2l6aW5nOmJvcmRlci1ib3g7IC13ZWJraXQtYm94LXNp\r\nemluZzpib3JkZXItYm94OyBib3JkZXItd2lkdGg6MXB4OyBib3JkZXItc3R5bGU6c29saWQ7IGJv\r\ncmRlci1jb2xvcjojZmZmZmZmOyI+PHN0cm9uZz5TaG9wIE5vdw0KPC9zdHJvbmc+PC9hPjwvdGg+\r\nDQo8L3RyPg0KPC90Ym9keT4NCjwvdGFibGU+DQo8L3RkPg0KPC90cj4NCjwvdGJvZHk+DQo8L3Rh\r\nYmxlPg0KPC90ZD4NCjwvdHI+DQo8L3Rib2R5Pg0KPC90YWJsZT4NCjwvdGQ+DQo8L3RyPg0KPC90\r\nYm9keT4NCjwvdGFibGU+DQo8IS0tW2lmKGd0ZSBtc28gOSl8KElFKV0+PC90ZD4gPC90cj4gPC90\r\nYWJsZT48IVtlbmRpZl0tLT4NCjwvdGQ+DQo8L3RyPg0KPC90Ym9keT4NCjwvdGFibGU+DQo8IS0t\r\nIEVORCBDQVJEIFJPV1MtLT4NCjwhLS1CRUdJTiBGT09URVItLT4NCjx0YWJsZSB3aWR0aD0iMTAw\r\nJSIgY2xhc3M9IldyYXBwZXIiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgYm9yZGVy\r\nPSIwIiByb2xlPSJwcmVzZW50YXRpb24iPg0KPHRib2R5Pg0KPHRyPg0KPHRkIGFsaWduPSJjZW50\r\nZXIiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOnRyYW5zcGFyZW50OyBib3JkZXItdG9wLXN0eWxl\r\nOiBub25lOyBib3JkZXItYm90dG9tLXN0eWxlOiBub25lOyBib3JkZXItcmlnaHQtc3R5bGU6IG5v\r\nbmU7IGJvcmRlci1sZWZ0LXN0eWxlOiBub25lOyBib3JkZXItdG9wLXdpZHRoOiAwcHg7IGJvcmRl\r\nci1ib3R0b20td2lkdGg6IDBweDsgYm9yZGVyLXJpZ2h0LXdpZHRoOiAwcHg7IGJvcmRlci1sZWZ0\r\nLXdpZHRoOiAwcHg7IGJvcmRlci1jb2xvcjo'
2023-05-26 10:03:56.725 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'gIzIyMjIyMjsiPg0KPHRhYmxlIHdpZHRoPSIxMDAl\r\nIiBjbGFzcz0iQ29udGFpbmVyIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIGJvcmRl\r\ncj0iMCIgc3R5bGU9Im1heC13aWR0aDo2MDBweDsiIHJvbGU9InByZXNlbnRhdGlvbiI+DQo8dGJv\r\nZHk+DQo8dHI+DQo8dGQgYWxpZ249ImNlbnRlciIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6IzI4\r\nMjg3MDsgYmFja2dyb3VuZC1pbWFnZTogdXJsKCdodHRwczovL21lZGlhY2RuLmVzcHNzbC5jb20v\r\nNzczNS8yMDIzL3dlZWsyMS8yMS4yLWZvb3Rlci5wbmcnKTsgYmFja2dyb3VuZC1yZXBlYXQ6bm8t\r\ncmVwZWF0OyBiYWNrZ3JvdW5kLXBvc2l0aW9uOiBib3R0b207Ij4NCjx0YWJsZSB3aWR0aD0iMTAw\r\nJSIgY2xhc3M9IkNvbHVtbi0xICIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBib3Jk\r\nZXI9IjAiIHJvbGU9InByZXNlbnRhdGlvbiI+DQo8dGJvZHk+DQo8dHI+DQo8dGQgYWxpZ249ImNl\r\nbnRlciI+DQo8dGFibGUgd2lkdGg9IjEwMCUiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0i\r\nMCIgYm9yZGVyPSIwIiByb2xlPSJwcmVzZW50YXRpb24iPg0KPHRib2R5Pg0KPHRyIGNsYXNzPSJ0\r\nZXh0Ij4NCjx0ZCBzdHlsZT0icGFkZGluZzogNTBweCAxMHB4IDI1cHggMTBweDsgYm9yZGVyLXdp\r\nZHRoOiAwcHg7IGJvcmRlci1zdHlsZTogbm9uZTsgZm9udC1mYW1pbHk6IHNvZmlhLXBybywgc2Fu\r\ncy1zZXJpZjsgZm9udC1zaXplOiAxMnB4OyBmb250LXdlaWdodDogbm9ybWFsOyBjb2xvcjogIzIy\r\nMjIyMjsgbGluZS1oZWlnaHQ6IDE7IHRleHQtYWxpZ246IGNlbnRlciI+DQo8c3BhbiBzdHlsZT0i\r\nZm9udC1zaXplOjExcHgiPjxzcGFuIGZvbnR2YWx1ZT0ic29maWEtcHJvIiBzdHlsZT0iZm9udC1m\r\nYW1pbHk6IHNvZmlhLXBybywgc2Fucy1zZXJpZjsiPjxzcGFuIHN0eWxlPSJjb2xvcjojZmZmZmZm\r\nIj4mY29weTsgR2lmdGNhcmRzDQouY29tLiAmbmJzcDtBbGwgUmlnaHRzIFJlc2VydmVkPGJyPg0K\r\nNjIyMCBTd'
2023-05-26 10:03:56.725 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'G9uZXJpZGdlIE1hbGwgUm9hZCwgUGxlYXNhbnRvbiwgQ0EgOTQ1ODg8L3NwYW4+PC9z\r\ncGFuPjwvc3Bhbj4NCjwvdGQ+DQo8L3RyPg0KPHRyIGNsYXNzPSJzb2NpYWwiPg0KPHRkIGFsaWdu\r\nPSJjZW50ZXIiIHN0eWxlPSJwYWRkaW5nOjI1cHggMTFweCAyNXB4IDExcHg7Ij4NCjx0YWJsZSB3\r\naWR0aD0iMTAwJSIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBib3JkZXI9IjAiIHN0\r\neWxlPSJkaXNwbGF5OmlubGluZS1ibG9jazsgbWFyZ2luOjA7IHZlcnRpY2FsLWFsaWduOnRvcDtt\r\nYXgtd2lkdGg6MTI2cHg7IiByb2xlPSJwcmVzZW50YXRpb24iPg0KPHRib2R5Pg0KPHRyPg0KPHRk\r\nIHdpZHRoPSIyNCI+DQo8YSBocmVmPSJodHRwOi8vdC5sdDAyLm5ldC9xL18wSlpYd3dSNDdKMFgz\r\nUDVRT3dielJsU091SXlYd3JuOHdnWmNPSmFXNW1iMEJpY21sNFkyVnNiR0Z5Y3k1amIyM0RpQTIw\r\nTjEyUThxZnBGTE8yV3lBWXR2cVo5bEFjZyIgdGFyZ2V0PSJfYmxhbmsiPg0KPGltZyBhbHQ9IkZh\r\nY2Vib29rIiBzcmM9Imh0dHBzOi8vbWVkaWFjZG4uZXNwc3NsLmNvbS83NzM1L05ld0dDVGVtcGxh\r\ndGUvZmFjZWJvb2staWNvbi5wbmciIHdpZHRoPSIyNCIgc3R5bGU9ImRpc3BsYXk6IGJsb2NrOyB3\r\naWR0aDogMTAwJTsgbWF4LXdpZHRoOiAyNHB4OyBib3JkZXI6IDA7Ij4NCjwvYT4NCjwvdGQ+DQo8\r\ndGQ+DQo8c3BhbiBzdHlsZT0iZGlzcGxheTpibG9jazsgd2lkdGg6MTBweDsiPiZuYnNwOzwvc3Bh\r\nbj4NCjwvdGQ+DQo8dGQgd2lkdGg9IjI0Ij4NCjxhIGhyZWY9Imh0dHA6Ly90Lmx0MDIubmV0L3Ev\r\ndHNVcnp1YXdrcDcwWDI3MWxlNFVKbmg3VVNPUno4TFdDb25aY09KYVc1bWIwQmljbWw0WTJWc2JH\r\nRnljeTVqYjIzRGlBbTZNUkJNLWljYWNMTGNtTDIyanRjOUptZ0ZnIiB0YXJnZXQ9Il9ibGFuayI+\r\nDQo8aW1nIGFsdD0iSW5zdGFncmFtIiBzcmM9Imh0dHBzOi8vbWVkaWFjZG4uZXNwc3NsLmNvbS83\r\nNzM1L05ld0dDVGVtcGxhdGUvaW5zdGFncmFtLWljb24ucG5nIiB3aWR0aD0iM'
2023-05-26 10:03:56.726 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'jQiIHN0eWxlPSJk\r\naXNwbGF5OiBibG9jazsgd2lkdGg6IDEwMCU7IG1heC13aWR0aDogMjRweDsgYm9yZGVyOiAwOyI+\r\nDQo8L2E+DQo8L3RkPg0KPHRkPg0KPHNwYW4gc3R5bGU9ImRpc3BsYXk6YmxvY2s7IHdpZHRoOjEw\r\ncHg7Ij4mbmJzcDs8L3NwYW4+DQo8L3RkPg0KPHRkIHdpZHRoPSIyNCI+DQo8YSBocmVmPSJodHRw\r\nOi8vdC5sdDAyLm5ldC9xL2E4ektfMmZzOHlhMFhHbjJscGJTSHdUYTVxWDNfeWRaVDZjWmNPSmFX\r\nNW1iMEJpY21sNFkyVnNiR0Z5Y3k1amIyM0RpQVB0cWlRZndnZWJNTGMyMHZscmJCUS1UelpwUSIg\r\ndGFyZ2V0PSJfYmxhbmsiPg0KPGltZyBhbHQ9IlR3aXR0ZXIiIHNyYz0iaHR0cHM6Ly9tZWRpYWNk\r\nbi5lc3Bzc2wuY29tLzc3MzUvTmV3R0NUZW1wbGF0ZS90d2l0dGVyLWljb24ucG5nIiB3aWR0aD0i\r\nMjQiIHN0eWxlPSJkaXNwbGF5OiBibG9jazsgd2lkdGg6IDEwMCU7IG1heC13aWR0aDogMjRweDsg\r\nYm9yZGVyOiAwOyI+DQo8L2E+DQo8L3RkPg0KPHRkPg0KPHNwYW4gc3R5bGU9ImRpc3BsYXk6Ymxv\r\nY2s7IHdpZHRoOjEwcHg7Ij4mbmJzcDs8L3NwYW4+DQo8L3RkPg0KPHRkIHdpZHRoPSIyNCI+DQo8\r\nYSBocmVmPSJodHRwOi8vdC5sdDAyLm5ldC9xLzRSQzIzTzlZUW5hMFhjUTh5YTRzUXpSTjZZOHgz\r\nbjl4SS03WmNPSmFXNW1iMEJpY21sNFkyVnNiR0Z5Y3k1amIyM0RpQWpFRGp6YVh1ZTZ5TGtOaHJZ\r\nbEJ4MWlZNUQ1QSIgdGFyZ2V0PSJfYmxhbmsiPg0KPGltZyBhbHQ9IlBpbnRlcmVzdCIgc3JjPSJo\r\ndHRwczovL21lZGlhY2RuLmVzcHNzbC5jb20vNzczNS9OZXdHQ1RlbXBsYXRlL3BpbnRlcmVzdC1p\r\nY29uLnBuZyIgd2lkdGg9IjI0IiBzdHlsZT0iZGlzcGxheTogYmxvY2s7IHdpZHRoOiAxMDAlOyBt\r\nYXgtd2lkdGg6IDI0cHg7IGJvcmRlcjogMDsiPg0KPC9hPg0KPC90ZD4NCjwvdHI+DQo8L3Rib2R5\r\nPg0KPC90YWJsZT4NCjwvdGQ+DQo8L3RyPg0KPHRyIGNsYXNzPSJ0ZXh0Ij4NCjx0ZCBzdHlsZT0i\r\ncGFkZGluZzogMjBweCAxMHB4IDIwcHggMTB'
2023-05-26 10:03:56.726 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'weDsgYm9yZGVyLXdpZHRoOiAwcHg7IGJvcmRlci1z\r\ndHlsZTogbm9uZTsgZm9udC1mYW1pbHk6IHNvZmlhLXBybywgc2Fucy1zZXJpZjsgZm9udC1zaXpl\r\nOiAxMnB4OyBmb250LXdlaWdodDogbm9ybWFsOyBjb2xvcjogIzIyMjIyMjsgbGluZS1oZWlnaHQ6\r\nIDE7IHRleHQtYWxpZ246IGxlZnQiPg0KPHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMXB4Ij48c3Bh\r\nbiBmb250dmFsdWU9InNvZmlhLXBybyIgc3R5bGU9ImZvbnQtZmFtaWx5OiBzb2ZpYS1wcm8sIHNh\r\nbnMtc2VyaWY7Ij48c3BhbiBzdHlsZT0iY29sb3I6I2ZmZmZmZiI+DQpQcm9tbyBjb2RlIEtJRERP\r\nUzE1IHZhbGlkIDUvMjYvMjMgLSA2LzA0LzIzIGZvciAxNSUgb2ZmIHRoZSBwdXJjaGFzZSBvZiBh\r\nICQ1MCBDYXJ0ZXLigJlzIGdpZnQgY2FyZCB3aGlsZSBzdXBwbGllcyBsYXN0IChtYXggZGlzY291\r\nbnQgJDcuNTApLiBQcm9tbyBjb2RlIEtJRERPUzE1IGlzIGEgb25lLXRpbWUgdXNlIGNvZGUgYW5k\r\nIGNhbm5vdCBiZSBjb21iaW5lZCB3aXRoIG90aGVyIG9mZmVycy4NCjxicj4NCjxicj4NClRoZSBt\r\nZXJjaGFudHMgcmVwcmVzZW50ZWQgYXJlIG5vdCBzcG9uc29ycyBvZiBHaWZ0Y2FyZHMuY29tIG9y\r\nIG90aGVyd2lzZSBhZmZpbGlhdGVkIHdpdGggR2lmdGNhcmRzLmNvbS4gVGhlIGxvZ29zIGFuZCBv\r\ndGhlciBpZGVudGlmeWluZyBtYXJrcyBhdHRhY2hlZCBhcmUgdHJhZGVtYXJrcyBvZiBhbmQgb3du\r\nZWQgYnkgZWFjaCByZXByZXNlbnRlZCBjb21wYW55IGFuZC9vciBpdHMgYWZmaWxpYXRlcy4gUGxl\r\nYXNlIHZpc2l0IGVhY2ggY29tcGFueSdzIHdlYnNpdGUgZm9yIGFkZGl0aW9uYWwgdGVybXMgYW5k\r\nIGNvbmRpdGlvbnMuDQo8L3NwYW4+PC9zcGFuPjwvc3Bhbj4NCjwvdGQ+DQo8L3RyPg0KPHRyIGNs\r\nYXNzPSJ0ZXh0Ij4NCjx0ZCBzdHlsZT0icGFkZGluZzogMjBweCAxMHB4IDE1MHB4IDEwcHg7IGJv\r\ncmRlci13aWR'
2023-05-26 10:03:56.726 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'0aDogMHB4OyBib3JkZXItc3R5bGU6IG5vbmU7IGZvbnQtZmFtaWx5OiBzb2ZpYS1w\r\ncm8sIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTJweDsgZm9udC13ZWlnaHQ6IG5vcm1hbDsgY29s\r\nb3I6ICMyMjIyMjI7IGxpbmUtaGVpZ2h0OiAxOyB0ZXh0LWFsaWduOiBjZW50ZXIiPg0KPHNwYW4g\r\nc3R5bGU9ImZvbnQtc2l6ZToxMXB4Ij48c3BhbiBmb250dmFsdWU9InNvZmlhLXBybyIgc3R5bGU9\r\nImZvbnQtZmFtaWx5OiBzb2ZpYS1wcm8sIHNhbnMtc2VyaWY7Ij48c3BhbiBzdHlsZT0iY29sb3I6\r\nI2ZmZmZmZiI+DQo8YSBocmVmPSJodHRwOi8vdC5sdDAyLm5ldC9xL3RhdHhtc3lmTGI4MFhNWUN4\r\naHMzbTU2V0ZjYkdtQzRTYmFMWmNPSmFXNW1iMEJpY21sNFkyVnNiR0Z5Y3k1amIyM0RpQWhWMDV2\r\nd0hJZWFMTFM4ZXBnYi1IaENZZGVQZyIgc3R5bGU9ImNvbG9yOiNmZmZmZmY7dGV4dC1kZWNvcmF0\r\naW9uOnVuZGVybGluZTsiIHRhcmdldD0iX2JsYW5rIj5Qcml2YWN5IFBvbGljeTwvYT4gJm5ic3A7\r\nfCAmbmJzcDs8YSBocmVmPSJodHRwOi8vdC5sdDAyLm5ldC9xLzFGeGV2ajIwWXNBQjBCMHdacHRI\r\nVlFFRlJsalZtVnduVUJUUkRjWjlqYzRQamlnQkdMdmQyR0dNQiIgc3R5bGU9ImNvbG9yOiNmZmZm\r\nZmY7dGV4dC1kZWNvcmF0aW9uOnVuZGVybGluZTsiIHRhcmdldD0iX2JsYW5rIj5VbnN1YnNjcmli\r\nZTwvYT48YnI+DQpZb3UgYXJlIHJlY2VpdmluZyB0aGlzIGVtYWlsIGF0IHlvdXIgcmVxdWVzdC4g\r\nJm5ic3A7VGhpcyBpcyBhbiBhZHZlcnRpc2VtZW50Ljwvc3Bhbj48L3NwYW4+PC9zcGFuPg0KPC90\r\nZD4NCjwvdHI+DQo8L3Rib2R5Pg0KPC90YWJsZT4NCjwvdGQ+DQo8L3RyPg0KPC90Ym9keT4NCjwv\r\ndGFibGU+DQo8L3RkPg0KPC90cj4NCjwvdGJvZHk+DQo8L3RhYmxlPg0KPC90ZD4NCjwvdHI+DQo8\r\nL3Rib2R5Pg0KPC90YWJsZT4NCjxpbWcgc3JjPSJodHRwOi8vdC5sdDAyLm5ldC9xL1pwaFJxUFFf\r\nTGd4NjJpUy1SVHltUXJvWXF6cUpPZndVa2giIGFsdD0iIiB3aWR0aD0iMjAiIGh'
2023-05-26 10:03:56.727 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'laWdodD0iMSI+\r\nPC9ib2R5Pg0KPC9odG1sPg0K\r\n----boundary_83ff5f1472664b978dc02a7696b00b89--\r\n)\r\nOANL25 OK Success\r\n'
2023-05-26 10:03:56.727 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'OANL25 OK Success'
2023-05-26 10:33:56.692 DEBUG (MainThread) [aioimaplib.aioimaplib] connection lost: None
drjjr2 commented 1 year ago

Not sure if these are useful. Here's the last one received for the last time it stopped working. Seems like these are emails with a lot of embedded images giving it trouble.

2023-05-26 12:01:01.938 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* 97 EXISTS\r\n'
2023-05-26 12:01:01.939 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'DONE\r\n'
2023-05-26 12:01:02.009 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'LACL10 OK IDLE terminated (Success)\r\n'
2023-05-26 12:01:02.009 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'LACL10 OK IDLE terminated (Success)'
2023-05-26 12:01:02.010 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'LACL11 NOOP\r\n'
2023-05-26 12:01:02.055 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'LACL11 OK Success\r\n'
2023-05-26 12:01:02.056 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'LACL11 OK Success'
2023-05-26 12:01:02.057 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'LACL12 SEARCH CHARSET utf-8 UnSeen UnDeleted\r\n'
2023-05-26 12:01:02.129 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* SEARCH 8 9 14 18 20 24 28 29 30 39 41 42 45 52 53 55 56 57 58 59 62 63 64 65 66 67 68 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97\r\nLACL12 OK SEARCH completed (Success)\r\n'
2023-05-26 12:01:02.130 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'LACL12 OK SEARCH completed (Success)'
2023-05-26 12:01:02.131 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'LACL13 FETCH 97 BODY.PEEK[]\r\n'
2023-05-26 12:01:02.186 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* 97 FETCH (BODY[] {32123}\r\nDelivered-To: example@example.com\r\nReceived: by 2002:a0c:e912:0:b0:626:7ec:17b6 with SMTP id a18csp523705qvo;\r\n        Fri, 26 May 2023 10:00:59 -0700 (PDT)\r\nX-Google-Smtp-Source: ACHHUZ7HwoQp55RmV8j5w0Ki0HR2ct+50Ft4IWHKKHHRinJBUDhH+eG2mxGWQEY6f68FL0r6Bb/G\r\nX-Received: by 2002:a05:6214:411e:b0:622:265e:3473 with SMTP id kc30-20020a056214411e00b00622265e3473mr2739835qvb.1.1685120458915;\r\n        Fri, 26 May 2023 10:00:58 -0700 (PDT)\r\nARC-Seal: i=1; a=rsa-sha256; t=1685120458; cv=no'
2023-05-26 12:01:02.187 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'ne;\r\n        d=google.com; s=arc-20160816;\r\n        b=QESiuD2vcs08epYTo6b09+W01yuirusSiNIRYArSoRt9C45IHcWhKAwnUGh962Dsh7\r\n         zV81JCDTf3lTr3anz9nRBaYp8HhQX8SXHsjpZiD4Raf5b2pou+Cc9JC1oQ+owzKlsbcn\r\n         SHgHJfODK3cNTreg5ZRueHzPLcE+s1cn6TqeTkh/J4XAFYN1SRF7D0wUNhLu5wtHH8D4\r\n         ud70sKl0M+ppNHqV5I0wn9H4SfkuHyhtKR3/OBGgHmCJF8jsQlRFHmC0XT9WUtTYvLZf\r\n         B1iS9k3+z95c94odJe1hWJxueir7TzaMYhgTZRjaYLyZ6cQdaj4hS52ttpcZZIu7L+C3\r\n         /aiw==\r\nARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816;\r\n        h=message-id:errors-to:to:date:from:subject:mime-version\r\n         :dkim-signature:dkim-signature;\r\n        bh=iPR7AopklbLKH8K3upBtmJMlNT6UjIGWGaShuX8SlZg=;\r\n        b=B5XQFGxZOyswPxrVnC3JXBu56h5YWK6V9t+Jy9quJiNons68u6o+eSm5Pp9If+UdaA\r\n         7UZ11lVQFYmi+CNZb44GFumRH0qwF40skMH7bHXMzh5uswb3MOSJgx8J5pg2ZGYI6llU\r\n         fMsID7LlNGl56v1bfHe4b1ipVURoDm5Vzi/mIKd4K/kfaA7v1ABmGAMEVsoz0ZNjWQzV\r\n         G81XwYxisfvxlQAEKe3NsjkngzxSvNmQlSkubp1cMlyez+cdcR3v1Yf2Rc+nqUStdJ/5'
2023-05-26 12:01:02.188 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'\r\n         ORkVFlo69Nxpg3pWK7ZiE3uQWAPJ1sLY1RZKLsNogzdD2h5Qm20dvHh5zA3Bjt7T0bw5\r\n         4CAw==\r\nARC-Authentication-Results: i=1; mx.google.com;\r\n       dkim=pass header.i=@giftcards.com header.s=listrak header.b=GXcQUeda;\r\n       dkim=pass header.i=@esp1.co header.s=app header.b=rEsc4AJh;\r\n       spf=pass (google.com: domain of 4ukfgqtr4grgthkfeuqajnhurrfamlbfngpekgpgtpt@b.lt02.net designates 142.0.81.135 as permitted sender) smtp.mailfrom=4UKFGQTR4GRGTHKFEUQAJNHURRFAMLBFNGPEKGPGTPT@b.lt02.net\r\nReturn-Path: <4UKFGQTR4GRGTHKFEUQAJNHURRFAMLBFNGPEKGPGTPT@b.lt02.net>\r\nReceived: from vmta135.81.lstrk.net (vmta135.81.lstrk.net. [142.0.81.135])\r\n        by mx.google.com with ESMTPS id x17-20020ae9e911000000b0075caa4194bdsi1367924qkf.383.2023.05.26.10.00.58\r\n        for <example@example.com>\r\n        (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256);\r\n        Fri, 26 May 2023 10:00:58 -0700 (PDT)\r\nReceived-SPF: pass (google.com: domain of 4ukfgqtr4grgthkfeuqajnhurrfamlbfngpekgpgtpt@b.lt02.net designates 142.0.81.135 as permitted sender) client-ip=142.0.81.135;\r\nAuthentication-Results: mx.google.com;\r\n       dkim=pass header.i=@giftcards.com header.s=listrak header.b=GXcQUeda;\r\n       dkim=pass header.i=@esp1.co header.s=app header.b=rEsc4AJh;\r\n       spf=pass (google.com: domain of 4ukfgqtr4grgthkfeuqajnhurrfamlbfngpekgpgtpt@b.lt02.net designates 142.'
2023-05-26 12:01:02.188 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'0.81.135 as permitted sender) smtp.mailfrom=4UKFGQTR4GRGTHKFEUQAJNHURRFAMLBFNGPEKGPGTPT@b.lt02.net\r\nDKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=listrak; d=giftcards.com;\r\n h=MIME-Version:Subject:From:Date:To:Content-Type:Message-ID;\r\n i=info@giftcards.com;\r\n bh=iPR7AopklbLKH8K3upBtmJMlNT6UjIGWGaShuX8SlZg=;\r\n b=GXcQUedaJtNoFgHnGnt8EOZrIBYzHf4R3G0CIE+vcYs/PHFEaZeHxEmsTu9HlxOT6GOB6FqwsmWw\r\n   gfHiqXzs9v10iztR1XrIMT5Hmoz5qnl20bgKlOrNO551xa247xAasy/K1zxlwvj8OiZEI5jGENsv\r\n   yaMX9hxx2W+oDlj7cDY=\r\nDKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=app; d=esp1.co;\r\n h=MIME-Version:Subject:From:Date:To:Content-Type:Message-ID;\r\n bh=iPR7AopklbLKH8K3upBtmJMl'
2023-05-26 12:01:02.189 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'NT6UjIGWGaShuX8SlZg=;\r\n b=rEsc4AJhRvkD94WbV69oqEwmoGlMbDwRXukxEBHP+pKEWyklAAfrUFrhL3z+S9ZjDIZbVlIftfG6\r\n   URo3sFmIMTYgfR8PoaKX1I/irB/wQmrNVXb2dwXyxwP4XCoz63WHy1sM7aPisnDiAtmQfNMWUuKL\r\n   f3IjMtytHyYNVWmvAjw=\r\nReceived: by vmta135.81.lstrk.net id he3isk2r5isk for <example@example.com>; Fri, 26 May 2023 13:00:44 -0400 (envelope-from <4UKFGQTR4GRGTHKFEUQAJNHURRFAMLBFNGPEKGPGTPT@b.lt02.net>)\r\nX-Message-Reference: 458R1OFJUAGK7BUNDN4BKONHJ4\r\nX-RPCampaign: esp5253568249797074856571755566857868785266757978727452\r\nMIME-Version: 1.0\r\nSubject: =?utf-8?B?8J+OkyBHcmFkcyBHb3R0YSBFYXQh?=\r\nFrom: "Giftcards.com" <info@giftcards.com>\r\nDate: 26 May 2023 13:00:44 -0400\r\nTo: example@example.com\r\nX-Mailer-Reference: 4UKFGQTR4GRGTHKFEUQAJNHURRFAMLBFNGPEKGPGTPT\r\nErrors-To: 4UKFGQTR4GRGTHKFEUQAJNHURRFAMLBFNGPEKGPGTPT@b.lt02.net\r\nContent-Type: multipart/alternative;\r\n boundary=--boundary_db75dad9081447619ee594fa1c54cb51\r\nMessage-ID: <0.1.3C.A21.1D98FF39C5BDAC4.6E28@vmta135.81.lstrk.net>\r\n\r\n----boundary_db75dad9081447619ee594fa1c54cb51\r\nContent-Type: text/plain; charset=us-ascii\r\nContent-Transfer-Encoding: 7bit\r\n\r\nSave 15% off grad gifts.\r\nView this message in your browser (http://t.lt02.net/q/v4-2ScW_-C4W_1JZoysue10D76wwKdzGo0uY6C1DvH1vrKqQOAtDQhdc1)\r\n\r\nGiftcards.com.Save on Domino\'s Gift Cards (http://t.lt02.net/q/iRcsIsWfk8t0XBvVW0_mE-f2VipxIPeHUdCZcOJaW5mb0Bicml4Y2VsbGFycy5j'
2023-05-26 12:01:02.192 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'b23DiABprP3kYVfJGLDtekYP1GUNwSYzQ)\r\n\r\nGifting Grads is a "Pizza" Cake\r\n\r\nDomino\'s Gift Card (http://t.lt02.net/q/_kqe6KR8GAM0X0YkgEKi8qYx6b3g6dcPkbeZcOJaW5mb0Bicml4Y2VsbGFycy5jb23DiANlXZUCv6e68LZ9IlQRg6_vTRX2w)\r\n\r\nSave 15%\r\nwith promo code GRADPIZZA\r\n\r\nwith the purchase of a$25 Domino\'s(R) Gift Card\r\n\r\nShop Now (http://t.lt02.net/q/1w9r3oKjj0x0XFoCITGvmq6usTQb3Ib28FCZcOJaW5mb0Bicml4Y2VsbGFycy5jb23DiAHDcBamifd6NL1DXcOFCfFOh41Aw)\r\n\r\n(c) Giftcards.com.All Rights Reserved\r\n6220 Stoneridge Mall Road, Pleasanton, CA 94588\r\n\r\nFacebook (http://t.lt02.net/q/xa88k8wUoQI0XiVWELmoKC_F0x7akjPPl0kZcOJaW5mb0Bicml4Y2VsbGFycy5jb23DiAP765z4RkcL6L5ljBuEoE86z28uw)\r\n\r\nInstagram (http://t.lt02.net/q/hEschfRWHMp0XYwBIzZMx6uKq_uohxrRO8mZcOJaW5mb0Bicml4Y2VsbGFycy5jb23DiA8iLTn0XLeb5LAFTsCQB5zrfAg0Q)\r\n\r\nTwitter (http://t.lt02.net/q/1cPSnNmP8A_0X01U4nDq-9FA9EYZn5ke2unZcOJaW5mb0Bicml4Y2VsbGFycy5jb23DiAsMektuqOc4RL9h6oo-AG5mbLFpg)\r\n\r\nPinterest (http://t.lt02.net/q/YV_bjvudjta0XAqBP4oCxPu5kIqOjvXWqc9ZcOJaW5mb0Bicml4Y2VsbGFycy5jb23DiAehTYjCWEcImLbCBqopoBh3HgW2g)\r\n\r\nPromo code GRADPIZZA valid 5/26/23 - 6/04/23 for 15% off the purchase of a $25 Domino\'s gift card while supplies last (max discount $3.75).Promo code GRADPIZZA is a one-time use code and cannot be combined with other offers.\r\n\r\nThe merchants represented are not sponsors of Giftcards.com or otherwise affiliated with Giftcards.c'
2023-05-26 12:01:02.193 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b"om. The logos and other identifying marks attached are trademarks of and owned by each represented company and/or its affiliates. Please visit each company's website for additional terms and conditions.\r\n\r\nPrivacy Policy (http://t.lt02.net/q/PVhjR88yCaa0XTBt8cdnwSPPMUakRF8kAXyZcOJaW5mb0Bicml4Y2VsbGFycy5jb23DiAT-Vhk3rReoBLPAEtxwgfMmk3nYw) |Unsubscribe (http://t.lt02.net/q/10J0hE7qJNk7q1vWeczsiLl-x-DFh6oAwzxTwJ0I8je8InXB3J-VC6KH1)\r\nYou are receiving this email at your request.This is an advertisement.\r\n----boundary_db75dad9081447619ee594fa1c54cb51\r\nContent-Type: text/html; charset=utf-8\r\nContent-Transfer-Encoding: base64\r\n\r\nPCFET0NUWVBFIGh0bWw+DQo8aHRtbCBsYW5nPSJlbiI+DQo8aGVhZD4NCjx0aXRsZT7wn46TIEdy\r\nYWRzIEdvdHRhIEVhdCE8L3RpdGxlPg0KPG1ldGEgaHR0cC1lcXVpdj0iQ29udGVudC1UeXBlIiBj\r\nb250ZW50PSJ0ZXh0L2h0bWw7IiBjaGFyc2V0PSJ1dGYtOCI+DQo8bWV0YSBuYW1lPSJ2aWV3cG9y\r\ndCIgY29udGVudD0id2lkdGg9ZGV2aWNlLXdpZHRoLCBpbml0aWFsLXNjYWxlPTEiPg0KPG1ldGEg\r\naHR0cC1lcXVpdj0iWC1VQS1Db21wYXRpYmxlIiBjb250ZW50PSJJRT1lZGdlIj4NCjxsaW5rIHJl\r\nbD0ic3R5bGVzaGVldCIgaHJlZj0iaHR0cHM6Ly91c2UudHlwZWtpdC5uZXQvYWFxN2dteC5jc3Mi\r\nPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkJCWltZ3sNCgkJCWJvcmRlcjogMDsNCgkJCWxp\r\nbmUtaGVpZ2h0OiAxMDAlOw0KCQkJb3V0bGluZTogbm9uZTsNCgkJCXRleHQtZGVjb3JhdGlvbjog\r\nbm9uZTsNCgkJCX0NCgkJCXRhYmxlew0KCQkJYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZSAhaW1w\r\nb3J0YW50Ow"
2023-05-26 12:01:02.193 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'0KCQkJdGFibGUtbGF5b3V0OiBmaXhlZDsNCgkJCW92ZXJmbG93LXdyYXA6IGJyZWFr\r\nLXdvcmQ7DQoJCQl3b3JkLXdyYXA6IGJyZWFrLXdvcmQ7DQoJCQktbXMtd29yZC1icmVhazogYnJl\r\nYWstYWxsOw0KCQkJd29yZC1icmVhazogYnJlYWstd29yZDsNCgkJCX0NCgkJCXRhYmxlIHRhYmxl\r\nIHRhYmxlew0KCQkJdGFibGUtbGF5b3V0OiBhdXRvOw0KCQkJfQ0KCQkJLmltYWdlIHRhYmxlLCAu\r\nc29jaWFsIHRhYmxlLCAuZGl2aWRlciB0YWJsZXsNCgkJCXRhYmxlLWxheW91dDogYXV0bzsNCgkJ\r\nCX0NCgkJCWJvZHl7DQoJCQloZWlnaHQ6IDEwMCUgIWltcG9ydGFudDsNCgkJCW1hcmdpbjogMCAh\r\naW1wb3J0YW50Ow0KCQkJcGFkZGluZzogMCAhaW1wb3J0YW50Ow0KCQkJd2lkdGg6IDEwMCUgIWlt\r\ncG9ydGFudDsNCgkJCWZvbnQtZmFtaWx5OiBzb2ZpYS1wcm8sIHNhbnMtc2VyaWY7DQoJCQlmb250\r\nLXNpemU6IDEycHg7DQoJCQljb2xvcjogIzIyMjIyMjsNCgkJCX0NCgkJCWltZ3sNCgkJCS1tcy1p\r\nbnRlcnBvbGF0aW9uLW1vZGU6IGJpY3ViaWM7DQoJCQl9DQoJCQlkaXYsIGJ1dHRvbnsNCgkJCXZl\r\ncnRpY2FsLWFsaWduOiB0b3A7DQoJCQltYXJnaW46IDA7DQoJCQl9DQoJCQlhW3gtYXBwbGUtZGF0\r\nYS1kZXRlY3RvcnNdew0KCQkJY29sb3I6IGluaGVyaXQgIWltcG9ydGFudDsNCgkJCXRleHQtZGVj\r\nb3JhdGlvbjogbm9uZSAhaW1wb3J0YW50Ow0KCQkJZm9udC1zaXplOiBpbmhlcml0ICFpbXBvcnRh\r\nbnQ7DQoJCQlmb250LWZhbWlseTogaW5oZXJpdCAhaW1wb3J0YW50Ow0KCQkJZm9udC13ZWlnaHQ6\r\nIGluaGVyaXQgIWltcG9ydGFudDsNCgkJCWxpbmUtaGVpZ2h0OiBpbmhlcml0ICFpbXBvcnRhbnQ7\r\nDQoJCQl9DQoJCQl1bCwgb2x7DQoJCQltYXJnaW4tdG9wOiAwOw0KCQkJbWFyZ2luLWJvdHRvbTog\r\nMDsNCgkJCX0NCgkJCWxpew0KCQkJbWFyZ2luOiAwOw0KCQkJfQ0KCQkJb2wgbGkgJmd0OyBvbCwg\r\nb2wgbGkgJmd0OyBvbCBsaSAmZ3Q7IG9sIGxpICZndDsgb2wgbGkgJmd0OyBvbH'
2023-05-26 12:01:02.194 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'sNCgkJCWxpc3Qt\r\nc3R5bGUtdHlwZTogbG93ZXItYWxwaGE7DQoJCQl9DQoJCQlvbCBsaSAmZ3Q7IG9sIGxpICZndDsg\r\nb2wsIG9sIGxpICZndDsgb2wgbGkgJmd0OyBvbCBsaSAmZ3Q7IG9sIGxpICZndDsgb2wgbGkgJmd0\r\nOyBvbHsNCgkJCWxpc3Qtc3R5bGUtdHlwZTogbG93ZXItcm9tYW47DQoJCQl9DQoJCQlvbCBsaSAm\r\nZ3Q7IG9sIGxpICZndDsgb2wgbGkgJmd0OyBvbHsNCgkJCWxpc3Qtc3R5bGUtdHlwZTogZGVjaW1h\r\nbDsNCgkJCX0NCgkJCUBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1heC13aWR0aDogNDgwcHgpew0K\r\nCQkJLm1vYmlsZS1oaWRlLCAubW9iaWxlLWhpZGUuZGVza3RvcC1oaWRlew0KCQkJZGlzcGxheTog\r\nbm9uZSAhaW1wb3J0YW50Ow0KCQkJfQ0KCQkJLm1vYmlsZS1hbGlnbi1jZW50ZXIgdGR7DQoJCQl0\r\nZXh0LWFsaWduOiBjZW50ZXIgIWltcG9ydGFudDsNCgkJCX0NCgkJCS5tb2JpbGUtYWxpZ24tbGVm\r\ndCB0ZHsNCgkJCXRleHQtYWxpZ246IGxlZnQgIWltcG9ydGFudDsNCgkJCX0NCgkJCS5tb2JpbGUt\r\nYWxpZ24tcmlnaHQgdGR7DQoJCQl0ZXh0LWFsaWduOiByaWdodCAhaW1wb3J0YW50Ow0KCQkJfQ0K\r\nCQkJLm1vYmlsZS1hbGlnbi1jZW50ZXIgaW1nLCAubW9iaWxlLWFsaWduLWxlZnQgaW1nLCAubW9i\r\naWxlLWFsaWduLXJpZ2h0IGltZ3sNCgkJCWRpc3BsYXk6IGlubGluZS1ibG9jayAhaW1wb3J0YW50\r\nOw0KCQkJbWFyZ2luOiAwOw0KCQkJdmVydGljYWwtYWxpZ246IHRvcDsNCgkJCX0NCgkJCS5Db2x1\r\nbW4tMiBkaXYsIC5Db2x1bW4tMyBkaXYsIC5Db2x1bW4tNCBkaXZ7DQoJCQlkaXNwbGF5OiBibG9j\r\nayAhaW1wb3J0YW50Ow0KCQkJd2lkdGg6IDEwMCUgIWltcG9ydGFudDsNCgkJCW1heC13aWR0aDog\r\nMTAwJSAhaW1wb3J0YW50Ow0KCQkJfQ0KCQkJLkNvbHVtbi0zIGRpdi5oYWxmLXdpZHRoew0KCQkJ\r\nZGlzcGxheTogaW5saW5lLWJsb2NrICFpbXBvcnRhbnQ7DQoJCQl3aWR0aDogNTAlICFpbXBvcnRh\r\nbnQ7DQoJCQltYXgtd2lkdGg6IDUwJSAhaW1w'
2023-05-26 12:01:02.194 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'b3J0YW50Ow0KCQkJfQ0KCQkJLm5hdi5zdGFjayBh\r\new0KCQkJZGlzcGxheTogYmxvY2sgIWltcG9ydGFudDsNCgkJCXdpZHRoOiAxMDAlICFpbXBvcnRh\r\nbnQ7DQoJCQlib3JkZXI6IDAgIWltcG9ydGFudDsNCgkJCXBhZGRpbmc6IDE1cHggMCAhaW1wb3J0\r\nYW50Ow0KCQkJfQ0KCQkJLmRlc2t0b3AtaGlkZSwgLmRlc2t0b3AtaGlkZSB0ciwgLmRlc2t0b3At\r\naGlkZSB0ZHsNCgkJCXdpZHRoOiAxMDAlICFpbXBvcnRhbnQ7DQoJCQltYXgtaGVpZ2h0OiBpbmhl\r\ncml0ICFpbXBvcnRhbnQ7DQoJCQlvdmVyZmxvdzogdmlzaWJsZSAhaW1wb3J0YW50Ow0KCQkJZGlz\r\ncGxheTogYmxvY2sgIWltcG9ydGFudDsNCgkJCWZsb2F0OiBub25lICFpbXBvcnRhbnQ7DQoJCQl9\r\nDQoJCQkuZGVza3RvcC1oaWRlew0KCQkJZGlzcGxheTogdGFibGUgIWltcG9ydGFudDsNCgkJCXdp\r\nZHRoOiAxMDAlICFpbXBvcnRhbnQ7DQoJCQl9DQoJCQkuZGVza3RvcC1oaWRlIHRyew0KCQkJZGlz\r\ncGxheTogdGFibGUtcm93ICFpbXBvcnRhbnQ7DQoJCQl9DQoJCQkuZGVza3RvcC1oaWRlIHRkew0K\r\nCQkJZGlzcGxheTogdGFibGUtY2VsbCAhaW1wb3J0YW50Ow0KCQkJfQ0KCQkJfUBtZWRpYSBzY3Jl\r\nZW4gYW5kIChtaW4td2lkdGg6IDQ4MXB4KXsNCgkJCS5Db2x1bW4tMiBkaXZ7DQoJCQltYXgtd2lk\r\ndGg6IDUwJSAhaW1wb3J0YW50Ow0KCQkJfQ0KCQkJLkNvbHVtbi0yIGRpdi5jb2x1bW4tMjV7DQoJ\r\nCQltYXgtd2lkdGg6IDI1JSAhaW1wb3J0YW50Ow0KCQkJfQ0KCQkJLkNvbHVtbi0yIGRpdi5jb2x1\r\nbW4tMzN7DQoJCQltYXgtd2lkdGg6IDMzLjMzNCUgIWltcG9ydGFudDsNCgkJCX0NCgkJCS5Db2x1\r\nbW4tMiBkaXYuY29sdW1uLTY2ew0KCQkJbWF4LXdpZHRoOiA2Ni42NjclICFpbXBvcnRhbnQ7DQoJ\r\nCQl9DQoJCQkuQ29sdW1uLTIgZGl2LmNvbHVtbi03NXsNCgkJCW1heC13aWR0aDogNzUlICFpbXBv\r\ncnRhbnQ7DQoJCQl9DQoJCQkuQ29sdW1uLTMgZGl2ew0KCQkJbWF4LXdpZHRoOiAzMy4zMzQlICFp\r\nbXBvcnRhbn'
2023-05-26 12:01:02.194 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'Q7DQoJCQl9DQoJCQkuQ29sdW1uLTQgZGl2ew0KCQkJbWF4LXdpZHRoOiAyNSUgIWlt\r\ncG9ydGFudDsNCgkJCX0NCgkJCX0gZGl2W3N0eWxlKj0ibWFyZ2luOiAxNnB4IDA7Il17DQoJCQlt\r\nYXJnaW46IDAgIWltcG9ydGFudDsNCgkJCX0NCgkJPC9zdHlsZT4NCjwvaGVhZD4NCjxib2R5IHN0\r\neWxlPSJtYXJnaW46IDBweDsgcGFkZGluZzogMHB4OyBtaW4td2lkdGg6IDEwMCU7IGJhY2tncm91\r\nbmQtY29sb3I6IHJnYigyNTUsIDI1NSwgMjU1KTsgem9vbTogMTAwJTsiPg0KPHNwYW4gc3R5bGU9\r\nImRpc3BsYXk6bm9uZSAhaW1wb3J0YW50O3Zpc2liaWxpdHk6aGlkZGVuO21zby1oaWRlOmFsbDtm\r\nb250LXNpemU6MXB4O2xpbmUtaGVpZ2h0OjFweDttYXgtaGVpZ2h0OjBweDttYXgtd2lkdGg6MHB4\r\nO29wYWNpdHk6MDtvdmVyZmxvdzpoaWRkZW47Ij5TYXZlIDE1JSBvZmYgZ3JhZCBnaWZ0cy4NCjxi\r\ncj4NCiZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNw\r\nOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZu\r\nYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25q\r\nOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6\r\nd25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNw\r\nOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZu\r\nYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25q\r\nOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6\r\nd25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNw\r\nOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYn'
2023-05-26 12:01:02.195 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'NwOyZ6d25qOyZu\r\nYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25q\r\nOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6\r\nd25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOyZuYnNwOyZ6d25qOzwvc3Bhbj4NCjx0YWJsZSB3\r\naWR0aD0iMTAwJSIgY2xhc3M9ImJvZHkiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIg\r\nYm9yZGVyPSIwIiByb2xlPSJwcmVzZW50YXRpb24iPg0KPHRib2R5Pg0KPHRyPg0KPHRkIHN0eWxl\r\nPSJiYWNrZ3JvdW5kLWNvbG9yOiNmZmZmZmY7Ij4NCjx0YWJsZSB3aWR0aD0iMTAwJSIgY2xhc3M9\r\nIldyYXBwZXIiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgYm9yZGVyPSIwIiByb2xl\r\nPSJwcmVzZW50YXRpb24iPg0KPHRib2R5Pg0KPHRyPg0KPHRkIGFsaWduPSJjZW50ZXIiIHN0eWxl\r\nPSJiYWNrZ3JvdW5kLWNvbG9yOnRyYW5zcGFyZW50OyBib3JkZXItdG9wLXN0eWxlOiBub25lOyBi\r\nb3JkZXItYm90dG9tLXN0eWxlOiBub25lOyBib3JkZXItcmlnaHQtc3R5bGU6IG5vbmU7IGJvcmRl\r\nci1sZWZ0LXN0eWxlOiBub25lOyBib3JkZXItdG9wLXdpZHRoOiAwcHg7IGJvcmRlci1ib3R0b20t\r\nd2lkdGg6IDBweDsgYm9yZGVyLXJpZ2h0LXdpZHRoOiAwcHg7IGJvcmRlci1sZWZ0LXdpZHRoOiAw\r\ncHg7IGJvcmRlci1jb2xvcjogIzIyMjIyMjsiPg0KPCEtLVtpZihndGUgbXNvIDkpfChJRSldPjx0\r\nYWJsZSB3aWR0aD0iNjAwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIGJvcmRlcj0i\r\nMCIgc3R5bGU9IndpZHRoOiA2MDBweDsiIHJvbGU9InByZXNlbnRhdGlvbiI+IDx0cj4gPHRkIGFs\r\naWduPSJjZW50ZXIiPjwhW2VuZGlmXS0tPg0KPCEtLUJFR0lOIEhFQURFUi0tPg0KPHRhYmxlIHdp\r\nZHRoPSIxMDAlIiBjbGFzcz0iQ29udGFpbmVyIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9\r\nIjAiIGJvcmRlcj0iMCIgc3R5bGU9Im1heC13'
2023-05-26 12:01:02.195 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'aWR0aDo2MDBweDsiIHJvbGU9InByZXNlbnRhdGlv\r\nbiI+DQo8dGJvZHk+DQo8dHI+DQo8dGQgYWxpZ249ImNlbnRlciIgc3R5bGU9ImJhY2tncm91bmQt\r\nY29sb3I6I2ZmZiI+DQo8dGFibGUgd2lkdGg9IjEwMCUiIGNsYXNzPSJDb2x1bW4tMSIgY2VsbHBh\r\nZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBib3JkZXI9IjAiIHJvbGU9InByZXNlbnRhdGlvbiI+\r\nDQo8dGJvZHk+DQo8dHI+DQo8dGQgYWxpZ249ImNlbnRlciIgc3R5bGU9IndpZHRoOjEwMCU7IHZl\r\ncnRpY2FsLWFsaWduOnRvcDsiPg0KPHRhYmxlIHdpZHRoPSIxMDAlIiBjZWxscGFkZGluZz0iMCIg\r\nY2VsbHNwYWNpbmc9IjAiIGJvcmRlcj0iMCIgcm9sZT0icHJlc2VudGF0aW9uIj4NCjx0Ym9keT4N\r\nCjx0ciBjbGFzcz0idGV4dCI+DQo8dGQgc3R5bGU9InBhZGRpbmc6IDBweCAxMHB4IDBweCAxMHB4\r\nOyBib3JkZXItd2lkdGg6IDBweDsgYm9yZGVyLXN0eWxlOiBub25lOyBmb250LWZhbWlseTogc29m\r\naWEtcHJvLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDEycHg7IGZvbnQtd2VpZ2h0OiBub3JtYWw7\r\nIGNvbG9yOiAjZmZmOyBsaW5lLWhlaWdodDogMS41OyB0ZXh0LWFsaWduOiByaWdodCI+DQo8YSBo\r\ncmVmPSJodHRwOi8vdC5sdDAyLm5ldC9xL0ExamZlNl9najVrX0pDTUdkeHRnV3MwWm92UWlkMkNC\r\nRE81YjNLN3BpWXRpdmY5UTIyUjljUDJPQyIgc3R5bGU9ImNvbG9yOiMwMDA7dGV4dC1kZWNvcmF0\r\naW9uOnVuZGVybGluZTsiIHRhcmdldD0iX2JsYW5rIj48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEx\r\ncHgiPjxzcGFuIGZvbnR2YWx1ZT0ic29maWEtcHJvIiBzdHlsZT0iZm9udC1mYW1pbHk6IHNvZmlh\r\nLXBybywgc2Fucy1zZXJpZjsiPjxzcGFuIHN0eWxlPSJjb2xvcjojMDAwIj5WaWV3IHRoaXMgbWVz\r\nc2FnZSBpbiB5b3VyIGJyb3dzZXI8L3NwYW4+PC9zcGFuPjwvc3Bhbj48L2E+DQo8L3RkPg0KPC90\r\ncj4NCjwvdGJv'
2023-05-26 12:01:02.196 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'ZH'
2023-05-26 12:01:02.198 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'k+DQo8L3RhYmxlPg0KPC90ZD4NCjwvdHI+DQo8L3Rib2R5Pg0KPC90YWJsZT4N\r\nCjwvdGQ+DQo8L3RyPg0KPC90Ym9keT4NCjwvdGFibGU+DQo8IS0tW2lmKGd0ZSBtc28gOSl8KElF\r\nKV0+PC90ZD4gPC90cj4gPC90YWJsZT48IVtlbmRpZl0tLT4NCjwvdGQ+DQo8L3RyPg0KPC90Ym9k\r\neT4NCjwvdGFibGU+DQo8IS0tRU5EIEhFQURFUi0tPg0KPCEtLUJFR0lOIEhFUk8tLT4NCjx0YWJs\r\nZSB3aWR0aD0iMTAwJSIgY2xhc3M9IldyYXBwZXIiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2lu\r\nZz0iMCIgYm9yZGVyPSIwIiByb2xlPSJwcmVzZW50YXRpb24iPg0KPHRib2R5Pg0KPHRyPg0KPHRk\r\nIGFsaWduPSJjZW50ZXIiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOnRyYW5zcGFyZW50OyBib3Jk\r\nZXItdG9wLXN0eWxlOiBub25lOyBib3JkZXItYm90dG9tLXN0eWxlOiBub25lOyBib3JkZXItcmln\r\naHQtc3R5bGU6IG5vbmU7IGJvcmRlci1sZWZ0LXN0eWxlOiBub25lOyBib3JkZXItdG9wLXdpZHRo\r\nOiAwcHg7IGJvcmRlci1ib3R0b20td2lkdGg6IDBweDsgYm9yZGVyLXJpZ2h0LXdpZHRoOiAwcHg7\r\nIGJvcmRlci1sZWZ0LXdpZHRoOiAwcHg7IGJvcmRlci1jb2xvcjogIzIyMjIyMjsiPg0KPHRhYmxl\r\nIHdpZHRoPSIxMDAlIiBjbGFzcz0iQ29udGFpbmVyIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNp\r\nbmc9IjAiIGJvcmRlcj0iMCIgc3R5bGU9Im1heC13aWR0aDo2MDBweDsiIHJvbGU9InByZXNlbnRh\r\ndGlvbiI+DQo8dGJvZHk+DQo8dHI+DQo8dGQgYWxpZ249ImNlbnRlciIgc3R5bGU9ImJhY2tncm91\r\nbmQtY29sb3I6dHJhbnNwYXJlbnQiPg0KPHRhYmxlIHdpZHRoPSIxMDAlIiBjbGFzcz0iQ29sdW1u\r\nLTEgIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIGJvcmRlcj0iMCIgcm9sZT0icHJl\r\nc2VudGF0aW9uIj4NCjx0Ym9keT4NCjx0cj4NCjx0ZCBhbGlnbj0iY2VudGVyIiBzdHlsZT0iYmFj\r\na2dyb3VuZC1jb2xvcjojZmY5YTczIj4NCjx0YWJsZSB3aWR0aD0iMTAwJSIgY2VsbH'
2023-05-26 12:01:02.199 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'BhZGRpbmc9\r\nIjAiIGNlbGxzcGFjaW5nPSIwIiBib3JkZXI9IjAiIHJvbGU9InByZXNlbnRhdGlvbiI+DQo8dGJv\r\nZHk+DQo8dHIgY2xhc3M9ImltYWdlIj4NCjx0ZCBhbGlnbj0iY2VudGVyIiBzdHlsZT0icGFkZGlu\r\nZzogMHB4IDBweCAwcHggMHB4OyI+DQo8YSBocmVmPSJodHRwOi8vdC5sdDAyLm5ldC9xL3czR2lq\r\nejNkZVBWMFhWNEFRbFZISFpTNzRHYWFqbFY1ZjJZWmNPSmFXNW1iMEJpY21sNFkyVnNiR0Z5Y3k1\r\namIyM0RpQTk2d3pyQVF2ZVp0TDVwdURsZGtKM012V3VNUSIgdGFyZ2V0PSJfYmxhbmsiPg0KPGlt\r\nZyBzcmM9Imh0dHBzOi8vbWVkaWFjZG4uZXNwc3NsLmNvbS83NzM1LzIwMjMvd2VlazIxLzIxLjMt\r\ncjEuanBnIiBhbHQ9IkdpZnRjYXJkcy5jb20uIFNhdmUgb24gRG9taW5vJ3MgR2lmdCBDYXJkcyIg\r\nc3R5bGU9ImRpc3BsYXk6YmxvY2s7IHdpZHRoOiAxMDAlOyBtYXgtd2lkdGg6IDYwMHB4ICFpbXBv\r\ncnRhbnQ7Ym9yZGVyOjBweDsiIHdpZHRoPSI2MDAiPg0KPC9hPg0KPC90ZD4NCjwvdHI+DQo8L3Ri\r\nb2R5Pg0KPC90YWJsZT4NCjwvdGQ+DQo8L3RyPg0KPC90Ym9keT4NCjwvdGFibGU+DQo8dGFibGUg\r\nd2lkdGg9IjEwMCUiIGNsYXNzPSJDb2x1bW4tMSAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2lu\r\nZz0iMCIgYm9yZGVyPSIwIiByb2xlPSJwcmVzZW50YXRpb24iPg0KPHRib2R5Pg0KPHRyPg0KPHRk\r\nIGFsaWduPSJjZW50ZXIiPg0KPHRhYmxlIHdpZHRoPSIxMDAlIiBjZWxscGFkZGluZz0iMCIgY2Vs\r\nbHNwYWNpbmc9IjAiIGJvcmRlcj0iMCIgcm9sZT0icHJlc2VudGF0aW9uIj4NCjx0Ym9keT4NCjx0\r\nciBjbGFzcz0idGV4dCI+DQo8dGQgc3R5bGU9InBhZGRpbmc6IDEwcHggMTBweCAyMHB4IDEwcHg7\r\nIGJvcmRlci13aWR0aDogMHB4OyBib3JkZXItc3R5bGU6IG5vbmU7IGZvbnQtZmFtaWx5OiBzb2Zp\r\nYS1wcm8sIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTJweDsgZm9udC13ZWlnaHQ6IG5vcm1hbDsg\r\nY29sb3I6ICMyMjIyMjI7IGxpbmUtaGVpZ2h0OiAx'
2023-05-26 12:01:02.200 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'LjI7IHRleHQtYWxpZ246IGNlbnRlcjsiPg0K\r\nPHNwYW4gZm9udHZhbHVlPSJzb2ZpYS1wcm8iIHN0eWxlPSJmb250LWZhbWlseTogc29maWEtcHJv\r\nLCBzYW5zLXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTozNnB4Ij48Yj5HaWZ0aW5nIEdy\r\nYWRzIGlzIGEgJmxkcXVvO1BpenphJnJkcXVvOyBDYWtlDQo8L2I+PC9zcGFuPjwvc3Bhbj4NCjwv\r\ndGQ+DQo8L3RyPg0KPC90Ym9keT4NCjwvdGFibGU+DQo8L3RkPg0KPC90cj4NCjwvdGJvZHk+DQo8\r\nL3RhYmxlPg0KPC90ZD4NCjwvdHI+DQo8L3Rib2R5Pg0KPC90YWJsZT4NCjwvdGQ+DQo8L3RyPg0K\r\nPC90Ym9keT4NCjwvdGFibGU+DQo8IS0tRU5EIEhFUk8tLT4NCjwhLS1CRUdJTiBDQVJEIFJPV1Mt\r\nLT4NCjx0YWJsZSB3aWR0aD0iMTAwJSIgY2xhc3M9IldyYXBwZXIiIGNlbGxwYWRkaW5nPSIwIiBj\r\nZWxsc3BhY2luZz0iMCIgYm9yZGVyPSIwIiByb2xlPSJwcmVzZW50YXRpb24iPg0KPHRib2R5Pg0K\r\nPHRyPg0KPHRkIGFsaWduPSJjZW50ZXIiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOnRyYW5zcGFy\r\nZW50OyBib3JkZXItdG9wLXN0eWxlOiBub25lOyBib3JkZXItYm90dG9tLXN0eWxlOiBub25lOyBi\r\nb3JkZXItcmlnaHQtc3R5bGU6IG5vbmU7IGJvcmRlci1sZWZ0LXN0eWxlOiBub25lOyBib3JkZXIt\r\ndG9wLXdpZHRoOiAwcHg7IGJvcmRlci1ib3R0b20td2lkdGg6IDBweDsgYm9yZGVyLXJpZ2h0LXdp\r\nZHRoOiAwcHg7IGJvcmRlci1sZWZ0LXdpZHRoOiAwcHg7IGJvcmRlci1jb2xvcjogIzIyMjIyMjsi\r\nPiA8IS0tW2lmKGd0ZSBtc28gOSl8KElFKV0+PHRhYmxlIHdpZHRoPSI2MDAiIGNlbGxwYWRkaW5n\r\nPSIwIiBjZWxsc3BhY2luZz0iMCIgYm9yZGVyPSIwIiBzdHlsZT0id2lkdGg6IDYwMHB4OyIgcm9s\r\nZT0icHJlc2VudGF0aW9uIj4gPHRyPiA8dGQgYWxpZ249ImNlbnRlciI+PCFbZW5kaWZdLS0+DQo8\r\ndGFibGUgd2lkdGg9IjEwMCUiIGNsYXNzPSJDb250YWluZXIiIGNlbGxwYWRkaW5nPSIwIiBjZWxs\r\nc3BhY2luZz0iMC'
2023-05-26 12:01:02.200 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'IgYm9yZGVyPSIwIiBzdHlsZT0ibWF4LXdpZHRoOjYwMHB4OyIgcm9sZT0icHJl\r\nc2VudGF0aW9uIj4NCjx0Ym9keT4NCjx0cj4NCjx0ZCBhbGlnbj0iY2VudGVyIiBzdHlsZT0iYmFj\r\na2dyb3VuZC1jb2xvcjogdHJhbnNwYXJlbnQ7IGJhY2tncm91bmQtaW1hZ2U6dXJsKCdodHRwczov\r\nL21lZGlhY2RuLmVzcHNzbC5jb20vNzczNS8yMDIzL3dlZWsxOC8xOC4zLXIyLnBuZycpOyBiYWNr\r\nZ3JvdW5kLXJlcGVhdDpuby1yZXBlYXQ7Ij4NCjx0YWJsZSB3aWR0aD0iMTAwJSIgY2VsbHBhZGRp\r\nbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBib3JkZXI9IjAiIHJvbGU9InByZXNlbnRhdGlvbiI+DQo8\r\ndGJvZHk+DQo8dHIgY2xhc3M9ImltYWdlIj4NCjx0ZCBhbGlnbj0iY2VudGVyIiBzdHlsZT0icGFk\r\nZGluZzogMTBweDsiPg0KPGEgaHJlZj0iaHR0cDovL3QubHQwMi5uZXQvcS90cndXYWdoTnBzQjBY\r\nSzhDUVU1TW1ENmJCVGpiYXVRMmJtN1pjT0phVzVtYjBCaWNtbDRZMlZzYkdGeWN5NWpiMjNEaUFr\r\nZ0YtZnE4NmQ2c0x0bU9VYS1RRUJPWkFEZkEiIHRhcmdldD0iX2JsYW5rIj4NCjxpbWcgc3JjPSJo\r\ndHRwczovL2djY2RuLmdpZnRjYXJkcy5jb20vY2FyZHMvZG9taW5vcy1waXp6YS1naWZ0LWNhcmQu\r\ncG5nIiBhbHQ9IkRvbWlubydzIEdpZnQgQ2FyZCIgc3R5bGU9ImRpc3BsYXk6YmxvY2s7IHdpZHRo\r\nOiAxMDAlOyBtYXgtd2lkdGg6IDMwOHB4ICFpbXBvcnRhbnQ7Ym9yZGVyOjBweCBzb2xpZCAjZWFl\r\nYWVhOyBib3JkZXItcmFkaXVzOjEycHg7IiB3aWR0aD0iOTAlIj4NCjwvYT4NCjwvdGQ+DQo8L3Ry\r\nPg0KPC90Ym9keT4NCjwvdGFibGU+DQo8L3RkPg0KPC90cj4NCjwvdGJvZHk+DQo8L3RhYmxlPg0K\r\nPHRhYmxlIHdpZHRoPSIxMDAlIiBjbGFzcz0iQ29sdW1uLTEgIiBjZWxscGFkZGluZz0iMCIgY2Vs\r\nbHNwYWNpbmc9IjAiIGJvcmRlcj0iMCIgcm9sZT0icHJlc2VudGF0aW9uIj4NCjx0Ym9keT4NCjx0\r\ncj4NCjx0ZCBhbGlnbj0iY2VudGVyIj4NCjx0YWJsZSB3aWR0aD0iMTAwJSIgY2VsbH'
2023-05-26 12:01:02.200 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'BhZGRpbmc9\r\nIjAiIGNlbGxzcGFjaW5nPSIwIiBib3JkZXI9IjAiIHJvbGU9InByZXNlbnRhdGlvbiI+DQo8dGJv\r\nZHk+DQo8dHIgY2xhc3M9InRleHQiPg0KPHRkIHN0eWxlPSJwYWRkaW5nOiAwcHggMTBweCAxMHB4\r\nIDEwcHg7IGJvcmRlci13aWR0aDogMHB4OyBib3JkZXItc3R5bGU6IG5vbmU7IGZvbnQtZmFtaWx5\r\nOiBzb2ZpYS1wcm8sIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTJweDsgZm9udC13ZWlnaHQ6IG5v\r\ncm1hbDsgY29sb3I6ICMyMjIyMjI7IGxpbmUtaGVpZ2h0OiAxLjI7IHRleHQtYWxpZ246IGNlbnRl\r\ncjsiPg0KPHNwYW4gZm9udHZhbHVlPSJzb2ZpYS1wcm8iIHN0eWxlPSJmb250LWZhbWlseTogc29m\r\naWEtcHJvLCBzYW5zLXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTo0MnB4Ij48Yj5TYXZl\r\nIDE1JTwvYj48L3NwYW4+PGJyPg0KPHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxOHB4OyI+d2l0aCBw\r\ncm9tbyBjb2RlIDxzdHJvbmc+R1JBRFBJWlpBIDwvc3Ryb25nPjwvc3Bhbj48L3NwYW4+DQo8L3Rk\r\nPg0KPC90cj4NCjx0ciBjbGFzcz0idGV4dCI+DQo8dGQgc3R5bGU9InBhZGRpbmc6IDBweCAxMHB4\r\nIDEwcHggMTBweDsgYm9yZGVyLXdpZHRoOiAwcHg7IGJvcmRlci1zdHlsZTogbm9uZTsgZm9udC1m\r\nYW1pbHk6IHNvZmlhLXBybywgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxMnB4OyBmb250LXdlaWdo\r\ndDogbm9ybWFsOyBjb2xvcjogIzIyMjIyMjsgbGluZS1oZWlnaHQ6IDEuMjsgdGV4dC1hbGlnbjog\r\nY2VudGVyOyI+DQo8c3BhbiBmb250dmFsdWU9InNvZmlhLXBybyIgc3R5bGU9ImZvbnQtZmFtaWx5\r\nOiBzb2ZpYS1wcm8sIHNhbnMtc2VyaWY7Ij48c3BhbiBzdHlsZT0iZm9udC1zaXplOjE4cHgiPndp\r\ndGggdGhlIHB1cmNoYXNlIG9mIGENCiQyNSBEb21pbm8mcnNxdW87czxzdXA+JnJlZzs8L3N1cD4g\r\nR2lmdCBDYXJkPC9zcGFuPjwvc3Bhbj4NCjwvdGQ+DQo8L3RyPg0KPHRyIGNsYXNzPSJidXR0b24i\r\nPg0KPHRkIGFsaWduPSJjZW50ZXIiIHN0eWxlPSJw'
2023-05-26 12:01:02.201 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'YWRkaW5nOjEwcHggMjBweCA0MHB4IDIwcHgg\r\nOyI+DQo8dGFibGUgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBib3JkZXI9IjAiIHN0\r\neWxlPSJkaXNwbGF5OmlubGluZS1ibG9jazsgbWFyZ2luOjA7IHZlcnRpY2FsLWFsaWduOnRvcDsi\r\nIHJvbGU9InByZXNlbnRhdGlvbiI+DQo8dGJvZHk+DQo8dHI+DQo8dGggYWxpZ249ImNlbnRlciIg\r\nc3R5bGU9ImRpc3BsYXk6YmxvY2s7IGJhY2tncm91bmQtY29sb3I6I2ZmZmZmZjsgYm9yZGVyLXN0\r\neWxlOnNvbGlkOyBib3JkZXItd2lkdGg6NnB4OyBib3JkZXItY29sb3I6I2IyNDZhZDtib3JkZXIt\r\ndG9wLWxlZnQtcmFkaXVzOiA1MDBweDsgYm9yZGVyLXRvcC1yaWdodC1yYWRpdXM6IDUwMHB4OyBi\r\nb3JkZXItYm90dG9tLXJpZ2h0LXJhZGl1czogNTAwcHg7IGJvcmRlci1ib3R0b20tbGVmdC1yYWRp\r\ndXM6IDUwMHB4OyBjb2xvcjojMjgyNzZmOyBsaW5lLWhlaWdodDoxLjU7Ij4NCjxhIGhyZWY9Imh0\r\ndHA6Ly90Lmx0MDIubmV0L3EvQ2Z3elJ0VkJBWGowWGlJM0tpSUE3NFZkZXlsVlIyU0hORXNaY09K\r\nYVc1bWIwQmljbWw0WTJWc2JHRnljeTVqYjIzRGlBSVdmbHdmcllkNmNMZWZWbHpIRUNZMFNObDV3\r\nIiB0YXJnZXQ9Il9ibGFuayIgc3R5bGU9ImNvbG9yOiMyODI3NmY7IGZvbnQtZmFtaWx5Oidzb2Zp\r\nYS1wcm8nLCBzYW5zLXNlcmlmOyBmb250LXNpemU6MjBweDsgZm9udC1zdHlsZTpub3JtYWw7IGxl\r\ndHRlci1zcGFjaW5nOjBweDsgdGV4dC1hbGlnbjpjZW50ZXI7IGRpc3BsYXk6YmxvY2s7IGJhY2tn\r\ncm91bmQtY29sb3I6I2ZmZmZmZjsgYm9yZGVyLXRvcC1sZWZ0LXJhZGl1czogNTAwcHg7IGJvcmRl\r\nci10b3AtcmlnaHQtcmFkaXVzOiA1MDBweDsgYm9yZGVyLWJvdHRvbS1yaWdodC1yYWRpdXM6IDUw\r\nMHB4OyBib3JkZXItYm90dG9tLWxlZnQtcmFkaXVzOiA1MDBweDsgdGV4dC1kZWNvcmF0aW9uOm5v\r\nbmU7IHBhZGRpbmc6'
2023-05-26 12:01:02.201 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'IDVweCAxNXB4IDVweCAxNXB4OyBib3gtc2l6aW5nOmJvcmRlci1ib3g7IC1t\r\nb3otYm94LXNpemluZzpib3JkZXItYm94OyAtd2Via2l0LWJveC1zaXppbmc6Ym9yZGVyLWJveDsg\r\nYm9yZGVyLXdpZHRoOjFweDsgYm9yZGVyLXN0eWxlOnNvbGlkOyBib3JkZXItY29sb3I6I2ZmZmZm\r\nZjsiPjxzdHJvbmc+U2hvcCBOb3cNCjwvc3Ryb25nPjwvYT48L3RoPg0KPC90cj4NCjwvdGJvZHk+\r\nDQo8L3RhYmxlPg0KPC90ZD4NCjwvdHI+DQo8L3Rib2R5Pg0KPC90YWJsZT4NCjwvdGQ+DQo8L3Ry\r\nPg0KPC90Ym9keT4NCjwvdGFibGU+DQo8L3RkPg0KPC90cj4NCjwvdGJvZHk+DQo8L3RhYmxlPg0K\r\nPCEtLVtpZihndGUgbXNvIDkpfChJRSldPjwvdGQ+IDwvdHI+IDwvdGFibGU+PCFbZW5kaWZdLS0+\r\nDQo8L3RkPg0KPC90cj4NCjwvdGJvZHk+DQo8L3RhYmxlPg0KPCEtLSBFTkQgQ0FSRCBST1dTLS0+\r\nDQo8IS0tQkVHSU4gRk9PVEVSLS0+DQo8dGFibGUgd2lkdGg9IjEwMCUiIGNsYXNzPSJXcmFwcGVy\r\nIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIGJvcmRlcj0iMCIgcm9sZT0icHJlc2Vu\r\ndGF0aW9uIj4NCjx0Ym9keT4NCjx0cj4NCjx0ZCBhbGlnbj0iY2VudGVyIiBzdHlsZT0iYmFja2dy\r\nb3VuZC1jb2xvcjp0cmFuc3BhcmVudDsgYm9yZGVyLXRvcC1zdHlsZTogbm9uZTsgYm9yZGVyLWJv\r\ndHRvbS1zdHlsZTogbm9uZTsgYm9yZGVyLXJpZ2h0LXN0eWxlOiBub25lOyBib3JkZXItbGVmdC1z\r\ndHlsZTogbm9uZTsgYm9yZGVyLXRvcC13aWR0aDogMHB4OyBib3JkZXItYm90dG9tLXdpZHRoOiAw\r\ncHg7IGJvcmRlci1yaWdodC13aWR0aDogMHB4OyBib3JkZXItbGVmdC13aWR0aDogMHB4OyBib3Jk\r\nZXItY29sb3I6ICMyMjIyMjI7Ij4NCjx0YWJsZSB3aWR0aD0iMTAwJSIgY2xhc3M9IkNvbnRhaW5l\r\nciIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBib3JkZXI9IjAiIHN0eWxlPSJtYXgt\r\nd2lkdGg6NjAwcHg7IiByb2xlPSJwcmVzZW50YXRpb24iPg0KPHRib2R5Pg0KPHRyPg0K'
2023-05-26 12:01:02.202 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'PHRkIGFs\r\naWduPSJjZW50ZXIiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiNkZTJkMDk7IGJhY2tncm91bmQt\r\naW1hZ2U6IHVybCgnaHR0cHM6Ly9tZWRpYWNkbi5lc3Bzc2wuY29tLzc3MzUvMjAyMy93ZWVrMjEv\r\nMjEuMS1mb290ZXIucG5nJyk7IGJhY2tncm91bmQtcmVwZWF0Om5vLXJlcGVhdDsgYmFja2dyb3Vu\r\nZC1wb3NpdGlvbjogYm90dG9tOyI+DQo8dGFibGUgd2lkdGg9IjEwMCUiIGNsYXNzPSJDb2x1bW4t\r\nMSAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgYm9yZGVyPSIwIiByb2xlPSJwcmVz\r\nZW50YXRpb24iPg0KPHRib2R5Pg0KPHRyPg0KPHRkIGFsaWduPSJjZW50ZXIiPg0KPHRhYmxlIHdp\r\nZHRoPSIxMDAlIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIGJvcmRlcj0iMCIgcm9s\r\nZT0icHJlc2VudGF0aW9uIj4NCjx0Ym9keT4NCjx0ciBjbGFzcz0idGV4dCI+DQo8dGQgc3R5bGU9\r\nInBhZGRpbmc6IDUwcHggMTBweCAyNXB4IDEwcHg7IGJvcmRlci13aWR0aDogMHB4OyBib3JkZXIt\r\nc3R5bGU6IG5vbmU7IGZvbnQtZmFtaWx5OiBzb2ZpYS1wcm8sIHNhbnMtc2VyaWY7IGZvbnQtc2l6\r\nZTogMTJweDsgZm9udC13ZWlnaHQ6IG5vcm1hbDsgY29sb3I6ICMyMjIyMjI7IGxpbmUtaGVpZ2h0\r\nOiAxOyB0ZXh0LWFsaWduOiBjZW50ZXIiPg0KPHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMXB4Ij48\r\nc3BhbiBmb250dmFsdWU9InNvZmlhLXBybyIgc3R5bGU9ImZvbnQtZmFtaWx5OiBzb2ZpYS1wcm8s\r\nIHNhbnMtc2VyaWY7Ij48c3BhbiBzdHlsZT0iY29sb3I6I2ZmZmZmZiI+JmNvcHk7IEdpZnRjYXJk\r\ncw0KLmNvbS4gJm5ic3A7QWxsIFJpZ2h0cyBSZXNlcnZlZDxicj4NCjYyMjAgU3RvbmVyaWRnZSBN\r\nYWxsIFJvYWQsIFBsZWFzYW50b24sIENBIDk0NTg4PC9zcGFuPjwvc3Bhbj48L3NwYW4+DQo8L3Rk\r\nPg0KPC90cj4NCjx0ciBjbGFzcz0ic29jaWFsIj4NCjx0ZCBhbGlnbj0iY2VudGVyIiBzdHlsZT0i\r\ncGFkZGluZzoyNXB4IDExcHggMjVweCAxMXB4OyI+DQ'
2023-05-26 12:01:02.202 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'o8dGFibGUgd2lkdGg9IjEwMCUiIGNlbGxw\r\nYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgYm9yZGVyPSIwIiBzdHlsZT0iZGlzcGxheTppbmxp\r\nbmUtYmxvY2s7IG1hcmdpbjowOyB2ZXJ0aWNhbC1hbGlnbjp0b3A7bWF4LXdpZHRoOjEyNnB4OyIg\r\ncm9sZT0icHJlc2VudGF0aW9uIj4NCjx0Ym9keT4NCjx0cj4NCjx0ZCB3aWR0aD0iMjQiPg0KPGEg\r\naHJlZj0iaHR0cDovL3QubHQwMi5uZXQvcS9LTXJsRnBsTXRxTDBYeDl3OUFJR0R6UXA5aVFXRmNL\r\nUjlab1pjT0phVzVtYjBCaWNtbDRZMlZzYkdGeWN5NWpiMjNEaUFhZEhRUDhtdWRhU0xFYUEzeWVD\r\nSXgzMnZUMGciIHRhcmdldD0iX2JsYW5rIj4NCjxpbWcgYWx0PSJGYWNlYm9vayIgc3JjPSJodHRw\r\nczovL21lZGlhY2RuLmVzcHNzbC5jb20vNzczNS9OZXdHQ1RlbXBsYXRlL2ZhY2Vib29rLWljb24u\r\ncG5nIiB3aWR0aD0iMjQiIHN0eWxlPSJkaXNwbGF5OiBibG9jazsgd2lkdGg6IDEwMCU7IG1heC13\r\naWR0aDogMjRweDsgYm9yZGVyOiAwOyI+DQo8L2E+DQo8L3RkPg0KPHRkPg0KPHNwYW4gc3R5bGU9\r\nImRpc3BsYXk6YmxvY2s7IHdpZHRoOjEwcHg7Ij4mbmJzcDs8L3NwYW4+DQo8L3RkPg0KPHRkIHdp\r\nZHRoPSIyNCI+DQo8YSBocmVmPSJodHRwOi8vdC5sdDAyLm5ldC9xLzZIelNrZkFHOUZlMFhZTDRC\r\nLU5oVlVLUVlxYkVrRG9rdVlDWmNPSmFXNW1iMEJpY21sNFkyVnNiR0Z5Y3k1amIyM0RpQVAxeWZo\r\nVXNIY295TENjUkRJcnBlMjdUMWVuUSIgdGFyZ2V0PSJfYmxhbmsiPg0KPGltZyBhbHQ9Ikluc3Rh\r\nZ3JhbSIgc3JjPSJodHRwczovL21lZGlhY2RuLmVzcHNzbC5jb20vNzczNS9OZXdHQ1RlbXBsYXRl\r\nL2luc3RhZ3JhbS1pY29uLnBuZyIgd2lkdGg9IjI0IiBzdHlsZT0iZGlzcGxheTogYmxvY2s7IHdp\r\nZHRoOiAxMDAlOyBtYXgtd2lkdGg6IDI0cHg7IGJvcmRlcjogMDsiPg0KPC9hPg0KPC90ZD4NCjx0\r\nZD4NCjxzcGFuIHN0eWxlPSJkaXNwbGF5OmJsb2NrOyB3aWR0aDoxMHB4OyI+Jm5ic3A7PC9zcGFu\r\nPg0KPC90ZD4NCjx0'
2023-05-26 12:01:02.203 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'ZCB3aWR0aD0iMjQiPg0KPGEgaHJlZj0iaHR0cDovL3QubHQwMi5uZXQvcS9n\r\nVk1fZ3VYTkd0ajBYXzIzZ01hZDdHVnRLdjQzZ09vS2FndFpjT0phVzVtYjBCaWNtbDRZMlZzYkdG\r\neWN5NWpiMjNEaUFpY28ybTYwa2VydUxNRVQzUkYxN3FXWXZJTkEiIHRhcmdldD0iX2JsYW5rIj4N\r\nCjxpbWcgYWx0PSJUd2l0dGVyIiBzcmM9Imh0dHBzOi8vbWVkaWFjZG4uZXNwc3NsLmNvbS83NzM1\r\nL05ld0dDVGVtcGxhdGUvdHdpdHRlci1pY29uLnBuZyIgd2lkdGg9IjI0IiBzdHlsZT0iZGlzcGxh\r\neTogYmxvY2s7IHdpZHRoOiAxMDAlOyBtYXgtd2lkdGg6IDI0cHg7IGJvcmRlcjogMDsiPg0KPC9h\r\nPg0KPC90ZD4NCjx0ZD4NCjxzcGFuIHN0eWxlPSJkaXNwbGF5OmJsb2NrOyB3aWR0aDoxMHB4OyI+\r\nJm5ic3A7PC9zcGFuPg0KPC90ZD4NCjx0ZCB3aWR0aD0iMjQiPg0KPGEgaHJlZj0iaHR0cDovL3Qu\r\nbHQwMi5uZXQvcS9aaF9odmZhQ0c4bTBYR2wwdHRvWmpmOTNvNDBQdjBTRXdWa1pjT0phVzVtYjBC\r\naWNtbDRZMlZzYkdGeWN5NWpiMjNEaUFvblJYMmNlbWNJZUxkWkZIT1N1S1k2YUIyVlEiIHRhcmdl\r\ndD0iX2JsYW5rIj4NCjxpbWcgYWx0PSJQaW50ZXJlc3QiIHNyYz0iaHR0cHM6Ly9tZWRpYWNkbi5l\r\nc3Bzc2wuY29tLzc3MzUvTmV3R0NUZW1wbGF0ZS9waW50ZXJlc3QtaWNvbi5wbmciIHdpZHRoPSIy\r\nNCIgc3R5bGU9ImRpc3BsYXk6IGJsb2NrOyB3aWR0aDogMTAwJTsgbWF4LXdpZHRoOiAyNHB4OyBi\r\nb3JkZXI6IDA7Ij4NCjwvYT4NCjwvdGQ+DQo8L3RyPg0KPC90Ym9keT4NCjwvdGFibGU+DQo8L3Rk\r\nPg0KPC90cj4NCjx0ciBjbGFzcz0idGV4dCI+DQo8dGQgc3R5bGU9InBhZGRpbmc6IDIwcHggMTBw\r\neCAyMHB4IDEwcHg7IGJvcmRlci13aWR0aDogMHB4OyBib3JkZXItc3R5bGU6IG5vbmU7IGZvbnQt\r\nZmFtaWx5OiBzb2ZpYS1wcm8sIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTJweDsgZm9udC13ZWln\r\naHQ6IG5vcm1hbDsgY29sb3I6ICMyMjIyMjI7IGxpbmUtaGVpZ2h0OiAxOyB0ZXh0LWFs'
2023-05-26 12:01:02.203 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'aWduOiBs\r\nZWZ0Ij4NCjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTFweCI+PHNwYW4gZm9udHZhbHVlPSJzb2Zp\r\nYS1wcm8iIHN0eWxlPSJmb250LWZhbWlseTogc29maWEtcHJvLCBzYW5zLXNlcmlmOyI+PHNwYW4g\r\nc3R5bGU9ImNvbG9yOiNmZmZmZmYiPg0KUHJvbW8gY29kZSBHUkFEUElaWkEgdmFsaWQgNS8yNi8y\r\nMyAtIDYvMDQvMjMgZm9yIDE1JSBvZmYgdGhlIHB1cmNoYXNlIG9mIGEgJDI1IERvbWlubyZyc3F1\r\nbztzIGdpZnQgY2FyZCB3aGlsZSBzdXBwbGllcyBsYXN0IChtYXggZGlzY291bnQgJDMuNzUpLiBQ\r\ncm9tbyBjb2RlIEdSQURQSVpaQSBpcyBhIG9uZS10aW1lIHVzZSBjb2RlIGFuZCBjYW5ub3QgYmUg\r\nY29tYmluZWQgd2l0aCBvdGhlciBvZmZlcnMuIDxicj4NCjxicj4NClRoZSBtZXJjaGFudHMgcmVw\r\ncmVzZW50ZWQgYXJlIG5vdCBzcG9uc29ycyBvZiBHaWZ0Y2FyZHMuY29tIG9yIG90aGVyd2lzZSBh\r\nZmZpbGlhdGVkIHdpdGggR2lmdGNhcmRzLmNvbS4gVGhlIGxvZ29zIGFuZCBvdGhlciBpZGVudGlm\r\neWluZyBtYXJrcyBhdHRhY2hlZCBhcmUgdHJhZGVtYXJrcyBvZiBhbmQgb3duZWQgYnkgZWFjaCBy\r\nZXByZXNlbnRlZCBjb21wYW55IGFuZC9vciBpdHMgYWZmaWxpYXRlcy4gUGxlYXNlIHZpc2l0IGVh\r\nY2ggY29tcGFueSdzIHdlYnNpdGUgZm9yIGFkZGl0aW9uYWwgdGVybXMgYW5kIGNvbmRpdGlvbnMu\r\nDQo8L3NwYW4+PC9zcGFuPjwvc3Bhbj4NCjwvdGQ+DQo8L3RyPg0KPHRyIGNsYXNzPSJ0ZXh0Ij4N\r\nCjx0ZCBzdHlsZT0icGFkZGluZzogMjBweCAxMHB4IDE1MHB4IDEwcHg7IGJvcmRlci13aWR0aDog\r\nMHB4OyBib3JkZXItc3R5bGU6IG5vbmU7IGZvbnQtZmFtaWx5OiBzb2ZpYS1wcm8sIHNhbnMtc2Vy\r\naWY7IGZvbnQtc2l6ZTogMTJweDsgZm9udC13ZWlnaHQ6IG5vcm1hbDsgY29sb3I6ICMyMjIyMjI7\r\nIGxpbmUtaGVpZ2h0OiAxOyB0ZXh0LWFsaWduOiBjZW50ZXIiPg0KPHNwYW4gc3R5bGU9ImZvbnQt\r\nc2l6ZToxMXB4Ij48c3BhbiBmb250dmFsdWU9InNvZm'
2023-05-26 12:01:02.203 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'lhLXBybyIgc3R5bGU9ImZvbnQtZmFtaWx5\r\nOiBzb2ZpYS1wcm8sIHNhbnMtc2VyaWY7Ij48c3BhbiBzdHlsZT0iY29sb3I6I2ZmZmZmZiI+DQo8\r\nYSBocmVmPSJodHRwOi8vdC5sdDAyLm5ldC9xL3FoMVJuekxGY1FDMFhObkJXLWIzeEd1ZW5fbjVu\r\nVzZXcVBGWmNPSmFXNW1iMEJpY21sNFkyVnNiR0Z5Y3k1amIyM0RpQXAxUHJWNm4yY0o5TDVzcURH\r\nOWE0N2hhVlI2USIgc3R5bGU9ImNvbG9yOiNmZmZmZmY7dGV4dC1kZWNvcmF0aW9uOnVuZGVybGlu\r\nZTsiIHRhcmdldD0iX2JsYW5rIj5Qcml2YWN5IFBvbGljeTwvYT4gJm5ic3A7fCAmbmJzcDs8YSBo\r\ncmVmPSJodHRwOi8vdC5sdDAyLm5ldC9xL1lxamZfNEdIalFWR0hqS25xQW9sVG9nelMxTlhlVjJP\r\nQkNKbFBMVWw3S0Q3bHVVQktENGN0WmJmaiIgc3R5bGU9ImNvbG9yOiNmZmZmZmY7dGV4dC1kZWNv\r\ncmF0aW9uOnVuZGVybGluZTsiIHRhcmdldD0iX2JsYW5rIj5VbnN1YnNjcmliZTwvYT48YnI+DQpZ\r\nb3UgYXJlIHJlY2VpdmluZyB0aGlzIGVtYWlsIGF0IHlvdXIgcmVxdWVzdC4gJm5ic3A7VGhpcyBp\r\ncyBhbiBhZHZlcnRpc2VtZW50Ljwvc3Bhbj48L3NwYW4+PC9zcGFuPg0KPC90ZD4NCjwvdHI+DQo8\r\nL3Rib2R5Pg0KPC90YWJsZT4NCjwvdGQ+DQo8L3RyPg0KPC90Ym9keT4NCjwvdGFibGU+DQo8L3Rk\r\nPg0KPC90cj4NCjwvdGJvZHk+DQo8L3RhYmxlPg0KPC90ZD4NCjwvdHI+DQo8L3Rib2R5Pg0KPC90\r\nYWJsZT4NCjxpbWcgc3JjPSJodHRwOi8vdC5sdDAyLm5ldC9xL090amgwTHlHZVFraXc3cDByMGdk\r\nSnJXNE1IMDlPVl81YVkiIGFsdD0iIiB3aWR0aD0iMjAiIGhlaWdodD0iMSI+PC9ib2R5Pg0KPC9o\r\ndG1sPg0K\r\n----boundary_db75dad9081447619ee594fa1c54cb51--\r\n)\r\nLACL13 OK Success\r\n'
2023-05-26 12:01:02.205 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'LACL13 OK Success'
2023-05-26 12:31:02.311 DEBUG (MainThread) [aioimaplib.aioimaplib] connection lost: None
drjjr2 commented 1 year ago

Another data point: if I reload the integration and the last email it is trying to load has a lot of images, the sensor stays at "unknown". Here is the log after reloading in this case. IMAP sensor says unknown. When I delete the offending email, the integration loads properly:

2023-05-26 13:24:40.915 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'ODLP66 CLOSE\r\n'
2023-05-26 13:24:40.963 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'ODLP66 OK Returned to authenticated state. (Success)\r\n'
2023-05-26 13:24:40.964 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'ODLP66 OK Returned to authenticated state. (Success)'
2023-05-26 13:24:40.964 DEBUG (MainThread) [aioimaplib.aioimaplib] state -> AUTH
2023-05-26 13:24:40.965 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'ODLP67 LOGOUT\r\n'
2023-05-26 13:24:41.129 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* BYE LOGOUT Requested\r\nODLP67 OK 73 good day (Success)\r\n'
2023-05-26 13:24:41.130 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'ODLP67 OK 73 good day (Success)'
2023-05-26 13:24:41.136 DEBUG (MainThread) [aioimaplib.aioimaplib] state -> LOGOUT
2023-05-26 13:24:41.366 DEBUG (MainThread) [aioimaplib.aioimaplib] connection lost: None
2023-05-26 13:24:41.441 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* OK Gimap ready for requests from 104.202.176.247 cb2mb2556098oob\r\n'
2023-05-26 13:24:41.441 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'GIEB0 CAPABILITY\r\n'
2023-05-26 13:24:41.458 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* CAPABILITY IMAP4rev1 UNSELECT IDLE NAMESPACE QUOTA ID XLIST CHILDREN X-GM-EXT-1 XYZZY SASL-IR AUTH=XOAUTH2 AUTH=PLAIN AUTH=PLAIN-CLIENTTOKEN AUTH=OAUTHBEARER\r\nGIEB0 OK Thats all she wrote! cb2mb2556098oob\r\n'
2023-05-26 13:24:41.458 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'GIEB0 OK Thats all she wrote! cb2mb2556098oob'
2023-05-26 13:24:41.460 DEBUG (MainThread) [aioimaplib.aioimaplib] state -> NONAUTH
2023-05-26 13:24:41.463 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'GIEB1 LOGIN example@example.com "apppassword"\r\n'
2023-05-26 13:24:41.737 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* CAPABILITY IMAP4rev1 UNSELECT IDLE NAMESPACE QUOTA ID XLIST CHILDREN X-GM-EXT-1 UIDPLUS COMPRESS=DEFLATE ENABLE MOVE CONDSTORE ESEARCH UTF8=ACCEPT LIST-EXTENDED LIST-STATUS LITERAL- SPECIAL-USE APPENDLIMIT=35651584\r\nGIEB1 OK example@example.com authenticated (Success)\r\n'
2023-05-26 13:24:41.737 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'GIEB1 OK example@example.com authenticated (Success)'
2023-05-26 13:24:41.739 DEBUG (MainThread) [aioimaplib.aioimaplib] state -> AUTH
2023-05-26 13:24:41.742 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'GIEB2 SELECT Inbox\r\n'
2023-05-26 13:24:41.796 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* FLAGS (\\Answered \\Flagged \\Draft \\Deleted \\Seen $Forwarded $Junk $NotJunk $NotPhishing $Phishing NotJunk)\r\n* OK [PERMANENTFLAGS (\\Answered \\Flagged \\Draft \\Deleted \\Seen $Forwarded $Junk $NotJunk $NotPhishing $Phishing NotJunk \\*)] Flags permitted.\r\n* OK [UIDVALIDITY 600650257] UIDs valid.\r\n* 70 EXISTS\r\n* 0 RECENT\r\n* OK [UIDNEXT 338394] Predicted next UID.\r\n* OK [HIGHESTMODSEQ 45219389]\r\nGIEB2 OK [READ-WRITE] Inbox selected. (Success)\r\n'
2023-05-26 13:24:41.796 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'GIEB2 OK [READ-WRITE] Inbox selected. (Success)'
2023-05-26 13:24:41.798 DEBUG (MainThread) [aioimaplib.aioimaplib] state -> SELECTED
2023-05-26 13:24:41.801 DEBUG (MainThread) [homeassistant.components.imap.coordinator] Finished fetching imap data in 0.000 seconds (success: True)
2023-05-26 13:24:41.804 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'GIEB3 NOOP\r\n'
2023-05-26 13:24:41.852 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'GIEB3 OK Success\r\n'
2023-05-26 13:24:41.853 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'GIEB3 OK Success'
2023-05-26 13:24:41.856 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'GIEB4 SEARCH CHARSET utf-8 UnSeen UnDeleted\r\n'
2023-05-26 13:24:41.924 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* SEARCH 8 9 14 18 20 24 28 29 30 39 41 42 45 53 56 59 60 61 62 63 64 65 66 67 68 69 70\r\nGIEB4 OK SEARCH completed (Success)\r\n'
2023-05-26 13:24:41.924 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'GIEB4 OK SEARCH completed (Success)'
2023-05-26 13:24:41.927 DEBUG (MainThread) [aioimaplib.aioimaplib] Sending : b'GIEB5 FETCH 70 BODY.PEEK[]\r\n'
2023-05-26 13:24:41.986 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'* 70 FETCH (BODY[] {61872}\r\nDelivered-To: example@example.com\r\nReceived: by 2002:a0c:e912:0:b0:626:7ec:17b6 with SMTP id a18csp56'
2023-05-26 13:24:41.986 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'3122qvo;\r\n        Fri, 26 May 2023 11:08:56 -0700 (PDT)\r\nX-Received: by 2002:a05:6a21:32a2:b0:106:c311:e6bf with SMTP id yt34-20020a056a2132a200b00106c311e6bfmr2856110pzb.5.1685124535823;\r\n        Fri, 26 May 2023 11:08:55 -0700 (PDT)\r\nARC-Seal: i=2; a=rsa-s'
2023-05-26 13:24:41.987 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'ha256; t=1685124535; cv=pass;\r\n        d=google.com; s=arc-20160816;\r\n        b=Vku/1R3TSf3C5WmfOIY95fMCvQOELiV0/Cp6LuWDvPskigmz9TVNFtRoiByQDSY7SZ\r\n         M+v7De4s6f1s0cOg8CgW/tqa5rTHWlUST/IVE4F7qb++6W5n+Wq63eAl39EctZXxKScs\r\n         QvVFYcXKv/qnjLHXNxCloLuTf916h+gDfDPZOpBSbDNji81VTKuCdQi13viol4VBovZh\r\n         0zsf7SSfGCCvsYIssmIhC526k4byHpOAXOkYufKsg4+T48aukydXTAsLmi36tHbaCs6v\r\n         ZCPu8bRclVKm9SOj4wFiIelusUcDxq7HbAN8NwmUwGiCM19IIJy8CUKGEHMkBROVHoii\r\n         ERoA==\r\nARC-Message-Signature: i=2; a=rsa'
2023-05-26 13:24:41.987 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816;\r\n        h=message-id:content-transfer-encoding:errors-to:to:date:from:subject\r\n         :mime-version:dkim-signature:dkim-signature:delivered-to;\r\n        bh=Gz41dYC1jo4op0JB/dHvYult3/HIdNE/r4jnu7PAl98=;\r\n        b=K/QZeFfkJZ1mroG9rlp58CbFFO+gPztQzgPqzh6HIBx/xieCIDb+YN57wigU565UhH\r\n         DH9Gu+W0tI2Oo37Q7U6TqiJo47ZewnklLEKlPR4gjWmphOqS27ZAftZIoLoVBOZmYSQq\r\n         Q7ORvBZ/5hajZwfmGCUcwKj6f/eDGkaM1dHClr4/B9Jcgydb0TnyOT2hoYgqc6T9wI28\r\n         Z1QaCvYVh9d6FhfTDYtV/24oxlkJOPwax8SMRPL0jqDltiTKX0WnjOEctMETbqWd33ZT\r\n         5JeLWoffF8dbNn85QKzHoFXTC6gTxABGRxnEU/JJ9vXF8YOemkgZGHHU4pGK4RK+su9d\r\n         g50w==\r\nARC-Authentication-Results: i=2; mx.google.com;\r\n       dkim=pass header.i=@info.iwawine.com header.s=key1 header.b=kgBGx9vP;\r\n       dkim=pass header.i=@esp1.co header.s=app header.b=w0nW9Dz4;\r\n       arc=pass (i=1 spf=pass spfdomain=bounce.info.iwawine.com dkim=pass dkdomain=info.iwawine.com dkim=pass dkdomain=esp1.co);\r\n       spf=neutral (google'
2023-05-26 13:24:41.995 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'.com: 209.85.220.41 is neither permitted nor denied by best guess record for domain of nita+caf_=info=brixcellars.com@brixcellars.com) smtp.mailfrom="nita+caf_=info=brixcellars.com@brixcellars.com"\r\nReturn-Path: <nita+caf_=info=brixcellars.com@brixcellars.com>\r\nReceived: from mail-sor-f41.google.com (mail-sor-f41.google.com. [209.85.220.41])\r\n        by mx.google.com with SMTPS id f14-20020aa7968e000000b00646dc35b78dsor2022524pfk.4.2023.05.26.11.08.55\r\n        for <example@example.com>\r\n        (Google Transport Security);\r\n        Fri, 26 May 2023 11:08:55 -0700 (PDT)\r\nReceived-SPF: neutral (google.com: 209.85.220.41 is neither permitted nor denied by best guess record for domain of nita+caf_=info=brixcellars.com@brixcellars.com) client-ip=209.85.220.41;\r\nAuthentication-Results: mx.google.com;\r\n       dkim=pass header.i=@info.iwawine.com header.s=key1 header.b=kgBGx9vP;\r\n       dkim=pass header.i=@esp1.co header.s=app header.b=w0nW9Dz4;\r\n       arc=pass (i=1 spf=pass spfdomain=bounce.info.iwawine.com dkim=pass dkdomain=info.iwawine.com dkim=pass dkdomain=esp1.co);\r\n       spf=neutral (google.com: 209.85.220.41 is neither permitted nor denied by best guess record for domain of nita+caf_=info=brixcellars.com@brixcellars.com) smtp.mailfrom="nita+caf_=info=brixcellars.com@brixcellars.com"\r\nX-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;\r\n     '
2023-05-26 13:24:41.995 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'   d=1e100.net; s=20221208; t=1685124535; x=1687716535;\r\n        h=message-id:content-transfer-encoding:errors-to:to:date:from:subject\r\n         :mime-version:dkim-signature:dkim-signature:delivered-to\r\n         :x-forwarded-for:x-forwarded-to:x-gm-message-state:from:to:cc\r\n         :subject:date:message-id:reply-to;\r\n        bh=Gz41dYC1jo4op0JB/dHvYult3/HIdNE/r4jnu7PAl98=;\r\n        b=LZvJRdfvEEA5J5+allb1/3/gmxNoWyrfb5K+qcEBOc46k0tnnlq8H+oythTEv4tM6R\r\n         TD91kbzcR04vMNlzFgmuCiOWgE8tq14d5KnW7XqguzB/3C+Dd50r4vLpkXarXOFazEdB\r\n         DnRfQaFySakjmlGank/g3fhX7MiJLwSVL6krZpVuj1O52SUS54+nmh9rJqrXnPAOk+50\r\n         8daZyGCgpd5WjHiee80VZB01zd+emcVL3O1cSIICCL3V/SDYU'
2023-05-26 13:24:41.996 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'MKbANRaRjFxH0xarUdf\r\n         1QwglbpW4a23QS+Kfqj+0qzaGXuA82TPNghZPiouo7lLTmcz5ikdnVW1Igc4ydJav7V7\r\n         RJGw==\r\nX-Gm-Message-State: AC+VfDxRQHF4Ai6z34+vVO5/7jfhhC3Fr4U2orJ8nysVJV9RF1tfXY4U\r\n\twtJXtMQ72/LyOW6Ek62sILBjBsScoo5pSK/G2hUh+D7+sgDD8UA6gXoaC1793KG7\r\nX-Received: by 2002:a05:6a00:138d:b0:63a:ff2a:bf9f with SMTP id t13-20020a056a00138d00b0063aff2abf9fmr1269355pfg.2.1685124535488;\r\n        Fri, 26 May 2023 11:08:55 -0700 (PDT)\r\nX-Forwarded-To: example@example.com\r\nX-Forwarded-For: nita@brixcellars.com example@example.com\r\nDelivered-To: nita@brixcellars.com\r\nReceived: by 2002:a05:6a10:415a:b0:47f:82c:69df with SMTP id f26csp1170853pxc;\r\n        Fri, 26 May 2023 11:08:53 -0700 (PDT)\r\nX-Google-Smtp-Source: ACHHUZ6Px5AENZejiuFzAPVfoLr7UT/FsLg8dbuG8IprvPsBrNP8Gf7Bght79jofYk+smeCRMQ3F\r\nX-Received: by 2002:a05:620a:44c7:b0:75b:23a1:407 with SMTP id y7-20020a05620a44c700b0075b23a10407mr470228qkp.29.1685124532618;\r\n        Fri, 26 May 2023 11:08:52 -0700 (PDT)\r\nARC-Seal: i=1; a=rsa-sha256; t=1685124532; cv=none;\r\n        d=google.com; s=arc-20160816;\r\n        b=xp94OmH7+ils97e+D2EPIKcZ4JlamYWSoQW3xdxd3yOMKVNvoOVAvwNG9fVbT0xdlr\r\n         6+NhtFlt8bp0T1sHLmMwvF1B6B4XRlK+X/jENC5hAUIQJiJz+Xpm4MVNtTMUjUzpErGD\r\n         vUKKJAy3hwB6e+RxFY4JIj6j5IFxSltRdLfQqc3vgy74VlyrbPrrGgR4KHVqcbGDVNbP\r\n         DogsOXzypsQnp3qjS/hoAbcpfWKEqbAoZ/SDzLHEQtL9M+jVE17A85I28ulHg9L4'
2023-05-26 13:24:41.996 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'4SfJ\r\n         d6Glot8/zdik8UL6up8SU++as27kFLdC8D+cPs7M9FJeJyAktN85H4h/vhuq0tZZ8Sk9\r\n         K7yA==\r\nARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816;\r\n        h=message-id:content-transfer-encoding:errors-to:to:date:from:subject\r\n         :mime-version:dkim-signature:dkim-signature;\r\n        bh=Gz41dYC1jo4op0JB/dHvYult3/HIdNE/r4jnu7PAl98=;\r\n        b=sHnUBDyixD4jjauyFVIm6krWmZlKPSiGB3ThdH17ac0vqTrR1HNZcEwGQPlNqM+MfQ\r\n         7s3hz8sp3IRv1J4GnnCtaT9MmFFQDUHxlcu0SmnC4Cc3quEK74qEjegAJDtzb9MooSJU\r\n         l6Wh6NF2XygpYi7NgU5IdLvL7ueAT1GbfH/Q1TvwWCxwAycu5ZIC2aiuJFVOqCDtMWCK\r\n         bS/5HtUu7b1ovYIeY+mBvZ6IMd4+0Rc94gyODixBYe0EwiOSOkduV5kAcAVOwhoSRr7l\r\n         Bndk5KXhH414crzzhaZf/qC4le5yk+UEfmYoDqic1bg7yEEVEPtojmCfiKUVtXJnrbAo\r\n         0//g==\r\nARC-Authentication-Results: i=1; mx.google.com;\r\n       dkim=pass header.i=@info.iwawine.com header.s=key1 header.b=kgBGx9vP;\r\n       dkim=pass header.i=@esp1.co header.s=app header.b=w0nW9Dz4;\r\n       spf=pass (google.com: domain of lq8i7slnji8ilkp6nbmujbmu33kuuiub7k0s8lekijk@bounce.info.iwawine.com designates 142.0.85.187 as permitted sender) smtp.mailfrom=LQ8I7SLNJI8ILKP6NBMUJBMU33KUUIUB7K0S8LEKIJK@bounce.info.iwawine.com\r\nReturn-Path: <LQ8I7SLNJI8ILKP6NBMUJBMU33KUUIUB7K0S8LEKIJK@bounce.info.iwawine.com>\r\nReceived: from vmta187.85.lstrk.net (vmta187.85.lstrk.net. [142.0.8'
2023-05-26 13:24:41.997 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'5.187])\r\n        by mx.google.com with ESMTPS id q5-20020ad45745000000b00625b5ee1e47si1601305qvx.368.2023.05.26.11.08.52\r\n        for <nita@brixcellars.com>\r\n        (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256);\r\n        Fri, 26 May 2023 11:08:52 -0700 (PDT)\r\nReceived-SPF: pass (google.com: domain of lq8i7slnji8ilkp6nbmujbmu33kuuiub7k0s8lekijk@bounce.info.iwawine.com designates 142.0.85.187 as permitted sender) client-ip=142.0.85.187;\r\nDKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=key1; d=info.iwawine.com;\r\n h=MIME-Version:Subject:From:Date:To:Content-Type:Content-Transfer-Encoding:\r\n Message-ID; i=info@info.iwawine.com;\r\n bh=Gz41dYC1jo4op0JB/dHvYult3/HIdNE/r4jnu7PAl98=;\r\n b=kgBGx9vPAddovPGLuUAaAHW9JjG6VILeMe+20XYbi7i+O5FCVzUNsgS5M9Tz8XQvRj4ydPS37uxb\r\n   hf20ZytVrq9LwBVM1PATjCs2BSTGK3ad8af+TNcszwTRuBR/Upez3aohQdFUajU4Aclbb5KWHcV3\r\n   shMJxc7PZJWIChXTlW0=\r\nDKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=app; d=esp1.co;\r\n h=MIME-Version:Subject:From:Date:To:Content-Type:Content-Transfer-Encoding:\r\n Message-ID;\r\n bh=Gz41dYC1jo4op0JB/dHvYult3/HIdNE/r4jnu7PAl98=;\r\n b=w0nW9Dz415d+ApvGymTLLvIo0hxwKwfL1ljgKIu5F9rjZZSrL5Ey262VfoBUbXR7yVrh93xfJiSI\r\n   0igflTWfRPQB5hysFFH6jnPPuUnyf2uQsL1JfJd8tS4RDCk5YWevNdn/9dGTG0Ys/V1/2E0B/NqH\r\n   aBedtAlx+HXNM+4F+AA=\r\nReceived: by vmta187.85.lstrk.net id he3qr8319'
2023-05-26 13:24:41.997 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'8k2 for <nita@brixcellars.com>; Fri, 26 May 2023 14:02:48 -0400 (envelope-from <LQ8I7SLNJI8ILKP6NBMUJBMU33KUUIUB7K0S8LEKIJK@bounce.info.iwawine.com>)\r\nX-Message-Reference: HKRFDNIJ8L9KHB98AQLVJ7QHUO\r\nX-RPCampaign: esp7275827068787374567657757266575665817686745581728579\r\nMIME-Version: 1.0\r\nSubject: Free Shipping on Loft Wine Coolers\r\nFrom: "IWA Wine Accessories" <info@info.iwawine.com>\r\nDate: 26 May 2023 14:02:48 -0400\r\nTo: nita@brixcellars.com\r\nX-Mailer-Reference: LQ8I7SLNJI8ILKP6NBMUJBMU33KUUIUB7K0S8LEKIJK\r\nErrors-To: LQ8I7SLNJI8ILKP6NBMUJBMU33KUUIUB7K0S8LEKIJK@bounce.info.iwawine.com\r\nContent-Type: text/html; charset=us-ascii\r\nContent-Transfer-Encoding: 7bit\r\nMessage-ID: <0.0.FA.7E1.1D98FFC47CD7522.D210@vmta187.85.lstrk.net>\r\n\r\n<!DOCTYPE html> <html lang="en"> <!--[if (gte mso 9)|(IE)]><html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office"/><![endif]--> <head> <title>Free Shipping on Loft Wine Coolers</title> <meta http-equiv="Content-Type" content="text/html;" charset="utf-8"/>\r\n<meta name="viewport" content="width=device-width, initial-scale=1">\r\n<meta http-equiv="X-UA-Compatible" content="IE=edge"/> <!--[if !mso]><!-- --> <link href="https://fonts.googleapis.com/css?family=Montserrat:400,700|" rel="stylesheet">\r\n<!--<![endif]--> <style type="text/css">   img {    border: 0; '
2023-05-26 13:24:41.997 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b"   line-height: 100%;    outline: none;    text-decoration: none;   }   table {    border-collapse: collapse !important;    table-layout: fixed;    overflow-wrap: break-word;    word-wrap: break-word;    -ms-word-break: break-all;    word-break: break-word;   }   table table table {    table-layout: auto;   }   .image table, .social table, .divider table {    table-layout: auto;   }   body {    height: 100% !important;    margin: 0 !important;\r\n    padding: 0 !important;    width: 100% !important;    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;    font-size: 12px;    color: #222222;   }   img {    -ms-interpolation-mode: bicubic;   }   div, button {    vertical-align: top;    margin: 0;   }    a[x-apple-data-detectors] {    color: inherit !important;    text-decoration: none !important;    font-size: inherit !important;    font-family: inherit !important;    font-weight: inherit !important;    line-height: inherit !important;   }   ul, ol {  \r\n  margin-top: 0;    margin-bottom: 0;   }   li {    margin: 0;   }   ol li > ol, ol li > ol li > ol li > ol li > ol {    list-style-type: lower-alpha;   }   ol li > ol li > ol, ol li > ol li > ol li > ol li > ol li > ol {    list-style-type: lower-roman;   }   ol li > ol li > ol li > ol {    list-style-type: decimal;   }   .ExternalClass {    width:100%;   }   .ExternalClass, .ExternalClass p, .Extern"
2023-05-26 13:24:41.997 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'alClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div {    line-height: 100%;   }   h1 {    font-size: 32px;   }   h2 {    font-size: 24px;   }   h3 {    font-size: 18px;   }   h1, h2, h3, h4, h5, h6 {    font-weight: normal;    line-height: 100%;   }   p {    margin:0;    padding:0;    margin-bottom:0;   }   @media only screen and (max-width: 480px) {    .mobile-hide,\r\n .mobile-hide.desktop-hide {    display: none !important;    }    .mobile-align-center td {    text-align: center !important;    }    .mobile-align-left td {    text-align: left !important;    }    .mobile-align-right td {    text-align: right !important;    }    .mobile-align-center img, .mobile-align-left img, .mobile-align-right img {    display: inline-block !important;    margin: 0;    vertical-align: top;    }    .Column-2 div, .Column-3 div, .Column-4 div {    display: block !important;    width: 100% !important;   \r\n max-width: 100% !important;    }    .Column-3 div.half-width {    display: inline-block !important;    width: 50% !important;    max-width: 50% !important;    }    .nav.stack a {    display: block !important;    width: 100% !important;    border: 0 !important;    padding: 15px 0 !important;    }    .desktop-hide, .desktop-hide tr, .desktop-hide td {    width: 100% !important;    max-height: inherit !important;    overflow: visible !important;    displ'
2023-05-26 13:24:41.998 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'ay: block !important;    float: none !important;    }  \r\n  .desktop-hide {    display: table !important;    width: 100% !important;    }    .desktop-hide tr {    display: table-row !important;    }    .desktop-hide td {    display: table-cell !important;    }   }   @media screen and (min-width: 481px) {    .Column-2 div {    max-width: 50% !important;    }    .Column-2 div.column-25 {    max-width: 25% !important;    }    .Column-2 div.column-33 {    max-width: 33.334% !important;    }    .Column-2\r\n div.column-66 {    max-width: 66.667% !important;    }    .Column-2 div.column-75 {    max-width: 75% !important;    }    .Column-3 div {    max-width: 33.334% !important;    }    .Column-4 div {    max-width: 25% !important;    }   }    div[style*="margin: 16px 0;"] {    margin: 0 !important;   } </style> <!--[if gte mso 9]><style>    ul li {    text-indent: -1em;    } </style><![endif]--> <!--[if gte mso 9]><xml> <o:OfficeDocumentSettings> <o:AllowPNG/> <o:PixelsPerInch>96</o:PixelsPerInch> </o:OfficeDocumentSettings> </xml><![endif]--> </head> <body style="margin:0; padding:0; min-width:100%; background-color:#E1DFDF;">\r\n<div style="display:none;font-size:1px;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;">Memorial Day Weekend only - save on our popular Loft Coolers.</div>\r\n<div style="display:none;font-size:1px;line-he'
2023-05-26 13:24:41.998 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'ight:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;">&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;\r\n&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;</div>\r\n<table width="100%" class="body" cellpadding="0" cellspacing="0" border="0" role="presentation"> <tr> <td style="background-color:#E1DFDF;"> <table width="100%" class="Wrapper" cellpadding="0" cellspacing="0" border="0" r'
2023-05-26 13:24:41.999 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'ole="presentation"> <tr> <td align="center" style="background-color:transparent; border-top-style: none; border-bottom-style: none; border-right-style: none; border-left-style: none; border-top-width: 0px; border-bottom-width: 0px; border-right-width: 0px; border-left-width: 0px; border-color: #222222;"> <!--[if(gte mso 9)|(IE)]><table width="600" cellpadding=\r\n"0" cellspacing="0" border="0" style="width: 600px;" role="presentation"> <tr> <td align="center"><![endif]--> <table width="100%" class="Container" cellpadding="0" cellspacing="0" border="0" style="max-width:600px;" role="presentation"> <tr> <td align="center" style="background-color:#ffffff"> <table width="100%" class="Column-2 mobile-align-center" cellpadding="0" cellspacing=\r\n"0" border="0" role="presentation"> <tr> <td align="center" style="width:50%; vertical-align:middle;"> <table width="100%" cellpadding="0" cellspacing="0" border="0" role="presentation"><tr class="image"><td align="left" style="padding: 15px 15px 0px 15px;"> <a href="http://enews.info.iwawine.com/q/hYEI74EOUK0z0YNvZmgSSliSA-Uhmi2Y254mZcOJbml0YUBicml4Y2VsbGFycy5jb23DiA2iyDOHi1cYgLzs6yUZJFDXN8lhQ" title="IWA - Everything for the wine lover" target="_blank" data-link-name="IWA - Everything for the wine lover"><img src="https://mediacdn.espssl.com/10020'
2023-05-26 13:24:41.999 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'/R'
2023-05-26 13:24:41.999 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'AC%20Images/logo-r3.png" alt="IWA - Everything for the wine lover" style="display:block; width: 100%; max-width: 120px !important;border:0px;" width="120"></a> </td></tr></table> </td> <td align=\r\n"center" style="width:50%; vertical-align:middle;"> <table width="100%" cellpadding="0" cellspacing="0" border="0" role="presentation"><tr class="image"><td align=\r\n"right" style="padding: 10px 10px 0px 10px;"> <a href="http://enews.info.iwawine.com/q/GW8pM6CVjTta0YAgsYB5EbWpNjY5YCGuBmoYZcOJbml0YUBicml4Y2VsbGFycy5jb23DiApCl_VEdTeYbLCPeTg-yDXBaEgeQ" title="IWAwine.com" target="_blank" data-link-name="IWAwine.com - 800.527.4072"><img src="https://mediacdn.espssl.com/10020/RAC%20Images/IWA_call_2-r1.png" alt="IWAwine.com - 800.527.4072" style="display:block; width: 100%; max-width: 150px !important;border:0px;" width="150"></a> </td></tr></table> </td></tr> </table> </td> </tr> </table> <!--[if(gte mso 9)|(IE)]></td> </tr> </table><![endif]--> </td> </tr> </table> <table width="100%" class="Wrapper" cellpadding="0" cellspacing="0" border=\r\n"0" role="presentation"> <tr> <td align="center" style="background-color:transparent; border-top-style: none; border-bottom-style: none; border-right-style: none; border-left-style: none; border-top-width: 0px; border-bottom-width: 0px; border-right-width: 0px; border-left-width: 0px; border-color: #222222;"> <!--[if(gte mso 9)|(I'
2023-05-26 13:24:42.000 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'E)]><table width="600" cellpadding="0" cellspacing="0" border="0" style="width: 600px;" role="presentation"> <tr> <td align="center"><![endif]--> <table width="100%" class="Container" cellpadding="0" cellspacing="0" border=\r\n"0" style="max-width:600px;" role="presentation"> <tr> <td align="center" style="background-color:#ffffff"> <table width="100%" class="Column-1 " cellpadding="0" cellspacing="0" border="0" role="presentation"> <tr> <td align="center"> <table width="100%" cellpadding="0" cellspacing="0" border="0" role="presentation"> <tr class=\r\n"image"><td align="center" style="padding: 0px 0px 5px 0px;"> <a href="http://enews.info.iwawine.com/q/9wcC5KyfcneJ0YLZDnGN-rvfY3y_n2FsdF2nZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAlaLYtLa7crULWWV9A74SViJCr3g" title="Everything for the Wine Lover" target="_blank" data-link-name="Everything for the Wine Lover"><img src="https://mediacdn.espssl.com/10020/021523winecountry/021523winecountry-everything-for-the-wine-lover-B-test-2.jpg" alt="Everything for the Wine Lover" style="display:block; width: 100%; max-width: 420px !important;border:0px;" width=\r\n"420"></a> </td></tr> </table> </td> </tr> </table> </td> </tr> </table> <!--[if(gte mso 9)|(IE)]></td> </tr> </table><![endif]--> </td> </tr> </table> <table width="100%" class="Wrapper" cellpadding="0" cellspacing="0" border="0" role="presentation"> <tr> <td align=\r\n"cente'
2023-05-26 13:24:42.000 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'r" style="background-color:transparent; border-top-style: none; border-bottom-style: none; border-right-style: none; border-left-style: none; border-top-width: 0px; border-bottom-width: 0px; border-right-width: 0px; border-left-width: 0px; border-color: #222222;"> <!--[if(gte mso 9)|(IE)]><table width="600" cellpadding="0" cellspacing="0" border="0" style="width: 600px;" role="presentation"> <tr> <td align="center"><![endif]--> <table width="100%" class="Container" cellpadding="0" cellspacing="0" border="0" style="max-width:600px;" role="presentation"> <tr> <td align="center" style="background-color:#ffffff">\r\n<table width="100%" class="Column-1 mobile-hide" cellpadding="0" cellspacing="0" border="0" role="presentation"> <tr> <td align="center"> <table width="100%" cellpadding="0" cellspacing="0" border="0" role=\r\n"presentation"> <tr class="divider"><td style="padding: 0px 0px 0px 0px; vertical-align: top;"><table width="100%" cellpadding="0" cellspacing="0" border="0" role="presentation"><tr><td height="0" style="font-size:0px; line-height:0px; border-bottom-style: solid; border-top-width: 0px; border-bottom-width: 1px; border-right-width: 0px; border-left-width: 0px; border-color: #222222">&nbsp;</td></tr></table></td></tr><tr class="nav"> <td align="center" style="font-size: 0; padding: 0px 0px 0px 0px; line-height: 1.5; letter-spacing:0px;"> <span styl'
2023-05-26 13:24:42.022 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'e="color: #000000;"><a href="http://enews.info.iwawine.com/q/w-HcgJc-Fil70Ybnm7VN5g-aYDxF7JKZ7dZ7ZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAs9PFeTm-eanLiJyT2bS9ut7baww" target=\r\n"_blank" style="font-family:\'Montserrat\', sans-serif; font-size:13px; font-style: normal; color:#000000; display:inline-block; background-color:transparent; border-width: 1px; border-style: solid; border-color: #ffffff; text-decoration:none; padding: 10px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;" data-link-name="STORAGE &amp; COOLING"><strong style="font-weight: normal">STORAGE &amp; COOLING</strong></a></span> <span style="color: #000000;"><a href="http://enews.info.iwawine.com/q/HlXicN6CO-Hs0YR2VFypDQEvjj1uFD84UvbFZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAlutbHEtKdL8Liz69CthQXF5PiXQ" target=\r\n"_blank" style="font-family:\'Montserrat\', sans-serif; font-size:13px; font-style: normal; color:#000000; display:inline-block; background-color:transparent; border-width: 1px; border-style: solid; border-color: #ffffff; text-decoration:none; padding: 10px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;" data-link-name=\r\n"GLASSWARE"><strong style="font-weight: normal">GLASSWARE</strong></a></span> <span style="color: #000000;"><a href="http://enews.info.iwawine.com/q/wMoKdgHdQJ1Q0YiM2aaKC2HquyC1arLQnq9aZcOJbml0YUBicml4Y2VsbGFycy5jb23'
2023-05-26 13:24:42.023 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'DiA9YxgOyN5daoLhKyZ2oAiiSfCFZg" target="_blank" style="font-family:\'Montserrat\', sans-serif; font-size:13px; font-style: normal; color:#000000; display:inline-block; background-color:transparent; border-width: 1px; border-style: solid; border-color: #ffffff; text-decoration:none; padding: 10px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;" data-link-name=\r\n"ACCESSORIES"><strong style="font-weight: normal">ACCESSORIES</strong></a></span> <span style="color: #000000;"><a href="http://enews.info.iwawine.com/q/BCGjvPR1mxq20Y1uhnksFm1Y21AtnwKCE7KnZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAMy9_j6zaeo5LkKJxXBDlF8jYmeQ" target="_blank" style="font-family:\'Montserrat\', sans-serif; font-size:13px; font-style: normal; color:#000000; display:inline-block; background-color:transparent; border-width: 1px; border-style: solid; border-color: #ffffff; text-decoration:none; padding: 10px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;" data-link-name=\r\n"GIFTS"><strong style="font-weight: normal">GIFTS</strong></a></span> <span style="color: #000000;"><a href="http://enews.info.iwawine.com/q/yhyLBID_R_xf0YzcL1HYWCE2wID_1geAHc71ZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAlXzHe3TCfq7LTyfuewCfFf5B1wQ" target="_blank" style="font-family:\'Montserrat\', sans-serif; font-size:13px; font-style: normal; color:#000000; display:inline'
2023-05-26 13:24:42.023 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'-block; background-color:transparent; border-width: 1px; border-style: solid; border-color: #ffffff; text-decoration:none; padding: 10px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;" data-link-name=\r\n"NEW"><strong style="font-weight: normal">NEW</strong></a></span> <span style="color: #000000;"><a href="http://enews.info.iwawine.com/q/szh--LsmKcqP0Y9cfzdaD-JLYNZqzEwlpanzZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAOjucOpKIcL8L3eyaPWy5WVD8ymg" target="_blank" style="font-family:\'Montserrat\', sans-serif; font-size:13px; font-style: normal; color:#000000; display:inline-block; background-color:transparent; border-width: 1px; border-style: solid; border-color: #ffffff; text-decoration:none; padding: 10px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;" data-link-name=\r\n"SALE"><strong style="font-weight: normal">SALE</strong></a></span> </td> </tr><tr class="divider"><td style="padding: 0px 0px 0px 0px; vertical-align: top;"><table width="100%" cellpadding=\r\n"0" cellspacing="0" border="0" role="presentation"><tr><td height="0" style="font-size:0px; line-height:0px; border-bottom-style: solid; border-top-width: 0px; border-bottom-width: 1px; border-right-width: 0px; border-left-width: 0px; border-color: #222222">&nbsp;</td></t'
2023-05-26 13:24:42.024 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'r></table></td></tr> </table> </td> </tr> </table>\r\n</td> </tr> </table> <!--[if(gte mso 9)|(IE)]></td> </tr> </table><![endif]--> </td> </tr> </table> <table width="100%" class="Wrapper" cellpadding="0" cellspacing="0" border="0" role="presentation"> <tr> <td align="center" style="background-color:transparent; border-top-style: none; border-bottom-style: none; border-right-style: none; border-left-style: none; border-top-width: 0px; border-bottom-width: 0px; border-right-width: 0px; border-left-width: 0px; border-color: #222222;"> <!--[if(gte mso 9)|(IE)]><table width="600" cellpadding="0" cellspacing="0" border="0" style="width: 600px;" role="presentation"> <tr> <td align="center"><![endif]--> <table width="100%" class="Container" cellpadding=\r\n"0" cellspacing="0" border="0" style="max-width:600px;" role="presentation"> <tr> <td align="center" style="background-color:#ffffff"> <table width="100%" class="Column-1 " cellpadding="0" cellspacing="0" border="0" role="presentation"> <tr> <td align="center"> <table width="100%" cellpadding="0" cellspacing="0" border="0" role=\r\n"presentation"> <tr class="image"><td align="center" style="padding: 15px 10px 20px 10px;"> <a href="http://enews.info.iwawine.com/q/BxcR3yXiQodP0YEmxGWiZcYhq_9jGNOQ4ttGZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAJV_YGEfyebQLTA_0LrArNHyBW3g" title="Memorial Day Sale - Free Shipping on Loft Wine Coo'
2023-05-26 13:24:42.024 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'lers" target="_blank" data-link-name="Memorial Day Sale - Free Shipping on Loft Wine Coolers"><img src="https://mediacdn.espssl.com/10020/052623memorialday/052623memorialday-title-r1.jpg" alt="Memorial Day Sale - Free Shipping on Loft Wine Coolers" style="display:block; width: 100%; max-width: 600px !important;border:0px;" width="580"></a> </td></tr> </table> </td> </tr> </table> <table width="100%" class="Column-1 " cellpadding="0" cellspacing="0" border=\r\n"0" role="presentation"> <tr> <td align="center"> <table width="100%" cellpadding="0" cellspacing="0" border="0" role="presentation"> <tr class=\r\n"image"><td align="center" style="padding: 0px 10px 0px 10px;"> <a href="http://enews.info.iwawine.com/q/83lK8goVKMtm0YID62_eMwU6ZEA42EzNayy2ZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAdaWnp1DOeY7L6djKPiOFh8HCsoQ" title="LOFT WINE COOLERS" target="_blank" data-link-name="LOFT WINE COOLERS"><img src="https://mediacdn.espssl.com/10020/052623memorialday/1-052623memorialday-19303-beautybanner-loft-wine-cooler-1200-double-FS-badge.png" alt="LOFT WINE COOLERS" style="display:block; width: 100%; max-width: 1200px !important;border:0px;" width=\r\n"580"></a> </td></tr><tr class="text"> <td style="padding: 20px 10px 0px 10px; border-width: 0px; border-style: none; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 12px; font-weight: normal; color: #222222; lin'
2023-05-26 13:24:42.026 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'e-height: 1; text-align: center"> <p style="margin: 0px; padding: 0px;"><a href="http://enews.info.iwawine.com/q/u1xh0VB0QKUy0Yat133SAbJjtSqS3WO7_SS3ZcOJbml0YUBicml4Y2VsbGFycy5jb23DiA9Tb-1D0ef7gLgN_G-Dm91PvA_-A" style="color:#000000;text-decoration:none;" target="_blank" title="LOFT WINE COOLERS" data-link-name=\r\n"LOFT WINE COOLERS"><span style="font-size:19px"><b><span style="color:#000000"><span fontvalue="Helvetica Neue" style="font-family:helvetica neue,helvetica,arial,sans-serif">LOFT WINE COOLERS</span></span></b></span></a></p>\r\n</td> </tr> <tr class="image"><td align="center" style="padding: 0px 10px 5px 10px;"> <a href="http://enews.info.iwawine.com/q/MM_FF0y5tz3C0YhLaAa6heNrQpvEANR5FIsAZcOJbml0YUBicml4Y2VsbGFycy5jb23DiACCxakRB7fZyLUIRI0fFYF0Q0lXA" title="LOFT WINE COOLERS" target="_blank" data-link-name="LOFT WINE COOLERS"><img src="https://mediacdn.espssl.com/10020/052623memorialday/052623memorialday-bullet-loft-wine-coolers.jpg" alt="LOFT WINE COOLERS" style="display:block; width: 100%; max-width: 320px !important;border:0px;" width="320"></a> </td></tr><tr class="button"> <td align="center" style="padding:0px 30px 20px 30px ;"> <table cellpadding="0" cellspacing="0" border="0" style="display:inline-block; margin:0; vertical-align:top;" role=\r\n"presentation"> <tr> <th align="center" style="display:block; background-color:#9f0d06; border-width:1'
2023-05-26 13:24:42.026 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'px; border-style:solid; border-color:#9f0d06;border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; color:#ffffff; line-height:1.5;"> <a href="http://enews.info.iwawine.com/q/gYUdKaYTDlzS0YsgRrAoIkMqC6sVr38ndNTrZcOJbml0YUBicml4Y2VsbGFycy5jb23DiA4p-G_d6be7lLIuSWvUWPUgeeWgA" title="SHOP NOW" target=\r\n"_blank" style="color:#ffffff; font-family:\'Helvetica Neue\', Helvetica, Arial, sans-serif; font-size:15px; font-style:normal; letter-spacing:0px; text-align:center; display:block; background-color:#9f0d06; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; text-decoration:none; padding: 10px 20px 10px 20px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; border-width:1px; border-style:solid; border-color:#9f0d06;" data-link-name="SHOP NOW"> <strong>SHOP NOW</strong> </a> </th> </tr> </table> </td> </tr> </table> </td> </tr> </table> <table width="100%" class="Column-1 " cellpadding="0" cellspacing=\r\n"0" border="0" role="presentation"> <tr> <td align="center"> <table width="100%" cellpadding="0" cellspacing="0" border="0" role=\r\n"presentation"> <tr class="image"><td align="center" style="padding: 0px 10px 20px 10px;"> <a href="http://enews.info.iwawine.com/q/WrpbS2tTXilZ0Y8U-HkACe8NSz0PHYIv'
2023-05-26 13:24:42.027 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'vPCHZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAZhtK1iyrfb1Llo6fBqZ4YAGMSTA" title="Get Free Shipping On Orders Over 99, Use Code 23FSW" target="_blank" data-link-name="Get Free Shipping On Orders Over 99, Use Code 23FSW"><img src="https://mediacdn.espssl.com/10020/052623memorialday/052623memorialday-23FSLOFT-promo.png" alt="Get Free Shipping On Orders Over 99, Use Code 23FSW" style="display:block; width: 100%; max-width: 1200px !important;border:0px;" width="580"></a> </td></tr> </table> </td> </tr> </table> <table width="100%" class="Column-2" cellpadding="0" cellspacing=\r\n"0" border="0" role="presentation"> <tr> <td align="center" style="width:50%; vertical-align:top;"> <table width="100%" cellpadding="0" cellspacing="0" border=\r\n"0" role="presentation"><tr class="image"><td align="center" style="padding: 0px 10px 10px 10px;"> <a href="http://enews.info.iwawine.com/q/jn0hxh1Y5keF0YVqFoqf44jobmR0opxuhrmoZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAjuet-VvHeIlLnKroSUzKgZYvuqw" title="Loft 250" target="_blank" data-link-name=\r\n"Loft 250"><img src="https://mediacdn.espssl.com/10020/052623memorialday/2-052623memorialday-25670-loft-silo2-loft-250-dual-zone-wine-cooler-r1.jpg" alt="Loft 250" style="display:block; width: 100%; max-width: 560px !important;border:0px;" width="280"></a> </td></tr><tr class="text"> <td style="padding: 0px 10px 20px 10px; border-width: 0px; border-style'
2023-05-26 13:24:42.027 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b': none; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 16px; font-weight: normal; color: #222222; line-height: 1; text-align: center"> <p style="margin: 0px; padding: 0px;"><a href="http://enews.info.iwawine.com/q/-1lPsDJose7Z0Yxn0-JO74jKmeQ4-SdmFFY-ZcOJbml0YUBicml4Y2VsbGFycy5jb23DiABDcixNsSeb3L8dz2we1uE8wE-JA" style="color:#222222;text-decoration:none;" target=\r\n"_blank" title="Loft 250" data-link-name="Loft 250"><span style="font-size:15px"><b>Loft 250</b></span></a></p>\r\n</td> </tr> </table> </td> <td align="center" style="width:50%; vertical-align:top;"> <table width="100%" cellpadding="0" cellspacing="0" border="0" role="presentation"><tr class="image"><td align="center" style="padding: 0px 10px 10px 10px;"> <a href="http://enews.info.iwawine.com/q/k96h2BGdHl7y0YYFpWqhgRmA9aPCWS-52oeWZcOJbml0YUBicml4Y2VsbGFycy5jb23DiA0ovAOHFHfpgL-vywHdkVpq9eCxg" title="Loft 400" target=\r\n"_blank" data-link-name="Loft 400"><img src="https://mediacdn.espssl.com/10020/052623memorialday/3-052623memorialday-19190-loft-silo2-loft-400-wine-refrigerator-dz-r1.jpg" alt="Loft 400" style="display:block; width: 100%; max-width: 560px !important;border:0px;" width="280"></a> </td></tr><tr class=\r\n"text"> <td style="padding: 0px 10px 20px 10px; border-width: 0px; border-style: none;'
2023-05-26 13:24:42.027 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b' f'
2023-05-26 13:24:42.028 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'ont-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 16px; font-weight: normal; color: #222222; line-height: 1; text-align: center"> <p style="margin: 0px; padding: 0px;"><a href="http://enews.info.iwawine.com/q/1yZdK8q7OEH80YqoRU-QoeM0C2GNUdUyZgmUZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAVgYUaJYWfJVLzopz3UvPeUlMPEg" style="color:#222222;text-decoration:none;" target="_blank" title="Loft 400" data-link-name="Loft 400"><span style="font-size:15px"><b>Loft 400</b></span></a></p>\r\n</td> </tr> </table> </td></tr> </table> <table width="100%" class="Column-2" cellpadding="0" cellspacing="0" border="0" role="presentation"> <tr> <td align="center" style="width:50%; vertical-align:top;"> <table width="100%" cellpadding="0" cellspacing="0" border="0" role="presentation"><tr class="image"><td align=\r\n"center" style="padding: 0px 10px 10px 10px;"> <a href="http://enews.info.iwawine.com/q/lYlaat6u4W8e0YbFeAouaDScPYTuAV9WLaJAZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAbkievZRMea2L2OIn-bPPzAWtBmA" title="Loft 800" target="_blank" data-link-name="Loft 800"><img src="https://mediacdn.espssl.com/10020/052623memorialday/4-052623memorialday-19315-silo2-loft-800-dual-zone-wine-cooler-r1.jpg" alt="Loft 800" style="display:block; width: 100%; max-width: 560px !important;border:0px;" width=\r\n"280"></a> </td></tr><tr class="text"> <td style="padding: 0px 10px 20px 10px; border-wi'
2023-05-26 13:24:42.028 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'dth: 0px; border-style: none; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 16px; font-weight: normal; color: #222222; line-height: 1; text-align: center"> <p style="margin: 0px; padding: 0px;"><a href="http://enews.info.iwawine.com/q/DbqixTWUpssT0Y7_dPn0Kasa-yhGPFdcZ7EPZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAvcaYQxyZe44LJVCI7I2v1jbjPng" style="color:#222222;text-decoration:none;" target="_blank" title="Loft 800" data-link-name="Loft 800"><span style="font-size:15px"><b>Loft 800</b></span></a></p>\r\n</td> </tr> </table> </td> <td align="center" style="width:50%; vertical-align:top;"> <table width="100%" cellpadding="0" cellspacing="0" border="0" role="presentation"><tr class="image"><td align="center" style="padding: 0px 10px 10px 10px;"> <a href="http://enews.info.iwawine.com/q/CJgCBUkds_XY0YY2LNOknlELL7k_Nv8RhBJNZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAGfiPWx9FeKqLTEtThZqeBmhzxiQ" title="Loft 1200" target=\r\n"_blank" data-link-name="Loft 1200"><img src="https://mediacdn.espssl.com/10020/052623memorialday/5-052623memorialday-19188-silo2-loft-1200-dual-zone-wine-cooler-r1.jpg" alt="Loft 1200" style="display:block; width: 100%; max-width: 560px !important;border:0px;" width="280"></a> </td></tr><tr class=\r\n"text"> <td style="padding: 0px 10px 20px 10px; border-width: 0px; border-style: none; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-s'
2023-05-26 13:24:42.028 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'erif; font-size: 16px; font-weight: normal; color: #222222; line-height: 1; text-align: center"> <p style="margin: 0px; padding: 0px;"><a href="http://enews.info.iwawine.com/q/42XmTyj4I_MP0YG8i75FSm4oAbvY7k7ssJN7ZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAleFZ8kC8c40LP4H_oMsKMw5DoXw" style="color:#222222;text-decoration:none;" target="_blank" title="Loft 1200" data-link-name="Loft 1200"><span style="font-size:15px"><b>Loft 1200</b></span></a></p>\r\n</td> </tr> </table> </td></tr> </table> </td> </tr> </table> <!--[if(gte mso 9)|(IE)]></td> </tr> </table><![endif]--> </td> </tr> </table>  <table width="100%" class="Wrapper" cellpadding="0" cellspacing="0" border="0" role="presentation">  <tr>    <td align="center" style="background-color:transparent;  border-top-style: none; border-bottom-style: none; border-right-style: none; border-left-style: none; border-top-width: 0px; border-bottom-width: 0px; border-right-width: 0px; border-left-width: 0px; border-color: #222222;">        <!--[if(gte mso 9)|(IE)]>    <table width="600" cellpadding="0" cellspacing="0" border="0" style="width: 600px;"  role="presentation">    <tr>    <td align="center">    <![endif]-->    <table width="100%" class="Container" cellpadding="0" cellspacing="0" border="0" style="max-width:600px;" role=\r\n"presentation">    <tr>    <td align="center"  style="background-color:#ffffff" >     \t<table widt'
2023-05-26 13:24:42.029 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'h="100%" class="Column-1 " cellpadding="0" cellspacing="0" border="0" role="presentation">    <tr>    <td align="center">    <table width="100%" cellpadding="0" cellspacing=\r\n"0" border="0" role="presentation">    <tr class="image"><td align=\r\n"center" style="padding: 0px 10px 20px 10px;"> <a href="http://enews.info.iwawine.com/q/vsCk8iGkGWeP0YeG6ZeH38UGcfLIZi9oYHMZZcOJbml0YUBicml4Y2VsbGFycy5jb23DiA0rPYpYQ8eqfLh7j1OEpu-Sde63g" title="Sign Up for Texts* Text CHEERS to 63414" target="_blank" data-link-name="Sign Up for Texts* Text CHEERS to 63414"><img src="https://mediacdn.espssl.com/10020/smsimages/SMS-marketing-signup-2023.png" alt="Sign Up for Texts* Text CHEERS to 63414" style="display:block; width: 100%; max-width: 600px !important;border:0px;" width="580"></a>  </td></tr>    </table>    </td>    </tr> \t</table>      </td> </tr> </table>  <!--[if(gte mso 9)|(IE)]>    </td>    </tr> </table> <![endif]-->      </td>    </tr> </table> \r\n <table width="100%" class="Wrapper" cellpadding="0" cellspacing="0" border="0" role="presentation"> <tr> <td align="center" style="background-color:transparent; border-top-style: none; border-bottom-style: none; border-right-style: none; border-left-style: none; border-top-width: 0px; border-bottom-width: 0px; border-right-width: 0px; border-left-width: 0px; border-color: #222222;"> <!--[if(gte mso 9)|(IE)]><table width="'
2023-05-26 13:24:42.029 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'600" cellpadding="0" cellspacing="0" border="0" style="width: 600px;" role="presentation"> <tr> <td align="center"><![endif]--> <table width="100%" class="Container" cellpadding=\r\n"0" cellspacing="0" border="0" style="max-width:600px;" role="presentation"> <tr> <td align="center" style="background-color:#ffffff"> <table width="100%" class="Column-1 " cellpadding="0" cellspacing="0" border="0" role="presentation"> <tr> <td align="center"> <table width="100%" cellpadding="0" cellspacing="0" border="0" role=\r\n"presentation"> <tr class="image"><td align="center" style="padding: 0px 10px 10px 10px;"> <a href="http://enews.info.iwawine.com/q/dUyqmRc6pRXy0YViUTw9vC-jowfETNSx6k0TZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAbzPNRqGccoaL9tPRlIxy5BGo6yw" title="You May Also Like" target="_blank" data-link-name="You May Also Like"><img src="https://mediacdn.espssl.com/10020/Testing/2022-you-may-also-like-transition-gray.jpg" alt="You May Also Like" style="display:block; width: 100%; max-width: 812px !important;border:0px;" width=\r\n"580"></a> </td></tr> </table> </td> </tr> </table> <table width="100%" class="Column-2" cellpadding="0" cellspacing="0" border="0" role="presentation"> <tr> <td align="center" style="width:50%; vertical-align:top;"> <table width="100%" cellpadding="0" cellspacing=\r\n"0" border="0" role="presentation"><tr class="image"><td align="center" style="padding:'
2023-05-26 13:24:42.029 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b' 10px 0px 10px 0px;"> <a href="http://enews.info.iwawine.com/q/Vo4EEfDA2ZjX0YdaSHpKQd9Y7a3FHEOVPCiHZcOJbml0YUBicml4Y2VsbGFycy5jb23DiA2gnBcMulfp-LtgLyEGmqvqt8Axw" title="View product recommended for you" target=\r\n"_blank" data-link-name="View product recommended for you"><img src="https://recs.listrakbi.com/composer/image/c1d073fd-4697-425f-9a43-cb97d5e8e4bb/f8599f1e-e68b-4c00-8bcf-fe5537723611/7cf00b61-4cad-4f52-a658-a6ca31e67ce6/76/186/520/650/email/nita@brixcellars.com" alt="View product recommended for you" style="display:block; width: 100%; max-width: 280px !important;border:0px;" width="280"></a> </td></tr></table> </td> <td align="center" style="width:50%; vertical-align:top;"> <table width="100%" cellpadding="0" cellspacing="0" border=\r\n"0" role="presentation"><tr class="image"><td align="center" style="padding: 10px 0px 10px 0px;"> <a href="http://enews.info.iwawine.com/q/TgEd5yswI5OA0YWuDZ87_NvRFDq_ZBFHF6eZZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAdDexumcafLULEDt2Gag4133E-tw" title="View product recommended for you" target="_blank" data-link-name=\r\n"View product recommended for you"><img src="https://recs.listrakbi.com/composer/image/c1d073fd-4697-425f-9a43-cb97d5e8e4bb/f8599f1e-e68b-4c00-8bcf-fe5537723611/7cf00b61-4cad-4f52-a658-a6ca31e67ce6/703/186/520/650/email/nita@brixcellars'
2023-05-26 13:24:42.030 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'.com" alt="View product recommended for you" style="display:block; width: 100%; max-width: 280px !important;border:0px;" width="280"></a> </td></tr></table> </td></tr> </table> <table width="100%" class="Column-2" cellpadding="0" cellspacing="0" border="0" role="presentation"> <tr> <td align=\r\n"center" style="width:50%; vertical-align:top;"> <table width="100%" cellpadding="0" cellspacing="0" border="0" role="presentation"><tr class="image"><td align=\r\n"center" style="padding: 10px 0px 10px 0px;"> <a href="http://enews.info.iwawine.com/q/eApKVps3kVNF0YHanjHjNmt_-vA_jsATuqIjZcOJbml0YUBicml4Y2VsbGFycy5jb23DiA8ny6K7jIcroLS4XJ0S86FvPd1vA" title="View product recommended for you" target="_blank" data-link-name="View product recommended for you"><img src="https://recs.listrakbi.com/composer/image/c1d073fd-4697-425f-9a43-cb97d5e8e4bb/f8599f1e-e68b-4c00-8bcf-fe5537723611/7cf00b61-4cad-4f52-a658-a6ca31e67ce6/76/1163/520/650/email/nita@brixcellars.com" alt="View product recommended for you" style="display:block; width: 100%; max-width: 280px !important;border:0px;" width="280"></a> </td></tr></table> </td> <td align="center" style="width:50%; vertical-align:top;"> <table width="100%" cellpadding=\r\n"0" cellspacing="0" border="0" role="presentation"><tr class="image"><td align="center" style="padding: 10px 0px 10px 0px;"> <a href="http://enews.info.iwawine.com/q/U4w99'
2023-05-26 13:24:42.030 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'3GhtfMY0YHFtiIitDwdXcHUiwgaSBviZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAZewoMNbJeZxLXBbpzAN5MF2DlLg" title="View product recommended for you" target=\r\n"_blank" data-link-name="View product recommended for you"><img src="https://recs.listrakbi.com/composer/image/c1d073fd-4697-425f-9a43-cb97d5e8e4bb/f8599f1e-e68b-4c00-8bcf-fe5537723611/7cf00b61-4cad-4f52-a658-a6ca31e67ce6/703/1163/520/650/email/nita@brixcellars.com" alt="View product recommended for you" style="display:block; width: 100%; max-width: 280px !important;border:0px;" width="280"></a> </td></tr></table> </td></tr> </table> <table width="100%" class="Column-1 " cellpadding="0" cellspacing="0" border="0" role=\r\n"presentation"> <tr> <td align="center"> <table width="100%" cellpadding="0" cellspacing="0" border="0" role="presentation"> <tr class=\r\n"divider"><td style="padding: 0px 10px 20px 10px; vertical-align: top;"><table width="100%" cellpadding="0" cellspacing="0" border="0" role=\r\n"presentation"><tr><td height="5" style="font-size:0px; line-height:0px; border-bottom-style: solid; border-top-width: 0px; border-bottom-width: 1px; border-right-width: 0px; border-left-width: 0px; border-color: #999999">&nbsp;</td></tr></table></td></tr><tr class=\r\n"text"> <td style="padding: 0px 30px 10px 30px; border-width: 0px; border-style: none; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 16'
2023-05-26 13:24:42.030 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'px; font-weight: normal; color: #222222; line-height: 1; text-align: center"> <p style="margin: 0px; padding: 0px;"><span style="font-size:10px">* Use code <b>23FSLOFT</b> to receive 100% off ground shipping to a physical address within the contiguous United States on in stock Loft wine coolers. Not combinable with any other promo codes, discounts or offers. May not be applied to previous orders. Exclusively available to retail customers. Void where prohibited by law. Expires 5/29/2023.</span></p>\r\n</td> </tr> </table> </td> </tr> </table> </td> </tr> </table> <!--[if(gte mso 9)|(IE)]></td> </tr> </table><![endif]--> </td> </tr> </table>  <table width="100%" class="Wrapper" cellpadding="0" cellspacing="0" border="0" role="presentation">  <tr>    <td align="center" style="background-color:transparent;  border-top-style: none; border-bottom-style: none; border-right-style: none; border-left-style: none; border-top-width: 0px; border-bottom-width: 0px; border-right-width: 0px; border-left-width: 0px; border-color: #222222;">        <!--[if(gte mso 9)|(IE)]>    <table width="600" cellpadding="0" cellspacing="0" border="0" style="width: 600px;"  role="presentation">    <tr>    <td align="center">    <![endif]-->    <table width="100%" class="Container" cellpadding="0" cellspacing=\r\n"0" border="0" style="max-width:600px;" role="presentation">    <tr>    <td alig'
2023-05-26 13:24:42.031 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'n="center"  style="background-color:#ffffff" >     \t<table width="100%" class="Column-1 " cellpadding="0" cellspacing="0" border="0" role=\r\n"presentation">    <tr>    <td align="center">    <table width="100%" cellpadding="0" cellspacing="0" border=\r\n"0" role="presentation">    <tr class="text">   <td style="padding: 10px 30px 10px 30px; border-width: 0px; border-style: none; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 12px; font-weight: normal; color: #222222; line-height: 1.5; text-align: center">    <p><span style="font-size:10px">** By subscribing to IWA text messaging, you agree to receive recurring autodialed marketing text messages (e.g. cart reminders) to the mobile number used at opt-in. Consent is not a condition of purchase. Message frequency may vary. Msg &amp; data rates may apply. Reply HELP for help and STOP to cancel. See Terms: https://www.iwawine.com/sms-terms &amp; Privacy Policy: https://www.iwawine.com/privacy</span></p>\r\n   </td> </tr>     </table>    </td>    </tr> \t</table>      </td> </tr> </table>  <!--[if(gte mso 9)|(IE)]>    </td>    </tr> </table> <![endif]-->      </td>    </tr> </table> \r\n <table width="100%" class="Wrapper" cellpadding="0" cellspacing="0" border="0" role="presentation"> <tr> <td align="center" style="background-color:transparent; border-top-style: none; border-bottom-style: none; '
2023-05-26 13:24:42.031 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'border-right-style: none; border-left-style: none; border-top-width: 0px; border-bottom-width: 0px; border-right-width: 0px; border-left-width: 0px; border-color: #222222;"> <!--[if(gte mso 9)|(IE)]><table width="600" cellpadding="0" cellspacing=\r\n"0" border="0" style="width: 600px;" role="presentation"> <tr> <td align="center"><![endif]--> <table width="100%" class="Container" cellpadding="0" cellspacing="0" border="0" style="max-width:600px;" role="presentation"> <tr> <td align=\r\n"center" style="background-color:#ffffff"> <table width="100%" class="Column-1 " cellpadding="0" cellspacing="0" border="0" role="presentation"> <tr> <td align="center"> <table width="100%" cellpadding="0" cellspacing="0" border=\r\n"0" role="presentation"> <tr class="divider"><td style="padding: 0px 10px 20px 10px; vertical-align: top;"><table width="100%" cellpadding="0" cellspacing="0" border="0" role="presentation"><tr><td height="10" style="font-size:0px; line-height:0px; border-bottom-style: solid; border-top-width: 0px; border-bottom-width: 1px; border-right-width: 0px; border-left-width: 0px; border-color: #999999">&nbsp;</td></tr></table></td></tr><tr class="html"><td style="font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 12px;"><!-- GMAIL MARKETING IMAGE AND PROMO AREA -->\r\n<div itemscope itemtype="http://schema.org/PromotionCard">\r\n<meta itemprop'
2023-05-26 13:24:42.031 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'="image" content="https://mediacdn.espssl.com/10020/052623memorialday/052623memorialday-loft-gmailbanner-loft-wine-cooler.jpg">\r\n</div>\r\n<div itemscope itemtype="http://schema.org/DiscountOffer">\r\n <meta itemprop="description" content="Free Shipping on Loft Wine Coolers"/>\r\n <meta itemprop="discountCode" content="23FSLOFT"/>\r\n <meta itemprop="availabilityStarts" content="2023-05-24T08:00:00-07:00"/>\r\n <meta itemprop="availabilityEnds" content="2023-05-29T23:59:59-07:00"/>\r\n</div>\r\n<!-- ENDGMAIL MARKETING AREA --></td></tr> </table> </td> </tr> </table> </td> </tr> </table> <!--[if(gte mso 9)|(IE)]></td> </tr> </table><![endif]--> </td> </tr> </table> <table width="100%" class="Wrapper" cellpadding="0" cellspacing="0" border="0" role="presentation"> <tr> <td align="center" style="background-color:transparent; border-top-style: none; border-bottom-style: none; border-right-style: none; border-left-style: none; border-top-width: 0px; border-bottom-width: 0px; border-right-width: 0px; border-left-width: 0px; border-color: #222222;"> <!--[if(gte mso 9)|(IE)]><table width="600" cellpadding="0" cellspacing="0" border="0" style="width: 600px;" role="presentation"> <tr> <td align="center"><![endif]--> <table width="100%" class="Container" cellpadding="0" cellspacing=\r\n"0" border="0" style="'
2023-05-26 13:24:42.032 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'max-width:600px;" role="presentation"> <tr> <td align="center" style="background-color:#ffffff"> <table width="100%" class="Column-1 " cellpadding="0" cellspacing="0" border="0" role=\r\n"presentation"> <tr> <td align="center"> <table width="100%" cellpadding="0" cellspacing="0" border="0" role="presentation"> <!--[if !mso]><!--><tr class="nav stack desktop-hide" style="mso-hide:all; width:0; max-height:0; overflow:hidden; display:none; float:left;"> <td align="center" style="font-size: 0; padding: 0px 0px 0px 0px; line-height: 1.5; letter-spacing:0px;"> <span style="color: #000000;"><a href="http://enews.info.iwawine.com/q/jjKy-AKMADv-0YBqf9TaNsJlTc0s9qUaZ3R9ZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAthDWDKSucrZLnfFsnbN9Qs7MZ0A" target=\r\n"_blank" style="font-family:\'Montserrat\', sans-serif; font-size:14px; font-style: normal; color:#000000; display:inline-block; background-color:transparent; border-width: 1px; border-style: solid; border-color: #ffffff; text-decoration:none; padding: 10px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;" data-link-name="STORAGE &amp; COOLING"><strong style="font-weight: normal">STORAGE &amp; COOLING</strong></a></span> <span style="color: #000000;"><a href="http://enews.info.iwawine.com/q/3n7ON4OC9sjI0Y6YqLY9D9yukeePLEVlqt3LZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAYJ0mKFXKd5rLaVaEGuL5O22WUIA" target=\r\n"_bl'
2023-05-26 13:24:42.032 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'ank" style="font-family:\'Montserrat\', sans-serif; font-size:14px; font-style: normal; color:#000000; display:inline-block; background-color:transparent; border-width: 1px; border-style: solid; border-color: #ffffff; text-decoration:none; padding: 10px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;" data-link-name=\r\n"GLASSWARE"><strong style="font-weight: normal">GLASSWARE</strong></a></span> <span style="color: #000000;"><a href="http://enews.info.iwawine.com/q/cqhTBjcEbs0a0Y_uY1kPRJh8nhbY1zlV9mG1ZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAK0L-I69ucIjLlwT9uJb5G7i5L-A" target="_blank" style="font-family:\'Montserrat\', sans-serif; font-size:14px; font-style: normal; color:#000000; display:inline-block; background-color:transparent; border-width: 1px; border-style: solid; border-color: #ffffff; text-decoration:none; padding: 10px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;" data-link-name=\r\n"ACCESSORIES"><strong style="font-weight: normal">ACCESSORIES</strong></a></span> <span style="color: #000000;"><a href="http://enews.info.iwawine.com/q/ZUj2aLE-qAJC0YGF3uApaC7aa63EubmBb6XuZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAPnPiybu6dqBLsqGPRreBjFzt65A" target="_blank" style="font-family:\'Montserrat\', sans-serif; font-size:14px; font-style: normal; color:#000000; display:inline-block; background-color:transparen'
2023-05-26 13:24:42.032 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b't; border-width: 1px; border-style: solid; border-color: #ffffff; text-decoration:none; padding: 10px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;" data-link-name=\r\n"GIFTS"><strong style="font-weight: normal">GIFTS</strong></a></span> <span style="color: #000000;"><a href="http://enews.info.iwawine.com/q/qCITBe7VWUSr0YEiYksJLuhGUIGIkRqVMCtkZcOJbml0YUBicml4Y2VsbGFycy5jb23DiA3Z0YTv0ec7cLVBakN8kv3rdiUHg" target=\r\n"_blank" style="font-family:\'Montserrat\', sans-serif; font-size:14px; font-style: normal; color:#000000; display:inline-block; background-color:transparent; border-width: 1px; border-style: solid; border-color: #ffffff; text-decoration:none; padding: 10px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;" data-link-name="NEW"><strong style="font-weight: normal">NEW</strong></a></span> <span style="color: #000000;"><a href="http://enews.info.iwawine.com/q/LCkIvxinSkiw0Y5zhgDH1v1Bd9ORgYuCi38gZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAJyhPxYgKcoDLCU1zbmOJqVCIhSQ" target=\r\n"_blank" style="font-family:\'Montserrat\', sans-serif; font-size:14px; font-style: normal; color:#000000; display:inline-block; background-color:transparent; border-width: 1px; border-style: solid; border-color: #ffffff; text-decoration:none; padding: 10px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing'
2023-05-26 13:24:42.033 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b':border-box;" data-link-name="SALE"><strong style="font-weight: normal">SALE</strong></a></span> </td> </tr><!--<![endif]--> </table> </td> </tr> </table> </td> </tr> </table> <!--[if(gte mso 9)|(IE)]></td> </tr> </table><![endif]--> </td> </tr> </table> <table width="100%" class=\r\n"Wrapper" cellpadding="0" cellspacing="0" border=\r\n"0" role="presentation"> <tr> <td align="center" style="background-color:transparent; border-top-style: none; border-bottom-style: none; border-right-style: none; border-left-style: none; border-top-width: 0px; border-bottom-width: 0px; border-right-width: 0px; border-left-width: 0px; border-color: #222222;"> <!--[if(gte mso 9)|(IE)]><table width="600" cellpadding="0" cellspacing="0" border="0" style="width: 600px;" role="presentation"> <tr> <td align="center"><![endif]--> <table width="100%" class="Container" cellpadding="0" cellspacing="0" border="0" style="max-width:600px;" role=\r\n"presentation"> <tr> <td align="center" style="background-color:#ffffff"> <table width="100%" class="Column-1 " cellpadding="0" cellspacing="0" border="0" role="presentation"> <tr> <td align="center"> <table width="100%" cellpadding="0" cellspacing="0" border="0" role="presentation"> <tr class="social"> <td align="center" style="padding:10px 30px 10px 30px;"> <!--[if(gte mso 9)|(IE)]><table width="220" cellpadding=\r\n"0" cellspacing="0" border="0" st'
2023-05-26 13:24:42.033 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'yle="width: 220px;" role="presentation"><tr><td align="center"><![endif]--> <table width="100%" cellpadding="0" cellspacing="0" border="0" style="display:inline-block; margin:0; vertical-align:top;max-width:220px;" role="presentation"> <tr> <td width="36"> <a href="http://enews.info.iwawine.com/q/NolKxOugqSrh0YF8dSH3BKsnS_LySlHzxHSSZcOJbml0YUBicml4Y2VsbGFycy5jb23DiArquKQIaXcpOL_4HgOGHWLTKuijA" target="_blank" data-link-name="Facebook"> <img alt="Facebook" src="https://mediacdn.espssl.com/email/Composer/Icons/square/large/white/images/facebook.png" width=\r\n"36" style="display: block; width: 100%; max-width: 36px; border: 0;"> </a> </td> <td> <span style="display:block; width:10px;">&nbsp;</span> </td> <td width="36"> <a href="http://enews.info.iwawine.com/q/6an4adOWlITC0Yok3MxBX47x_6HmM8WjyYmMZcOJbml0YUBicml4Y2VsbGFycy5jb23DiA-Y7hZALYd5wLPcIEL6GZhpPyH5w" target="_blank" data-link-name="Twitter"> <img alt="Twitter" src="https://mediacdn.espssl.com/email/Composer/Icons/square/large/white/images/twitter.png" width="36" style="display: block; width: 100%; max-width: 36px; border: 0;"> </a> </td> <td> <span style="display:block; width:10px;">&nbsp;</span> </td> <td width=\r\n"36"> <a href="http://enews.info.iwawine.com/q/wkZnV6jm7hDu0YOpupd-h6RM9V1LpxArdcqpZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAD98rNFI2eqnLFbC3M1MjSfArWLQ" target="_blank" data-link-name="Pinterest"> <i'
2023-05-26 13:24:42.033 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'mg alt="Pinterest" src="https://mediacdn.espssl.com/email/Composer/Icons/square/large/white/images/pinterest.png" width="36" style="display: block; width: 100%; max-width: 36px; border: 0;"> </a> </td> <td> <span style="display:block; width:10px;">&nbsp;</span> </td> <td width="36"> <a href="http://enews.info.iwawine.com/q/pnUOzPz07ehi0Y3g_gx_plW3a7QLgtATE-egZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAqjF6tffLfagLqPTQozaC8f684fA" target=\r\n"_blank" data-link-name="Instagram"> <img alt="Instagram" src="https://mediacdn.espssl.com/email/Composer/Icons/square/large/white/images/instagram.png" width="36" style="display: block; width: 100%; max-width: 36px; border: 0;"> </a> </td> <td> <span style="display:block; width:10px;">&nbsp;</span> </td> <td width="36"> <a href="http://enews.info.iwawine.com/q/WBmP2UHeszQu0Ycgp9Y2Hhm4UqlN9nKQO4g9ZcOJbml0YUBicml4Y2VsbGFycy5jb23DiA42LmQr5WfLsL2qiUroeY6GOZr4A" target=\r\n"_blank" data-link-name="YouTube"> <img alt="YouTube" src="https://mediacdn.espssl.com/email/Composer/Icons/square/large/white/images/youtube.png" width="36" style="display: block; width: 100%; max-width: 36px; border: 0;"> </a> </td> </tr> </table> <!--[if(gte mso 9)|(IE)]></td></tr></table><![endif]--> </td> </tr><tr class="text"> <td style="padding: 0px 30px 20px 30px; border-width: 0px; bor'
2023-05-26 13:24:42.033 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'der-style: none; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 12px; font-weight: normal; color: #222222; line-height: 1.5; text-align: center"> <span style="color:#666666"><span style="font-size:12px">&copy;&nbsp;2023 IWA Wine Accessories<br/>\r\n<a href="http://enews.info.iwawine.com/q/X7AxI-nK7tvY0YLzNHCrUdmDEGC3HGnj6WyHZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAnu0TlAf_cZoLolKqDoZVCOpvkFQ" style="color:#666666;text-decoration:none;" target="_blank" title="Address">1445 N. McDowell Blvd, Petaluma, CA 94954</a><br/>\r\n<a href="tel:800-527-4072" style="color:#666666;text-decoration:none;" target="_blank" title="800-527-4072">800.527.4072</a></span></span> </td> </tr> </table> </td> </tr> </table> </td> </tr> </table> <!--[if(gte mso 9)|(IE)]></td> </tr> </table><![endif]--> </td> </tr> </table> <table width="100%" class="Wrapper" cellpadding="0" cellspacing="0" border="0" role="presentation"> <tr> <td align="center" style="background-color:transparent; border-top-style: none; border-bottom-style: none; border-right-style: none; border-left-style: none; border-top-width: 0px; border-bottom-width: 0px; border-right-width: 0px; border-left-width: 0px; border-color: #222222;"> <!--[if(gte mso 9)|(IE)]><table width="600" cellpadding="0" cellspacing="0" border=\r\n"0" style="width: 600px;" role="presentation"> <tr> <td align="center"><![endif]--> <t'
2023-05-26 13:24:42.053 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'able width="100%" class="Container" cellpadding="0" cellspacing="0" border="0" style="max-width:600px;" role="presentation"> <tr> <td align="center" style="background-color:#ffffff"> <table width="100%" class="Column-1 " cellpadding=\r\n"0" cellspacing="0" border="0" role="presentation"> <tr> <td align="center"> <table width="100%" cellpadding="0" cellspacing="0" border="0" role="presentation"> <tr class="nav"> <td align=\r\n"center" style="font-size: 0; padding: 0px 0px 0px 0px; line-height: 1.5; letter-spacing:0px;"> <span style="color: #222222;"><a href="http://enews.info.iwawine.com/q/1sG4RjLhDaPD0YPtr3GdNVNPGxsH358rtAr3ZcOJbml0YUBicml4Y2VsbGFycy5jb23DiAtz1WtRa5cpcL9arKuA1ZrILI0UA" target="_blank" style="font-family:Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size:11px; font-style: normal; color:#222222; display:inline-block; background-color:transparent; border-width: 1px; border-style: solid; border-color: #ffffff; text-decoration:none; padding: 10px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;" data-link-name=\r\n"Preferences"><strong style="font-weight: normal">Preferences</strong></a></span> <span style="color: #222222;"><a href="http://enews.info.iwawine.com/q/KYC7iBqmOjIKQDA9T9_3GP9ZsjN-GyIv62Eui9sh26ox8gL-Bq70P9IbuU" target="_blank" style="font-family:Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-'
2023-05-26 13:24:42.053 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'size:11px; font-style: normal; color:#222222; display:inline-block; background-color:transparent; border-width: 1px; border-style: solid; border-color: #ffffff; text-decoration:none; padding: 10px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;" data-link-name=\r\n"Unsubscribe"><strong style="font-weight: normal">Unsubscribe</strong></a></span> <span style="color: #222222;"><a href="http://enews.info.iwawine.com/q/gCc4HT5QL-T582bxD6p-nT6ArVvqzGigxSNoHxAGDBROwVqyQI4986iuOX" target="_blank" style="font-family:Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size:11px; font-style: normal; color:#222222; display:inline-block; background-color:transparent; border-width: 1px; border-style: solid; border-color: #ffffff; text-decoration:none; padding: 10px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;" data-link-name=\r\n"View Online"><strong style="font-weight: normal">View Online</strong></a></span> <span style="color: #222222;"><a href="http://enews.info.iwawine.com/q/0Cc2K6gdHtn90YyVRBhyeRMI0os-BxZypw7BZcOJbml0YUBicml4Y2VsbGFycy5jb23DiA_vevNJTSe4VLXfi4dNIlVMvv-qQ" target="_blank" style="font-family:Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size:11px; font-style: normal; color:#222222; display:inline-block; background-color:transparent; border-width: 1px; border-style: solid; bor'
2023-05-26 13:24:42.054 DEBUG (MainThread) [aioimaplib.aioimaplib] Received : b'der-color: #ffffff; text-decoration:none; padding: 10px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;" data-link-name=\r\n"Privacy Policy"><strong style="font-weight: normal">Privacy Policy</strong></a></span> </td> </tr> </table> </td> </tr> </table> </td> </tr> </table> <!--[if(gte mso 9)|(IE)]></td> </tr> </table><![endif]--> </td> </tr> </table> </td> </tr> </table>\r\n<img src="http://enews.info.iwawine.com/q/z2LQzRBaSYI6Nx_Rh8IEmuG5o_RqWOuLVfR" alt="" width="20" height="1"></body> </html>\r\n)\r\nGIEB5 OK Success\r\n'
2023-05-26 13:24:42.054 DEBUG (MainThread) [aioimaplib.aioimaplib] tagged status b'GIEB5 OK Success'
jbouwh commented 1 year ago

No errors so far. When you reload until the last email will be loaded and an event will be forwarded.

drjjr2 commented 1 year ago

You are correct. There are no errors. It seems like the integration crashes or hangs with those particular emails and won’t even reload until I delete the email that causes the hang/crash.

jbouwh commented 1 year ago

If you can isolate an email that causes this trouble, maybe we can reproduce the error

drjjr2 commented 1 year ago

OK, I have the last one that caused a problem. Where should I send it? Got some good deals on wine coolers :)

The behavior is this: When the offending email is received, I see information about it in the log, but the sensor/count is not updated and any further emails are not logged and, of course, don't update the sensor or the count. If I reload the integration while that same email remains unread, the count reads "Unknown" and no further emails are logged. If I mark the email as read and reload the integration, the count updates and, for a time, incoming emails are logged and accounted for until another one comes up that has whatever characteristics that makes the sensor stop working.

jbouwh commented 1 year ago

Okay. I need it in its bare form. (you could use CTRL+U in Thunderbird). Replace any personal details in the mail (Name, email). Use e.g. https://pastebin.com/

drjjr2 commented 1 year ago

it's a promotional email so there's nothing secret.

jbouwh commented 1 year ago

You can delete the link. (I have it downloaded) Your email is exposed in it as it was sent to your.

jbouwh commented 1 year ago

I will not have a change to have a look a t it sooner than next week. Thnx!

drjjr2 commented 1 year ago

You can delete the link. (I have it downloaded) Your email is exposed in it as it was sent to your.

OK, done. Let me know if you need anything else. I might try playing around with different emails to see if we can narrow down what makes it barf.

jbouwh commented 1 year ago

The email has an invalid date format (at least, that is why this is crashing)

Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/workspaces/core/homeassistant/components/imap/coordinator.py", line 104, in date
    return datetime.strptime(
  File "/usr/local/lib/python3.10/_strptime.py", line 568, in _strptime_datetime
    tt, fraction, gmtoff_fraction = _strptime(data_string, format)
  File "/usr/local/lib/python3.10/_strptime.py", line 349, in _strptime
    raise ValueError("time data %r does not match format %r" %
ValueError: time data '26 May 2023 14:02:48 -0400' does not match format '%a, %d %b %Y %H:%M:%S %z'
drjjr2 commented 1 year ago

Do both of them have that?

jbouwh commented 1 year ago

The mail in the zip (the wine cooler one). The date is not compliant with https://www.rfc-editor.org/rfc/rfc2822#section-3.3. But that should not crash the client.

jbouwh commented 1 year ago

I'll write a fix for it.

drjjr2 commented 1 year ago

Yes, I had attached two emails that were crashing. The other one has the same thing:

Reply-To: delfriscossupport@fishbowl.com
Date: 26 May 2023 16:03:26 -0400
Subject: Experience the Extraordinary Flavor of Wagyu

A different one that did not cause a problem looks like what I think you're expecting:

Subject: How are you transforming print for hybrid work?
Date: Fri, 26 May 2023 18:42:19 -0400
jbouwh commented 1 year ago

Right, The day of the week was missing. But I'll add that case. And the fix will return None if that is still not parsing correctly.

drjjr2 commented 1 year ago

My guess is some mass-marketing system is sending malformed headers like that and several companies might use that same service for their promotional emails.

jbouwh commented 1 year ago

Attached PR should solve the crash with date parsing issue.

drjjr2 commented 1 year ago

FYI - something is still crashing the IMAP sensor with 2023.6.0. I haven't tracked it down yet, but it will stop updating after a period of time.