diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e78e4d8f..8da34d2d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,9 +1,9 @@ --- name: "CI" -concurrency: # Cancel any existing runs of this workflow for this same PR +concurrency: # Cancel any existing runs of this workflow for this same PR group: "${{ github.workflow }}-${{ github.ref }}" cancel-in-progress: true -on: # yamllint disable +on: # yamllint disable push: branches: - "main" @@ -23,6 +23,19 @@ jobs: uses: "networktocode/gh-action-setup-poetry-environment@v2" - name: "Linting: black" run: "poetry run invoke black" + anonymize_ips: + runs-on: "ubuntu-20.04" + env: + INVOKE_LOCAL: "True" + steps: + - name: "Check out repository code" + uses: "actions/checkout@v3" + - name: "Setup environment" + uses: "networktocode/gh-action-setup-poetry-environment@v2" + - name: "Checking test data for IP Addresses" + run: "poetry run invoke check-anonymize-ips" + needs: + - "black" bandit: runs-on: "ubuntu-20.04" env: @@ -105,6 +118,7 @@ jobs: - "flake8" - "yamllint" - "mypy" + - "anonymize_ips" unittest: strategy: fail-fast: true diff --git a/anonymize_public_ips.py b/anonymize_public_ips.py new file mode 100644 index 00000000..3a113a82 --- /dev/null +++ b/anonymize_public_ips.py @@ -0,0 +1,111 @@ +"""Helper script to check and clean IP Addresses in test data.""" +# pylint: disable=too-many-branches +import re +import os +import sys +import argparse +import fileinput + +TEST_DATA_PATH = os.path.join("tests", "unit", "data") +REPLACE_TEXT_IPV4 = "192.0.2.1" +REPLACE_TEXT_IPV6 = "2001:DB8::1" + +# Patterns that could match IP address regex and are false positives +PATTERNS_TO_SKIP = ("PRODID:Data::ICal",) + +# Reference: https://gist.github.com/dfee/6ed3a4b05cfe7a6faf40a2102408d5d8 +IPV4SEG = r"(?:25[0-5]|(?:2[0-4]|1{0,1}[0-9]){0,1}[0-9])" +IPV4_ADDR_REGEX = r"(?:(?:" + IPV4SEG + r"\.){3,3}" + IPV4SEG + r")" +IPV6SEG = r"(?:(?:[0-9a-fA-F]){1,4})" +IPV6GROUPS = ( + r"(?:" + IPV6SEG + r":){7,7}" + IPV6SEG, # 1:2:3:4:5:6:7:8 + r"(?:" + IPV6SEG + r":){1,7}:", # 1:: 1:2:3:4:5:6:7:: + r"(?:" + IPV6SEG + r":){1,6}:" + IPV6SEG, # 1::8 1:2:3:4:5:6::8 1:2:3:4:5:6::8 + r"(?:" + IPV6SEG + r":){1,5}(?::" + IPV6SEG + r"){1,2}", # 1::7:8 1:2:3:4:5::7:8 1:2:3:4:5::8 + r"(?:" + IPV6SEG + r":){1,4}(?::" + IPV6SEG + r"){1,3}", # 1::6:7:8 1:2:3:4::6:7:8 1:2:3:4::8 + r"(?:" + IPV6SEG + r":){1,3}(?::" + IPV6SEG + r"){1,4}", # 1::5:6:7:8 1:2:3::5:6:7:8 1:2:3::8 + r"(?:" + IPV6SEG + r":){1,2}(?::" + IPV6SEG + r"){1,5}", # 1::4:5:6:7:8 1:2::4:5:6:7:8 1:2::8 + IPV6SEG + r":(?:(?::" + IPV6SEG + r"){1,6})", # 1::3:4:5:6:7:8 1::3:4:5:6:7:8 1::8 + r":(?:(?::" + IPV6SEG + r"){1,7}|:)", # ::2:3:4:5:6:7:8 ::2:3:4:5:6:7:8 ::8 :: + r"fe80:(?::" + + IPV6SEG + + r"){0,4}%[0-9a-zA-Z]{1,}", # fe80::7:8%eth0 fe80::7:8%1 (link-local IPv6 addresses with zone index) + r"::(?:ffff(?::0{1,4}){0,1}:){0,1}[^\s:]" + + IPV4_ADDR_REGEX, # ::255.255.255.255 ::ffff:255.255.255.255 ::ffff:0:255.255.255.255 (IPv4-mapped IPv6 addresses and IPv4-translated addresses) + r"(?:" + + IPV6SEG + + r":){1,4}:[^\s:]" + + IPV4_ADDR_REGEX, # 2001:db8:3:4::192.0.2.33 64:ff9b::192.0.2.33 (IPv4-Embedded IPv6 Address) +) +IPV6_ADDR_REGEX = "|".join([f"(?:{g})" for g in IPV6GROUPS[::-1]]) # Reverse rows for greedy match + + +def replace(filename, search_exp, replace_exp): + """Replace line when a substitution is needed.""" + report = "" + try: + for line in fileinput.input(filename, inplace=True): + if any(pattern_to_skip in line for pattern_to_skip in PATTERNS_TO_SKIP): + newline = line + else: + newline = re.sub(search_exp, replace_exp, line) + sys.stdout.write(newline) + if line != newline: + if not report: + report = f"IP Address found and replaced in {filename}\n" + report += f" - {line}" + except UnicodeDecodeError as error: + return f"Warning: Not able to process {filename}: {error}" + return report + + +def main(): + """Main function.""" + parser = argparse.ArgumentParser(description="Clean IP Addresses.") + parser.add_argument("--clean", action="store_true") + args = parser.parse_args() + clean = args.clean + + ip_found = False + for (dirpath, _, files) in os.walk(TEST_DATA_PATH): + for file in files: + filename = os.path.join(dirpath, file) + if not clean: + report = "" + with open(filename, "r", encoding="utf-8") as test_file: + try: + content = test_file.readlines() + except UnicodeDecodeError as error: + print(f"Warning: Not able to process {filename}: {error}") + continue + for content_line in content: + if any(pattern_to_skip in content_line for pattern_to_skip in PATTERNS_TO_SKIP): + continue + content_new = re.sub(IPV4_ADDR_REGEX, REPLACE_TEXT_IPV4, content_line) + content_new = re.sub(IPV6_ADDR_REGEX, REPLACE_TEXT_IPV6, content_new) + if content_line != content_new: + if not report: + report = f"IP Address found in {filename}\n" + report += f" - {content_line}" + else: + report = replace(filename, IPV4_ADDR_REGEX, REPLACE_TEXT_IPV4) + report += replace(filename, IPV6_ADDR_REGEX, REPLACE_TEXT_IPV6) + + if report: + ip_found = True + print(report) + + if ip_found and not clean: + print("\nHINT - you can clean up these IPs with 'invoke clean-anonymize-ips'") + sys.exit(1) + elif ip_found and clean: + print( + f"\nIPv4 and IPv6 addresses have been changed to {REPLACE_TEXT_IPV4} and {REPLACE_TEXT_IPV6} respectively.", + " \nPlease, keep in mind that this could uncover some parsing dependencies on white spaces.", + ) + else: + print("Only documentation IPs found.") + + +if __name__ == "__main__": + main() diff --git a/tasks.py b/tasks.py index eb260960..911b80bf 100644 --- a/tasks.py +++ b/tasks.py @@ -218,6 +218,30 @@ def cli(context): context.run(f"{dev}", pty=True) +@task +def check_anonymize_ips(context, local=INVOKE_LOCAL): + """Run Anonymize IPs validation. + + Args: + context (obj): Used to run specific commands + local (bool): Define as `True` to execute locally + """ + exec_cmd = "python anonymize_public_ips.py" + run_cmd(context, exec_cmd, local) + + +@task +def clean_anonymize_ips(context, local=INVOKE_LOCAL): + """Run Anonymize IPs clean up. + + Args: + context (obj): Used to run specific commands + local (bool): Define as `True` to execute locally + """ + exec_cmd = "python anonymize_public_ips.py --clean" + run_cmd(context, exec_cmd, local) + + @task def tests(context, local=INVOKE_LOCAL): """Run all tests for the specified name and Python version. @@ -234,5 +258,5 @@ def tests(context, local=INVOKE_LOCAL): bandit(context, local) pytest(context, local) mypy(context, local) - + check_anonymize_ips(context, local) print("All tests have passed!") diff --git a/tests/unit/data/aquacomms/aquacomms1.eml b/tests/unit/data/aquacomms/aquacomms1.eml index db11696a..e3ca0c9d 100644 --- a/tests/unit/data/aquacomms/aquacomms1.eml +++ b/tests/unit/data/aquacomms/aquacomms1.eml @@ -1,91 +1,91 @@ -MIME-Version: 1.0 -Date: Thu, 26 Aug 2021 18:22:09 +0100 -Subject: Aqua Comms Planned Outage Work ISSUE=11111 PROJ=999 -Content-Type: multipart/alternative; boundary="000000000000015b7605ca799cf2" - ---000000000000015b7605ca799cf2 -Content-Type: text/html; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - - - When replying, type your text above this line. -
-
- - - - - - - - -
Dear Network to Code,

This notice is being sent to notify you of t= -he following Maintenance Event.

- - - - - - - - - - - - - =20 - - - - - =20 -
Ticket Number: 11111 -
Scheduled Start Date & Time: 22:00 12/10/202= -0 GMT
Scheduled End Date & Time: 08:00 13/10/202= -0 GMT
Service ID: 111-AAA-11-11BB-= -33333
-
- - - - - =20 - =20 - - - - =20 - =20 - - - - - - - - - -
Please note that all time stamps below will = -appear in US Central time.

- Update - There are no new updates.

Sincerely,
Aqua Comms NOC
-
- ---000000000000015b7605ca799cf2-- +MIME-Version: 1.0 +Date: Thu, 26 Aug 2021 18:22:09 +0100 +Subject: Aqua Comms Planned Outage Work ISSUE=11111 PROJ=999 +Content-Type: multipart/alternative; boundary="000000000000015b7605ca799cf2" + +--000000000000015b7605ca799cf2 +Content-Type: text/html; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + + + When replying, type your text above this line. +
+
+ + + + + + + + +
Dear Network to Code,

This notice is being sent to notify you of t= +he following Maintenance Event.

+ + + + + + + + + + + + + =20 + + + + + =20 +
Ticket Number: 11111 +
Scheduled Start Date & Time: 22:00 12/10/202= +0 GMT
Scheduled End Date & Time: 08:00 13/10/202= +0 GMT
Service ID: 111-AAA-11-11BB-= +33333
+
+ + + + + =20 + =20 + + + + =20 + =20 + + + + + + + + + +
Please note that all time stamps below will = +appear in US Central time.

- Update - There are no new updates.

Sincerely,
Aqua Comms NOC
+
+ +--000000000000015b7605ca799cf2-- diff --git a/tests/unit/data/aws/aws1.eml b/tests/unit/data/aws/aws1.eml index 585ad49b..c831ed7c 100644 --- a/tests/unit/data/aws/aws1.eml +++ b/tests/unit/data/aws/aws1.eml @@ -1,52 +1,52 @@ -Subject: [rCluster Request] [rCloud AWS Notification] AWS Direct Connect - Planned Maintenance Notification [AWS Account: 0000000000001] -MIME-Version: 1.0 -Content-Type: text/plain; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable -X-SM-COMMUNICATION: true -X-SM-COMMUNICATION-TYPE: AWS_DIRECTCONNECT_MAINTENANCE_SCHEDULED -X-SM-DEDUPING-ID: 7cc8bab7-00bb-44e0-a3ec-bdd1a5560b80-EMAIL--1012261942-036424c1a19ca69ca7ea459ebd6823e1 -Date: Thu, 6 May 2021 21:52:56 +0000 -Feedback-ID: 1.us-east-1.xvKJ2gIiw98/SnInpbS9SQT1XBoAzwrySbDsqgMkBQI=:AmazonSES -X-SES-Outgoing: 2021.05.06-54.240.48.83 -X-Original-Sender: no-reply-aws@amazon.com -X-Original-Authentication-Results: mx.google.com; dkim=pass - header.i=@amazon.com header.s=szqgv33erturdv5cvz4vtb5qcy53gdkn - header.b=IQc0x0aC; dkim=pass header.i=@amazonses.com - header.s=ug7nbtf4gccmlpwj322ax3p6ow6yfsug header.b=X4gZtDlT; spf=pass - (google.com: domain of 0100017943ab6519-f09ba161-049c-45e4-8ff3-698af4d94f86-000000@amazonses.com - designates 54.240.48.83 as permitted sender) smtp.mailfrom=0100017943ab6519-f09ba161-049c-45e4-8ff3-698af4d94f86-000000@amazonses.com; - dmarc=pass (p=QUARANTINE sp=QUARANTINE dis=NONE) header.from=amazon.com -X-Original-From: "Amazon Web Services, Inc." -Reply-To: "Amazon Web Services, Inc." -Precedence: list - -Hello, - -Planned maintenance has been scheduled on an AWS Direct Connect router in A= - Block, New York, NY from Thu, 20 May 2021 08:00:00 GMT to Thu, 20 Ma= -y 2021 14:00:00 GMT for 6 hours. During this maintenance window, your AWS D= -irect Connect services listed below may become unavailable. - -aaaaa-00000001 -aaaaa-00000002 -aaaaa-00000003 -aaaaa-00000004 -aaaaa-00000005 -aaaaa-00000006 - -This maintenance is scheduled to avoid disrupting redundant connections at = -the same time. - -If you encounter any problems with your connection after the end of this ma= -intenance window, please contact AWS Support[1]. - -[1] https://aws.amazon.com/support - -Sincerely, -Amazon Web Services - -Amazon Web Services, Inc. is a subsidiary of Amazon.com, Inc. Amazon.com is= - a registered trademark of Amazon.com, Inc. This message was produced and d= -istributed by Amazon Web Services Inc., 410 Terry Ave. North, Seattle, WA 9= -8109-5210. +Subject: [rCluster Request] [rCloud AWS Notification] AWS Direct Connect + Planned Maintenance Notification [AWS Account: 0000000000001] +MIME-Version: 1.0 +Content-Type: text/plain; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable +X-SM-COMMUNICATION: true +X-SM-COMMUNICATION-TYPE: AWS_DIRECTCONNECT_MAINTENANCE_SCHEDULED +X-SM-DEDUPING-ID: 7cc8bab7-00bb-44e0-a3ec-bdd1a5560b80-EMAIL--1012261942-036424c1a19ca69ca7ea459ebd6823e1 +Date: Thu, 6 May 2021 21:52:56 +0000 +Feedback-ID: 1.us-east-1.xvKJ2gIiw98/SnInpbS9SQT1XBoAzwrySbDsqgMkBQI=:AmazonSES +X-SES-Outgoing: 2021.05.06-192.0.2.1 +X-Original-Sender: no-reply-aws@amazon.com +X-Original-Authentication-Results: mx.google.com; dkim=pass + header.i=@amazon.com header.s=szqgv33erturdv5cvz4vtb5qcy53gdkn + header.b=IQc0x0aC; dkim=pass header.i=@amazonses.com + header.s=ug7nbtf4gccmlpwj322ax3p6ow6yfsug header.b=X4gZtDlT; spf=pass + (google.com: domain of 0100017943ab6519-f09ba161-049c-45e4-8ff3-698af4d94f86-000000@amazonses.com + designates 192.0.2.1 as permitted sender) smtp.mailfrom=0100017943ab6519-f09ba161-049c-45e4-8ff3-698af4d94f86-000000@amazonses.com; + dmarc=pass (p=QUARANTINE sp=QUARANTINE dis=NONE) header.from=amazon.com +X-Original-From: "Amazon Web Services, Inc." +Reply-To: "Amazon Web Services, Inc." +Precedence: list + +Hello, + +Planned maintenance has been scheduled on an AWS Direct Connect router in A= + Block, New York, NY from Thu, 20 May 2021 08:00:00 GMT to Thu, 20 Ma= +y 2021 14:00:00 GMT for 6 hours. During this maintenance window, your AWS D= +irect Connect services listed below may become unavailable. + +aaaaa-00000001 +aaaaa-00000002 +aaaaa-00000003 +aaaaa-00000004 +aaaaa-00000005 +aaaaa-00000006 + +This maintenance is scheduled to avoid disrupting redundant connections at = +the same time. + +If you encounter any problems with your connection after the end of this ma= +intenance window, please contact AWS Support[1]. + +[1] https://aws.amazon.com/support + +Sincerely, +Amazon Web Services + +Amazon Web Services, Inc. is a subsidiary of Amazon.com, Inc. Amazon.com is= + a registered trademark of Amazon.com, Inc. This message was produced and d= +istributed by Amazon Web Services Inc., 410 Terry Ave. North, Seattle, WA 9= +8109-5210. diff --git a/tests/unit/data/aws/aws2.eml b/tests/unit/data/aws/aws2.eml index 9eda21c2..b014fd4c 100644 --- a/tests/unit/data/aws/aws2.eml +++ b/tests/unit/data/aws/aws2.eml @@ -1,45 +1,45 @@ -Subject: [rCluster Request] [rCloud AWS Notification] AWS Direct Connect - Planned Maintenance Notification [AWS Account: 0000000000001] -MIME-Version: 1.0 -Content-Type: text/plain; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable -X-SM-COMMUNICATION: true -X-SM-COMMUNICATION-TYPE: AWS_DIRECTCONNECT_MAINTENANCE_SCHEDULED -X-SM-DEDUPING-ID: 7cc8bab7-00bb-44e0-a3ec-bdd1a5560b80-EMAIL--1012261942-036424c1a19ca69ca7ea459ebd6823e1 -Date: Thu, 6 May 2021 21:52:56 +0000 -Feedback-ID: 1.us-east-1.xvKJ2gIiw98/SnInpbS9SQT1XBoAzwrySbDsqgMkBQI=:AmazonSES -X-SES-Outgoing: 2021.05.06-54.240.48.83 -X-Original-Sender: no-reply-aws@amazon.com -X-Original-Authentication-Results: mx.google.com; dkim=pass - header.i=@amazon.com header.s=szqgv33erturdv5cvz4vtb5qcy53gdkn - header.b=IQc0x0aC; dkim=pass header.i=@amazonses.com - header.s=ug7nbtf4gccmlpwj322ax3p6ow6yfsug header.b=X4gZtDlT; spf=pass - (google.com: domain of 0100017943ab6519-f09ba161-049c-45e4-8ff3-698af4d94f86-000000@amazonses.com - designates 54.240.48.83 as permitted sender) smtp.mailfrom=0100017943ab6519-f09ba161-049c-45e4-8ff3-698af4d94f86-000000@amazonses.com; - dmarc=pass (p=QUARANTINE sp=QUARANTINE dis=NONE) header.from=amazon.com -X-Original-From: "Amazon Web Services, Inc." -Reply-To: "Amazon Web Services, Inc." -Precedence: list - -Hello, - -We would like to inform you that the planned maintenance that was scheduled for AWS Direct Connect endpoint in Equinix SG2, Singapore, SGP from Mon, 13 Sep 2021 19:02:00 GMT to Tue, 14 Sep 2021 02:02:00 GMT has been cancelled. Please find below your AWS Direct Connect services that would have been affected by this planned maintenance. - -aaaaa-00000001 -aaaaa-00000002 -aaaaa-00000003 -aaaaa-00000004 -aaaaa-00000005 -aaaaa-00000006 - -We sincerely regret any inconvenience our planning process may have caused you. If you have any questions regarding the planned work, or if you would like to report a fault or adjust your contact information, please contact AWS Support[1]. - -[1] https://aws.amazon.com/support - -Sincerely, -Amazon Web Services - -Amazon Web Services, Inc. is a subsidiary of Amazon.com, Inc. Amazon.com is= - a registered trademark of Amazon.com, Inc. This message was produced and d= -istributed by Amazon Web Services Inc., 410 Terry Ave. North, Seattle, WA 9= -8109-5210. +Subject: [rCluster Request] [rCloud AWS Notification] AWS Direct Connect + Planned Maintenance Notification [AWS Account: 0000000000001] +MIME-Version: 1.0 +Content-Type: text/plain; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable +X-SM-COMMUNICATION: true +X-SM-COMMUNICATION-TYPE: AWS_DIRECTCONNECT_MAINTENANCE_SCHEDULED +X-SM-DEDUPING-ID: 7cc8bab7-00bb-44e0-a3ec-bdd1a5560b80-EMAIL--1012261942-036424c1a19ca69ca7ea459ebd6823e1 +Date: Thu, 6 May 2021 21:52:56 +0000 +Feedback-ID: 1.us-east-1.xvKJ2gIiw98/SnInpbS9SQT1XBoAzwrySbDsqgMkBQI=:AmazonSES +X-SES-Outgoing: 2021.05.06-192.0.2.1 +X-Original-Sender: no-reply-aws@amazon.com +X-Original-Authentication-Results: mx.google.com; dkim=pass + header.i=@amazon.com header.s=szqgv33erturdv5cvz4vtb5qcy53gdkn + header.b=IQc0x0aC; dkim=pass header.i=@amazonses.com + header.s=ug7nbtf4gccmlpwj322ax3p6ow6yfsug header.b=X4gZtDlT; spf=pass + (google.com: domain of 0100017943ab6519-f09ba161-049c-45e4-8ff3-698af4d94f86-000000@amazonses.com + designates 192.0.2.1 as permitted sender) smtp.mailfrom=0100017943ab6519-f09ba161-049c-45e4-8ff3-698af4d94f86-000000@amazonses.com; + dmarc=pass (p=QUARANTINE sp=QUARANTINE dis=NONE) header.from=amazon.com +X-Original-From: "Amazon Web Services, Inc." +Reply-To: "Amazon Web Services, Inc." +Precedence: list + +Hello, + +We would like to inform you that the planned maintenance that was scheduled for AWS Direct Connect endpoint in Equinix SG2, Singapore, SGP from Mon, 13 Sep 2021 19:02:00 GMT to Tue, 14 Sep 2021 02:02:00 GMT has been cancelled. Please find below your AWS Direct Connect services that would have been affected by this planned maintenance. + +aaaaa-00000001 +aaaaa-00000002 +aaaaa-00000003 +aaaaa-00000004 +aaaaa-00000005 +aaaaa-00000006 + +We sincerely regret any inconvenience our planning process may have caused you. If you have any questions regarding the planned work, or if you would like to report a fault or adjust your contact information, please contact AWS Support[1]. + +[1] https://aws.amazon.com/support + +Sincerely, +Amazon Web Services + +Amazon Web Services, Inc. is a subsidiary of Amazon.com, Inc. Amazon.com is= + a registered trademark of Amazon.com, Inc. This message was produced and d= +istributed by Amazon Web Services Inc., 410 Terry Ave. North, Seattle, WA 9= +8109-5210. diff --git a/tests/unit/data/bso/bso1_first.eml b/tests/unit/data/bso/bso1_first.eml index d607c9f3..6cf49b07 100644 --- a/tests/unit/data/bso/bso1_first.eml +++ b/tests/unit/data/bso/bso1_first.eml @@ -1,1057 +1,1057 @@ -Delivered-To: -Received: -X-Google-Smtp-Source: -X-Received: -ARC-Seal: -ARC-Message-Signature: -ARC-Authentication-Results: -Return-Path: -Received: -Received-SPF: -Authentication-Results: -Received: -Content-Type: multipart/alternative; -MIME-Version: 1.0 -Subject: -From: -To: -Date: -Message-ID: - - ---===============0072534948623490230== -Content-Type: text/plain; charset="utf-8" -MIME-Version: 1.0 -Content-Transfer-Encoding: 8bit - - - -Maintenance_ - -Dear Customer, - -Please be advised that BSO's upstream provider has scheduled a planned maintenance work that will impact your service. - - -Note: BSO has requested that the relevant team to reschedule this maintenance outside of working hours, we update this notification with any changes to schedule or impact - - -Below you will find your service ID and the timeframe for the maintenance work: - -Service Details -Service ID (SID) - - - TEST-FOR-F1R5-T53N-001 - - TEST-FOR-F1R5-T53N-002 - - - -Maintenance Reason -Work on fiber optical cable in Russian region - -Maintenance Details - -Maintenance ID 11111 - -Timeslot start time Aug 29, 2022 15:00 UTC -Timeslot end time Aug 29, 2022 19:05 UTC -Expected impact duration Up to 04 Hours 05 Minutes -Expected impact level Hard down for unprotected circuits; Switch hits and higher latency for protected circuits - - -If you have any request or query regarding this maintenance work, feel free to open a ticket following BSO Support process. -/!\ Please do not respond to this e-mail. This mailbox is not monitored. /!\ - -We apologise for any inconvenience this may cause to you or your customers. -Please log in to your service-desk portal account using the link below for more information: - -http://servicedesk.bsonetwork.net - -Kind regards, - -The NOC Team -BSO - Redefining Connectivity - -Contact the BSO NOC for 24/7 support -FR | +33 1 84 88 56 48 -UK | +44 203 608 9893 -US | +1 347 433 7997 -© 2021 BSO, All rights reserved. - - ---===============0072534948623490230== -Content-Type: text/html; charset="utf-8" -MIME-Version: 1.0 -Content-Transfer-Encoding: 8bit - - - - - - - - - - - - - - BSO Maintenance Information - - - - - - - - - - - - - - -
- - - - -
- - - - -
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- bso-navy -
- - Maintenance_ - -
- Dear Customer,

- Please be advised that BSO's upstream provider has scheduled a planned maintenance work that will impact your service. -

- - Note: BSO has requested that the relevant team to reschedule this maintenance outside of working hours, we update this notification with any changes to schedule or impact -

- - Below you will find your service ID and the timeframe for the maintenance work: -
- - - - - - - - - - - - - -
- - - - - - - - - - - - -
-
- - Service Details - -
-
-
- - - - - - - - - - - - -
-
- - - - - - - - -
- - Service ID (SID) - - - - - - - TEST-FOR-F1R5-T53N-001 - - - - TEST-FOR-F1R5-T53N-002 - - - -
-
-
-
-
-
- - - - - - - - - - - - - -
- - - - - - - - - - - - -
-
- - Maintenance Reason - -
-
-
- - - - - - - - - - - - -
-
- - - - - - -
- - Work on fiber optical cable in Russian region - -
-
-
-
-
-
- - - - - - - - - - - - - -
- - - - - - - - - - - - -
-
- - Maintenance Details - -
-
-
- - - - - - - - - - - - - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Maintenance - ID - - - - 11111 -
-
- - Timeslot start time - - - - Aug 29, 2022 15:00 UTC -
- - Timeslot end time - - - - Aug 29, 2022 19:05 UTC -
- - Expected impact duration - - - - - - Up to 04 Hours 05 Minutes -
- - Expected impact level - - -
- - TEST-FOR-F1R5-T53N-001 - - - - - Switch hit and Higher latency - -
- - TEST-FOR-F1R5-T53N-002 - - - - - Switch hit and Higher latency - -
-
-
-
-
-
-
-
- - If you have any request or query regarding this maintenance work, feel free to open - a ticket following BSO Support process. - -

- - /!\ Please do not respond to this e-mail. This - mailbox is not monitored. /!\

We apologise for any - inconvenience this may cause to you or your customers.
- Please log in to your service-desk portal account using the link below for more - information:
-
- https://servicedesk.bsonetwork.net
-
- Kind regards, -

- The NOC Team
- BSO - Redefining Connectivity
-

-   -
- - - - - - - - - - - -
  - - - - - - - -
- - Speak with our support team. - - - - - - - - - - - - - - - - - - - - -
FR|+33 1 84 88 56 48
UK|+44 203 608 9893
US|+1 347 433 7997
-
-
 
- - - - - - - - - -
- - - - - - -
- - bso-linkedin - - - bso-twitter - - - bso-facebook - - - bso-instagram - - - bso-youtube - -
-
- © 2021 BSO, All rights reserved. -
-
-
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - ---===============0072534948623490230==-- +Delivered-To: +Received: +X-Google-Smtp-Source: +X-Received: +ARC-Seal: +ARC-Message-Signature: +ARC-Authentication-Results: +Return-Path: +Received: +Received-SPF: +Authentication-Results: +Received: +Content-Type: multipart/alternative; +MIME-Version: 1.0 +Subject: +From: +To: +Date: +Message-ID: + + +--===============0072534948623490230== +Content-Type: text/plain; charset="utf-8" +MIME-Version: 1.0 +Content-Transfer-Encoding: 8bit + + + +Maintenance_ + +Dear Customer, + +Please be advised that BSO's upstream provider has scheduled a planned maintenance work that will impact your service. + + +Note: BSO has requested that the relevant team to reschedule this maintenance outside of working hours, we update this notification with any changes to schedule or impact + + +Below you will find your service ID and the timeframe for the maintenance work: + +Service Details +Service ID (SID) + + + TEST-FOR-F1R5-T53N-001 + + TEST-FOR-F1R5-T53N-002 + + + +Maintenance Reason +Work on fiber optical cable in Russian region + +Maintenance Details + +Maintenance ID 11111 + +Timeslot start time Aug 29, 2022 15:00 UTC +Timeslot end time Aug 29, 2022 19:05 UTC +Expected impact duration Up to 04 Hours 05 Minutes +Expected impact level Hard down for unprotected circuits; Switch hits and higher latency for protected circuits + + +If you have any request or query regarding this maintenance work, feel free to open a ticket following BSO Support process. +/!\ Please do not respond to this e-mail. This mailbox is not monitored. /!\ + +We apologise for any inconvenience this may cause to you or your customers. +Please log in to your service-desk portal account using the link below for more information: + +http://servicedesk.bsonetwork.net + +Kind regards, + +The NOC Team +BSO - Redefining Connectivity + +Contact the BSO NOC for 24/7 support +FR | +33 1 84 88 56 48 +UK | +44 203 608 9893 +US | +1 347 433 7997 +© 2021 BSO, All rights reserved. + + +--===============0072534948623490230== +Content-Type: text/html; charset="utf-8" +MIME-Version: 1.0 +Content-Transfer-Encoding: 8bit + + + + + + + + + + + + + + BSO Maintenance Information + + + + + + + + + + + + + + +
+ + + + +
+ + + + +
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ bso-navy +
+ + Maintenance_ + +
+ Dear Customer,

+ Please be advised that BSO's upstream provider has scheduled a planned maintenance work that will impact your service. +

+ + Note: BSO has requested that the relevant team to reschedule this maintenance outside of working hours, we update this notification with any changes to schedule or impact +

+ + Below you will find your service ID and the timeframe for the maintenance work: +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+
+ + Service Details + +
+
+
+ + + + + + + + + + + + +
+
+ + + + + + + + +
+ + Service ID (SID) + + + + + + + TEST-FOR-F1R5-T53N-001 + + + + TEST-FOR-F1R5-T53N-002 + + + +
+
+
+
+
+
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+
+ + Maintenance Reason + +
+
+
+ + + + + + + + + + + + +
+
+ + + + + + +
+ + Work on fiber optical cable in Russian region + +
+
+
+
+
+
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+
+ + Maintenance Details + +
+
+
+ + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Maintenance + ID + + + + 11111 +
+
+ + Timeslot start time + + + + Aug 29, 2022 15:00 UTC +
+ + Timeslot end time + + + + Aug 29, 2022 19:05 UTC +
+ + Expected impact duration + + + + + + Up to 04 Hours 05 Minutes +
+ + Expected impact level + + +
+ + TEST-FOR-F1R5-T53N-001 + + + + + Switch hit and Higher latency + +
+ + TEST-FOR-F1R5-T53N-002 + + + + + Switch hit and Higher latency + +
+
+
+
+
+
+
+
+ + If you have any request or query regarding this maintenance work, feel free to open + a ticket following BSO Support process. + +

+ + /!\ Please do not respond to this e-mail. This + mailbox is not monitored. /!\

We apologise for any + inconvenience this may cause to you or your customers.
+ Please log in to your service-desk portal account using the link below for more + information:
+
+ https://servicedesk.bsonetwork.net
+
+ Kind regards, +

+ The NOC Team
+ BSO - Redefining Connectivity
+

+   +
+ + + + + + + + + + + +
  + + + + + + + +
+ + Speak with our support team. + + + + + + + + + + + + + + + + + + + + +
FR|+33 1 84 88 56 48
UK|+44 203 608 9893
US|+1 347 433 7997
+
+
 
+ + + + + + + + + +
+ + + + + + +
+ + bso-linkedin + + + bso-twitter + + + bso-facebook + + + bso-instagram + + + bso-youtube + +
+
+ © 2021 BSO, All rights reserved. +
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +--===============0072534948623490230==-- diff --git a/tests/unit/data/bso/bso2_start.eml b/tests/unit/data/bso/bso2_start.eml index 59865c89..768c3653 100644 --- a/tests/unit/data/bso/bso2_start.eml +++ b/tests/unit/data/bso/bso2_start.eml @@ -1,1029 +1,1029 @@ -Delivered-To: -Received: -X-Google-Smtp-Source: -X-Received: -ARC-Seal: -ARC-Message-Signature: -ARC-Authentication-Results: -Return-Path: -Received: -Received-SPF: -Authentication-Results: -Received: -Content-Type: multipart/alternative; -MIME-Version: 1.0 -Subject: -From: -To: -Date: -Message-ID: - ---===============0676354527039542288== -Content-Type: text/plain; charset="utf-8" -MIME-Version: 1.0 -Content-Transfer-Encoding: 8bit - - - -Maintenance Start_ - -Dear Customer, - -Please be advised that BSO's upstream provider's maintenance will begin soon. This maintenance work will impact your service. - - -Note: BSO has requested that the relevant team to reschedule this maintenance outside of working hours, we will update this notification with any changes to schedule or impact. - - -Below you will find your service ID and the timeframe for the maintenance work: - -Service Details -Service ID (SID) - - - TEST-FOR-ST4-RT1-001 - - - -Maintenance Reason -Network repair in the segment San Luis Potosi to San Diego de la Union - -Maintenance Details - -Maintenance ID 22222 - -Timeslot start time Aug 18, 2022 05:00 UTC -Timeslot end time Aug 18, 2022 11:00 UTC -Expected impact duration Up to 06 Hours -Expected impact level Hard down for unprotected circuits; Switch hits and higher latency for protected circuits - - -If you have any request or query regarding this maintenance work, feel free to open a ticket following BSO Support process. -/!\ Please do not respond to this e-mail. This mailbox is not monitored. /!\ - -We apologise for any inconvenience this may cause to you or your customers. -Please log in to your service-desk portal account using the link below for more information: - -http://servicedesk.bsonetwork.net - -Kind regards, - -The NOC Team -BSO - Redefining Connectivity - -Contact the BSO NOC for 24/7 support -FR | +33 1 84 88 56 48 -UK | +44 203 608 9893 -US | +1 347 433 7997 -© 2021 BSO, All rights reserved. - - ---===============0676354527039542288== -Content-Type: text/html; charset="utf-8" -MIME-Version: 1.0 -Content-Transfer-Encoding: 8bit - - - - - - - - - - - - - - BSO Maintenance Information - - - - - - - - - - - - - - -
- - - - -
- - - - -
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- bso-navy -
- - Maintenance Start_ - -
- Dear Customer,

- Please be advised that BSO's upstream provider's maintenance will begin soon. This maintenance work will impact your service. -

- - Note: BSO has requested that the relevant team to reschedule this maintenance outside of working hours, we will update this notification with any changes to schedule or impact. -

- - Below you will find your service ID and the timeframe for the maintenance work: -
- - - - - - - - - - - - - -
- - - - - - - - - - - - -
-
- - Service Details - -
-
-
- - - - - - - - - - - - -
-
- - - - - - - - -
- - Service ID (SID) - - - - - - - TEST-FOR-ST4-RT1-001 - - - -
-
-
-
-
-
- - - - - - - - - - - - - -
- - - - - - - - - - - - -
-
- - Maintenance Reason - -
-
-
- - - - - - - - - - - - -
-
- - - - - - -
- - Network repair in the segment San Luis Potosi to San Diego de la Union - -
-
-
-
-
-
- - - - - - - - - - - - - -
- - - - - - - - - - - - -
-
- - Maintenance Details - -
-
-
- - - - - - - - - - - - - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Maintenance - ID - - - - 22222 -
-
- - Timeslot start time - - - - Aug 18, 2022 05:00 UTC -
- - Timeslot end time - - - - Aug 18, 2022 11:00 UTC -
- - Expected impact duration - - - - - - Up to 06 Hours -
- - Expected impact level - - -
- - TEST-FOR-ST4-RT1-001 - - - - - Hard Down - -
-
-
-
-
-
-
-
- - If you have any request or query regarding this maintenance work, feel free to open - a ticket following BSO Support process. - -

- - /!\ Please do not respond to this e-mail. This - mailbox is not monitored. /!\

We apologise for any - inconvenience this may cause to you or your customers.
- Please log in to your service-desk portal account using the link below for more - information:
-
- https://servicedesk.bsonetwork.net
-
- Kind regards, -

- The NOC Team
- BSO - Redefining Connectivity
-

-   -
- - - - - - - - - - - -
  - - - - - - - -
- - Speak with our support team. - - - - - - - - - - - - - - - - - - - - -
FR|+33 1 84 88 56 48
UK|+44 203 608 9893
US|+1 347 433 7997
-
-
 
- - - - - - - - - -
- - - - - - -
- - bso-linkedin - - - bso-twitter - - - bso-facebook - - - bso-instagram - - - bso-youtube - -
-
- © 2021 BSO, All rights reserved. -
-
-
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - ---===============0676354527039542288==-- +Delivered-To: +Received: +X-Google-Smtp-Source: +X-Received: +ARC-Seal: +ARC-Message-Signature: +ARC-Authentication-Results: +Return-Path: +Received: +Received-SPF: +Authentication-Results: +Received: +Content-Type: multipart/alternative; +MIME-Version: 1.0 +Subject: +From: +To: +Date: +Message-ID: + +--===============0676354527039542288== +Content-Type: text/plain; charset="utf-8" +MIME-Version: 1.0 +Content-Transfer-Encoding: 8bit + + + +Maintenance Start_ + +Dear Customer, + +Please be advised that BSO's upstream provider's maintenance will begin soon. This maintenance work will impact your service. + + +Note: BSO has requested that the relevant team to reschedule this maintenance outside of working hours, we will update this notification with any changes to schedule or impact. + + +Below you will find your service ID and the timeframe for the maintenance work: + +Service Details +Service ID (SID) + + + TEST-FOR-ST4-RT1-001 + + + +Maintenance Reason +Network repair in the segment San Luis Potosi to San Diego de la Union + +Maintenance Details + +Maintenance ID 22222 + +Timeslot start time Aug 18, 2022 05:00 UTC +Timeslot end time Aug 18, 2022 11:00 UTC +Expected impact duration Up to 06 Hours +Expected impact level Hard down for unprotected circuits; Switch hits and higher latency for protected circuits + + +If you have any request or query regarding this maintenance work, feel free to open a ticket following BSO Support process. +/!\ Please do not respond to this e-mail. This mailbox is not monitored. /!\ + +We apologise for any inconvenience this may cause to you or your customers. +Please log in to your service-desk portal account using the link below for more information: + +http://servicedesk.bsonetwork.net + +Kind regards, + +The NOC Team +BSO - Redefining Connectivity + +Contact the BSO NOC for 24/7 support +FR | +33 1 84 88 56 48 +UK | +44 203 608 9893 +US | +1 347 433 7997 +© 2021 BSO, All rights reserved. + + +--===============0676354527039542288== +Content-Type: text/html; charset="utf-8" +MIME-Version: 1.0 +Content-Transfer-Encoding: 8bit + + + + + + + + + + + + + + BSO Maintenance Information + + + + + + + + + + + + + + +
+ + + + +
+ + + + +
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ bso-navy +
+ + Maintenance Start_ + +
+ Dear Customer,

+ Please be advised that BSO's upstream provider's maintenance will begin soon. This maintenance work will impact your service. +

+ + Note: BSO has requested that the relevant team to reschedule this maintenance outside of working hours, we will update this notification with any changes to schedule or impact. +

+ + Below you will find your service ID and the timeframe for the maintenance work: +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+
+ + Service Details + +
+
+
+ + + + + + + + + + + + +
+
+ + + + + + + + +
+ + Service ID (SID) + + + + + + + TEST-FOR-ST4-RT1-001 + + + +
+
+
+
+
+
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+
+ + Maintenance Reason + +
+
+
+ + + + + + + + + + + + +
+
+ + + + + + +
+ + Network repair in the segment San Luis Potosi to San Diego de la Union + +
+
+
+
+
+
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+
+ + Maintenance Details + +
+
+
+ + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Maintenance + ID + + + + 22222 +
+
+ + Timeslot start time + + + + Aug 18, 2022 05:00 UTC +
+ + Timeslot end time + + + + Aug 18, 2022 11:00 UTC +
+ + Expected impact duration + + + + + + Up to 06 Hours +
+ + Expected impact level + + +
+ + TEST-FOR-ST4-RT1-001 + + + + + Hard Down + +
+
+
+
+
+
+
+
+ + If you have any request or query regarding this maintenance work, feel free to open + a ticket following BSO Support process. + +

+ + /!\ Please do not respond to this e-mail. This + mailbox is not monitored. /!\

We apologise for any + inconvenience this may cause to you or your customers.
+ Please log in to your service-desk portal account using the link below for more + information:
+
+ https://servicedesk.bsonetwork.net
+
+ Kind regards, +

+ The NOC Team
+ BSO - Redefining Connectivity
+

+   +
+ + + + + + + + + + + +
  + + + + + + + +
+ + Speak with our support team. + + + + + + + + + + + + + + + + + + + + +
FR|+33 1 84 88 56 48
UK|+44 203 608 9893
US|+1 347 433 7997
+
+
 
+ + + + + + + + + +
+ + + + + + +
+ + bso-linkedin + + + bso-twitter + + + bso-facebook + + + bso-instagram + + + bso-youtube + +
+
+ © 2021 BSO, All rights reserved. +
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +--===============0676354527039542288==-- diff --git a/tests/unit/data/bso/bso3_update.eml b/tests/unit/data/bso/bso3_update.eml index 9e50b2df..1dde71cb 100644 --- a/tests/unit/data/bso/bso3_update.eml +++ b/tests/unit/data/bso/bso3_update.eml @@ -1,1024 +1,1024 @@ -Delivered-To: -Received: -X-Google-Smtp-Source: -X-Received: -ARC-Seal: -ARC-Message-Signature: -ARC-Authentication-Results: -Return-Path: -Received: -Received-SPF: -Authentication-Results: -Received: -Content-Type: multipart/alternative; -MIME-Version: 1.0 -Subject: -From: -To: -Date: -Message-ID: - ---===============0602402581039313655== -Content-Type: text/plain; charset="utf-8" -MIME-Version: 1.0 -Content-Transfer-Encoding: 8bit - - - -Maintenance Update_ - -Dear Customer, - -Please be advised that BSO's upstream provider has updated a planned maintenance work that should not impact your service. - - - -Below you will find your service ID and the timeframe for the maintenance work: - -Service Details -Service ID (SID) - - - TEST-FOR-UPD4-TEM-001 - - - -Maintenance Reason -network maintenance - -Maintenance Details - -Maintenance ID 33333 - -Timeslot start time Sep 10, 2022 22:00 UTC -Timeslot end time Sep 11, 2022 05:00 UTC -Expected impact duration Up to 07 Hours -Expected impact level At risk only - - -If you have any request or query regarding this maintenance work, feel free to open a ticket following BSO Support process. -/!\ Please do not respond to this e-mail. This mailbox is not monitored. /!\ - -We apologise for any inconvenience this may cause to you or your customers. -Please log in to your service-desk portal account using the link below for more information: - -http://servicedesk.bsonetwork.net - -Kind regards, - -The NOC Team -BSO - Redefining Connectivity - -Contact the BSO NOC for 24/7 support -FR | +33 1 84 88 56 48 -UK | +44 203 608 9893 -US | +1 347 433 7997 -© 2021 BSO, All rights reserved. - - ---===============0602402581039313655== -Content-Type: text/html; charset="utf-8" -MIME-Version: 1.0 -Content-Transfer-Encoding: 8bit - - - - - - - - - - - - - - BSO Maintenance Information - - - - - - - - - - - - - - -
- - - - -
- - - - -
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- bso-navy -
- - Maintenance Update_ - -
- Dear Customer,

- Please be advised that BSO's upstream provider has updated a planned maintenance work that should not impact your service. -

- - Below you will find your service ID and the timeframe for the maintenance work: -
- - - - - - - - - - - - - -
- - - - - - - - - - - - -
-
- - Service Details - -
-
-
- - - - - - - - - - - - -
-
- - - - - - - - -
- - Service ID (SID) - - - - - - - TEST-FOR-UPD4-TEM-001 - - - -
-
-
-
-
-
- - - - - - - - - - - - - -
- - - - - - - - - - - - -
-
- - Maintenance Reason - -
-
-
- - - - - - - - - - - - -
-
- - - - - - -
- - network maintenance - -
-
-
-
-
-
- - - - - - - - - - - - - -
- - - - - - - - - - - - -
-
- - Maintenance Details - -
-
-
- - - - - - - - - - - - - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Maintenance - ID - - - - 33333 -
-
- - Timeslot start time - - - - Sep 10, 2022 22:00 UTC -
- - Timeslot end time - - - - Sep 11, 2022 05:00 UTC -
- - Expected impact duration - - - - - - Up to 07 Hours -
- - Expected impact level - - -
- - TEST-FOR-UPD4-TEM-001 - - - - - At risk only - -
-
-
-
-
-
-
-
- - If you have any request or query regarding this maintenance work, feel free to open - a ticket following BSO Support process. - -

- - /!\ Please do not respond to this e-mail. This - mailbox is not monitored. /!\

We apologise for any - inconvenience this may cause to you or your customers.
- Please log in to your service-desk portal account using the link below for more - information:
-
- https://servicedesk.bsonetwork.net
-
- Kind regards, -

- The NOC Team
- BSO - Redefining Connectivity
-

-   -
- - - - - - - - - - - -
  - - - - - - - -
- - Speak with our support team. - - - - - - - - - - - - - - - - - - - - -
FR|+33 1 84 88 56 48
UK|+44 203 608 9893
US|+1 347 433 7997
-
-
 
- - - - - - - - - -
- - - - - - -
- - bso-linkedin - - - bso-twitter - - - bso-facebook - - - bso-instagram - - - bso-youtube - -
-
- © 2021 BSO, All rights reserved. -
-
-
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - ---===============0602402581039313655==-- +Delivered-To: +Received: +X-Google-Smtp-Source: +X-Received: +ARC-Seal: +ARC-Message-Signature: +ARC-Authentication-Results: +Return-Path: +Received: +Received-SPF: +Authentication-Results: +Received: +Content-Type: multipart/alternative; +MIME-Version: 1.0 +Subject: +From: +To: +Date: +Message-ID: + +--===============0602402581039313655== +Content-Type: text/plain; charset="utf-8" +MIME-Version: 1.0 +Content-Transfer-Encoding: 8bit + + + +Maintenance Update_ + +Dear Customer, + +Please be advised that BSO's upstream provider has updated a planned maintenance work that should not impact your service. + + + +Below you will find your service ID and the timeframe for the maintenance work: + +Service Details +Service ID (SID) + + + TEST-FOR-UPD4-TEM-001 + + + +Maintenance Reason +network maintenance + +Maintenance Details + +Maintenance ID 33333 + +Timeslot start time Sep 10, 2022 22:00 UTC +Timeslot end time Sep 11, 2022 05:00 UTC +Expected impact duration Up to 07 Hours +Expected impact level At risk only + + +If you have any request or query regarding this maintenance work, feel free to open a ticket following BSO Support process. +/!\ Please do not respond to this e-mail. This mailbox is not monitored. /!\ + +We apologise for any inconvenience this may cause to you or your customers. +Please log in to your service-desk portal account using the link below for more information: + +http://servicedesk.bsonetwork.net + +Kind regards, + +The NOC Team +BSO - Redefining Connectivity + +Contact the BSO NOC for 24/7 support +FR | +33 1 84 88 56 48 +UK | +44 203 608 9893 +US | +1 347 433 7997 +© 2021 BSO, All rights reserved. + + +--===============0602402581039313655== +Content-Type: text/html; charset="utf-8" +MIME-Version: 1.0 +Content-Transfer-Encoding: 8bit + + + + + + + + + + + + + + BSO Maintenance Information + + + + + + + + + + + + + + +
+ + + + +
+ + + + +
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ bso-navy +
+ + Maintenance Update_ + +
+ Dear Customer,

+ Please be advised that BSO's upstream provider has updated a planned maintenance work that should not impact your service. +

+ + Below you will find your service ID and the timeframe for the maintenance work: +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+
+ + Service Details + +
+
+
+ + + + + + + + + + + + +
+
+ + + + + + + + +
+ + Service ID (SID) + + + + + + + TEST-FOR-UPD4-TEM-001 + + + +
+
+
+
+
+
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+
+ + Maintenance Reason + +
+
+
+ + + + + + + + + + + + +
+
+ + + + + + +
+ + network maintenance + +
+
+
+
+
+
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+
+ + Maintenance Details + +
+
+
+ + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Maintenance + ID + + + + 33333 +
+
+ + Timeslot start time + + + + Sep 10, 2022 22:00 UTC +
+ + Timeslot end time + + + + Sep 11, 2022 05:00 UTC +
+ + Expected impact duration + + + + + + Up to 07 Hours +
+ + Expected impact level + + +
+ + TEST-FOR-UPD4-TEM-001 + + + + + At risk only + +
+
+
+
+
+
+
+
+ + If you have any request or query regarding this maintenance work, feel free to open + a ticket following BSO Support process. + +

+ + /!\ Please do not respond to this e-mail. This + mailbox is not monitored. /!\

We apologise for any + inconvenience this may cause to you or your customers.
+ Please log in to your service-desk portal account using the link below for more + information:
+
+ https://servicedesk.bsonetwork.net
+
+ Kind regards, +

+ The NOC Team
+ BSO - Redefining Connectivity
+

+   +
+ + + + + + + + + + + +
  + + + + + + + +
+ + Speak with our support team. + + + + + + + + + + + + + + + + + + + + +
FR|+33 1 84 88 56 48
UK|+44 203 608 9893
US|+1 347 433 7997
+
+
 
+ + + + + + + + + +
+ + + + + + +
+ + bso-linkedin + + + bso-twitter + + + bso-facebook + + + bso-instagram + + + bso-youtube + +
+
+ © 2021 BSO, All rights reserved. +
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +--===============0602402581039313655==-- diff --git a/tests/unit/data/bso/bso4_end.eml b/tests/unit/data/bso/bso4_end.eml index d570883e..0397335e 100644 --- a/tests/unit/data/bso/bso4_end.eml +++ b/tests/unit/data/bso/bso4_end.eml @@ -1,1029 +1,1029 @@ -Delivered-To: -Received: -X-Google-Smtp-Source: -X-Received: -ARC-Seal: -ARC-Message-Signature: -ARC-Authentication-Results: -Return-Path: -Received: -Received-SPF: -Authentication-Results: -Received: -Content-Type: multipart/alternative; -MIME-Version: 1.0 -Subject: -From: -To: -Date: -Message-ID: - ---===============1767496142723761618== -Content-Type: text/plain; charset="utf-8" -MIME-Version: 1.0 -Content-Transfer-Encoding: 8bit - - - -Maintenance End_ - -Dear Customer, - -Please be advised that BSO's upstream provider's maintenance is now over. - - -Note: BSO has requested that the relevant team to reschedule this maintenance outside of working hours, we update this notification with any changes to schedule or impact - - -Below you will find your service ID and the timeframe for the maintenance work: - -Service Details -Service ID (SID) - - - TEST-FOR-END1-MAI-001 - - - -Maintenance Reason -fiber works in Austria - -Maintenance Details - -Maintenance ID 44444 - -Timeslot start time Aug 17, 2022 22:00 UTC -Timeslot end time Aug 18, 2022 03:00 UTC -Expected impact duration Up to 05 Hours -Expected impact level Hard down for unprotected circuits; Switch hits and higher latency for protected circuits - - -If you have any request or query regarding this maintenance work, feel free to open a ticket following BSO Support process. -/!\ Please do not respond to this e-mail. This mailbox is not monitored. /!\ - -We apologise for any inconvenience this may cause to you or your customers. -Please log in to your service-desk portal account using the link below for more information: - -http://servicedesk.bsonetwork.net - -Kind regards, - -The NOC Team -BSO - Redefining Connectivity - -Contact the BSO NOC for 24/7 support -FR | +33 1 84 88 56 48 -UK | +44 203 608 9893 -US | +1 347 433 7997 -© 2021 BSO, All rights reserved. - - ---===============1767496142723761618== -Content-Type: text/html; charset="utf-8" -MIME-Version: 1.0 -Content-Transfer-Encoding: 8bit - - - - - - - - - - - - - - BSO Maintenance Information - - - - - - - - - - - - - - -
- - - - -
- - - - -
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- bso-navy -
- - Maintenance End_ - -
- Dear Customer,

- Please be advised that BSO's upstream provider's maintenance is now over. -

- - Note: BSO has requested that the relevant team to reschedule this maintenance outside of working hours, we update this notification with any changes to schedule or impact -

- - Below you will find your service ID and the timeframe for the maintenance work: -
- - - - - - - - - - - - - -
- - - - - - - - - - - - -
-
- - Service Details - -
-
-
- - - - - - - - - - - - -
-
- - - - - - - - -
- - Service ID (SID) - - - - - - - TEST-FOR-END1-MAI-001 - - - -
-
-
-
-
-
- - - - - - - - - - - - - -
- - - - - - - - - - - - -
-
- - Maintenance Reason - -
-
-
- - - - - - - - - - - - -
-
- - - - - - -
- - fiber works in Austria - -
-
-
-
-
-
- - - - - - - - - - - - - -
- - - - - - - - - - - - -
-
- - Maintenance Details - -
-
-
- - - - - - - - - - - - - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Maintenance - ID - - - - 44444 -
-
- - Timeslot start time - - - - Aug 17, 2022 22:00 UTC -
- - Timeslot end time - - - - Aug 18, 2022 03:00 UTC -
- - Expected impact duration - - - - - - Up to 05 Hours -
- - Expected impact level - - -
- - TEST-FOR-END1-MAI-001 - - - - - Switch hit and Higher latency - -
-
-
-
-
-
-
-
- - If you have any request or query regarding this maintenance work, feel free to open - a ticket following BSO Support process. - -

- - /!\ Please do not respond to this e-mail. This - mailbox is not monitored. /!\

We apologise for any - inconvenience this may cause to you or your customers.
- Please log in to your service-desk portal account using the link below for more - information:
-
- https://servicedesk.bsonetwork.net
-
- Kind regards, -

- The NOC Team
- BSO - Redefining Connectivity
-

-   -
- - - - - - - - - - - -
  - - - - - - - -
- - Speak with our support team. - - - - - - - - - - - - - - - - - - - - -
FR|+33 1 84 88 56 48
UK|+44 203 608 9893
US|+1 347 433 7997
-
-
 
- - - - - - - - - -
- - - - - - -
- - bso-linkedin - - - bso-twitter - - - bso-facebook - - - bso-instagram - - - bso-youtube - -
-
- © 2021 BSO, All rights reserved. -
-
-
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - ---===============1767496142723761618==-- +Delivered-To: +Received: +X-Google-Smtp-Source: +X-Received: +ARC-Seal: +ARC-Message-Signature: +ARC-Authentication-Results: +Return-Path: +Received: +Received-SPF: +Authentication-Results: +Received: +Content-Type: multipart/alternative; +MIME-Version: 1.0 +Subject: +From: +To: +Date: +Message-ID: + +--===============1767496142723761618== +Content-Type: text/plain; charset="utf-8" +MIME-Version: 1.0 +Content-Transfer-Encoding: 8bit + + + +Maintenance End_ + +Dear Customer, + +Please be advised that BSO's upstream provider's maintenance is now over. + + +Note: BSO has requested that the relevant team to reschedule this maintenance outside of working hours, we update this notification with any changes to schedule or impact + + +Below you will find your service ID and the timeframe for the maintenance work: + +Service Details +Service ID (SID) + + + TEST-FOR-END1-MAI-001 + + + +Maintenance Reason +fiber works in Austria + +Maintenance Details + +Maintenance ID 44444 + +Timeslot start time Aug 17, 2022 22:00 UTC +Timeslot end time Aug 18, 2022 03:00 UTC +Expected impact duration Up to 05 Hours +Expected impact level Hard down for unprotected circuits; Switch hits and higher latency for protected circuits + + +If you have any request or query regarding this maintenance work, feel free to open a ticket following BSO Support process. +/!\ Please do not respond to this e-mail. This mailbox is not monitored. /!\ + +We apologise for any inconvenience this may cause to you or your customers. +Please log in to your service-desk portal account using the link below for more information: + +http://servicedesk.bsonetwork.net + +Kind regards, + +The NOC Team +BSO - Redefining Connectivity + +Contact the BSO NOC for 24/7 support +FR | +33 1 84 88 56 48 +UK | +44 203 608 9893 +US | +1 347 433 7997 +© 2021 BSO, All rights reserved. + + +--===============1767496142723761618== +Content-Type: text/html; charset="utf-8" +MIME-Version: 1.0 +Content-Transfer-Encoding: 8bit + + + + + + + + + + + + + + BSO Maintenance Information + + + + + + + + + + + + + + +
+ + + + +
+ + + + +
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ bso-navy +
+ + Maintenance End_ + +
+ Dear Customer,

+ Please be advised that BSO's upstream provider's maintenance is now over. +

+ + Note: BSO has requested that the relevant team to reschedule this maintenance outside of working hours, we update this notification with any changes to schedule or impact +

+ + Below you will find your service ID and the timeframe for the maintenance work: +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+
+ + Service Details + +
+
+
+ + + + + + + + + + + + +
+
+ + + + + + + + +
+ + Service ID (SID) + + + + + + + TEST-FOR-END1-MAI-001 + + + +
+
+
+
+
+
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+
+ + Maintenance Reason + +
+
+
+ + + + + + + + + + + + +
+
+ + + + + + +
+ + fiber works in Austria + +
+
+
+
+
+
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+
+ + Maintenance Details + +
+
+
+ + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Maintenance + ID + + + + 44444 +
+
+ + Timeslot start time + + + + Aug 17, 2022 22:00 UTC +
+ + Timeslot end time + + + + Aug 18, 2022 03:00 UTC +
+ + Expected impact duration + + + + + + Up to 05 Hours +
+ + Expected impact level + + +
+ + TEST-FOR-END1-MAI-001 + + + + + Switch hit and Higher latency + +
+
+
+
+
+
+
+
+ + If you have any request or query regarding this maintenance work, feel free to open + a ticket following BSO Support process. + +

+ + /!\ Please do not respond to this e-mail. This + mailbox is not monitored. /!\

We apologise for any + inconvenience this may cause to you or your customers.
+ Please log in to your service-desk portal account using the link below for more + information:
+
+ https://servicedesk.bsonetwork.net
+
+ Kind regards, +

+ The NOC Team
+ BSO - Redefining Connectivity
+

+   +
+ + + + + + + + + + + +
  + + + + + + + +
+ + Speak with our support team. + + + + + + + + + + + + + + + + + + + + +
FR|+33 1 84 88 56 48
UK|+44 203 608 9893
US|+1 347 433 7997
+
+
 
+ + + + + + + + + +
+ + + + + + +
+ + bso-linkedin + + + bso-twitter + + + bso-facebook + + + bso-instagram + + + bso-youtube + +
+
+ © 2021 BSO, All rights reserved. +
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +--===============1767496142723761618==-- diff --git a/tests/unit/data/bso/bso5_reminder_multiple_ts.eml b/tests/unit/data/bso/bso5_reminder_multiple_ts.eml index 4737637a..8c483bd7 100644 --- a/tests/unit/data/bso/bso5_reminder_multiple_ts.eml +++ b/tests/unit/data/bso/bso5_reminder_multiple_ts.eml @@ -1,1126 +1,1126 @@ -Delivered-To: -Received: -X-Google-Smtp-Source: -X-Received: -ARC-Seal: -ARC-Message-Signature: -ARC-Authentication-Results: -Return-Path: -Received: -Received-SPF: -Authentication-Results: -Received: -Content-Type: multipart/alternative; -MIME-Version: 1.0 -Subject: -From: -To: -Date: -Message-ID: - ---===============2619983396230510944== -Content-Type: text/plain; charset="utf-8" -MIME-Version: 1.0 -Content-Transfer-Encoding: 8bit - - - -Maintenance Reminder_ - -Dear Customer, - -Please be advised that BSO's upstream provider has scheduled an emergency maintenance work that will impact your service. - - -Note: BSO has requested that the relevant team to reschedule this maintenance outside of working hours, we update this notification with any changes to schedule or impact - - -Below you will find your service ID and the timeframe for the maintenance work: - -Service Details -Service ID (SID) - - - TEST-FOR-REM1-ND3R-001 - - - -Maintenance Reason -relocate multiple fiber cables - -Maintenance Details - -Maintenance ID 55555 - -Timeslot start time Aug 19, 2022 05:00 UTC -Timeslot end time Aug 19, 2022 11:00 UTC -Expected impact duration Up to 04 Hours -Expected impact level Hard down for unprotected circuits; Switch hits and higher latency for protected circuits - -Maintenance ID 55555 - -Timeslot start time Aug 20, 2022 05:00 UTC -Timeslot end time Aug 20, 2022 11:00 UTC -Expected impact duration Up to 04 Hours -Expected impact level Hard down for unprotected circuits; Switch hits and higher latency for protected circuits - - -If you have any request or query regarding this maintenance work, feel free to open a ticket following BSO Support process. -/!\ Please do not respond to this e-mail. This mailbox is not monitored. /!\ - -We apologise for any inconvenience this may cause to you or your customers. -Please log in to your service-desk portal account using the link below for more information: - -http://servicedesk.bsonetwork.net - -Kind regards, - -The NOC Team -BSO - Redefining Connectivity - -Contact the BSO NOC for 24/7 support -FR | +33 1 84 88 56 48 -UK | +44 203 608 9893 -US | +1 347 433 7997 -© 2021 BSO, All rights reserved. - - ---===============2619983396230510944== -Content-Type: text/html; charset="utf-8" -MIME-Version: 1.0 -Content-Transfer-Encoding: 8bit - - - - - - - - - - - - - - BSO Maintenance Information - - - - - - - - - - - - - - -
- - - - -
- - - - -
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- bso-navy -
- - Maintenance Reminder_ - -
- Dear Customer,

- Please be advised that BSO's upstream provider has scheduled an emergency maintenance work that will impact your service. -

- - Note: BSO has requested that the relevant team to reschedule this maintenance outside of working hours, we update this notification with any changes to schedule or impact -

- - Below you will find your service ID and the timeframe for the maintenance work: -
- - - - - - - - - - - - - -
- - - - - - - - - - - - -
-
- - Service Details - -
-
-
- - - - - - - - - - - - -
-
- - - - - - - - -
- - Service ID (SID) - - - - - - - TEST-FOR-REM1-ND3R-001 - - - -
-
-
-
-
-
- - - - - - - - - - - - - -
- - - - - - - - - - - - -
-
- - Maintenance Reason - -
-
-
- - - - - - - - - - - - -
-
- - - - - - -
- - relocate multiple fiber cables - -
-
-
-
-
-
- - - - - - - - - - - - - -
- - - - - - - - - - - - -
-
- - Maintenance Details - -
-
-
- - - - - - - - - - - - - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Maintenance - ID - - - - 55555 -
-
- - Timeslot start time - - - - Aug 19, 2022 05:00 UTC -
- - Timeslot end time - - - - Aug 19, 2022 11:00 UTC -
- - Expected impact duration - - - - - - Up to 04 Hours -
- - Expected impact level - - -
- - TEST-FOR-REM1-ND3R-001 - - - - - Hard Down - -
-
- - Timeslot start time - - - - Aug 20, 2022 05:00 UTC -
- - Timeslot end time - - - - Aug 20, 2022 11:00 UTC -
- - Expected impact duration - - - - - - Up to 04 Hours -
- - Expected impact level - - -
- - TEST-FOR-REM1-ND3R-001 - - - - - Hard Down - -
-
-
-
-
-
-
-
- - If you have any request or query regarding this maintenance work, feel free to open - a ticket following BSO Support process. - -

- - /!\ Please do not respond to this e-mail. This - mailbox is not monitored. /!\

We apologise for any - inconvenience this may cause to you or your customers.
- Please log in to your service-desk portal account using the link below for more - information:
-
- https://servicedesk.bsonetwork.net
-
- Kind regards, -

- The NOC Team
- BSO - Redefining Connectivity
-

-   -
- - - - - - - - - - - -
  - - - - - - - -
- - Speak with our support team. - - - - - - - - - - - - - - - - - - - - -
FR|+33 1 84 88 56 48
UK|+44 203 608 9893
US|+1 347 433 7997
-
-
 
- - - - - - - - - -
- - - - - - -
- - bso-linkedin - - - bso-twitter - - - bso-facebook - - - bso-instagram - - - bso-youtube - -
-
- © 2021 BSO, All rights reserved. -
-
-
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - ---===============2619983396230510944==-- +Delivered-To: +Received: +X-Google-Smtp-Source: +X-Received: +ARC-Seal: +ARC-Message-Signature: +ARC-Authentication-Results: +Return-Path: +Received: +Received-SPF: +Authentication-Results: +Received: +Content-Type: multipart/alternative; +MIME-Version: 1.0 +Subject: +From: +To: +Date: +Message-ID: + +--===============2619983396230510944== +Content-Type: text/plain; charset="utf-8" +MIME-Version: 1.0 +Content-Transfer-Encoding: 8bit + + + +Maintenance Reminder_ + +Dear Customer, + +Please be advised that BSO's upstream provider has scheduled an emergency maintenance work that will impact your service. + + +Note: BSO has requested that the relevant team to reschedule this maintenance outside of working hours, we update this notification with any changes to schedule or impact + + +Below you will find your service ID and the timeframe for the maintenance work: + +Service Details +Service ID (SID) + + + TEST-FOR-REM1-ND3R-001 + + + +Maintenance Reason +relocate multiple fiber cables + +Maintenance Details + +Maintenance ID 55555 + +Timeslot start time Aug 19, 2022 05:00 UTC +Timeslot end time Aug 19, 2022 11:00 UTC +Expected impact duration Up to 04 Hours +Expected impact level Hard down for unprotected circuits; Switch hits and higher latency for protected circuits + +Maintenance ID 55555 + +Timeslot start time Aug 20, 2022 05:00 UTC +Timeslot end time Aug 20, 2022 11:00 UTC +Expected impact duration Up to 04 Hours +Expected impact level Hard down for unprotected circuits; Switch hits and higher latency for protected circuits + + +If you have any request or query regarding this maintenance work, feel free to open a ticket following BSO Support process. +/!\ Please do not respond to this e-mail. This mailbox is not monitored. /!\ + +We apologise for any inconvenience this may cause to you or your customers. +Please log in to your service-desk portal account using the link below for more information: + +http://servicedesk.bsonetwork.net + +Kind regards, + +The NOC Team +BSO - Redefining Connectivity + +Contact the BSO NOC for 24/7 support +FR | +33 1 84 88 56 48 +UK | +44 203 608 9893 +US | +1 347 433 7997 +© 2021 BSO, All rights reserved. + + +--===============2619983396230510944== +Content-Type: text/html; charset="utf-8" +MIME-Version: 1.0 +Content-Transfer-Encoding: 8bit + + + + + + + + + + + + + + BSO Maintenance Information + + + + + + + + + + + + + + +
+ + + + +
+ + + + +
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ bso-navy +
+ + Maintenance Reminder_ + +
+ Dear Customer,

+ Please be advised that BSO's upstream provider has scheduled an emergency maintenance work that will impact your service. +

+ + Note: BSO has requested that the relevant team to reschedule this maintenance outside of working hours, we update this notification with any changes to schedule or impact +

+ + Below you will find your service ID and the timeframe for the maintenance work: +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+
+ + Service Details + +
+
+
+ + + + + + + + + + + + +
+
+ + + + + + + + +
+ + Service ID (SID) + + + + + + + TEST-FOR-REM1-ND3R-001 + + + +
+
+
+
+
+
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+
+ + Maintenance Reason + +
+
+
+ + + + + + + + + + + + +
+
+ + + + + + +
+ + relocate multiple fiber cables + +
+
+
+
+
+
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+
+ + Maintenance Details + +
+
+
+ + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Maintenance + ID + + + + 55555 +
+
+ + Timeslot start time + + + + Aug 19, 2022 05:00 UTC +
+ + Timeslot end time + + + + Aug 19, 2022 11:00 UTC +
+ + Expected impact duration + + + + + + Up to 04 Hours +
+ + Expected impact level + + +
+ + TEST-FOR-REM1-ND3R-001 + + + + + Hard Down + +
+
+ + Timeslot start time + + + + Aug 20, 2022 05:00 UTC +
+ + Timeslot end time + + + + Aug 20, 2022 11:00 UTC +
+ + Expected impact duration + + + + + + Up to 04 Hours +
+ + Expected impact level + + +
+ + TEST-FOR-REM1-ND3R-001 + + + + + Hard Down + +
+
+
+
+
+
+
+
+ + If you have any request or query regarding this maintenance work, feel free to open + a ticket following BSO Support process. + +

+ + /!\ Please do not respond to this e-mail. This + mailbox is not monitored. /!\

We apologise for any + inconvenience this may cause to you or your customers.
+ Please log in to your service-desk portal account using the link below for more + information:
+
+ https://servicedesk.bsonetwork.net
+
+ Kind regards, +

+ The NOC Team
+ BSO - Redefining Connectivity
+

+   +
+ + + + + + + + + + + +
  + + + + + + + +
+ + Speak with our support team. + + + + + + + + + + + + + + + + + + + + +
FR|+33 1 84 88 56 48
UK|+44 203 608 9893
US|+1 347 433 7997
+
+
 
+ + + + + + + + + +
+ + + + + + +
+ + bso-linkedin + + + bso-twitter + + + bso-facebook + + + bso-instagram + + + bso-youtube + +
+
+ © 2021 BSO, All rights reserved. +
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +--===============2619983396230510944==-- diff --git a/tests/unit/data/bso/bso6_cancel.eml b/tests/unit/data/bso/bso6_cancel.eml index 8e3a18fc..4d18a1fe 100644 --- a/tests/unit/data/bso/bso6_cancel.eml +++ b/tests/unit/data/bso/bso6_cancel.eml @@ -1,1051 +1,1051 @@ -Delivered-To: -Received: -X-Google-Smtp-Source: -X-Received: -ARC-Seal: -ARC-Message-Signature: -ARC-Authentication-Results: -Return-Path: -Received: -Received-SPF: -Authentication-Results: -Received: -Content-Type: multipart/alternative; -MIME-Version: 1.0 -Subject: -From: -To: -Date: -Message-ID: - ---===============3734662519850625295== -Content-Type: text/plain; charset="utf-8" -MIME-Version: 1.0 -Content-Transfer-Encoding: 8bit - - - -Maintenance Canceled_ - -Dear Customer, - -Please be advised that BSO's upstream provider has canceled a planned maintenance work. - - - -Below you will find your service ID and the timeframe for the maintenance work: - -Service Details -Service ID (SID) - - - TEST-FOR-CAN1-CEL-001 - - TEST-FOR-CAN1-CEL-002 - - - -Maintenance Reason -Routine Fiber Splice - -Maintenance Details - -Maintenance ID 66666 - -Timeslot start time Aug 14, 2022 21:00 UTC -Timeslot end time Aug 15, 2022 04:00 UTC -Expected impact duration Up to 07 Hours -Expected impact level At risk only - - -If you have any request or query regarding this maintenance work, feel free to open a ticket following BSO Support process. -/!\ Please do not respond to this e-mail. This mailbox is not monitored. /!\ - -We apologise for any inconvenience this may cause to you or your customers. -Please log in to your service-desk portal account using the link below for more information: - -http://servicedesk.bsonetwork.net - -Kind regards, - -The NOC Team -BSO - Redefining Connectivity - -Contact the BSO NOC for 24/7 support -FR | +33 1 84 88 56 48 -UK | +44 203 608 9893 -US | +1 347 433 7997 -© 2021 BSO, All rights reserved. - - ---===============3734662519850625295== -Content-Type: text/html; charset="utf-8" -MIME-Version: 1.0 -Content-Transfer-Encoding: 8bit - - - - - - - - - - - - - - BSO Maintenance Information - - - - - - - - - - - - - - -
- - - - -
- - - - -
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- bso-navy -
- - Maintenance Canceled_ - -
- Dear Customer,

- Please be advised that BSO's upstream provider has canceled a planned maintenance work. -

- - Below you will find your service ID and the timeframe for the maintenance work: -
- - - - - - - - - - - - - -
- - - - - - - - - - - - -
-
- - Service Details - -
-
-
- - - - - - - - - - - - -
-
- - - - - - - - -
- - Service ID (SID) - - - - - - - TEST-FOR-CAN1-CEL-001 - - - - TEST-FOR-CAN1-CEL-002 - - - -
-
-
-
-
-
- - - - - - - - - - - - - -
- - - - - - - - - - - - -
-
- - Maintenance Reason - -
-
-
- - - - - - - - - - - - -
-
- - - - - - -
- - Routine Fiber Splice - -
-
-
-
-
-
- - - - - - - - - - - - - -
- - - - - - - - - - - - -
-
- - Maintenance Details - -
-
-
- - - - - - - - - - - - - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Maintenance - ID - - - - 66666 -
-
- - Timeslot start time - - - - Aug 14, 2022 21:00 UTC -
- - Timeslot end time - - - - Aug 15, 2022 04:00 UTC -
- - Expected impact duration - - - - - - Up to 07 Hours -
- - Expected impact level - - -
- - TEST-FOR-CAN1-CEL-001 - - - - - At risk only - -
- - TEST-FOR-CAN1-CEL-002 - - - - - Hard Down - -
-
-
-
-
-
-
-
- - If you have any request or query regarding this maintenance work, feel free to open - a ticket following BSO Support process. - -

- - /!\ Please do not respond to this e-mail. This - mailbox is not monitored. /!\

We apologise for any - inconvenience this may cause to you or your customers.
- Please log in to your service-desk portal account using the link below for more - information:
-
- https://servicedesk.bsonetwork.net
-
- Kind regards, -

- The NOC Team
- BSO - Redefining Connectivity
-

-   -
- - - - - - - - - - - -
  - - - - - - - -
- - Speak with our support team. - - - - - - - - - - - - - - - - - - - - -
FR|+33 1 84 88 56 48
UK|+44 203 608 9893
US|+1 347 433 7997
-
-
 
- - - - - - - - - -
- - - - - - -
- - bso-linkedin - - - bso-twitter - - - bso-facebook - - - bso-instagram - - - bso-youtube - -
-
- © 2021 BSO, All rights reserved. -
-
-
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - ---===============3734662519850625295==-- +Delivered-To: +Received: +X-Google-Smtp-Source: +X-Received: +ARC-Seal: +ARC-Message-Signature: +ARC-Authentication-Results: +Return-Path: +Received: +Received-SPF: +Authentication-Results: +Received: +Content-Type: multipart/alternative; +MIME-Version: 1.0 +Subject: +From: +To: +Date: +Message-ID: + +--===============3734662519850625295== +Content-Type: text/plain; charset="utf-8" +MIME-Version: 1.0 +Content-Transfer-Encoding: 8bit + + + +Maintenance Canceled_ + +Dear Customer, + +Please be advised that BSO's upstream provider has canceled a planned maintenance work. + + + +Below you will find your service ID and the timeframe for the maintenance work: + +Service Details +Service ID (SID) + + + TEST-FOR-CAN1-CEL-001 + + TEST-FOR-CAN1-CEL-002 + + + +Maintenance Reason +Routine Fiber Splice + +Maintenance Details + +Maintenance ID 66666 + +Timeslot start time Aug 14, 2022 21:00 UTC +Timeslot end time Aug 15, 2022 04:00 UTC +Expected impact duration Up to 07 Hours +Expected impact level At risk only + + +If you have any request or query regarding this maintenance work, feel free to open a ticket following BSO Support process. +/!\ Please do not respond to this e-mail. This mailbox is not monitored. /!\ + +We apologise for any inconvenience this may cause to you or your customers. +Please log in to your service-desk portal account using the link below for more information: + +http://servicedesk.bsonetwork.net + +Kind regards, + +The NOC Team +BSO - Redefining Connectivity + +Contact the BSO NOC for 24/7 support +FR | +33 1 84 88 56 48 +UK | +44 203 608 9893 +US | +1 347 433 7997 +© 2021 BSO, All rights reserved. + + +--===============3734662519850625295== +Content-Type: text/html; charset="utf-8" +MIME-Version: 1.0 +Content-Transfer-Encoding: 8bit + + + + + + + + + + + + + + BSO Maintenance Information + + + + + + + + + + + + + + +
+ + + + +
+ + + + +
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ bso-navy +
+ + Maintenance Canceled_ + +
+ Dear Customer,

+ Please be advised that BSO's upstream provider has canceled a planned maintenance work. +

+ + Below you will find your service ID and the timeframe for the maintenance work: +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+
+ + Service Details + +
+
+
+ + + + + + + + + + + + +
+
+ + + + + + + + +
+ + Service ID (SID) + + + + + + + TEST-FOR-CAN1-CEL-001 + + + + TEST-FOR-CAN1-CEL-002 + + + +
+
+
+
+
+
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+
+ + Maintenance Reason + +
+
+
+ + + + + + + + + + + + +
+
+ + + + + + +
+ + Routine Fiber Splice + +
+
+
+
+
+
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+
+ + Maintenance Details + +
+
+
+ + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Maintenance + ID + + + + 66666 +
+
+ + Timeslot start time + + + + Aug 14, 2022 21:00 UTC +
+ + Timeslot end time + + + + Aug 15, 2022 04:00 UTC +
+ + Expected impact duration + + + + + + Up to 07 Hours +
+ + Expected impact level + + +
+ + TEST-FOR-CAN1-CEL-001 + + + + + At risk only + +
+ + TEST-FOR-CAN1-CEL-002 + + + + + Hard Down + +
+
+
+
+
+
+
+
+ + If you have any request or query regarding this maintenance work, feel free to open + a ticket following BSO Support process. + +

+ + /!\ Please do not respond to this e-mail. This + mailbox is not monitored. /!\

We apologise for any + inconvenience this may cause to you or your customers.
+ Please log in to your service-desk portal account using the link below for more + information:
+
+ https://servicedesk.bsonetwork.net
+
+ Kind regards, +

+ The NOC Team
+ BSO - Redefining Connectivity
+

+   +
+ + + + + + + + + + + +
  + + + + + + + +
+ + Speak with our support team. + + + + + + + + + + + + + + + + + + + + +
FR|+33 1 84 88 56 48
UK|+44 203 608 9893
US|+1 347 433 7997
+
+
 
+ + + + + + + + + +
+ + + + + + +
+ + bso-linkedin + + + bso-twitter + + + bso-facebook + + + bso-instagram + + + bso-youtube + +
+
+ © 2021 BSO, All rights reserved. +
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +--===============3734662519850625295==-- diff --git a/tests/unit/data/bso/bso7_backup_ts.eml b/tests/unit/data/bso/bso7_backup_ts.eml index 40720fdb..af26ad5a 100644 --- a/tests/unit/data/bso/bso7_backup_ts.eml +++ b/tests/unit/data/bso/bso7_backup_ts.eml @@ -1,1128 +1,1128 @@ -Delivered-To: -Received: -X-Google-Smtp-Source: -X-Received: -ARC-Seal: -ARC-Message-Signature: -ARC-Authentication-Results: -Return-Path: -Received: -Received-SPF: -Authentication-Results: -Received: -Content-Type: multipart/alternative; -MIME-Version: 1.0 -Subject: -From: -To: -Date: -Message-ID: - ---===============7891456551319855375== -Content-Type: text/plain; charset="utf-8" -MIME-Version: 1.0 -Content-Transfer-Encoding: 8bit - - - -Maintenance Reminder_ - -Dear Customer, - -Please be advised that BSO's upstream provider has scheduled a planned maintenance work that will impact your service. - - -Note: BSO has requested that the relevant team to reschedule this maintenance outside of working hours, we update this notification with any changes to schedule or impact - - -Below you will find your service ID and the timeframe for the maintenance work: - -Service Details -Service ID (SID) - - - TEST-FOR-BACK-TIM3-001 - - - -Maintenance Reason -intervention on an optical section - -Maintenance Details - -Maintenance ID 77777 - -Timeslot start time Aug 23, 2022 22:00 UTC -Timeslot end time Aug 24, 2022 05:00 UTC -Expected impact duration Up to 07 Hours -Expected impact level Hard down for unprotected circuits; Switch hits and higher latency for protected circuits - -Maintenance ID 77777 - -Timeslot start time (Backup) Aug 24, 2022 22:00 UTC -Timeslot end time (Backup) Aug 25, 2022 05:00 UTC -Expected impact duration (Backup) Up to 07 Hours -Expected impact level (Backup) Hard down for unprotected circuits; Switch hits and higher latency for protected circuits - - -If you have any request or query regarding this maintenance work, feel free to open a ticket following BSO Support process. -/!\ Please do not respond to this e-mail. This mailbox is not monitored. /!\ - -We apologise for any inconvenience this may cause to you or your customers. -Please log in to your service-desk portal account using the link below for more information: - -http://servicedesk.bsonetwork.net - -Kind regards, - -The NOC Team -BSO - Redefining Connectivity - -Contact the BSO NOC for 24/7 support -FR | +33 1 84 88 56 48 -UK | +44 203 608 9893 -US | +1 347 433 7997 -© 2021 BSO, All rights reserved. - - ---===============7891456551319855375== -Content-Type: text/html; charset="utf-8" -MIME-Version: 1.0 -Content-Transfer-Encoding: 8bit - - - - - - - - - - - - - - BSO Maintenance Information - - - - - - - - - - - - - - -
- - - - -
- - - - -
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- bso-navy -
- - Maintenance Reminder_ - -
- Dear Customer,

- Please be advised that BSO's upstream provider has scheduled a planned maintenance work that will impact your service. -

- - Note: BSO has requested that the relevant team to reschedule this maintenance outside of working hours, we update this notification with any changes to schedule or impact -

- - Below you will find your service ID and the timeframe for the maintenance work: -
- - - - - - - - - - - - - -
- - - - - - - - - - - - -
-
- - Service Details - -
-
-
- - - - - - - - - - - - -
-
- - - - - - - - -
- - Service ID (SID) - - - - - - - TEST-FOR-BACK-TIM3-001 - - - -
-
-
-
-
-
- - - - - - - - - - - - - -
- - - - - - - - - - - - -
-
- - Maintenance Reason - -
-
-
- - - - - - - - - - - - -
-
- - - - - - -
- - intervention on an optical section - -
-
-
-
-
-
- - - - - - - - - - - - - -
- - - - - - - - - - - - -
-
- - Maintenance Details - -
-
-
- - - - - - - - - - - - - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Maintenance - ID - - - - 77777 -
-
- - Timeslot start time - - - - Aug 23, 2022 22:00 UTC -
- - Timeslot end time - - - - Aug 24, 2022 05:00 UTC -
- - Expected impact duration - - - - - - Up to 07 Hours -
- - Expected impact level - - -
- - TEST-FOR-BACK-TIM3-001 - - - - - Switch hit and Higher latency - -
-
- - Timeslot start time - (Backup) - - - - Aug 24, 2022 22:00 UTC -
- - Timeslot end time - (Backup) - - - - Aug 25, 2022 05:00 UTC -
- - Expected impact duration - (Backup) - - - - - Up to 07 Hours -
- - Expected impact level - (Backup) - -
- - TEST-FOR-BACK-TIM3-001 - - - - - Switch hit and Higher latency - -
-
-
-
-
-
-
-
- - If you have any request or query regarding this maintenance work, feel free to open - a ticket following BSO Support process. - -

- - /!\ Please do not respond to this e-mail. This - mailbox is not monitored. /!\

We apologise for any - inconvenience this may cause to you or your customers.
- Please log in to your service-desk portal account using the link below for more - information:
-
- https://servicedesk.bsonetwork.net
-
- Kind regards, -

- The NOC Team
- BSO - Redefining Connectivity
-

-   -
- - - - - - - - - - - -
  - - - - - - - -
- - Speak with our support team. - - - - - - - - - - - - - - - - - - - - -
FR|+33 1 84 88 56 48
UK|+44 203 608 9893
US|+1 347 433 7997
-
-
 
- - - - - - - - - -
- - - - - - -
- - bso-linkedin - - - bso-twitter - - - bso-facebook - - - bso-instagram - - - bso-youtube - -
-
- © 2021 BSO, All rights reserved. -
-
-
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - ---===============7891456551319855375==-- +Delivered-To: +Received: +X-Google-Smtp-Source: +X-Received: +ARC-Seal: +ARC-Message-Signature: +ARC-Authentication-Results: +Return-Path: +Received: +Received-SPF: +Authentication-Results: +Received: +Content-Type: multipart/alternative; +MIME-Version: 1.0 +Subject: +From: +To: +Date: +Message-ID: + +--===============7891456551319855375== +Content-Type: text/plain; charset="utf-8" +MIME-Version: 1.0 +Content-Transfer-Encoding: 8bit + + + +Maintenance Reminder_ + +Dear Customer, + +Please be advised that BSO's upstream provider has scheduled a planned maintenance work that will impact your service. + + +Note: BSO has requested that the relevant team to reschedule this maintenance outside of working hours, we update this notification with any changes to schedule or impact + + +Below you will find your service ID and the timeframe for the maintenance work: + +Service Details +Service ID (SID) + + + TEST-FOR-BACK-TIM3-001 + + + +Maintenance Reason +intervention on an optical section + +Maintenance Details + +Maintenance ID 77777 + +Timeslot start time Aug 23, 2022 22:00 UTC +Timeslot end time Aug 24, 2022 05:00 UTC +Expected impact duration Up to 07 Hours +Expected impact level Hard down for unprotected circuits; Switch hits and higher latency for protected circuits + +Maintenance ID 77777 + +Timeslot start time (Backup) Aug 24, 2022 22:00 UTC +Timeslot end time (Backup) Aug 25, 2022 05:00 UTC +Expected impact duration (Backup) Up to 07 Hours +Expected impact level (Backup) Hard down for unprotected circuits; Switch hits and higher latency for protected circuits + + +If you have any request or query regarding this maintenance work, feel free to open a ticket following BSO Support process. +/!\ Please do not respond to this e-mail. This mailbox is not monitored. /!\ + +We apologise for any inconvenience this may cause to you or your customers. +Please log in to your service-desk portal account using the link below for more information: + +http://servicedesk.bsonetwork.net + +Kind regards, + +The NOC Team +BSO - Redefining Connectivity + +Contact the BSO NOC for 24/7 support +FR | +33 1 84 88 56 48 +UK | +44 203 608 9893 +US | +1 347 433 7997 +© 2021 BSO, All rights reserved. + + +--===============7891456551319855375== +Content-Type: text/html; charset="utf-8" +MIME-Version: 1.0 +Content-Transfer-Encoding: 8bit + + + + + + + + + + + + + + BSO Maintenance Information + + + + + + + + + + + + + + +
+ + + + +
+ + + + +
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ bso-navy +
+ + Maintenance Reminder_ + +
+ Dear Customer,

+ Please be advised that BSO's upstream provider has scheduled a planned maintenance work that will impact your service. +

+ + Note: BSO has requested that the relevant team to reschedule this maintenance outside of working hours, we update this notification with any changes to schedule or impact +

+ + Below you will find your service ID and the timeframe for the maintenance work: +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+
+ + Service Details + +
+
+
+ + + + + + + + + + + + +
+
+ + + + + + + + +
+ + Service ID (SID) + + + + + + + TEST-FOR-BACK-TIM3-001 + + + +
+
+
+
+
+
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+
+ + Maintenance Reason + +
+
+
+ + + + + + + + + + + + +
+
+ + + + + + +
+ + intervention on an optical section + +
+
+
+
+
+
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+
+ + Maintenance Details + +
+
+
+ + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Maintenance + ID + + + + 77777 +
+
+ + Timeslot start time + + + + Aug 23, 2022 22:00 UTC +
+ + Timeslot end time + + + + Aug 24, 2022 05:00 UTC +
+ + Expected impact duration + + + + + + Up to 07 Hours +
+ + Expected impact level + + +
+ + TEST-FOR-BACK-TIM3-001 + + + + + Switch hit and Higher latency + +
+
+ + Timeslot start time + (Backup) + + + + Aug 24, 2022 22:00 UTC +
+ + Timeslot end time + (Backup) + + + + Aug 25, 2022 05:00 UTC +
+ + Expected impact duration + (Backup) + + + + + Up to 07 Hours +
+ + Expected impact level + (Backup) + +
+ + TEST-FOR-BACK-TIM3-001 + + + + + Switch hit and Higher latency + +
+
+
+
+
+
+
+
+ + If you have any request or query regarding this maintenance work, feel free to open + a ticket following BSO Support process. + +

+ + /!\ Please do not respond to this e-mail. This + mailbox is not monitored. /!\

We apologise for any + inconvenience this may cause to you or your customers.
+ Please log in to your service-desk portal account using the link below for more + information:
+
+ https://servicedesk.bsonetwork.net
+
+ Kind regards, +

+ The NOC Team
+ BSO - Redefining Connectivity
+

+   +
+ + + + + + + + + + + +
  + + + + + + + +
+ + Speak with our support team. + + + + + + + + + + + + + + + + + + + + +
FR|+33 1 84 88 56 48
UK|+44 203 608 9893
US|+1 347 433 7997
+
+
 
+ + + + + + + + + +
+ + + + + + +
+ + bso-linkedin + + + bso-twitter + + + bso-facebook + + + bso-instagram + + + bso-youtube + +
+
+ © 2021 BSO, All rights reserved. +
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +--===============7891456551319855375==-- diff --git a/tests/unit/data/cogent/cogent1.html b/tests/unit/data/cogent/cogent1.html index d530346a..d67e264b 100644 --- a/tests/unit/data/cogent/cogent1.html +++ b/tests/unit/data/cogent/cogent1.html @@ -1,47 +1,47 @@ -06/12/2021 987654321-1 Planned Network Maintenance - San Jose, CA 123456789
Subject: 06/12/2021 987654321-1 Planned Network Maintenance - San Jose, CA 123456789

Cogent-NoReply@cogentco.com Cogent-NoReply@cogentco.com

Mon, May 24, 10:54 PM
to acme-direct-orders-acme

You are viewing an attached message.

Network to Code Mail can't verify the authenticity of attached messages.

ASR9K Code Upgrade Planned Network Maintenance
-
-Dear Cogent Customer,
-
-As a valued customer, Cogent is committed to keeping you informed about any changes in the status of your service with us. This email is to alert you regarding maintenance we will be performing on our network: 
-
-Start time: 12:00 AM (local time) 06/12/2021
-End time: 06:00 AM (local time) 06/12/2021
-Work order number: 987654321-1
-Order ID(s) impacted: 123456789
-Expected Outage/Downtime: 45-60 minutes
-
-Cogent customers receiving service in the greater San Jose, CA metro area will be affected by this maintenance. Only the Cogent Order ID(s) listed above will be impacted. The purpose of this work is to apply and activate software module upgrades on code running on the edge routers per the manufacturer's recommendations.
-
-During this maintenance window, you may experience up to two brief interruptions in service while we complete the maintenance activities. However, due to the complexity of the work, your downtime may be longer. Customers may also see some re-convergence during the maintenance window. Customers may experience latency and packet loss intermittently throughout the window.
-
-We encourage all our customers to please check our network status page http://status.cogentco.com/ which includes any code upgrades that are occurring in the next 48hrs.
-
-Our network operations engineers closely monitor the work and will do everything possible to minimize any inconvenience to you. If you have any problems with your connection after this time, or if you have any questions regarding the maintenance at any point, please call Customer Support at 1-877-7-COGENT and refer to this Maintenance Ticket: 987654321-1.
-
-We appreciate your patience during this work and welcome any feedback. Please send all questions and concerns to mailto:support@cogentco.com?subject=Maintenance%20Event%20ID:%20987654321-1%20Order%20ID:%201-300388908
-
-
-Thank you for being a Cogent customer.
-
-
-Sincerely,
-
-Customer Support
-Cogent Communications
-support@cogentco.com
-877-7COGENT
-
---
-You received this message because you are subscribed to the Google Groups "acme Direct Orders" group.
-To unsubscribe from this group and stop receiving emails from it, send an email to acme-direct-orders-acme+unsubscribe@acmegames.com.
-To view this discussion on the web visit https://groups.google.com/a/riotgames.com/d/msgid/acme-direct-orders-acme/MNT04021465%40starfish.cogentco.com.
-
---
-You received this message because you are subscribed to the Google Groups "acme Direct Network" group.
-To unsubscribe from this group and stop receiving emails from it, send an email to acme-direct-network-acme+unsubscribe@acmegames.com.
-To view this discussion on the web visit https://groups.google.com/a/riotgames.com/d/msgid/acme-direct-network-acme/MNT04021465%40starfish.cogentco.com.
-
+06/12/2021 987654321-1 Planned Network Maintenance - San Jose, CA 123456789
Subject: 06/12/2021 987654321-1 Planned Network Maintenance - San Jose, CA 123456789

Cogent-NoReply@cogentco.com Cogent-NoReply@cogentco.com

Mon, May 24, 10:54 PM
to acme-direct-orders-acme

You are viewing an attached message.

Network to Code Mail can't verify the authenticity of attached messages.

ASR9K Code Upgrade Planned Network Maintenance
+
+Dear Cogent Customer,
+
+As a valued customer, Cogent is committed to keeping you informed about any changes in the status of your service with us. This email is to alert you regarding maintenance we will be performing on our network: 
+
+Start time: 12:00 AM (local time) 06/12/2021
+End time: 06:00 AM (local time) 06/12/2021
+Work order number: 987654321-1
+Order ID(s) impacted: 123456789
+Expected Outage/Downtime: 45-60 minutes
+
+Cogent customers receiving service in the greater San Jose, CA metro area will be affected by this maintenance. Only the Cogent Order ID(s) listed above will be impacted. The purpose of this work is to apply and activate software module upgrades on code running on the edge routers per the manufacturer's recommendations.
+
+During this maintenance window, you may experience up to two brief interruptions in service while we complete the maintenance activities. However, due to the complexity of the work, your downtime may be longer. Customers may also see some re-convergence during the maintenance window. Customers may experience latency and packet loss intermittently throughout the window.
+
+We encourage all our customers to please check our network status page http://status.cogentco.com/ which includes any code upgrades that are occurring in the next 48hrs.
+
+Our network operations engineers closely monitor the work and will do everything possible to minimize any inconvenience to you. If you have any problems with your connection after this time, or if you have any questions regarding the maintenance at any point, please call Customer Support at 1-877-7-COGENT and refer to this Maintenance Ticket: 987654321-1.
+
+We appreciate your patience during this work and welcome any feedback. Please send all questions and concerns to mailto:support@cogentco.com?subject=Maintenance%20Event%20ID:%20987654321-1%20Order%20ID:%201-300388908
+
+
+Thank you for being a Cogent customer.
+
+
+Sincerely,
+
+Customer Support
+Cogent Communications
+support@cogentco.com
+877-7COGENT
+
+--
+You received this message because you are subscribed to the Google Groups "acme Direct Orders" group.
+To unsubscribe from this group and stop receiving emails from it, send an email to acme-direct-orders-acme+unsubscribe@acmegames.com.
+To view this discussion on the web visit https://groups.google.com/a/riotgames.com/d/msgid/acme-direct-orders-acme/MNT04021465%40starfish.cogentco.com.
+
+--
+You received this message because you are subscribed to the Google Groups "acme Direct Network" group.
+To unsubscribe from this group and stop receiving emails from it, send an email to acme-direct-network-acme+unsubscribe@acmegames.com.
+To view this discussion on the web visit https://groups.google.com/a/riotgames.com/d/msgid/acme-direct-network-acme/MNT04021465%40starfish.cogentco.com.
+
diff --git a/tests/unit/data/cogent/cogent2.html b/tests/unit/data/cogent/cogent2.html index 5836d1d6..8c096ac7 100644 --- a/tests/unit/data/cogent/cogent2.html +++ b/tests/unit/data/cogent/cogent2.html @@ -1,215 +1,215 @@ - -Correction 06/11/2021 AB987654321-1 Planned Network Maintenance - San Jose, CA 1-123456789
Subject: Correction 06/11/2021 AB987654321-1 Planned Network Maintenance - San Jose, CA 1-123456789

Cogent-NoReply@cogentco.com Cogent-NoReply@cogentco.com

Tue, May 25, 2:37 PM
to acme-direct-orders-acme

You are viewing an attached message.

Router Code Upgrade Planned Network Maintenance
-
-Dear Cogent Customer,
-
-As a valued customer, Cogent is committed to keeping you informed about any changes in the status of your service with us. This email is to alert you regarding maintenance we will be performing on our network: 
-
-Start time: 12:00 AM (local time) 06/11/2021  <<< Correction
-End time: 03:00 AM (local time) 06/11/2021 <<< Correction
-Work order number: AB987654321-1
-Order ID(s) impacted: 1-123456789
-Expected Outage/Downtime: 45-60 minutes
-
-Cogent customers receiving service in the greater San Jose, CA metro area will be affected by this maintenance. Only the Cogent Order ID(s) listed above will be impacted. The purpose of this work is to apply and activate software module upgrades on code running on the edge routers per the manufacturer's recommendations.
-
-During this maintenance window, you may experience up to two brief interruptions in service while we complete the maintenance activities. However, due to the complexity of the work, your downtime may be longer. Customers may also see some re-convergence during the maintenance window. Customers may experience latency and packet loss intermittently throughout the window.
-
-We encourage all our customers to please check our network status page http://status.cogentco.com/ which includes any code upgrades that are occurring in the next 48hrs.
-
-Our network operations engineers closely monitor the work and will do everything possible to minimize any inconvenience to you. If you have any problems with your connection after this time, or if you have any questions regarding the maintenance at any point, please call Customer Support at 1-877-7-COGENT and refer to this Maintenance Ticket: AB987654321-1.
-
-We appreciate your patience during this work and welcome any feedback. Please send all questions and concerns to mailto:support@cogentco.com?subject=Maintenance%20Event%20ID:%20AB987654321-1%20Order%20ID:%201-300388908
-
-
-Thank you for being a Cogent customer.
-
-
-Sincerely,
-
-Customer Support
-Cogent Communications
-support@cogentco.com
-877-7COGENT
-
-
+ +Correction 06/11/2021 AB987654321-1 Planned Network Maintenance - San Jose, CA 1-123456789
Subject: Correction 06/11/2021 AB987654321-1 Planned Network Maintenance - San Jose, CA 1-123456789

Cogent-NoReply@cogentco.com Cogent-NoReply@cogentco.com

Tue, May 25, 2:37 PM
to acme-direct-orders-acme

You are viewing an attached message.

Router Code Upgrade Planned Network Maintenance
+
+Dear Cogent Customer,
+
+As a valued customer, Cogent is committed to keeping you informed about any changes in the status of your service with us. This email is to alert you regarding maintenance we will be performing on our network: 
+
+Start time: 12:00 AM (local time) 06/11/2021  <<< Correction
+End time: 03:00 AM (local time) 06/11/2021 <<< Correction
+Work order number: AB987654321-1
+Order ID(s) impacted: 1-123456789
+Expected Outage/Downtime: 45-60 minutes
+
+Cogent customers receiving service in the greater San Jose, CA metro area will be affected by this maintenance. Only the Cogent Order ID(s) listed above will be impacted. The purpose of this work is to apply and activate software module upgrades on code running on the edge routers per the manufacturer's recommendations.
+
+During this maintenance window, you may experience up to two brief interruptions in service while we complete the maintenance activities. However, due to the complexity of the work, your downtime may be longer. Customers may also see some re-convergence during the maintenance window. Customers may experience latency and packet loss intermittently throughout the window.
+
+We encourage all our customers to please check our network status page http://status.cogentco.com/ which includes any code upgrades that are occurring in the next 48hrs.
+
+Our network operations engineers closely monitor the work and will do everything possible to minimize any inconvenience to you. If you have any problems with your connection after this time, or if you have any questions regarding the maintenance at any point, please call Customer Support at 1-877-7-COGENT and refer to this Maintenance Ticket: AB987654321-1.
+
+We appreciate your patience during this work and welcome any feedback. Please send all questions and concerns to mailto:support@cogentco.com?subject=Maintenance%20Event%20ID:%20AB987654321-1%20Order%20ID:%201-300388908
+
+
+Thank you for being a Cogent customer.
+
+
+Sincerely,
+
+Customer Support
+Cogent Communications
+support@cogentco.com
+877-7COGENT
+
+
\ No newline at end of file diff --git a/tests/unit/data/colt/colt3.eml b/tests/unit/data/colt/colt3.eml index 17e08abb..bf4d10b8 100644 --- a/tests/unit/data/colt/colt3.eml +++ b/tests/unit/data/colt/colt3.eml @@ -1,438 +1,438 @@ -MIME-Version: 1.0 -Date: Sat, 4 Sep 2021 14:02:52 +0100 -Message-ID: -Subject: [ EXTERNAL ] Colt Service Affecting Maintenance Notification - CRQ1-12345678 [06/8/2021 22:00:00 GMT - 07/8/2021 06:00:00 GMT] for ACME, 12345000 -From: Maintenance Request -To: Maintenance Request -Content-Type: multipart/mixed; boundary="000000000000a43c2305cb2b086c" - ---000000000000a43c2305cb2b086c -Content-Type: multipart/alternative; boundary="000000000000a43c2005cb2b086a" - ---000000000000a43c2005cb2b086a -Content-Type: text/plain; charset="UTF-8" - -[ EXTERNAL ] - -*Planned Outage Notification* - -Dear Sir or Madam, - -In order to maintain the highest levels of availability and service to our -customers, it is sometimes necessary for Colt and our partners to perform -network maintenance. We apologize for any resulting inconvenience and -assure you of our efforts to minimise any service disruption. To view this, -and all other planned maintenance on your services, or if you require any -assistance, please contact us via the Colt Online Portal -http://online.colt.net. Alternatively, email us to -PlannedWorks@colt.net, quoting -the following reference number CRQ1-12345678. Please retain this unique -reference for the maintenance. - -*Planned Works Details:* - -*Planned Work (PW)Ref.:* CRQ1-12345678 -*Start Date & Time:* 06/8/2021 21:00:00(GMT)* -*End Date & Time:* 07/8/2021 05:00:00 (GMT)* -*Outage Duration:* No Impact - -**Time Zone:* -*Central European Time (CET) = GMT + 1 hour* -*Central European Summer Time (CEST) = GMT + 2 hours* - -*Justification of the work:* Kindly note the device on which your service -is commissioned, will be upgraded at a later stage. Thus please take note -that this maintenance for your service, in the attached CSV file, stands as -cancelled. There are currently no new dates available. Once the new timings -have been finalised, Colt will raise a new change ticket, and inform you -about the work. We would like to apologise for any inconvenience this may -have resulted in - -*Service: ***Please refer to the attached CSV file for your service(s) -affected by this maintenance***** - -*PLEASE NOTE:* To enable you to plan appropriately the list of impacted -services includes those that have been completed, as well as those pending -completion. If the pending installation is completed prior to the -scheduled date for the planned maintenance these services will be impacted. - -Please assist Colt by informing us about any changes to your contact -details via the Colt Online Portal http://online.colt.net or by replying to -PlannedWorks@colt.net so that we can ensure that future notifications reach -the correct parties. - -Should you experience any issue with your service post the maintenance end -time, please contact Colt Technical support via the Colt Online Portal -http://online.colt.net. Alternatively, visit http://www.colt.net/support to -contact us by phone, quoting your service ID. - -For more information about a service, please consult the Colt Online Portal -http://online.colt.net - - -*Colt Change management* -*Colt Technology Services - Operations* - -For support log into Colt Online: https://online.colt.net -For other contact options: https://www.colt.net/support -[Colt Disclaimer] This email is from an entity of the Colt group of -companies. Colt Group Holdings Limited, Colt House, 20 Great Eastern -Street, London, EC2A 3EH, United Kingdom, registered in England and Wales, -under company number 11530966. Corporate and contact information for our -entities can be found at https://www.colt.net/legal/colt-group-of-companies/. -Internet communications are not secure and Colt does not accept -responsibility for the accurate transmission of this message. Content of -this email or its attachments is not legally or contractually binding -unless expressly previously agreed in writing by Colt - ---000000000000a43c2005cb2b086a -Content-Type: text/html; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - -
[ EXTERNAL ]=C2=A0= -

Planned O= -utage Notification

Dear Sir or Madam,<= -/span>

In order=C2=A0to maintain the highest levels of availa= -bility and service to our customers, it is sometimes necessary for Colt=C2= -=A0and our partners to perform network maintenance.=C2=A0=C2=A0We apologize= - for any resulting inconvenience and assure you of our efforts to minimise = -any service disruption. To view this, and all other planned maintenance on = -your services, or if you require any assistance, please contact us via the = -Colt Online Portal=C2=A0http://online.colt.net. Alternatively, e= -mail us to=C2=A0PlannedWorks@colt.net,=C2=A0q= -uoting the following reference number CRQ1-12345678. Please retain this uni= -que reference for the maintenance.

Planned Works Details:

Planned Work (PW)Ref.:=C2=A0=C2=A0 CRQ1-123456= -78
Start Date & Time:=C2=A0 =C2=A0 = -=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A006/8/2021 21:00:00(GMT)*
End Date & Time:=C2=A0 =C2=A0 =C2=A0 = -=C2=A0 =C2=A0 =C2=A0 =C2=A0=C2=A007/8/2021 05:00:00=C2=A0(GM= -T)*
Outage Duration:=C2=A0 =C2=A0 =C2=A0= - =C2=A0 =C2=A0 =C2=A0 =C2=A0 No Impact

*Time Zone:
Central Eur= -opean Time (CET)=C2=A0=C2=A0=3D GMT + 1 hour
<= -em>Central European Summer Time (CEST) =3D GMT + 2=C2=A0hours

Justification of the work:=C2=A0Kindly note the device on which your service is commissioned, will= - be upgraded at a later stage. Thus please take note that this maintenance = -for your service, in the attached CSV file, stands as cancelled. There are = -currently no new dates available. Once the new timings have been finalised,= - Colt will raise a new change ticket, and inform you about the work. We wou= -ld like to apologise for any inconvenience this may have resulted in= -

Service:=C2=A0=C2=A0<= -span style=3D"color:rgb(0,51,153)">***Please refer to the attached CSV file= - for your service(s) affected by this maintenance****

PLEASE NOTE:=C2=A0=C2=A0To enable y= -ou to plan appropriately the list of impacted services includes those that = -have been completed, as well as those pending completion.=C2=A0=C2=A0If the= - pending installation is completed prior to the scheduled date for the plan= -ned maintenance these services will be impacted.

Pleas= -e assist Colt by informing us about any changes to your contact details=C2= -=A0via the Colt Online Portal=C2=A0http://online.c= -olt.net=C2=A0or by replying to=C2=A0P= -lannedWorks@colt.net=C2=A0so that we can ensure t= -hat future notifications reach the correct parties.

S= -hould you experience any issue with your service post the maintenance end t= -ime, please contact Colt Technical support via the Colt Online Portal=C2=A0= -
http://online.colt.net. Alternatively, vis= -it=C2=A0http://www.colt.net/support= -=C2=A0to contact us by phone, quoting your service ID.

For more= - information about a service, please consult=C2=A0
the Colt O= -nline Portal=C2=A0http://online.colt.net


Colt Change managem= -ent
Colt Technology Services - Operations
=C2=A0
For support log into Colt = -Online:=C2=A0https://online.colt.net
For other c= -ontact options:=C2=A0https://www.colt.net/support

[Colt Disclaimer] This email is from an entity of the Colt group of c= -ompanies. Colt Group Holdings Limited, Colt House, 20 Great Eastern Street,= - London, EC2A 3EH, United Kingdom, registered in England and Wales, under c= -ompany number 11530966. Corporate and contact information for our entities = -can be found at=C2=A0https://www.co= -lt.net/legal/colt-group-of-companies/. Internet communications are not = -secure and Colt does not accept responsibility for the accurate transmissio= -n of this message. Content of this email or its attachments is not legally = -or contractually binding unless expressly previously agreed in writing by C= -olt
- ---000000000000a43c2005cb2b086a-- ---000000000000a43c2305cb2b086c -Content-Type: text/calendar; charset="UTF-8"; name="colt1.ics" -Content-Disposition: attachment; filename="colt1.ics" -Content-Transfer-Encoding: base64 -X-Attachment-Id: f_kt5sq7450 -Content-ID: - -QkVHSU46VkNBTEVOREFSClBST0RJRDotLy9NaWNyb3NvZnQgQ29ycG9yYXRpb24vL091dGxvb2sg -MTYuME1JTUVESVIvL0VOClZFUlNJT046Mi4wCk1FVEhPRDpSRVFVRVNUCkJFR0lOOlZUSU1FWk9O -RQpUWklEOlVUQwpCRUdJTjpTVEFOREFSRApEVFNUQVJUOjE2MDExMDI4VDAyMDAwMApUWk9GRlNF -VEZST006LTAwMDAKVFpPRkZTRVRUTzotMDAwMApFTkQ6U1RBTkRBUkQKRU5EOlZUSU1FWk9ORQpC -RUdJTjpWRVZFTlQKQ0xBU1M6UFVCTElDCkNSRUFURUQ6MjAyMTA3MzBUMTQwMzA4WgpEVEVORDtU -WklEPVVUQzoyMDIxMDgwN1QwNTAwMDAKRFRTVEFNUDoyMDIxMDczMFQxNDAzMDhaCkRUU1RBUlQ7 -VFpJRD1VVEM6MjAyMTA4MDZUMjEwMDAwCkxBU1QtTU9ESUZJRUQ6MjAyMTA3MzBUMTQwMzA4WgpP -UkdBTklaRVI6RG9Ob3RSZXBseV9DaGFuZ2VAY29sdC5uZXQKTE9DQVRJT046Q29sdCBJbnRlcm5h -bCBNYWludGVuYW5jZQpQUklPUklUWTo1ClNFUVVFTkNFOjAKU1VNTUFSWTtMQU5HVUFHRT1lbi11 -czpVcGRhdGU6IENvbHQgU2VydmljZSBBZmZlY3RpbmcgTWFpbnRlbmFuY2UgTm90aWZpY2F0aW9u -IC0gQ1JRMS0xMjM0NTY3OCBbMDYvOC8yMDIxIDIxOjAwOjAwIEdNVCAtIDA3LzgvMjAyMSAwNTow -MDowMCBHTVRdIGZvciBBQ01FLCAxMjM0NTAwMApUUkFOU1A6T1BBUVVFClVJRDpNUzAwTkRFMU1q -YzVORGMzTlRNNE9ERTRNVEZKYlhCaFkzUmxaQT09ClgtQUxULURFU0M7Rk1UVFlQRT10ZXh0L2h0 -bWw6PGh0bWwgeG1sbnM6dj0ndXJuOnNjaGVtYXMtbWljcm9zb2Z0LWNvbTp2bWwnICB4bWxuczpv -PSd1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOm9mZmljZTpvZmZpY2UnIHhtbG5zOnc9J3Vybjpz -Y2hlbWFzLW1pYyByb3NvZnQtY29tOm9mZmljZTp3b3JkJyB4bWxuczptPSdodHRwOi8vc2NoZW1h -cy5taWNyb3NvZnQuY29tL29mZmljZS8yMDA0LzEyL29tbWwnIHhtbG5zPSdodHRwOi8vd3d3Lncz -Lm9yZy9UUi9SRUMtaHRtbDQwJz48aGVhZD48bWV0YSBuYW1lPVByb2dJZCBjb250ZW50PVdvcmQu -RG9jdW1lbnQ+PG1ldGEgbmFtZT1HZW5lcmF0b3IgY29udGVudD0nTWljcm9zb2Z0IFdvcmQgMTUn -PjxtZXRhIG5hbWU9T3JpZ2luYXRvciBjb250ZW50PSdNaWNyb3NvZnQgV29yZCAxNSc+PGxpbmsg -cmVsPUZpbGUtTGlzdCBocmVmPSdjaWQ6ZmlsZWxpc3QueG1sQDAxRDY0MEVBLjlDMjgyNTkwJz4g -PC9oZWFkPiA8Ym9keSBsYW5nPUVOLVVTIGxpbms9JyMwNTYzQzEnIHZsaW5rPScjOTU0RjcyJyBz -dHlsZT0ndGFiLWludGVydmFsOi41aW4nPjx0YWJsZSB3aWR0aD0iMTAwJSIgYm9yZGVyPSIwIiBj -ZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiPjx0cj48dGQgYWxpZ249ImNlbnRlciI+PHNw -YW4gc3R5bGU9ImZvbnQtc2l6ZToxMnB0O2ZvbnQtZmFtaWx5OidDYWxpYnJpJyxzYW5zLXNlcmlm -O2NvbG9yOiNDMDAwMDA7dGV4dC1hbGlnbjpjZW50ZXIiPjxzdHJvbmc+VGhpcyBpcyBhIHN5c3Rl -bSBnZW5lcmF0ZWQgY2FsZW5kYXIgaW52aXRlLiBBY2NlcHRpbmcgb3IgRGVjbGluaW5nIGlzIG1l -YW50IG9ubHkgZm9yIHRoZSBwdXJwb3NlIG9mIGEgQ2FsZW5kYXIgZGlzcGxheS4gIFRoZSB0aW1p -bmcgb2YgdGhlIGludml0ZSBpcyBzZXQgdG8gdGhlIHVzZXLigJlzIGxvY2FsIHN5c3RlbSB0aW1l -IGFuZCBzaG91bGQgbm90IHRvIGJlIGNvbmZ1c2VkIHdpdGggdGhlIHRleHQgZGlzcGxheWVkIHdp -dGhpCiBuIHRoZSBpbnZpdGUsIHdoaWNoIGlzIGluIEdNVC4gIFNob3VsZCB5b3UgcmVxdWlyZSBh -bnkgYXNzaXN0YW5jZSwgcGxlYXNlIGNvbnRhY3QgdXMgdmlhIHRoZSBDb2x0IE9ubGluZSBQb3J0 -YWwgPHNwYW4gc3R5bGU9ImNvbG9yOiNDMDAwMDAiPjxhIGhyZWY9Imh0dHA6Ly9vbmxpbmUuY29s -dC5uZXQvIiBzdHlsZT0iYm9yZGVyLWJvdHRvbTogMXB4IHNvbGlkICMwMDA7Ij48c3BhbiBsYW5n -PSJERSIgc3R5bGU9ImNvbG9yOiNDMDAwMDA7Ym9yZGVyLWJvdHRvbTogMXB4IHNvbGlkICMwMDA7 -Ij5odHRwOi8vb25saW5lLmNvbHQubmV0PC9zcGFuPjwvYT48L3NwYW4+IG9yIGFsdGVybmF0aXZl -bHkgbWFpbCB1cyBieSByZXBseWluZyB0byB0aGUgbm90aWZpY2F0aW9uPC9zcGFuPjwvdGQ+PC90 -cj48L3RhYmxlPjxwPjwvcD48cD48c3Ryb25nPjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7 -Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+PGltZyBib3Jk -ZXI9IjAiIGlkPSJfeDAwMDBfaTEwMjUiIHNyYz0iaHR0cHM6Ly9maWxlc3RvcmUueG1yMy5jb20v -NzYzMjUyLzExMTM1OTc5MC8xNDYyMjkvMTg1MDA0L2pvYnNldHRpbmdzL2RvY3MvbG9nb2xfMTQy -OTE0NTUwMjQ0Mi5wbmciIC8+PC9zcGFuPjwvc3Bhbj48L3N0cm9uZz48L3A+PHA+PC9wPjxwPjxz -cGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFy -aWFsLCBzYW5zLXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxzdHJvbmc+ -UGxhbm5lZCBPdXRhZ2UgTm90aWZpY2F0aW9uPC9zdHJvbmc+PC9zcGFuPjwvc3Bhbj48L3NwYW4+ -PC9wPjxwPjwvcD48cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAxMHB0OyI+PHNwYW4gc3R5bGU9 -ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsiPkRlYXIgU2lyIG9yIE1hZGFtLDwvc3Bh -bj48L3NwYW4+PC9wPjxwPjwvcD48cD48c3BhbiBzdHlsCiBlPSJmb250LXNpemU6IDEwcHQ7Ij48 -c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+SW4gb3JkZXImbmJz -cDt0byBtYWludGFpbiB0aGUgaGlnaGVzdCBsZXZlbHMgb2YgYXZhaWxhYmlsaXR5IGFuZCBzZXJ2 -aWNlIHRvIG91ciBjdXN0b21lcnMsIGl0IGlzIHNvbWV0aW1lcyBuZWNlc3NhcnkgZm9yIENvbHQm -bmJzcDthbmQgb3VyIHBhcnRuZXJzIHRvIHBlcmZvcm0gbmV0d29yayBtYWludGVuYW5jZS4mbmJz -cDsmbmJzcDtXZSBhcG9sb2dpemUgZm9yIGFueSByZXN1bHRpbmcgaW5jb252ZW5pZW5jZSBhbmQg -YXNzdXJlIHlvdSBvZiBvdXIgZWZmb3J0cyB0byBtaW5pbWlzZSBhbnkgc2VydmljZSBkaXNydXB0 -aW9uLiBUbyB2aWV3IHRoaXMsIGFuZCBhbGwgb3RoZXIgcGxhbm5lZCBtYWludGVuYW5jZSBvbiB5 -b3VyIHNlcnZpY2VzLCBvciBpZiB5b3UgcmVxdWlyZSBhbnkgYXNzaXN0YW5jZSwgcGxlYXNlIGNv -bnRhY3QgdXMgdmlhIHRoZSBDb2x0IE9ubGluZSBQb3J0YWwmbmJzcDs8L3NwYW4+PC9zcGFuPjxz -cGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2VyaWY7Ij48c3BhbiBzdHlsZT0i -Zm9udC1zaXplOiAxMXB0OyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxhIGhyZWY9 -Imh0dHA6Ly9vbmxpbmUuY29sdC5uZXQiPmh0dHA6Ly9vbmxpbmUuY29sdC5uZXQ8L2E+LiBBbHRl -cm5hdGl2ZWx5LCBlbWFpbCB1cyB0byZuYnNwOzwvc3Bhbj48c3BhbiBzdHlsZT0iZm9udC1zaXpl -OiAxMHB0OyI+PGEgaHJlZj0ibWFpbHRvOlBsYW5uZWRXb3Jrc0Bjb2x0Lm5ldCI+UGxhbm5lZFdv -cmtzQGNvbHQubmV0PC9hPiwmbmJzcDs8L3NwYW4+PC9zcGFuPjwvc3Bhbj48c3BhbiBzdHlsZT0i -Zm9udC1zaXplOiAxMHB0OyI+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1z -ZXJpZjsiPnF1b3RpbmcgdGhlIGZvbGxvd2luZyByZWZlcmVuY2UgbnVtYmVyJm5ic3A7PHN0cm9u -Zz5DUlExCiAtMTIzNDU2Nzg8L3N0cm9uZz4uIFBsZWFzZSByZXRhaW4gdGhpcyB1bmlxdWUgcmVm -ZXJlbmNlIGZvciB0aGUgbWFpbnRlbmFuY2UuPC9zcGFuPjwvc3Bhbj48L3A+PHA+PC9wPjxwPjxz -cGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFy -aWFsLCBzYW5zLXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxzdHJvbmc+ -PHU+UGxhbm5lZCBXb3JrcyBEZXRhaWxzOjwvdT48L3N0cm9uZz48L3NwYW4+PC9zcGFuPjwvc3Bh -bj48L3A+PHA+PC9wPjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij48c3BhbiBzdHls -ZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+PHN0cm9uZz5QbGFubmVkIFdvcmsg -KFBXKVJlZi46PC9zdHJvbmc+Jm5ic3A7Jm5ic3A7IENSUTEtMTIzNDU2Nzg8L3NwYW4+PC9zcGFu -PjxiciAvPjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij48c3BhbiBzdHlsZT0iZm9udC1m -YW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+PHN0cm9uZz5TdGFydCBEYXRlICZhbXA7IFRpbWU6 -PC9zdHJvbmc+Jm5ic3A7ICZuYnNwOyAmbmJzcDsgJm5ic3A7ICZuYnNwOyAmbmJzcDsgJm5ic3A7 -PC9zcGFuPjwvc3Bhbj4wNi84LzIwMjEgMjE6MDA6MDA8c3BhbiBzdHlsZT0iZm9udC1zaXplOiAx -MHB0OyI+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsiPihHTVQp -Kjwvc3Bhbj48L3NwYW4+PGJyIC8+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxzcGFu -IHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2VyaWY7Ij48c3Ryb25nPkVuZCBEYXRl -ICZhbXA7IFRpbWU6PC9zdHJvbmc+Jm5ic3A7ICZuYnNwOyAmbmJzcDsgJm5ic3A7ICZuYnNwOyAm -bmJzcDsgJm5ic3A7Jm5ic3A7PC9zcGFuPjwvc3Bhbj4wNy84LzIwMjEgMDU6MDA6MDA8c3BhbiBz -dHlsZT0iZm9udC1zaXplOiAxMHB0OyI+PHNwYW4gCiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFs -LCBzYW5zLXNlcmlmOyI+Jm5ic3A7KEdNVCkqPC9zcGFuPjwvc3Bhbj48YnIgLz48c3BhbiBzdHls -ZT0iZm9udC1zaXplOiAxMHB0OyI+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fu -cy1zZXJpZjsiPjxzdHJvbmc+T3V0YWdlIER1cmF0aW9uOjwvc3Ryb25nPiZuYnNwOyAmbmJzcDsg -Jm5ic3A7ICZuYnNwOyAmbmJzcDsgJm5ic3A7ICZuYnNwOyBObyBJbXBhY3Q8L3NwYW4+PC9zcGFu -PjwvcD48cD48L3A+PHA+PHN0cm9uZz48ZW0+PHNwYW4gc3R5bGU9ImJhY2tncm91bmQtaW1hZ2U6 -IGluaXRpYWw7IGJhY2tncm91bmQtcG9zaXRpb246IGluaXRpYWw7IGJhY2tncm91bmQtc2l6ZTog -aW5pdGlhbDsgYmFja2dyb3VuZC1yZXBlYXQ6IGluaXRpYWw7IGJhY2tncm91bmQtYXR0YWNobWVu -dDogaW5pdGlhbDsgYmFja2dyb3VuZC1vcmlnaW46IGluaXRpYWw7IGJhY2tncm91bmQtY2xpcDog -aW5pdGlhbDsiPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2VyaWY7Ij48 -c3BhbiBzdHlsZT0iZm9udC1zaXplOiA5cHQ7Ij4qVGltZSBab25lOjwvc3Bhbj48L3NwYW4+PC9z -cGFuPjwvZW0+PC9zdHJvbmc+PGJyIC8+PGVtPjxzcGFuIHN0eWxlPSJiYWNrZ3JvdW5kLWltYWdl -OiBpbml0aWFsOyBiYWNrZ3JvdW5kLXBvc2l0aW9uOiBpbml0aWFsOyBiYWNrZ3JvdW5kLXNpemU6 -IGluaXRpYWw7IGJhY2tncm91bmQtcmVwZWF0OiBpbml0aWFsOyBiYWNrZ3JvdW5kLWF0dGFjaG1l -bnQ6IGluaXRpYWw7IGJhY2tncm91bmQtb3JpZ2luOiBpbml0aWFsOyBiYWNrZ3JvdW5kLWNsaXA6 -IGluaXRpYWw7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+ -PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogOXB0OyI+Q2VudHJhbCBFdXJvcGVhbiBUaW1lIChDRVQp -Jm5ic3A7Jm5ic3A7PSBHTVQgKyAxIGhvdXI8L3NwYW4+PC9zcGFuPjwvc3Bhbj48L2VtPjxiciAv -PjxlCiBtPjxzcGFuIHN0eWxlPSJiYWNrZ3JvdW5kLWltYWdlOiBpbml0aWFsOyBiYWNrZ3JvdW5k -LXBvc2l0aW9uOiBpbml0aWFsOyBiYWNrZ3JvdW5kLXNpemU6IGluaXRpYWw7IGJhY2tncm91bmQt -cmVwZWF0OiBpbml0aWFsOyBiYWNrZ3JvdW5kLWF0dGFjaG1lbnQ6IGluaXRpYWw7IGJhY2tncm91 -bmQtb3JpZ2luOiBpbml0aWFsOyBiYWNrZ3JvdW5kLWNsaXA6IGluaXRpYWw7Ij48c3BhbiBzdHls -ZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6 -ZTogOXB0OyI+PGVtPkNlbnRyYWwgRXVyb3BlYW4gU3VtbWVyIFRpbWUgKENFU1QpID0gR01UICsg -MiZuYnNwO2hvdXJzPC9lbT48L3NwYW4+PC9zcGFuPjwvc3Bhbj48L2VtPjwvcD48cD48c3BhbiBz -dHlsZT0iZm9udC1zaXplOiAxMHB0OyI+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwg -c2Fucy1zZXJpZjsiPjxzdHJvbmc+SnVzdGlmaWNhdGlvbiBvZiB0aGUgd29yazo8L3N0cm9uZz4m -bmJzcDtLaW5kbHkgbm90ZSB0aGUgZGV2aWNlIG9uIHdoaWNoIHlvdXIgc2VydmljZSBpcyBjb21t -aXNzaW9uZWQsIHdpbGwgYmUgdXBncmFkZWQgYXQgYSBsYXRlciBzdGFnZS4gVGh1cyBwbGVhc2Ug -dGFrZSBub3RlIHRoYXQgdGhpcyBtYWludGVuYW5jZSBmb3IgeW91ciBzZXJ2aWNlLCBpbiB0aGUg -YXR0YWNoZWQgQ1NWIGZpbGUsIHN0YW5kcyBhcyBjYW5jZWxsZWQuIFRoZXJlIGFyZSBjdXJyZW50 -bHkgbm8gbmV3IGRhdGVzIGF2YWlsYWJsZS4gT25jZSB0aGUgbmV3IHRpbWluZ3MgaGF2ZSBiZWVu -IGZpbmFsaXNlZCwgQ29sdCB3aWxsIHJhaXNlIGEgbmV3IGNoYW5nZSB0aWNrZXQsIGFuZCBpbmZv -cm0geW91IGFib3V0IHRoZSB3b3JrLiBXZSB3b3VsZCBsaWtlIHRvIGFwb2xvZ2lzZSBmb3IgYW55 -IGluY29udmVuaWVuY2UgdGhpcyBtYXkgaGF2ZSByZXN1bHRlZCBpbjwvc3Bhbj48L3NwYW4+PC9w -PjxwPjwvcD48cD48c3BhbiBzdHlsZT0iZm9udC1zaXplCiA6IDEwcHQ7Ij48c3BhbiBzdHlsZT0i -Zm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTog -MTBwdDsiPjxzdHJvbmc+U2VydmljZTombmJzcDsmbmJzcDs8c3BhbiBzdHlsZT0iY29sb3I6IHJn -YigwLCA1MSwgMTUzKTsiPioqKlBsZWFzZSByZWZlciB0byB0aGUgYXR0YWNoZWQgQ1NWIGZpbGUg -Zm9yIHlvdXIgc2VydmljZShzKSBhZmZlY3RlZCBieSB0aGlzIG1haW50ZW5hbmNlKioqKjwvc3Bh -bj48L3N0cm9uZz48L3NwYW4+PC9zcGFuPjwvc3Bhbj48L3A+PHA+PC9wPjxwPjwvcD48cD48L3A+ -PHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxzcGFuIHN0eWxlPSJmb250LWZhbWls -eTogYXJpYWwsIHNhbnMtc2VyaWY7Ij48c3Ryb25nPlBMRUFTRSBOT1RFOjwvc3Ryb25nPiZuYnNw -OyZuYnNwO1RvIGVuYWJsZSB5b3UgdG8gcGxhbiBhcHByb3ByaWF0ZWx5IHRoZSBsaXN0IG9mIGlt -cGFjdGVkIHNlcnZpY2VzIGluY2x1ZGVzIHRob3NlIHRoYXQgaGF2ZSBiZWVuIGNvbXBsZXRlZCwg -YXMgd2VsbCBhcyB0aG9zZSBwZW5kaW5nIGNvbXBsZXRpb24uJm5ic3A7Jm5ic3A7SWYgdGhlIHBl -bmRpbmcgaW5zdGFsbGF0aW9uIGlzIGNvbXBsZXRlZCBwcmlvciB0byB0aGUgc2NoZWR1bGVkIGRh -dGUgZm9yIHRoZSBwbGFubmVkIG1haW50ZW5hbmNlIHRoZXNlIHNlcnZpY2VzIHdpbGwgYmUgaW1w -YWN0ZWQuPC9zcGFuPjwvc3Bhbj48L3A+PHA+PC9wPjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6 -IDEwcHQ7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+UGxl -YXNlIGFzc2lzdCBDb2x0IGJ5IGluZm9ybWluZyB1cyBhYm91dCBhbnkgY2hhbmdlcyB0byB5b3Vy -IGNvbnRhY3QgZGV0YWlscyZuYnNwOzwvc3Bhbj48L3NwYW4+PHNwYW4gc3R5bGU9ImZvbnQtZmFt -aWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij52 -aWEgdGhlCiAgQ29sdCBPbmxpbmUgUG9ydGFsJm5ic3A7PC9zcGFuPjwvc3Bhbj48c3BhbiBzdHls -ZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6 -ZTogMTFwdDsiPjxhIGhyZWY9Imh0dHA6Ly9vbmxpbmUuY29sdC5uZXQiPjxzcGFuIHN0eWxlPSJm -b250LXNpemU6IDEwcHQ7Ij5odHRwOi8vb25saW5lLmNvbHQubmV0PC9zcGFuPjwvYT48L3NwYW4+ -PC9zcGFuPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2VyaWY7Ij48c3Bh -biBzdHlsZT0iZm9udC1zaXplOiAxMHB0OyI+Jm5ic3A7b3IgYnkgcmVwbHlpbmcgdG8mbmJzcDs8 -L3NwYW4+PC9zcGFuPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2VyaWY7 -Ij48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAxMXB0OyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTog -MTBwdDsiPjxhIGhyZWY9Im1haWx0bzpQbGFubmVkV29ya3NAY29sdC5uZXQiPlBsYW5uZWRXb3Jr -c0Bjb2x0Lm5ldDwvYT4mbmJzcDs8L3NwYW4+PC9zcGFuPjwvc3Bhbj48c3BhbiBzdHlsZT0iZm9u -dC1zaXplOiAxMHB0OyI+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJp -ZjsiPnNvIHRoYXQgd2UgY2FuIGVuc3VyZSB0aGF0IGZ1dHVyZSBub3RpZmljYXRpb25zIHJlYWNo -IHRoZSBjb3JyZWN0IHBhcnRpZXMuPC9zcGFuPjwvc3Bhbj48YnIgLz48YnIgLz48c3BhbiBzdHls -ZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6 -ZTogMTBwdDsiPlNob3VsZCB5b3UgZXhwZXJpZW5jZSBhbnkgaXNzdWUgd2l0aCB5b3VyIHNlcnZp -Y2UgcG9zdCB0aGUgbWFpbnRlbmFuY2UgZW5kIHRpbWUsIHBsZWFzZSBjb250YWN0IENvbHQgVGVj -aG5pY2FsIHN1cHBvcnQgdmlhIHRoZSBDb2x0IE9ubGluZSBQb3J0YWwmbmJzcDs8L3NwYW4+PC9z -cGFuPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsCiAgc2Fucy1zZXJpZjsiPjxzcGFu -IHN0eWxlPSJmb250LXNpemU6IDExcHQ7Ij48YSBocmVmPSJodHRwOi8vb25saW5lLmNvbHQubmV0 -Ij48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAxMHB0OyI+aHR0cDovL29ubGluZS5jb2x0Lm5ldDwv -c3Bhbj48L2E+PC9zcGFuPjwvc3Bhbj48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBz -YW5zLXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPi4gQWx0ZXJuYXRpdmVs -eSwgdmlzaXQmbmJzcDs8YSBocmVmPSJodHRwOi8vd3d3LmNvbHQubmV0L3N1cHBvcnQiPmh0dHA6 -Ly93d3cuY29sdC5uZXQvc3VwcG9ydDwvYT4mbmJzcDt0byBjb250YWN0IHVzIGJ5IHBob25lLCBx -dW90aW5nIHlvdXIgc2VydmljZSBJRDwvc3Bhbj48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAxMXB0 -OyI+Ljwvc3Bhbj48YnIgLz48YnIgLz48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAxMHB0OyI+Rm9y -IG1vcmUgaW5mb3JtYXRpb24gYWJvdXQgYSBzZXJ2aWNlLCBwbGVhc2UgY29uc3VsdCZuYnNwOzwv -c3Bhbj48L3NwYW4+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsi -PjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij50aGUgQ29sdCBPbmxpbmUgUG9ydGFsJm5i -c3A7PC9zcGFuPjwvc3Bhbj48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNl -cmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTFwdDsiPjxhIGhyZWY9Imh0dHA6Ly9vbmxp -bmUuY29sdC5uZXQiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij5odHRwOi8vb25saW5l -LmNvbHQubmV0PC9zcGFuPjwvYT48L3NwYW4+PC9zcGFuPjwvcD48cD48L3A+PHA+PGJyIC8+PHN0 -cm9uZz48c3BhbiBzdHlsZT0iY29sb3I6IHJnYigxMDYsIDEwNiwgMTA2KTsiPjxzcGFuIHN0eWxl -PSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2VyaWY7Ij48c3BhbiBzdHlsZT0iZm9udC1zaXpl -OiAxMXB0OyI+CiBDb2x0IENoYW5nZSBtYW5hZ2VtZW50PC9zcGFuPjwvc3Bhbj48L3NwYW4+PC9z -dHJvbmc+PGJyIC8+PHN0cm9uZz48c3BhbiBzdHlsZT0iY29sb3I6IHJnYigxMDYsIDEwNiwgMTA2 -KTsiPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2VyaWY7Ij48c3BhbiBz -dHlsZT0iZm9udC1zaXplOiAxMXB0OyI+PHN0cm9uZz5Db2x0IFRlY2hub2xvZ3kgU2VydmljZXMg -LSBPcGVyYXRpb25zPC9zdHJvbmc+PC9zcGFuPjwvc3Bhbj48L3NwYW4+PC9zdHJvbmc+PGJyIC8+ -PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTog -YXJpYWwsIHNhbnMtc2VyaWY7Ij48aW1nIGJvcmRlcj0iMCIgaWQ9Il94MDAwMF9pMTAyNSIgc3Jj -PSJodHRwczovL2ZpbGVzdG9yZS54bXIzLmNvbS83NjMyNTIvMTExMzU5NzkwLzE0NjIyOS8xODUw -MDQvam9ic2V0dGluZ3MvZG9jcy9sb2dvbF8xNDI5MTQ1NTAyNDQyLnBuZyIgLz4mbmJzcDs8L3Nw -YW4+PC9zcGFuPjxiciAvPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2Vy -aWY7Ij48c3BhbiBzdHlsZT0iZm9udC1zaXplOiA5cHQ7Ij5Gb3Igc3VwcG9ydCBsb2cgaW50byBD -b2x0IE9ubGluZTombmJzcDs8c3BhbiBzdHlsZT0iY29sb3I6IHJnYigzMSwgNzMsIDEyNSk7Ij48 -YSBocmVmPSJodHRwczovL29ubGluZS5jb2x0Lm5ldCI+aHR0cHM6Ly9vbmxpbmUuY29sdC5uZXQ8 -L2E+PC9zcGFuPjwvc3Bhbj48L3NwYW4+PGJyIC8+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBh -cmlhbCwgc2Fucy1zZXJpZjsiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDlwdDsiPkZvciBvdGhl -ciBjb250YWN0IG9wdGlvbnM6Jm5ic3A7PHNwYW4gc3R5bGU9ImNvbG9yOiByZ2IoMzEsIDczLCAx -MjUpOyI+PGEgaHJlZj0iaHR0cHM6Ly93d3cuY29sdC5uZXQvc3VwcG9ydCI+aHR0cHM6Ly93d3cu -Y29sdC5uZXQvc3VwcG9ydDwvYT48L3NwYW4+PC9zcGFuPjwvc3BhCiBuPjwvcD48L2JvZHk+PC9o -dG1sPgpCRUdJTjpWQUxBUk0KVFJJR0dFUjotUFQxNU0KQUNUSU9OOkRJU1BMQVkKREVTQ1JJUFRJ -T046UmVtaW5kZXIKRU5EOlZBTEFSTQpFTkQ6VkVWRU5UCkVORDpWQ0FMRU5EQVI= ---000000000000a43c2305cb2b086c -Content-Type: text/csv; charset="UTF-16LE"; name="colt2.csv" -Content-Disposition: attachment; filename="colt2.csv" -Content-Transfer-Encoding: base64 -X-Attachment-Id: f_kt5sqfpu1 -Content-ID: - -//5PAEMATgAJAEwAZQBnAGEAbAAgAEMAdQBzAHQAbwBtAGUAcgAJAE8AcgBkAGUAcgAgAE4AdQBt -AGIAZQByAAkAQwBpAHIAYwB1AGkAdAAgAEkARAAJAEMAdQBzAHQAbwBtAGUAcgAgAFIAZQBmACAA -MQAJAEMAdQBzAHQAbwBtAGUAcgAgAFIAZQBmACAAMgAJAFMAZQByAHYAaQBjAGUACQBBACAAQwB1 -AHMAdABvAG0AZQByAAkAQQAgAEEAZABkAHIAZQBzAHMACQBBACAAUABvAHMAdABjAG8AZABlAAkA -QQAgAFQAbwB3AG4AIABDAGkAdAB5AAkAQgAgAEMAdQBzAHQAbwBtAGUAcgAJAEIAIABBAGQAZABy -AGUAcwBzAAkAQgAgAFAAbwBzAHQAYwBvAGQAZQAJAEIAIABUAG8AdwBuACAAQwBpAHQAeQAJAA0A -CgBPAEMATgA6ACAAMQAyADMANAA1ADYACQBBAEMATQBFACAARQBVAFIATwBQAEUAIABTAEEACQA5 -ADgANwA2ADUANAAzADIAMQAvADEAMgAzADQANQAtADYANwA4ADkACQBDAC0AMQAyADMANAA1ADYA -NwAJAAkAQgBlAGwAZwBpAHUAbQAgAC0AIABCAHIAdQBzAHMAZQBsAHMACQBJAFAAIABBAEMAQwBF -AFMAUwA6ACAAMQAgAEcAQgBQAFMAOwAgAFUATgBQAFIATwBUAEUAQwBUAEUARAA7ACAATgBPACAA -UgBFAFMASQBMAEkARQBOAEMARQA7ACAATgBPACAAQwBPAEwAVAAgAFIATwBVAFQARQBSADsAIABG -AEwAQQBUACAAUgBBAFQARQAgAEIASQBMAEwASQBOAEcAOwAgADMAUgBEACAAUABBAFIAVABZACAA -TABFAEEAUwBFAEQAIABMAEkATgBFADsAIABFAFQASABFAFIATgBFAFQAOwAgADEAMAAwADAAQgBB -AFMARQAtAFQAOwAgAFIASgA0ADUACQBBAEMATQBFACAARQBVAFIATwBQAEUAIABTAEEACQBNAEEA -SQBOACAAUwBUAFIARQBFAFQACQAxADIAMwA0AAkAQgBSAFUAUwBTAEUATABTAAkAQwBvAGwAdAAJ -AAkACQAJAA== +MIME-Version: 1.0 +Date: Sat, 4 Sep 2021 14:02:52 +0100 +Message-ID: +Subject: [ EXTERNAL ] Colt Service Affecting Maintenance Notification - CRQ1-12345678 [06/8/2021 22:00:00 GMT - 07/8/2021 06:00:00 GMT] for ACME, 12345000 +From: Maintenance Request +To: Maintenance Request +Content-Type: multipart/mixed; boundary="000000000000a43c2305cb2b086c" + +--000000000000a43c2305cb2b086c +Content-Type: multipart/alternative; boundary="000000000000a43c2005cb2b086a" + +--000000000000a43c2005cb2b086a +Content-Type: text/plain; charset="UTF-8" + +[ EXTERNAL ] + +*Planned Outage Notification* + +Dear Sir or Madam, + +In order to maintain the highest levels of availability and service to our +customers, it is sometimes necessary for Colt and our partners to perform +network maintenance. We apologize for any resulting inconvenience and +assure you of our efforts to minimise any service disruption. To view this, +and all other planned maintenance on your services, or if you require any +assistance, please contact us via the Colt Online Portal +http://online.colt.net. Alternatively, email us to +PlannedWorks@colt.net, quoting +the following reference number CRQ1-12345678. Please retain this unique +reference for the maintenance. + +*Planned Works Details:* + +*Planned Work (PW)Ref.:* CRQ1-12345678 +*Start Date & Time:* 06/8/2021 21:00:00(GMT)* +*End Date & Time:* 07/8/2021 05:00:00 (GMT)* +*Outage Duration:* No Impact + +**Time Zone:* +*Central European Time (CET) = GMT + 1 hour* +*Central European Summer Time (CEST) = GMT + 2 hours* + +*Justification of the work:* Kindly note the device on which your service +is commissioned, will be upgraded at a later stage. Thus please take note +that this maintenance for your service, in the attached CSV file, stands as +cancelled. There are currently no new dates available. Once the new timings +have been finalised, Colt will raise a new change ticket, and inform you +about the work. We would like to apologise for any inconvenience this may +have resulted in + +*Service: ***Please refer to the attached CSV file for your service(s) +affected by this maintenance***** + +*PLEASE NOTE:* To enable you to plan appropriately the list of impacted +services includes those that have been completed, as well as those pending +completion. If the pending installation is completed prior to the +scheduled date for the planned maintenance these services will be impacted. + +Please assist Colt by informing us about any changes to your contact +details via the Colt Online Portal http://online.colt.net or by replying to +PlannedWorks@colt.net so that we can ensure that future notifications reach +the correct parties. + +Should you experience any issue with your service post the maintenance end +time, please contact Colt Technical support via the Colt Online Portal +http://online.colt.net. Alternatively, visit http://www.colt.net/support to +contact us by phone, quoting your service ID. + +For more information about a service, please consult the Colt Online Portal +http://online.colt.net + + +*Colt Change management* +*Colt Technology Services - Operations* + +For support log into Colt Online: https://online.colt.net +For other contact options: https://www.colt.net/support +[Colt Disclaimer] This email is from an entity of the Colt group of +companies. Colt Group Holdings Limited, Colt House, 20 Great Eastern +Street, London, EC2A 3EH, United Kingdom, registered in England and Wales, +under company number 11530966. Corporate and contact information for our +entities can be found at https://www.colt.net/legal/colt-group-of-companies/. +Internet communications are not secure and Colt does not accept +responsibility for the accurate transmission of this message. Content of +this email or its attachments is not legally or contractually binding +unless expressly previously agreed in writing by Colt + +--000000000000a43c2005cb2b086a +Content-Type: text/html; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + +
[ EXTERNAL ]=C2=A0= +

Planned O= +utage Notification

Dear Sir or Madam,<= +/span>

In order=C2=A0to maintain the highest levels of availa= +bility and service to our customers, it is sometimes necessary for Colt=C2= +=A0and our partners to perform network maintenance.=C2=A0=C2=A0We apologize= + for any resulting inconvenience and assure you of our efforts to minimise = +any service disruption. To view this, and all other planned maintenance on = +your services, or if you require any assistance, please contact us via the = +Colt Online Portal=C2=A0http://online.colt.net. Alternatively, e= +mail us to=C2=A0PlannedWorks@colt.net,=C2=A0q= +uoting the following reference number CRQ1-12345678. Please retain this uni= +que reference for the maintenance.

Planned Works Details:

Planned Work (PW)Ref.:=C2=A0=C2=A0 CRQ1-123456= +78
Start Date & Time:=C2=A0 =C2=A0 = +=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A006/8/2021 21:00:00(GMT)*
End Date & Time:=C2=A0 =C2=A0 =C2=A0 = +=C2=A0 =C2=A0 =C2=A0 =C2=A0=C2=A007/8/2021 05:00:00=C2=A0(GM= +T)*
Outage Duration:=C2=A0 =C2=A0 =C2=A0= + =C2=A0 =C2=A0 =C2=A0 =C2=A0 No Impact

*Time Zone:
Central Eur= +opean Time (CET)=C2=A0=C2=A0=3D GMT + 1 hour
<= +em>Central European Summer Time (CEST) =3D GMT + 2=C2=A0hours

Justification of the work:=C2=A0Kindly note the device on which your service is commissioned, will= + be upgraded at a later stage. Thus please take note that this maintenance = +for your service, in the attached CSV file, stands as cancelled. There are = +currently no new dates available. Once the new timings have been finalised,= + Colt will raise a new change ticket, and inform you about the work. We wou= +ld like to apologise for any inconvenience this may have resulted in= +

Service:=C2=A0=C2=A0<= +span style=3D"color:rgb(0,51,153)">***Please refer to the attached CSV file= + for your service(s) affected by this maintenance****

PLEASE NOTE:=C2=A0=C2=A0To enable y= +ou to plan appropriately the list of impacted services includes those that = +have been completed, as well as those pending completion.=C2=A0=C2=A0If the= + pending installation is completed prior to the scheduled date for the plan= +ned maintenance these services will be impacted.

Pleas= +e assist Colt by informing us about any changes to your contact details=C2= +=A0via the Colt Online Portal=C2=A0http://online.c= +olt.net=C2=A0or by replying to=C2=A0P= +lannedWorks@colt.net=C2=A0so that we can ensure t= +hat future notifications reach the correct parties.

S= +hould you experience any issue with your service post the maintenance end t= +ime, please contact Colt Technical support via the Colt Online Portal=C2=A0= +
http://online.colt.net. Alternatively, vis= +it=C2=A0http://www.colt.net/support= +=C2=A0to contact us by phone, quoting your service ID.

For more= + information about a service, please consult=C2=A0
the Colt O= +nline Portal=C2=A0http://online.colt.net


Colt Change managem= +ent
Colt Technology Services - Operations
=C2=A0
For support log into Colt = +Online:=C2=A0https://online.colt.net
For other c= +ontact options:=C2=A0https://www.colt.net/support

[Colt Disclaimer] This email is from an entity of the Colt group of c= +ompanies. Colt Group Holdings Limited, Colt House, 20 Great Eastern Street,= + London, EC2A 3EH, United Kingdom, registered in England and Wales, under c= +ompany number 11530966. Corporate and contact information for our entities = +can be found at=C2=A0https://www.co= +lt.net/legal/colt-group-of-companies/. Internet communications are not = +secure and Colt does not accept responsibility for the accurate transmissio= +n of this message. Content of this email or its attachments is not legally = +or contractually binding unless expressly previously agreed in writing by C= +olt
+ +--000000000000a43c2005cb2b086a-- +--000000000000a43c2305cb2b086c +Content-Type: text/calendar; charset="UTF-8"; name="colt1.ics" +Content-Disposition: attachment; filename="colt1.ics" +Content-Transfer-Encoding: base64 +X-Attachment-Id: f_kt5sq7450 +Content-ID: + +QkVHSU46VkNBTEVOREFSClBST0RJRDotLy9NaWNyb3NvZnQgQ29ycG9yYXRpb24vL091dGxvb2sg +MTYuME1JTUVESVIvL0VOClZFUlNJT046Mi4wCk1FVEhPRDpSRVFVRVNUCkJFR0lOOlZUSU1FWk9O +RQpUWklEOlVUQwpCRUdJTjpTVEFOREFSRApEVFNUQVJUOjE2MDExMDI4VDAyMDAwMApUWk9GRlNF +VEZST006LTAwMDAKVFpPRkZTRVRUTzotMDAwMApFTkQ6U1RBTkRBUkQKRU5EOlZUSU1FWk9ORQpC +RUdJTjpWRVZFTlQKQ0xBU1M6UFVCTElDCkNSRUFURUQ6MjAyMTA3MzBUMTQwMzA4WgpEVEVORDtU +WklEPVVUQzoyMDIxMDgwN1QwNTAwMDAKRFRTVEFNUDoyMDIxMDczMFQxNDAzMDhaCkRUU1RBUlQ7 +VFpJRD1VVEM6MjAyMTA4MDZUMjEwMDAwCkxBU1QtTU9ESUZJRUQ6MjAyMTA3MzBUMTQwMzA4WgpP +UkdBTklaRVI6RG9Ob3RSZXBseV9DaGFuZ2VAY29sdC5uZXQKTE9DQVRJT046Q29sdCBJbnRlcm5h +bCBNYWludGVuYW5jZQpQUklPUklUWTo1ClNFUVVFTkNFOjAKU1VNTUFSWTtMQU5HVUFHRT1lbi11 +czpVcGRhdGU6IENvbHQgU2VydmljZSBBZmZlY3RpbmcgTWFpbnRlbmFuY2UgTm90aWZpY2F0aW9u +IC0gQ1JRMS0xMjM0NTY3OCBbMDYvOC8yMDIxIDIxOjAwOjAwIEdNVCAtIDA3LzgvMjAyMSAwNTow +MDowMCBHTVRdIGZvciBBQ01FLCAxMjM0NTAwMApUUkFOU1A6T1BBUVVFClVJRDpNUzAwTkRFMU1q +YzVORGMzTlRNNE9ERTRNVEZKYlhCaFkzUmxaQT09ClgtQUxULURFU0M7Rk1UVFlQRT10ZXh0L2h0 +bWw6PGh0bWwgeG1sbnM6dj0ndXJuOnNjaGVtYXMtbWljcm9zb2Z0LWNvbTp2bWwnICB4bWxuczpv +PSd1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOm9mZmljZTpvZmZpY2UnIHhtbG5zOnc9J3Vybjpz +Y2hlbWFzLW1pYyByb3NvZnQtY29tOm9mZmljZTp3b3JkJyB4bWxuczptPSdodHRwOi8vc2NoZW1h +cy5taWNyb3NvZnQuY29tL29mZmljZS8yMDA0LzEyL29tbWwnIHhtbG5zPSdodHRwOi8vd3d3Lncz +Lm9yZy9UUi9SRUMtaHRtbDQwJz48aGVhZD48bWV0YSBuYW1lPVByb2dJZCBjb250ZW50PVdvcmQu +RG9jdW1lbnQ+PG1ldGEgbmFtZT1HZW5lcmF0b3IgY29udGVudD0nTWljcm9zb2Z0IFdvcmQgMTUn +PjxtZXRhIG5hbWU9T3JpZ2luYXRvciBjb250ZW50PSdNaWNyb3NvZnQgV29yZCAxNSc+PGxpbmsg +cmVsPUZpbGUtTGlzdCBocmVmPSdjaWQ6ZmlsZWxpc3QueG1sQDAxRDY0MEVBLjlDMjgyNTkwJz4g +PC9oZWFkPiA8Ym9keSBsYW5nPUVOLVVTIGxpbms9JyMwNTYzQzEnIHZsaW5rPScjOTU0RjcyJyBz +dHlsZT0ndGFiLWludGVydmFsOi41aW4nPjx0YWJsZSB3aWR0aD0iMTAwJSIgYm9yZGVyPSIwIiBj +ZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiPjx0cj48dGQgYWxpZ249ImNlbnRlciI+PHNw +YW4gc3R5bGU9ImZvbnQtc2l6ZToxMnB0O2ZvbnQtZmFtaWx5OidDYWxpYnJpJyxzYW5zLXNlcmlm +O2NvbG9yOiNDMDAwMDA7dGV4dC1hbGlnbjpjZW50ZXIiPjxzdHJvbmc+VGhpcyBpcyBhIHN5c3Rl +bSBnZW5lcmF0ZWQgY2FsZW5kYXIgaW52aXRlLiBBY2NlcHRpbmcgb3IgRGVjbGluaW5nIGlzIG1l +YW50IG9ubHkgZm9yIHRoZSBwdXJwb3NlIG9mIGEgQ2FsZW5kYXIgZGlzcGxheS4gIFRoZSB0aW1p +bmcgb2YgdGhlIGludml0ZSBpcyBzZXQgdG8gdGhlIHVzZXLigJlzIGxvY2FsIHN5c3RlbSB0aW1l +IGFuZCBzaG91bGQgbm90IHRvIGJlIGNvbmZ1c2VkIHdpdGggdGhlIHRleHQgZGlzcGxheWVkIHdp +dGhpCiBuIHRoZSBpbnZpdGUsIHdoaWNoIGlzIGluIEdNVC4gIFNob3VsZCB5b3UgcmVxdWlyZSBh +bnkgYXNzaXN0YW5jZSwgcGxlYXNlIGNvbnRhY3QgdXMgdmlhIHRoZSBDb2x0IE9ubGluZSBQb3J0 +YWwgPHNwYW4gc3R5bGU9ImNvbG9yOiNDMDAwMDAiPjxhIGhyZWY9Imh0dHA6Ly9vbmxpbmUuY29s +dC5uZXQvIiBzdHlsZT0iYm9yZGVyLWJvdHRvbTogMXB4IHNvbGlkICMwMDA7Ij48c3BhbiBsYW5n +PSJERSIgc3R5bGU9ImNvbG9yOiNDMDAwMDA7Ym9yZGVyLWJvdHRvbTogMXB4IHNvbGlkICMwMDA7 +Ij5odHRwOi8vb25saW5lLmNvbHQubmV0PC9zcGFuPjwvYT48L3NwYW4+IG9yIGFsdGVybmF0aXZl +bHkgbWFpbCB1cyBieSByZXBseWluZyB0byB0aGUgbm90aWZpY2F0aW9uPC9zcGFuPjwvdGQ+PC90 +cj48L3RhYmxlPjxwPjwvcD48cD48c3Ryb25nPjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7 +Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+PGltZyBib3Jk +ZXI9IjAiIGlkPSJfeDAwMDBfaTEwMjUiIHNyYz0iaHR0cHM6Ly9maWxlc3RvcmUueG1yMy5jb20v +NzYzMjUyLzExMTM1OTc5MC8xNDYyMjkvMTg1MDA0L2pvYnNldHRpbmdzL2RvY3MvbG9nb2xfMTQy +OTE0NTUwMjQ0Mi5wbmciIC8+PC9zcGFuPjwvc3Bhbj48L3N0cm9uZz48L3A+PHA+PC9wPjxwPjxz +cGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFy +aWFsLCBzYW5zLXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxzdHJvbmc+ +UGxhbm5lZCBPdXRhZ2UgTm90aWZpY2F0aW9uPC9zdHJvbmc+PC9zcGFuPjwvc3Bhbj48L3NwYW4+ +PC9wPjxwPjwvcD48cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAxMHB0OyI+PHNwYW4gc3R5bGU9 +ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsiPkRlYXIgU2lyIG9yIE1hZGFtLDwvc3Bh +bj48L3NwYW4+PC9wPjxwPjwvcD48cD48c3BhbiBzdHlsCiBlPSJmb250LXNpemU6IDEwcHQ7Ij48 +c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+SW4gb3JkZXImbmJz +cDt0byBtYWludGFpbiB0aGUgaGlnaGVzdCBsZXZlbHMgb2YgYXZhaWxhYmlsaXR5IGFuZCBzZXJ2 +aWNlIHRvIG91ciBjdXN0b21lcnMsIGl0IGlzIHNvbWV0aW1lcyBuZWNlc3NhcnkgZm9yIENvbHQm +bmJzcDthbmQgb3VyIHBhcnRuZXJzIHRvIHBlcmZvcm0gbmV0d29yayBtYWludGVuYW5jZS4mbmJz +cDsmbmJzcDtXZSBhcG9sb2dpemUgZm9yIGFueSByZXN1bHRpbmcgaW5jb252ZW5pZW5jZSBhbmQg +YXNzdXJlIHlvdSBvZiBvdXIgZWZmb3J0cyB0byBtaW5pbWlzZSBhbnkgc2VydmljZSBkaXNydXB0 +aW9uLiBUbyB2aWV3IHRoaXMsIGFuZCBhbGwgb3RoZXIgcGxhbm5lZCBtYWludGVuYW5jZSBvbiB5 +b3VyIHNlcnZpY2VzLCBvciBpZiB5b3UgcmVxdWlyZSBhbnkgYXNzaXN0YW5jZSwgcGxlYXNlIGNv +bnRhY3QgdXMgdmlhIHRoZSBDb2x0IE9ubGluZSBQb3J0YWwmbmJzcDs8L3NwYW4+PC9zcGFuPjxz +cGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2VyaWY7Ij48c3BhbiBzdHlsZT0i +Zm9udC1zaXplOiAxMXB0OyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxhIGhyZWY9 +Imh0dHA6Ly9vbmxpbmUuY29sdC5uZXQiPmh0dHA6Ly9vbmxpbmUuY29sdC5uZXQ8L2E+LiBBbHRl +cm5hdGl2ZWx5LCBlbWFpbCB1cyB0byZuYnNwOzwvc3Bhbj48c3BhbiBzdHlsZT0iZm9udC1zaXpl +OiAxMHB0OyI+PGEgaHJlZj0ibWFpbHRvOlBsYW5uZWRXb3Jrc0Bjb2x0Lm5ldCI+UGxhbm5lZFdv +cmtzQGNvbHQubmV0PC9hPiwmbmJzcDs8L3NwYW4+PC9zcGFuPjwvc3Bhbj48c3BhbiBzdHlsZT0i +Zm9udC1zaXplOiAxMHB0OyI+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1z +ZXJpZjsiPnF1b3RpbmcgdGhlIGZvbGxvd2luZyByZWZlcmVuY2UgbnVtYmVyJm5ic3A7PHN0cm9u +Zz5DUlExCiAtMTIzNDU2Nzg8L3N0cm9uZz4uIFBsZWFzZSByZXRhaW4gdGhpcyB1bmlxdWUgcmVm +ZXJlbmNlIGZvciB0aGUgbWFpbnRlbmFuY2UuPC9zcGFuPjwvc3Bhbj48L3A+PHA+PC9wPjxwPjxz +cGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFy +aWFsLCBzYW5zLXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxzdHJvbmc+ +PHU+UGxhbm5lZCBXb3JrcyBEZXRhaWxzOjwvdT48L3N0cm9uZz48L3NwYW4+PC9zcGFuPjwvc3Bh +bj48L3A+PHA+PC9wPjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij48c3BhbiBzdHls +ZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+PHN0cm9uZz5QbGFubmVkIFdvcmsg +KFBXKVJlZi46PC9zdHJvbmc+Jm5ic3A7Jm5ic3A7IENSUTEtMTIzNDU2Nzg8L3NwYW4+PC9zcGFu +PjxiciAvPjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij48c3BhbiBzdHlsZT0iZm9udC1m +YW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+PHN0cm9uZz5TdGFydCBEYXRlICZhbXA7IFRpbWU6 +PC9zdHJvbmc+Jm5ic3A7ICZuYnNwOyAmbmJzcDsgJm5ic3A7ICZuYnNwOyAmbmJzcDsgJm5ic3A7 +PC9zcGFuPjwvc3Bhbj4wNi84LzIwMjEgMjE6MDA6MDA8c3BhbiBzdHlsZT0iZm9udC1zaXplOiAx +MHB0OyI+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsiPihHTVQp +Kjwvc3Bhbj48L3NwYW4+PGJyIC8+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxzcGFu +IHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2VyaWY7Ij48c3Ryb25nPkVuZCBEYXRl +ICZhbXA7IFRpbWU6PC9zdHJvbmc+Jm5ic3A7ICZuYnNwOyAmbmJzcDsgJm5ic3A7ICZuYnNwOyAm +bmJzcDsgJm5ic3A7Jm5ic3A7PC9zcGFuPjwvc3Bhbj4wNy84LzIwMjEgMDU6MDA6MDA8c3BhbiBz +dHlsZT0iZm9udC1zaXplOiAxMHB0OyI+PHNwYW4gCiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFs +LCBzYW5zLXNlcmlmOyI+Jm5ic3A7KEdNVCkqPC9zcGFuPjwvc3Bhbj48YnIgLz48c3BhbiBzdHls +ZT0iZm9udC1zaXplOiAxMHB0OyI+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fu +cy1zZXJpZjsiPjxzdHJvbmc+T3V0YWdlIER1cmF0aW9uOjwvc3Ryb25nPiZuYnNwOyAmbmJzcDsg +Jm5ic3A7ICZuYnNwOyAmbmJzcDsgJm5ic3A7ICZuYnNwOyBObyBJbXBhY3Q8L3NwYW4+PC9zcGFu +PjwvcD48cD48L3A+PHA+PHN0cm9uZz48ZW0+PHNwYW4gc3R5bGU9ImJhY2tncm91bmQtaW1hZ2U6 +IGluaXRpYWw7IGJhY2tncm91bmQtcG9zaXRpb246IGluaXRpYWw7IGJhY2tncm91bmQtc2l6ZTog +aW5pdGlhbDsgYmFja2dyb3VuZC1yZXBlYXQ6IGluaXRpYWw7IGJhY2tncm91bmQtYXR0YWNobWVu +dDogaW5pdGlhbDsgYmFja2dyb3VuZC1vcmlnaW46IGluaXRpYWw7IGJhY2tncm91bmQtY2xpcDog +aW5pdGlhbDsiPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2VyaWY7Ij48 +c3BhbiBzdHlsZT0iZm9udC1zaXplOiA5cHQ7Ij4qVGltZSBab25lOjwvc3Bhbj48L3NwYW4+PC9z +cGFuPjwvZW0+PC9zdHJvbmc+PGJyIC8+PGVtPjxzcGFuIHN0eWxlPSJiYWNrZ3JvdW5kLWltYWdl +OiBpbml0aWFsOyBiYWNrZ3JvdW5kLXBvc2l0aW9uOiBpbml0aWFsOyBiYWNrZ3JvdW5kLXNpemU6 +IGluaXRpYWw7IGJhY2tncm91bmQtcmVwZWF0OiBpbml0aWFsOyBiYWNrZ3JvdW5kLWF0dGFjaG1l +bnQ6IGluaXRpYWw7IGJhY2tncm91bmQtb3JpZ2luOiBpbml0aWFsOyBiYWNrZ3JvdW5kLWNsaXA6 +IGluaXRpYWw7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+ +PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogOXB0OyI+Q2VudHJhbCBFdXJvcGVhbiBUaW1lIChDRVQp +Jm5ic3A7Jm5ic3A7PSBHTVQgKyAxIGhvdXI8L3NwYW4+PC9zcGFuPjwvc3Bhbj48L2VtPjxiciAv +PjxlCiBtPjxzcGFuIHN0eWxlPSJiYWNrZ3JvdW5kLWltYWdlOiBpbml0aWFsOyBiYWNrZ3JvdW5k +LXBvc2l0aW9uOiBpbml0aWFsOyBiYWNrZ3JvdW5kLXNpemU6IGluaXRpYWw7IGJhY2tncm91bmQt +cmVwZWF0OiBpbml0aWFsOyBiYWNrZ3JvdW5kLWF0dGFjaG1lbnQ6IGluaXRpYWw7IGJhY2tncm91 +bmQtb3JpZ2luOiBpbml0aWFsOyBiYWNrZ3JvdW5kLWNsaXA6IGluaXRpYWw7Ij48c3BhbiBzdHls +ZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6 +ZTogOXB0OyI+PGVtPkNlbnRyYWwgRXVyb3BlYW4gU3VtbWVyIFRpbWUgKENFU1QpID0gR01UICsg +MiZuYnNwO2hvdXJzPC9lbT48L3NwYW4+PC9zcGFuPjwvc3Bhbj48L2VtPjwvcD48cD48c3BhbiBz +dHlsZT0iZm9udC1zaXplOiAxMHB0OyI+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwg +c2Fucy1zZXJpZjsiPjxzdHJvbmc+SnVzdGlmaWNhdGlvbiBvZiB0aGUgd29yazo8L3N0cm9uZz4m +bmJzcDtLaW5kbHkgbm90ZSB0aGUgZGV2aWNlIG9uIHdoaWNoIHlvdXIgc2VydmljZSBpcyBjb21t +aXNzaW9uZWQsIHdpbGwgYmUgdXBncmFkZWQgYXQgYSBsYXRlciBzdGFnZS4gVGh1cyBwbGVhc2Ug +dGFrZSBub3RlIHRoYXQgdGhpcyBtYWludGVuYW5jZSBmb3IgeW91ciBzZXJ2aWNlLCBpbiB0aGUg +YXR0YWNoZWQgQ1NWIGZpbGUsIHN0YW5kcyBhcyBjYW5jZWxsZWQuIFRoZXJlIGFyZSBjdXJyZW50 +bHkgbm8gbmV3IGRhdGVzIGF2YWlsYWJsZS4gT25jZSB0aGUgbmV3IHRpbWluZ3MgaGF2ZSBiZWVu +IGZpbmFsaXNlZCwgQ29sdCB3aWxsIHJhaXNlIGEgbmV3IGNoYW5nZSB0aWNrZXQsIGFuZCBpbmZv +cm0geW91IGFib3V0IHRoZSB3b3JrLiBXZSB3b3VsZCBsaWtlIHRvIGFwb2xvZ2lzZSBmb3IgYW55 +IGluY29udmVuaWVuY2UgdGhpcyBtYXkgaGF2ZSByZXN1bHRlZCBpbjwvc3Bhbj48L3NwYW4+PC9w +PjxwPjwvcD48cD48c3BhbiBzdHlsZT0iZm9udC1zaXplCiA6IDEwcHQ7Ij48c3BhbiBzdHlsZT0i +Zm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTog +MTBwdDsiPjxzdHJvbmc+U2VydmljZTombmJzcDsmbmJzcDs8c3BhbiBzdHlsZT0iY29sb3I6IHJn +YigwLCA1MSwgMTUzKTsiPioqKlBsZWFzZSByZWZlciB0byB0aGUgYXR0YWNoZWQgQ1NWIGZpbGUg +Zm9yIHlvdXIgc2VydmljZShzKSBhZmZlY3RlZCBieSB0aGlzIG1haW50ZW5hbmNlKioqKjwvc3Bh +bj48L3N0cm9uZz48L3NwYW4+PC9zcGFuPjwvc3Bhbj48L3A+PHA+PC9wPjxwPjwvcD48cD48L3A+ +PHA+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxzcGFuIHN0eWxlPSJmb250LWZhbWls +eTogYXJpYWwsIHNhbnMtc2VyaWY7Ij48c3Ryb25nPlBMRUFTRSBOT1RFOjwvc3Ryb25nPiZuYnNw +OyZuYnNwO1RvIGVuYWJsZSB5b3UgdG8gcGxhbiBhcHByb3ByaWF0ZWx5IHRoZSBsaXN0IG9mIGlt +cGFjdGVkIHNlcnZpY2VzIGluY2x1ZGVzIHRob3NlIHRoYXQgaGF2ZSBiZWVuIGNvbXBsZXRlZCwg +YXMgd2VsbCBhcyB0aG9zZSBwZW5kaW5nIGNvbXBsZXRpb24uJm5ic3A7Jm5ic3A7SWYgdGhlIHBl +bmRpbmcgaW5zdGFsbGF0aW9uIGlzIGNvbXBsZXRlZCBwcmlvciB0byB0aGUgc2NoZWR1bGVkIGRh +dGUgZm9yIHRoZSBwbGFubmVkIG1haW50ZW5hbmNlIHRoZXNlIHNlcnZpY2VzIHdpbGwgYmUgaW1w +YWN0ZWQuPC9zcGFuPjwvc3Bhbj48L3A+PHA+PC9wPjxwPjxzcGFuIHN0eWxlPSJmb250LXNpemU6 +IDEwcHQ7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+UGxl +YXNlIGFzc2lzdCBDb2x0IGJ5IGluZm9ybWluZyB1cyBhYm91dCBhbnkgY2hhbmdlcyB0byB5b3Vy +IGNvbnRhY3QgZGV0YWlscyZuYnNwOzwvc3Bhbj48L3NwYW4+PHNwYW4gc3R5bGU9ImZvbnQtZmFt +aWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij52 +aWEgdGhlCiAgQ29sdCBPbmxpbmUgUG9ydGFsJm5ic3A7PC9zcGFuPjwvc3Bhbj48c3BhbiBzdHls +ZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6 +ZTogMTFwdDsiPjxhIGhyZWY9Imh0dHA6Ly9vbmxpbmUuY29sdC5uZXQiPjxzcGFuIHN0eWxlPSJm +b250LXNpemU6IDEwcHQ7Ij5odHRwOi8vb25saW5lLmNvbHQubmV0PC9zcGFuPjwvYT48L3NwYW4+ +PC9zcGFuPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2VyaWY7Ij48c3Bh +biBzdHlsZT0iZm9udC1zaXplOiAxMHB0OyI+Jm5ic3A7b3IgYnkgcmVwbHlpbmcgdG8mbmJzcDs8 +L3NwYW4+PC9zcGFuPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2VyaWY7 +Ij48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAxMXB0OyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTog +MTBwdDsiPjxhIGhyZWY9Im1haWx0bzpQbGFubmVkV29ya3NAY29sdC5uZXQiPlBsYW5uZWRXb3Jr +c0Bjb2x0Lm5ldDwvYT4mbmJzcDs8L3NwYW4+PC9zcGFuPjwvc3Bhbj48c3BhbiBzdHlsZT0iZm9u +dC1zaXplOiAxMHB0OyI+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJp +ZjsiPnNvIHRoYXQgd2UgY2FuIGVuc3VyZSB0aGF0IGZ1dHVyZSBub3RpZmljYXRpb25zIHJlYWNo +IHRoZSBjb3JyZWN0IHBhcnRpZXMuPC9zcGFuPjwvc3Bhbj48YnIgLz48YnIgLz48c3BhbiBzdHls +ZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6 +ZTogMTBwdDsiPlNob3VsZCB5b3UgZXhwZXJpZW5jZSBhbnkgaXNzdWUgd2l0aCB5b3VyIHNlcnZp +Y2UgcG9zdCB0aGUgbWFpbnRlbmFuY2UgZW5kIHRpbWUsIHBsZWFzZSBjb250YWN0IENvbHQgVGVj +aG5pY2FsIHN1cHBvcnQgdmlhIHRoZSBDb2x0IE9ubGluZSBQb3J0YWwmbmJzcDs8L3NwYW4+PC9z +cGFuPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsCiAgc2Fucy1zZXJpZjsiPjxzcGFu +IHN0eWxlPSJmb250LXNpemU6IDExcHQ7Ij48YSBocmVmPSJodHRwOi8vb25saW5lLmNvbHQubmV0 +Ij48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAxMHB0OyI+aHR0cDovL29ubGluZS5jb2x0Lm5ldDwv +c3Bhbj48L2E+PC9zcGFuPjwvc3Bhbj48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBz +YW5zLXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPi4gQWx0ZXJuYXRpdmVs +eSwgdmlzaXQmbmJzcDs8YSBocmVmPSJodHRwOi8vd3d3LmNvbHQubmV0L3N1cHBvcnQiPmh0dHA6 +Ly93d3cuY29sdC5uZXQvc3VwcG9ydDwvYT4mbmJzcDt0byBjb250YWN0IHVzIGJ5IHBob25lLCBx +dW90aW5nIHlvdXIgc2VydmljZSBJRDwvc3Bhbj48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAxMXB0 +OyI+Ljwvc3Bhbj48YnIgLz48YnIgLz48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAxMHB0OyI+Rm9y +IG1vcmUgaW5mb3JtYXRpb24gYWJvdXQgYSBzZXJ2aWNlLCBwbGVhc2UgY29uc3VsdCZuYnNwOzwv +c3Bhbj48L3NwYW4+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsi +PjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij50aGUgQ29sdCBPbmxpbmUgUG9ydGFsJm5i +c3A7PC9zcGFuPjwvc3Bhbj48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNl +cmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTFwdDsiPjxhIGhyZWY9Imh0dHA6Ly9vbmxp +bmUuY29sdC5uZXQiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij5odHRwOi8vb25saW5l +LmNvbHQubmV0PC9zcGFuPjwvYT48L3NwYW4+PC9zcGFuPjwvcD48cD48L3A+PHA+PGJyIC8+PHN0 +cm9uZz48c3BhbiBzdHlsZT0iY29sb3I6IHJnYigxMDYsIDEwNiwgMTA2KTsiPjxzcGFuIHN0eWxl +PSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2VyaWY7Ij48c3BhbiBzdHlsZT0iZm9udC1zaXpl +OiAxMXB0OyI+CiBDb2x0IENoYW5nZSBtYW5hZ2VtZW50PC9zcGFuPjwvc3Bhbj48L3NwYW4+PC9z +dHJvbmc+PGJyIC8+PHN0cm9uZz48c3BhbiBzdHlsZT0iY29sb3I6IHJnYigxMDYsIDEwNiwgMTA2 +KTsiPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2VyaWY7Ij48c3BhbiBz +dHlsZT0iZm9udC1zaXplOiAxMXB0OyI+PHN0cm9uZz5Db2x0IFRlY2hub2xvZ3kgU2VydmljZXMg +LSBPcGVyYXRpb25zPC9zdHJvbmc+PC9zcGFuPjwvc3Bhbj48L3NwYW4+PC9zdHJvbmc+PGJyIC8+ +PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTog +YXJpYWwsIHNhbnMtc2VyaWY7Ij48aW1nIGJvcmRlcj0iMCIgaWQ9Il94MDAwMF9pMTAyNSIgc3Jj +PSJodHRwczovL2ZpbGVzdG9yZS54bXIzLmNvbS83NjMyNTIvMTExMzU5NzkwLzE0NjIyOS8xODUw +MDQvam9ic2V0dGluZ3MvZG9jcy9sb2dvbF8xNDI5MTQ1NTAyNDQyLnBuZyIgLz4mbmJzcDs8L3Nw +YW4+PC9zcGFuPjxiciAvPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2Vy +aWY7Ij48c3BhbiBzdHlsZT0iZm9udC1zaXplOiA5cHQ7Ij5Gb3Igc3VwcG9ydCBsb2cgaW50byBD +b2x0IE9ubGluZTombmJzcDs8c3BhbiBzdHlsZT0iY29sb3I6IHJnYigzMSwgNzMsIDEyNSk7Ij48 +YSBocmVmPSJodHRwczovL29ubGluZS5jb2x0Lm5ldCI+aHR0cHM6Ly9vbmxpbmUuY29sdC5uZXQ8 +L2E+PC9zcGFuPjwvc3Bhbj48L3NwYW4+PGJyIC8+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBh +cmlhbCwgc2Fucy1zZXJpZjsiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDlwdDsiPkZvciBvdGhl +ciBjb250YWN0IG9wdGlvbnM6Jm5ic3A7PHNwYW4gc3R5bGU9ImNvbG9yOiByZ2IoMzEsIDczLCAx +MjUpOyI+PGEgaHJlZj0iaHR0cHM6Ly93d3cuY29sdC5uZXQvc3VwcG9ydCI+aHR0cHM6Ly93d3cu +Y29sdC5uZXQvc3VwcG9ydDwvYT48L3NwYW4+PC9zcGFuPjwvc3BhCiBuPjwvcD48L2JvZHk+PC9o +dG1sPgpCRUdJTjpWQUxBUk0KVFJJR0dFUjotUFQxNU0KQUNUSU9OOkRJU1BMQVkKREVTQ1JJUFRJ +T046UmVtaW5kZXIKRU5EOlZBTEFSTQpFTkQ6VkVWRU5UCkVORDpWQ0FMRU5EQVI= +--000000000000a43c2305cb2b086c +Content-Type: text/csv; charset="UTF-16LE"; name="colt2.csv" +Content-Disposition: attachment; filename="colt2.csv" +Content-Transfer-Encoding: base64 +X-Attachment-Id: f_kt5sqfpu1 +Content-ID: + +//5PAEMATgAJAEwAZQBnAGEAbAAgAEMAdQBzAHQAbwBtAGUAcgAJAE8AcgBkAGUAcgAgAE4AdQBt +AGIAZQByAAkAQwBpAHIAYwB1AGkAdAAgAEkARAAJAEMAdQBzAHQAbwBtAGUAcgAgAFIAZQBmACAA +MQAJAEMAdQBzAHQAbwBtAGUAcgAgAFIAZQBmACAAMgAJAFMAZQByAHYAaQBjAGUACQBBACAAQwB1 +AHMAdABvAG0AZQByAAkAQQAgAEEAZABkAHIAZQBzAHMACQBBACAAUABvAHMAdABjAG8AZABlAAkA +QQAgAFQAbwB3AG4AIABDAGkAdAB5AAkAQgAgAEMAdQBzAHQAbwBtAGUAcgAJAEIAIABBAGQAZABy +AGUAcwBzAAkAQgAgAFAAbwBzAHQAYwBvAGQAZQAJAEIAIABUAG8AdwBuACAAQwBpAHQAeQAJAA0A +CgBPAEMATgA6ACAAMQAyADMANAA1ADYACQBBAEMATQBFACAARQBVAFIATwBQAEUAIABTAEEACQA5 +ADgANwA2ADUANAAzADIAMQAvADEAMgAzADQANQAtADYANwA4ADkACQBDAC0AMQAyADMANAA1ADYA +NwAJAAkAQgBlAGwAZwBpAHUAbQAgAC0AIABCAHIAdQBzAHMAZQBsAHMACQBJAFAAIABBAEMAQwBF +AFMAUwA6ACAAMQAgAEcAQgBQAFMAOwAgAFUATgBQAFIATwBUAEUAQwBUAEUARAA7ACAATgBPACAA +UgBFAFMASQBMAEkARQBOAEMARQA7ACAATgBPACAAQwBPAEwAVAAgAFIATwBVAFQARQBSADsAIABG +AEwAQQBUACAAUgBBAFQARQAgAEIASQBMAEwASQBOAEcAOwAgADMAUgBEACAAUABBAFIAVABZACAA +TABFAEEAUwBFAEQAIABMAEkATgBFADsAIABFAFQASABFAFIATgBFAFQAOwAgADEAMAAwADAAQgBB +AFMARQAtAFQAOwAgAFIASgA0ADUACQBBAEMATQBFACAARQBVAFIATwBQAEUAIABTAEEACQBNAEEA +SQBOACAAUwBUAFIARQBFAFQACQAxADIAMwA0AAkAQgBSAFUAUwBTAEUATABTAAkAQwBvAGwAdAAJ +AAkACQAJAA== --000000000000a43c2305cb2b086c-- \ No newline at end of file diff --git a/tests/unit/data/colt/colt4.eml b/tests/unit/data/colt/colt4.eml index 108f777f..543746f5 100644 --- a/tests/unit/data/colt/colt4.eml +++ b/tests/unit/data/colt/colt4.eml @@ -1,119 +1,119 @@ -MIME-Version: 1.0 -Date: Mon, 1 Nov 2021 11:51:41 +0000 -From: Maintenance Request -To: Maintenance Request -Content-Type: multipart/mixed; boundary="000000000000e8c2b105cfb8cc38" -Subject: [ EXTERNAL ] MAINTENANCE ALERT: CRQ1-12345678 31/10/2021 00:00:00 GMT - 31/10/2021 07:30:00 GMT - COMPLETED - ---000000000000e8c2b105cfb8cc38 -Content-Type: multipart/alternative; boundary="000000000000e8c2ae05cfb8cc36" - ---000000000000e8c2ae05cfb8cc36 -Content-Type: text/plain; charset="UTF-8" - -[ EXTERNAL ] - -Dear Sir/Madam - -Colt confirms that a planned maintenance which your organization has -previously been notified under reference *CRQ1-12345678 *with start -time *31/10/2021 -00:00:00 GMT* has been completed. - -For more information about the activity, including a list of the affected -service(s) please log into your Colt online account: -https://prodidm.colt.net/ - -Should you ascertain that you are experiencing any connection issues after -the works, please contact our technical service desk to investigate the -matter https://www.colt.net/support/ - -*This mail has been automatically generated, please do not reply it.* - - -Kind regards -Colt change management - -[Colt Disclaimer] This email is from an entity of the Colt group of -companies. Colt Group Holdings Limited, Colt House, 20 Great Eastern -Street, London, EC2A 3EH, United Kingdom, registered in England and Wales, -under company number 11530966. Corporate and contact information for our -entities can be found at https://www.colt.net/legal/colt-group-of-companies/. -Internet communications are not secure and Colt does not accept -responsibility for the accurate transmission of this message. Content of -this email or its attachments is not legally or contractually binding -unless expressly previously agreed in writing by Colt - ---000000000000e8c2ae05cfb8cc36 -Content-Type: text/html; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - -
[ EXTERNAL ]

Dear Sir/Madam
=C2=A0
Colt confi= -rms that a planned maintenance which your organization has previously been = -notified under reference=C2=A0CRQ1-12345678 <= -/span>with start time=C2=A031/10/2021 00:0= -0:00=C2=A0GMT=C2=A0has been completed.=C2=A0= -
=C2=A0
For more information about the activity, including a = -list of the affected service(s) please log into your Colt online account:= -=C2=A0https://prodidm.colt.net/
=C2=A0
Sh= -ould - you ascertain that you are experiencing any connection issues after the - works, please contact our technical service desk to investigate the=20 -matter=C2=A0https://www.colt.net/support/<= -/span>
=C2=A0
This mail has been automatically ge= -nerated, please do not reply it.
=C2=A0
= -=C2=A0
Kind regards
Colt change management

=C2=A0

[Colt - Disclaimer] This email is from an entity of the Colt group of=20 -companies. Colt Group Holdings Limited, Colt House, 20 Great Eastern=20 -Street, London, EC2A 3EH, United Kingdom, registered in England and=20 -Wales, under company number 11530966. Corporate and contact information=20 -for our entities can be found at=20 -https://www= -.colt.net/legal/colt-group-of-companies/. Internet=20 -communications are not secure and Colt does not accept responsibility=20 -for the accurate transmission of this message. Content of this email or=20 -its attachments is not legally or contractually binding unless expressly - previously agreed in writing by Colt
- ---000000000000e8c2ae05cfb8cc36-- ---000000000000e8c2b105cfb8cc38 -Content-Type: text/csv; charset="UTF-16LE"; name="colt2.csv" -Content-Disposition: attachment; filename="colt2.csv" -Content-Transfer-Encoding: base64 -X-Attachment-Id: f_kvglq75m0 -Content-ID: - -//5PAEMATgAJAEwAZQBnAGEAbAAgAEMAdQBzAHQAbwBtAGUAcgAJAE8AcgBkAGUAcgAgAE4AdQBt -AGIAZQByAAkAQwBpAHIAYwB1AGkAdAAgAEkARAAJAEMAdQBzAHQAbwBtAGUAcgAgAFIAZQBmACAA -MQAJAEMAdQBzAHQAbwBtAGUAcgAgAFIAZQBmACAAMgAJAFMAZQByAHYAaQBjAGUACQBBACAAQwB1 -AHMAdABvAG0AZQByAAkAQQAgAEEAZABkAHIAZQBzAHMACQBBACAAUABvAHMAdABjAG8AZABlAAkA -QQAgAFQAbwB3AG4AIABDAGkAdAB5AAkAQgAgAEMAdQBzAHQAbwBtAGUAcgAJAEIAIABBAGQAZABy -AGUAcwBzAAkAQgAgAFAAbwBzAHQAYwBvAGQAZQAJAEIAIABUAG8AdwBuACAAQwBpAHQAeQAJAA0A -CgBPAEMATgA6ACAAMQAyADMANAA1ADYACQBBAEMATQBFACAARQBVAFIATwBQAEUAIABTAEEACQA5 -ADgANwA2ADUANAAzADIAMQAvADEAMgAzADQANQAtADYANwA4ADkACQBDAC0AMQAyADMANAA1ADYA -NwAJAAkAQgBlAGwAZwBpAHUAbQAgAC0AIABCAHIAdQBzAHMAZQBsAHMACQBJAFAAIABBAEMAQwBF -AFMAUwA6ACAAMQAgAEcAQgBQAFMAOwAgAFUATgBQAFIATwBUAEUAQwBUAEUARAA7ACAATgBPACAA -UgBFAFMASQBMAEkARQBOAEMARQA7ACAATgBPACAAQwBPAEwAVAAgAFIATwBVAFQARQBSADsAIABG -AEwAQQBUACAAUgBBAFQARQAgAEIASQBMAEwASQBOAEcAOwAgADMAUgBEACAAUABBAFIAVABZACAA -TABFAEEAUwBFAEQAIABMAEkATgBFADsAIABFAFQASABFAFIATgBFAFQAOwAgADEAMAAwADAAQgBB -AFMARQAtAFQAOwAgAFIASgA0ADUACQBBAEMATQBFACAARQBVAFIATwBQAEUAIABTAEEACQBNAEEA -SQBOACAAUwBUAFIARQBFAFQACQAxADIAMwA0AAkAQgBSAFUAUwBTAEUATABTAAkAQwBvAGwAdAAJ -AAkACQAJAA== +MIME-Version: 1.0 +Date: Mon, 1 Nov 2021 11:51:41 +0000 +From: Maintenance Request +To: Maintenance Request +Content-Type: multipart/mixed; boundary="000000000000e8c2b105cfb8cc38" +Subject: [ EXTERNAL ] MAINTENANCE ALERT: CRQ1-12345678 31/10/2021 00:00:00 GMT - 31/10/2021 07:30:00 GMT - COMPLETED + +--000000000000e8c2b105cfb8cc38 +Content-Type: multipart/alternative; boundary="000000000000e8c2ae05cfb8cc36" + +--000000000000e8c2ae05cfb8cc36 +Content-Type: text/plain; charset="UTF-8" + +[ EXTERNAL ] + +Dear Sir/Madam + +Colt confirms that a planned maintenance which your organization has +previously been notified under reference *CRQ1-12345678 *with start +time *31/10/2021 +00:00:00 GMT* has been completed. + +For more information about the activity, including a list of the affected +service(s) please log into your Colt online account: +https://prodidm.colt.net/ + +Should you ascertain that you are experiencing any connection issues after +the works, please contact our technical service desk to investigate the +matter https://www.colt.net/support/ + +*This mail has been automatically generated, please do not reply it.* + + +Kind regards +Colt change management + +[Colt Disclaimer] This email is from an entity of the Colt group of +companies. Colt Group Holdings Limited, Colt House, 20 Great Eastern +Street, London, EC2A 3EH, United Kingdom, registered in England and Wales, +under company number 11530966. Corporate and contact information for our +entities can be found at https://www.colt.net/legal/colt-group-of-companies/. +Internet communications are not secure and Colt does not accept +responsibility for the accurate transmission of this message. Content of +this email or its attachments is not legally or contractually binding +unless expressly previously agreed in writing by Colt + +--000000000000e8c2ae05cfb8cc36 +Content-Type: text/html; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + +
[ EXTERNAL ]

Dear Sir/Madam
=C2=A0
Colt confi= +rms that a planned maintenance which your organization has previously been = +notified under reference=C2=A0CRQ1-12345678 <= +/span>with start time=C2=A031/10/2021 00:0= +0:00=C2=A0GMT=C2=A0has been completed.=C2=A0= +
=C2=A0
For more information about the activity, including a = +list of the affected service(s) please log into your Colt online account:= +=C2=A0https://prodidm.colt.net/
=C2=A0
Sh= +ould + you ascertain that you are experiencing any connection issues after the + works, please contact our technical service desk to investigate the=20 +matter=C2=A0https://www.colt.net/support/<= +/span>
=C2=A0
This mail has been automatically ge= +nerated, please do not reply it.
=C2=A0
= +=C2=A0
Kind regards
Colt change management

=C2=A0

[Colt + Disclaimer] This email is from an entity of the Colt group of=20 +companies. Colt Group Holdings Limited, Colt House, 20 Great Eastern=20 +Street, London, EC2A 3EH, United Kingdom, registered in England and=20 +Wales, under company number 11530966. Corporate and contact information=20 +for our entities can be found at=20 +https://www= +.colt.net/legal/colt-group-of-companies/. Internet=20 +communications are not secure and Colt does not accept responsibility=20 +for the accurate transmission of this message. Content of this email or=20 +its attachments is not legally or contractually binding unless expressly + previously agreed in writing by Colt
+ +--000000000000e8c2ae05cfb8cc36-- +--000000000000e8c2b105cfb8cc38 +Content-Type: text/csv; charset="UTF-16LE"; name="colt2.csv" +Content-Disposition: attachment; filename="colt2.csv" +Content-Transfer-Encoding: base64 +X-Attachment-Id: f_kvglq75m0 +Content-ID: + +//5PAEMATgAJAEwAZQBnAGEAbAAgAEMAdQBzAHQAbwBtAGUAcgAJAE8AcgBkAGUAcgAgAE4AdQBt +AGIAZQByAAkAQwBpAHIAYwB1AGkAdAAgAEkARAAJAEMAdQBzAHQAbwBtAGUAcgAgAFIAZQBmACAA +MQAJAEMAdQBzAHQAbwBtAGUAcgAgAFIAZQBmACAAMgAJAFMAZQByAHYAaQBjAGUACQBBACAAQwB1 +AHMAdABvAG0AZQByAAkAQQAgAEEAZABkAHIAZQBzAHMACQBBACAAUABvAHMAdABjAG8AZABlAAkA +QQAgAFQAbwB3AG4AIABDAGkAdAB5AAkAQgAgAEMAdQBzAHQAbwBtAGUAcgAJAEIAIABBAGQAZABy +AGUAcwBzAAkAQgAgAFAAbwBzAHQAYwBvAGQAZQAJAEIAIABUAG8AdwBuACAAQwBpAHQAeQAJAA0A +CgBPAEMATgA6ACAAMQAyADMANAA1ADYACQBBAEMATQBFACAARQBVAFIATwBQAEUAIABTAEEACQA5 +ADgANwA2ADUANAAzADIAMQAvADEAMgAzADQANQAtADYANwA4ADkACQBDAC0AMQAyADMANAA1ADYA +NwAJAAkAQgBlAGwAZwBpAHUAbQAgAC0AIABCAHIAdQBzAHMAZQBsAHMACQBJAFAAIABBAEMAQwBF +AFMAUwA6ACAAMQAgAEcAQgBQAFMAOwAgAFUATgBQAFIATwBUAEUAQwBUAEUARAA7ACAATgBPACAA +UgBFAFMASQBMAEkARQBOAEMARQA7ACAATgBPACAAQwBPAEwAVAAgAFIATwBVAFQARQBSADsAIABG +AEwAQQBUACAAUgBBAFQARQAgAEIASQBMAEwASQBOAEcAOwAgADMAUgBEACAAUABBAFIAVABZACAA +TABFAEEAUwBFAEQAIABMAEkATgBFADsAIABFAFQASABFAFIATgBFAFQAOwAgADEAMAAwADAAQgBB +AFMARQAtAFQAOwAgAFIASgA0ADUACQBBAEMATQBFACAARQBVAFIATwBQAEUAIABTAEEACQBNAEEA +SQBOACAAUwBUAFIARQBFAFQACQAxADIAMwA0AAkAQgBSAFUAUwBTAEUATABTAAkAQwBvAGwAdAAJ +AAkACQAJAA== --000000000000e8c2b105cfb8cc38-- \ No newline at end of file diff --git a/tests/unit/data/colt/colt5.eml b/tests/unit/data/colt/colt5.eml index 3b67d150..72924bdb 100644 --- a/tests/unit/data/colt/colt5.eml +++ b/tests/unit/data/colt/colt5.eml @@ -1,327 +1,327 @@ -Return-Path: -Received: from [192.168.1.25] ([78.18.3.75]) - by smtp.gmail.com with ESMTPSA id m3sm902024wrv.95.2021.11.24.13.43.50 - for - (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); - Wed, 24 Nov 2021 13:43:50 -0800 (PST) -Content-Type: multipart/mixed; boundary="------------0TFLSHrH0cciiTuijamM72EE" -Message-ID: <88226301-ff4c-6811-0ca8-9599d131eca5@networktocode.com> -Date: Wed, 24 Nov 2021 21:43:49 +0000 -MIME-Version: 1.0 -User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:91.0) - Gecko/20100101 Thunderbird/91.3.0 -Content-Language: en-US -From: Paddy Kelly -To: patrick.kelly@networktocode.com -Subject: [ EXTERNAL ] Cancellation Colt Third Party Maintenance Notification - - CRQ1-12345678 [07/12/2021 23:00:00 GMT - 08/12/2021 05:00:00 GMT] for - ACME, 123456 - -This is a multi-part message in MIME format. ---------------0TFLSHrH0cciiTuijamM72EE -Content-Type: text/plain; charset=UTF-8; format=flowed -Content-Transfer-Encoding: 7bit - -[ EXTERNAL ] - -Planned Outage Notification - -Dear Sir or Madam, - -In order to maintain the highest levels of availability and service to -our customers, it is sometimes necessary for Colt and our partners to -perform network maintenance. We apologize for any resulting -inconvenience and assure you of our efforts to minimise any service -disruption. To view this, and all other planned maintenance on your -services, or if you require any assistance, please contact us via the -Colt Online Portal http://online.colt.net. Alternatively, email us to -PlannedWorks@colt.net, quoting the following reference number -CRQ1-12345678. Please retain this unique reference for the maintenance. - -Planned Works Details: - -Planned Work (PW)Ref.: CRQ1-12345678 -Start Date & Time: 07/12/2021 23:00:00(GMT)* -End Date & Time: 08/12/2021 05:00:00 (GMT)* -Outage Duration: 360 Minutes - -*Time Zone: -Central European Time (CET) = GMT + 1 hour -Central European Summer Time (CEST) = GMT + 2 hours - -Justification of the work: We would like to make you aware of a -maintenance our carrier will conduct on their network affecting your -service to perform Cable Maintenance Work. As this maintenance is not -being conducted by Colt, rescheduling this work may not be possible. -Should the date and time for the maintenance have passed, without an -updated notification communicated for it, please consider the work as -completed. - -Service: ***Please refer to the attached CSV file for your service(s) -affected by this maintenance**** - -PLEASE NOTE: To enable you to plan appropriately the list of impacted -services includes those that have been completed, as well as those -pending completion. If the pending installation is completed prior to -the scheduled date for the planned maintenance these services will be -impacted. - -Please assist Colt by informing us about any changes to your contact -details via the Colt Online Portal http://online.colt.net or by replying -to PlannedWorks@colt.net so that we can ensure that future notifications -reach the correct parties. - -Should you experience any issue with your service post the maintenance -end time, please contact Colt Technical support via the Colt Online -Portal http://online.colt.net. Alternatively, visit -http://www.colt.net/support to contact us by phone, quoting your service ID. - -For more information about a service, please consult the Colt Online -Portal http://online.colt.net - - -Colt Change management -Colt Technology Services - Operations - -For support log into Colt Online: https://online.colt.net -For other contact options: https://www.colt.net/support -[Colt Disclaimer] This email is from an entity of the Colt group of -companies. Colt Group Holdings Limited, Colt House, 20 Great Eastern -Street, London, EC2A 3EH, United Kingdom, registered in England and -Wales, under company number 11530966. Corporate and contact information -for our entities can be found at -https://www.colt.net/legal/colt-group-of-companies/. Internet -communications are not secure and Colt does not accept responsibility -for the accurate transmission of this message. Content of this email or -its attachments is not legally or contractually binding unless expressly -previously agreed in writing by Colt ---------------0TFLSHrH0cciiTuijamM72EE -Content-Type: text/plain; charset=UTF-8; name="colt1" -Content-Disposition: attachment; filename="colt1" -Content-Transfer-Encoding: base64 - -QkVHSU46VkNBTEVOREFSClBST0RJRDotLy9NaWNyb3NvZnQgQ29ycG9yYXRpb24vL091dGxv -b2sgMTYuMCBNSU1FRElSLy9FTgpWRVJTSU9OOjIuMApNRVRIT0Q6UkVRVUVTVApCRUdJTjpW -VElNRVpPTkUKVFpJRDpVVEMKQkVHSU46U1RBTkRBUkQKRFRTVEFSVDoxNjAxMTAyOFQwMjAw -MDAKVFpPRkZTRVRGUk9NOi0wMDAwClRaT0ZGU0VUVE86LTAwMDAKRU5EOlNUQU5EQVJECkVO -RDpWVElNRVpPTkUKQkVHSU46VkVWRU5UCkNMQVNTOlBVQkxJQwpDUkVBVEVEOjIwMjEwNzMw -VDE0MDMwOFoKRFRFTkQ7VFpJRD1VVEM6MjAyMTA4MDdUMDUwMDAwCkRUU1RBTVA6MjAyMTA3 -MzBUMTQwMzA4WgpEVFNUQVJUO1RaSUQ9VVRDOjIwMjEwODA2VDIxMDAwMApMQVNULU1PRElG -SUVEOjIwMjEwNzMwVDE0MDMwOFoKT1JHQU5JWkVSOkRvTm90UmVwbHlfQ2hhbmdlQGNvbHQu -bmV0CkxPQ0FUSU9OOkNvbHQgSW50ZXJuYWwgTWFpbnRlbmFuY2UKUFJJT1JJVFk6NQpTRVFV -RU5DRTowClNVTU1BUlk7TEFOR1VBR0U9ZW4tdXM6WyBFWFRFUk5BTCBdIENvbHQgU2Vydmlj -ZSBBZmZlY3RpbmcgTWFpbnRlbmFuY2UgTm90aWZpY2F0aW9uIC0gQ1JRMS0xMjM0NTY3OCBb -MDYvOC8yMDIxIDIyOjAwOjAwIEdNVCAtIDA3LzgvMjAyMSAwNjowMDowMCBHTVRdIGZvciBB -Q01FLCAgMTIzNDUwMDAKVFJBTlNQOk9QQVFVRQpVSUQ6TVMwME5ERTFNamM1TkRjM05UTTRP -REU0TVRGSmJYQmhZM1JsWkE9PQpYLUFMVC1ERVNDO0ZNVFRZUEU9dGV4dC9odG1sOjxodG1s -IHhtbG5zOnY9J3VybjpzY2hlbWFzLW1pY3Jvc29mdC1jb206dm1sJyAgeG1sbnM6bz0ndXJu -OnNjaGVtYXMtbWljcm9zb2Z0LWNvbTpvZmZpY2U6b2ZmaWNlJyB4bWxuczp3PSd1cm46c2No -ZW1hcy1taWMgcm9zb2Z0LWNvbTpvZmZpY2U6d29yZCcgeG1sbnM6bT0naHR0cDovL3NjaGVt -YXMubWljcm9zb2Z0LmNvbS9vZmZpY2UvMjAwNC8xMi9vbW1sJyB4bWxucz0naHR0cDovL3d3 -dy53My5vcmcvVFIvUkVDLWh0bWw0MCc+PGhlYWQ+PG1ldGEgbmFtZT1Qcm9nSWQgY29udGVu -dD1Xb3JkLkRvY3VtZW50PjxtZXRhIG5hbWU9R2VuZXJhdG9yIGNvbnRlbnQ9J01pY3Jvc29m -dCBXb3JkIDE1Jz48bWV0YSBuYW1lPU9yaWdpbmF0b3IgY29udGVudD0nTWljcm9zb2Z0IFdv -cmQgMTUnPjxsaW5rIHJlbD1GaWxlLUxpc3QgaHJlZj0nY2lkOmZpbGVsaXN0LnhtbEAwMUQ2 -NDBFQS45QzI4MjU5MCc+IDwvaGVhZD4gPGJvZHkgbGFuZz1FTi1VUyBsaW5rPScjMDU2M0Mx -JyB2bGluaz0nIzk1NEY3Micgc3R5bGU9J3RhYi1pbnRlcnZhbDouNWluJz48dGFibGUgd2lk -dGg9IjEwMCUiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIj48 -dHI+PHRkIGFsaWduPSJjZW50ZXIiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTJwdDtmb250 -LWZhbWlseTonQ2FsaWJyaScsc2Fucy1zZXJpZjtjb2xvcjojQzAwMDAwO3RleHQtYWxpZ246 -Y2VudGVyIj48c3Ryb25nPlRoaXMgaXMgYSBzeXN0ZW0gZ2VuZXJhdGVkIGNhbGVuZGFyIGlu -dml0ZS4gQWNjZXB0aW5nIG9yIERlY2xpbmluZyBpcyBtZWFudCBvbmx5IGZvciB0aGUgcHVy -cG9zZSBvZiBhIENhbGVuZGFyIGRpc3BsYXkuICBUaGUgdGltaW5nIG9mIHRoZSBpbnZpdGUg -aXMgc2V0IHRvIHRoZSB1c2Vy4oCZcyBsb2NhbCBzeXN0ZW0gdGltZSBhbmQgc2hvdWxkIG5v -dCB0byBiZSBjb25mdXNlZCB3aXRoIHRoZSB0ZXh0IGRpc3BsYXllZCB3aXRoaQogbiB0aGUg -aW52aXRlLCB3aGljaCBpcyBpbiBHTVQuICBTaG91bGQgeW91IHJlcXVpcmUgYW55IGFzc2lz -dGFuY2UsIHBsZWFzZSBjb250YWN0IHVzIHZpYSB0aGUgQ29sdCBPbmxpbmUgUG9ydGFsIDxz -cGFuIHN0eWxlPSJjb2xvcjojQzAwMDAwIj48YSBocmVmPSJodHRwOi8vb25saW5lLmNvbHQu -bmV0LyIgc3R5bGU9ImJvcmRlci1ib3R0b206IDFweCBzb2xpZCAjMDAwOyI+PHNwYW4gbGFu -Zz0iREUiIHN0eWxlPSJjb2xvcjojQzAwMDAwO2JvcmRlci1ib3R0b206IDFweCBzb2xpZCAj -MDAwOyI+aHR0cDovL29ubGluZS5jb2x0Lm5ldDwvc3Bhbj48L2E+PC9zcGFuPiBvciBhbHRl -cm5hdGl2ZWx5IG1haWwgdXMgYnkgcmVwbHlpbmcgdG8gdGhlIG5vdGlmaWNhdGlvbjwvc3Bh -bj48L3RkPjwvdHI+PC90YWJsZT48cD48L3A+PHA+PHN0cm9uZz48c3BhbiBzdHlsZT0iZm9u -dC1zaXplOiAxMHB0OyI+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1z -ZXJpZjsiPjxpbWcgYm9yZGVyPSIwIiBpZD0iX3gwMDAwX2kxMDI1IiBzcmM9Imh0dHBzOi8v -ZmlsZXN0b3JlLnhtcjMuY29tLzc2MzI1Mi8xMTEzNTk3OTAvMTQ2MjI5LzE4NTAwNC9qb2Jz -ZXR0aW5ncy9kb2NzL2xvZ29sXzE0MjkxNDU1MDI0NDIucG5nIiAvPjwvc3Bhbj48L3NwYW4+ -PC9zdHJvbmc+PC9wPjxwPjwvcD48cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAxMHB0OyI+ -PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsiPjxzcGFuIHN0 -eWxlPSJmb250LXNpemU6IDEwcHQ7Ij48c3Ryb25nPlBsYW5uZWQgT3V0YWdlIE5vdGlmaWNh -dGlvbjwvc3Ryb25nPjwvc3Bhbj48L3NwYW4+PC9zcGFuPjwvcD48cD48L3A+PHA+PHNwYW4g -c3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJp -YWwsIHNhbnMtc2VyaWY7Ij5EZWFyIFNpciBvciBNYWRhbSw8L3NwYW4+PC9zcGFuPjwvcD48 -cD48L3A+PHA+PHNwYW4gc3R5bAogZT0iZm9udC1zaXplOiAxMHB0OyI+PHNwYW4gc3R5bGU9 -ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsiPkluIG9yZGVyJm5ic3A7dG8gbWFp -bnRhaW4gdGhlIGhpZ2hlc3QgbGV2ZWxzIG9mIGF2YWlsYWJpbGl0eSBhbmQgc2VydmljZSB0 -byBvdXIgY3VzdG9tZXJzLCBpdCBpcyBzb21ldGltZXMgbmVjZXNzYXJ5IGZvciBDb2x0Jm5i -c3A7YW5kIG91ciBwYXJ0bmVycyB0byBwZXJmb3JtIG5ldHdvcmsgbWFpbnRlbmFuY2UuJm5i -c3A7Jm5ic3A7V2UgYXBvbG9naXplIGZvciBhbnkgcmVzdWx0aW5nIGluY29udmVuaWVuY2Ug -YW5kIGFzc3VyZSB5b3Ugb2Ygb3VyIGVmZm9ydHMgdG8gbWluaW1pc2UgYW55IHNlcnZpY2Ug -ZGlzcnVwdGlvbi4gVG8gdmlldyB0aGlzLCBhbmQgYWxsIG90aGVyIHBsYW5uZWQgbWFpbnRl -bmFuY2Ugb24geW91ciBzZXJ2aWNlcywgb3IgaWYgeW91IHJlcXVpcmUgYW55IGFzc2lzdGFu -Y2UsIHBsZWFzZSBjb250YWN0IHVzIHZpYSB0aGUgQ29sdCBPbmxpbmUgUG9ydGFsJm5ic3A7 -PC9zcGFuPjwvc3Bhbj48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNl -cmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTFwdDsiPjxzcGFuIHN0eWxlPSJmb250 -LXNpemU6IDEwcHQ7Ij48YSBocmVmPSJodHRwOi8vb25saW5lLmNvbHQubmV0Ij5odHRwOi8v -b25saW5lLmNvbHQubmV0PC9hPi4gQWx0ZXJuYXRpdmVseSwgZW1haWwgdXMgdG8mbmJzcDs8 -L3NwYW4+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxhIGhyZWY9Im1haWx0bzpQ -bGFubmVkV29ya3NAY29sdC5uZXQiPlBsYW5uZWRXb3Jrc0Bjb2x0Lm5ldDwvYT4sJm5ic3A7 -PC9zcGFuPjwvc3Bhbj48L3NwYW4+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxz -cGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2VyaWY7Ij5xdW90aW5nIHRo -ZSBmb2xsb3dpbmcgcmVmZXJlbmNlIG51bWJlciZuYnNwOzxzdHJvbmc+Q1JRMQogLTEyMzQ1 -Njc4PC9zdHJvbmc+LiBQbGVhc2UgcmV0YWluIHRoaXMgdW5pcXVlIHJlZmVyZW5jZSBmb3Ig -dGhlIG1haW50ZW5hbmNlLjwvc3Bhbj48L3NwYW4+PC9wPjxwPjwvcD48cD48c3BhbiBzdHls -ZT0iZm9udC1zaXplOiAxMHB0OyI+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwg -c2Fucy1zZXJpZjsiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij48c3Ryb25nPjx1 -PlBsYW5uZWQgV29ya3MgRGV0YWlsczo8L3U+PC9zdHJvbmc+PC9zcGFuPjwvc3Bhbj48L3Nw -YW4+PC9wPjxwPjwvcD48cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAxMHB0OyI+PHNwYW4g -c3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsiPjxzdHJvbmc+UGxhbm5l -ZCBXb3JrIChQVylSZWYuOjwvc3Ryb25nPiZuYnNwOyZuYnNwOyBDUlExLTEyMzQ1Njc4PC9z -cGFuPjwvc3Bhbj48YnIgLz48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAxMHB0OyI+PHNwYW4g -c3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsiPjxzdHJvbmc+U3RhcnQg -RGF0ZSAmYW1wOyBUaW1lOjwvc3Ryb25nPiZuYnNwOyAmbmJzcDsgJm5ic3A7ICZuYnNwOyAm -bmJzcDsgJm5ic3A7ICZuYnNwOzwvc3Bhbj48L3NwYW4+MDYvOC8yMDIxIDIxOjAwOjAwPHNw -YW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTog -YXJpYWwsIHNhbnMtc2VyaWY7Ij4oR01UKSo8L3NwYW4+PC9zcGFuPjxiciAvPjxzcGFuIHN0 -eWxlPSJmb250LXNpemU6IDEwcHQ7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFs -LCBzYW5zLXNlcmlmOyI+PHN0cm9uZz5FbmQgRGF0ZSAmYW1wOyBUaW1lOjwvc3Ryb25nPiZu -YnNwOyAmbmJzcDsgJm5ic3A7ICZuYnNwOyAmbmJzcDsgJm5ic3A7ICZuYnNwOyZuYnNwOzwv -c3Bhbj48L3NwYW4+MDcvOC8yMDIxIDA1OjAwOjAwPHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTog -MTBwdDsiPjxzcGFuIAogc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsi -PiZuYnNwOyhHTVQpKjwvc3Bhbj48L3NwYW4+PGJyIC8+PHNwYW4gc3R5bGU9ImZvbnQtc2l6 -ZTogMTBwdDsiPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2VyaWY7 -Ij48c3Ryb25nPk91dGFnZSBEdXJhdGlvbjo8L3N0cm9uZz4mbmJzcDsgJm5ic3A7ICZuYnNw -OyAmbmJzcDsgJm5ic3A7ICZuYnNwOyAmbmJzcDsgTm8gSW1wYWN0PC9zcGFuPjwvc3Bhbj48 -L3A+PHA+PC9wPjxwPjxzdHJvbmc+PGVtPjxzcGFuIHN0eWxlPSJiYWNrZ3JvdW5kLWltYWdl -OiBpbml0aWFsOyBiYWNrZ3JvdW5kLXBvc2l0aW9uOiBpbml0aWFsOyBiYWNrZ3JvdW5kLXNp -emU6IGluaXRpYWw7IGJhY2tncm91bmQtcmVwZWF0OiBpbml0aWFsOyBiYWNrZ3JvdW5kLWF0 -dGFjaG1lbnQ6IGluaXRpYWw7IGJhY2tncm91bmQtb3JpZ2luOiBpbml0aWFsOyBiYWNrZ3Jv -dW5kLWNsaXA6IGluaXRpYWw7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBz -YW5zLXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogOXB0OyI+KlRpbWUgWm9uZTo8 -L3NwYW4+PC9zcGFuPjwvc3Bhbj48L2VtPjwvc3Ryb25nPjxiciAvPjxlbT48c3BhbiBzdHls -ZT0iYmFja2dyb3VuZC1pbWFnZTogaW5pdGlhbDsgYmFja2dyb3VuZC1wb3NpdGlvbjogaW5p -dGlhbDsgYmFja2dyb3VuZC1zaXplOiBpbml0aWFsOyBiYWNrZ3JvdW5kLXJlcGVhdDogaW5p -dGlhbDsgYmFja2dyb3VuZC1hdHRhY2htZW50OiBpbml0aWFsOyBiYWNrZ3JvdW5kLW9yaWdp -bjogaW5pdGlhbDsgYmFja2dyb3VuZC1jbGlwOiBpbml0aWFsOyI+PHNwYW4gc3R5bGU9ImZv -bnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6 -IDlwdDsiPkNlbnRyYWwgRXVyb3BlYW4gVGltZSAoQ0VUKSZuYnNwOyZuYnNwOz0gR01UICsg -MSBob3VyPC9zcGFuPjwvc3Bhbj48L3NwYW4+PC9lbT48YnIgLz48ZQogbT48c3BhbiBzdHls -ZT0iYmFja2dyb3VuZC1pbWFnZTogaW5pdGlhbDsgYmFja2dyb3VuZC1wb3NpdGlvbjogaW5p -dGlhbDsgYmFja2dyb3VuZC1zaXplOiBpbml0aWFsOyBiYWNrZ3JvdW5kLXJlcGVhdDogaW5p -dGlhbDsgYmFja2dyb3VuZC1hdHRhY2htZW50OiBpbml0aWFsOyBiYWNrZ3JvdW5kLW9yaWdp -bjogaW5pdGlhbDsgYmFja2dyb3VuZC1jbGlwOiBpbml0aWFsOyI+PHNwYW4gc3R5bGU9ImZv -bnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6 -IDlwdDsiPjxlbT5DZW50cmFsIEV1cm9wZWFuIFN1bW1lciBUaW1lIChDRVNUKSA9IEdNVCAr -IDImbmJzcDtob3VyczwvZW0+PC9zcGFuPjwvc3Bhbj48L3NwYW4+PC9lbT48L3A+PHA+PHNw -YW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTog -YXJpYWwsIHNhbnMtc2VyaWY7Ij48c3Ryb25nPkp1c3RpZmljYXRpb24gb2YgdGhlIHdvcms6 -PC9zdHJvbmc+Jm5ic3A7S2luZGx5IG5vdGUgdGhlIGRldmljZSBvbiB3aGljaCB5b3VyIHNl -cnZpY2UgaXMgY29tbWlzc2lvbmVkLCB3aWxsIGJlIHVwZ3JhZGVkIGF0IGEgbGF0ZXIgc3Rh -Z2UuIFRodXMgcGxlYXNlIHRha2Ugbm90ZSB0aGF0IHRoaXMgbWFpbnRlbmFuY2UgZm9yIHlv -dXIgc2VydmljZSwgaW4gdGhlIGF0dGFjaGVkIENTViBmaWxlLCBzdGFuZHMgYXMgY2FuY2Vs -bGVkLiBUaGVyZSBhcmUgY3VycmVudGx5IG5vIG5ldyBkYXRlcyBhdmFpbGFibGUuIE9uY2Ug -dGhlIG5ldyB0aW1pbmdzIGhhdmUgYmVlbiBmaW5hbGlzZWQsIENvbHQgd2lsbCByYWlzZSBh -IG5ldyBjaGFuZ2UgdGlja2V0LCBhbmQgaW5mb3JtIHlvdSBhYm91dCB0aGUgd29yay4gV2Ug -d291bGQgbGlrZSB0byBhcG9sb2dpc2UgZm9yIGFueSBpbmNvbnZlbmllbmNlIHRoaXMgbWF5 -IGhhdmUgcmVzdWx0ZWQgaW48L3NwYW4+PC9zcGFuPjwvcD48cD48L3A+PHA+PHNwYW4gc3R5 -bGU9ImZvbnQtc2l6ZQogOiAxMHB0OyI+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlh -bCwgc2Fucy1zZXJpZjsiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij48c3Ryb25n -PlNlcnZpY2U6Jm5ic3A7Jm5ic3A7PHNwYW4gc3R5bGU9ImNvbG9yOiByZ2IoMCwgNTEsIDE1 -Myk7Ij4qKipQbGVhc2UgcmVmZXIgdG8gdGhlIGF0dGFjaGVkIENTViBmaWxlIGZvciB5b3Vy -IHNlcnZpY2UocykgYWZmZWN0ZWQgYnkgdGhpcyBtYWludGVuYW5jZSoqKio8L3NwYW4+PC9z -dHJvbmc+PC9zcGFuPjwvc3Bhbj48L3NwYW4+PC9wPjxwPjwvcD48cD48L3A+PHA+PC9wPjxw -PjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1p -bHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+PHN0cm9uZz5QTEVBU0UgTk9URTo8L3N0cm9uZz4m -bmJzcDsmbmJzcDtUbyBlbmFibGUgeW91IHRvIHBsYW4gYXBwcm9wcmlhdGVseSB0aGUgbGlz -dCBvZiBpbXBhY3RlZCBzZXJ2aWNlcyBpbmNsdWRlcyB0aG9zZSB0aGF0IGhhdmUgYmVlbiBj -b21wbGV0ZWQsIGFzIHdlbGwgYXMgdGhvc2UgcGVuZGluZyBjb21wbGV0aW9uLiZuYnNwOyZu -YnNwO0lmIHRoZSBwZW5kaW5nIGluc3RhbGxhdGlvbiBpcyBjb21wbGV0ZWQgcHJpb3IgdG8g -dGhlIHNjaGVkdWxlZCBkYXRlIGZvciB0aGUgcGxhbm5lZCBtYWludGVuYW5jZSB0aGVzZSBz -ZXJ2aWNlcyB3aWxsIGJlIGltcGFjdGVkLjwvc3Bhbj48L3NwYW4+PC9wPjxwPjwvcD48cD48 -c3BhbiBzdHlsZT0iZm9udC1zaXplOiAxMHB0OyI+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5 -OiBhcmlhbCwgc2Fucy1zZXJpZjsiPlBsZWFzZSBhc3Npc3QgQ29sdCBieSBpbmZvcm1pbmcg -dXMgYWJvdXQgYW55IGNoYW5nZXMgdG8geW91ciBjb250YWN0IGRldGFpbHMmbmJzcDs8L3Nw -YW4+PC9zcGFuPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2VyaWY7 -Ij48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAxMHB0OyI+dmlhIHRoZQogIENvbHQgT25saW5l -IFBvcnRhbCZuYnNwOzwvc3Bhbj48L3NwYW4+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBh -cmlhbCwgc2Fucy1zZXJpZjsiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDExcHQ7Ij48YSBo -cmVmPSJodHRwOi8vb25saW5lLmNvbHQubmV0Ij48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAx -MHB0OyI+aHR0cDovL29ubGluZS5jb2x0Lm5ldDwvc3Bhbj48L2E+PC9zcGFuPjwvc3Bhbj48 -c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+PHNwYW4gc3R5 -bGU9ImZvbnQtc2l6ZTogMTBwdDsiPiZuYnNwO29yIGJ5IHJlcGx5aW5nIHRvJm5ic3A7PC9z -cGFuPjwvc3Bhbj48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlm -OyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTFwdDsiPjxzcGFuIHN0eWxlPSJmb250LXNp -emU6IDEwcHQ7Ij48YSBocmVmPSJtYWlsdG86UGxhbm5lZFdvcmtzQGNvbHQubmV0Ij5QbGFu -bmVkV29ya3NAY29sdC5uZXQ8L2E+Jm5ic3A7PC9zcGFuPjwvc3Bhbj48L3NwYW4+PHNwYW4g -c3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJp -YWwsIHNhbnMtc2VyaWY7Ij5zbyB0aGF0IHdlIGNhbiBlbnN1cmUgdGhhdCBmdXR1cmUgbm90 -aWZpY2F0aW9ucyByZWFjaCB0aGUgY29ycmVjdCBwYXJ0aWVzLjwvc3Bhbj48L3NwYW4+PGJy -IC8+PGJyIC8+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsi -PjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij5TaG91bGQgeW91IGV4cGVyaWVuY2Ug -YW55IGlzc3VlIHdpdGggeW91ciBzZXJ2aWNlIHBvc3QgdGhlIG1haW50ZW5hbmNlIGVuZCB0 -aW1lLCBwbGVhc2UgY29udGFjdCBDb2x0IFRlY2huaWNhbCBzdXBwb3J0IHZpYSB0aGUgQ29s -dCBPbmxpbmUgUG9ydGFsJm5ic3A7PC9zcGFuPjwvc3Bhbj48c3BhbiBzdHlsZT0iZm9udC1m -YW1pbHk6IGFyaWFsLAogIHNhbnMtc2VyaWY7Ij48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAx -MXB0OyI+PGEgaHJlZj0iaHR0cDovL29ubGluZS5jb2x0Lm5ldCI+PHNwYW4gc3R5bGU9ImZv -bnQtc2l6ZTogMTBwdDsiPmh0dHA6Ly9vbmxpbmUuY29sdC5uZXQ8L3NwYW4+PC9hPjwvc3Bh -bj48L3NwYW4+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsi -PjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij4uIEFsdGVybmF0aXZlbHksIHZpc2l0 -Jm5ic3A7PGEgaHJlZj0iaHR0cDovL3d3dy5jb2x0Lm5ldC9zdXBwb3J0Ij5odHRwOi8vd3d3 -LmNvbHQubmV0L3N1cHBvcnQ8L2E+Jm5ic3A7dG8gY29udGFjdCB1cyBieSBwaG9uZSwgcXVv -dGluZyB5b3VyIHNlcnZpY2UgSUQ8L3NwYW4+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTFw -dDsiPi48L3NwYW4+PGJyIC8+PGJyIC8+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsi -PkZvciBtb3JlIGluZm9ybWF0aW9uIGFib3V0IGEgc2VydmljZSwgcGxlYXNlIGNvbnN1bHQm -bmJzcDs8L3NwYW4+PC9zcGFuPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNh -bnMtc2VyaWY7Ij48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAxMHB0OyI+dGhlIENvbHQgT25s -aW5lIFBvcnRhbCZuYnNwOzwvc3Bhbj48L3NwYW4+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5 -OiBhcmlhbCwgc2Fucy1zZXJpZjsiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDExcHQ7Ij48 -YSBocmVmPSJodHRwOi8vb25saW5lLmNvbHQubmV0Ij48c3BhbiBzdHlsZT0iZm9udC1zaXpl -OiAxMHB0OyI+aHR0cDovL29ubGluZS5jb2x0Lm5ldDwvc3Bhbj48L2E+PC9zcGFuPjwvc3Bh -bj48L3A+PHA+PC9wPjxwPjxiciAvPjxzdHJvbmc+PHNwYW4gc3R5bGU9ImNvbG9yOiByZ2Io -MTA2LCAxMDYsIDEwNik7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5z -LXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTFwdDsiPgogQ29sdCBDaGFuZ2Ug -bWFuYWdlbWVudDwvc3Bhbj48L3NwYW4+PC9zcGFuPjwvc3Ryb25nPjxiciAvPjxzdHJvbmc+ -PHNwYW4gc3R5bGU9ImNvbG9yOiByZ2IoMTA2LCAxMDYsIDEwNik7Ij48c3BhbiBzdHlsZT0i -Zm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6 -ZTogMTFwdDsiPjxzdHJvbmc+Q29sdCBUZWNobm9sb2d5IFNlcnZpY2VzIC0gT3BlcmF0aW9u -czwvc3Ryb25nPjwvc3Bhbj48L3NwYW4+PC9zcGFuPjwvc3Ryb25nPjxiciAvPjxzcGFuIHN0 -eWxlPSJmb250LXNpemU6IDEwcHQ7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFs -LCBzYW5zLXNlcmlmOyI+PGltZyBib3JkZXI9IjAiIGlkPSJfeDAwMDBfaTEwMjUiIHNyYz0i -aHR0cHM6Ly9maWxlc3RvcmUueG1yMy5jb20vNzYzMjUyLzExMTM1OTc5MC8xNDYyMjkvMTg1 -MDA0L2pvYnNldHRpbmdzL2RvY3MvbG9nb2xfMTQyOTE0NTUwMjQ0Mi5wbmciIC8+Jm5ic3A7 -PC9zcGFuPjwvc3Bhbj48YnIgLz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBz -YW5zLXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogOXB0OyI+Rm9yIHN1cHBvcnQg -bG9nIGludG8gQ29sdCBPbmxpbmU6Jm5ic3A7PHNwYW4gc3R5bGU9ImNvbG9yOiByZ2IoMzEs -IDczLCAxMjUpOyI+PGEgaHJlZj0iaHR0cHM6Ly9vbmxpbmUuY29sdC5uZXQiPmh0dHBzOi8v -b25saW5lLmNvbHQubmV0PC9hPjwvc3Bhbj48L3NwYW4+PC9zcGFuPjxiciAvPjxzcGFuIHN0 -eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2VyaWY7Ij48c3BhbiBzdHlsZT0iZm9u -dC1zaXplOiA5cHQ7Ij5Gb3Igb3RoZXIgY29udGFjdCBvcHRpb25zOiZuYnNwOzxzcGFuIHN0 -eWxlPSJjb2xvcjogcmdiKDMxLCA3MywgMTI1KTsiPjxhIGhyZWY9Imh0dHBzOi8vd3d3LmNv -bHQubmV0L3N1cHBvcnQiPmh0dHBzOi8vd3d3LmNvbHQubmV0L3N1cHBvcnQ8L2E+PC9zcGFu -Pjwvc3Bhbj48L3NwYQogbj48L3A+PC9ib2R5PjwvaHRtbD4KQkVHSU46VkFMQVJNClRSSUdH -RVI6LVBUMTVNCkFDVElPTjpESVNQTEFZCkRFU0NSSVBUSU9OOlJlbWluZGVyCkVORDpWQUxB -Uk0KRU5EOlZFVkVOVApFTkQ6VkNBTEVOREFS ---------------0TFLSHrH0cciiTuijamM72EE -Content-Type: text/csv; charset=UTF-16LE; name="colt2.csv" -Content-Disposition: attachment; filename="colt2.csv" -Content-Transfer-Encoding: base64 - -//5PAEMATgAJAEwAZQBnAGEAbAAgAEMAdQBzAHQAbwBtAGUAcgAJAE8AcgBkAGUAcgAgAE4A -dQBtAGIAZQByAAkAQwBpAHIAYwB1AGkAdAAgAEkARAAJAEMAdQBzAHQAbwBtAGUAcgAgAFIA -ZQBmACAAMQAJAEMAdQBzAHQAbwBtAGUAcgAgAFIAZQBmACAAMgAJAFMAZQByAHYAaQBjAGUA -CQBBACAAQwB1AHMAdABvAG0AZQByAAkAQQAgAEEAZABkAHIAZQBzAHMACQBBACAAUABvAHMA -dABjAG8AZABlAAkAQQAgAFQAbwB3AG4AIABDAGkAdAB5AAkAQgAgAEMAdQBzAHQAbwBtAGUA -cgAJAEIAIABBAGQAZAByAGUAcwBzAAkAQgAgAFAAbwBzAHQAYwBvAGQAZQAJAEIAIABUAG8A -dwBuACAAQwBpAHQAeQAJAA0ACgBPAEMATgA6ACAAMQAyADMANAA1ADYACQBBAEMATQBFACAA -RQBVAFIATwBQAEUAIABTAEEACQA5ADgANwA2ADUANAAzADIAMQAvADEAMgAzADQANQAtADYA -NwA4ADkACQBDAC0AMQAyADMANAA1ADYANwAJAAkAQgBlAGwAZwBpAHUAbQAgAC0AIABCAHIA -dQBzAHMAZQBsAHMACQBJAFAAIABBAEMAQwBFAFMAUwA6ACAAMQAgAEcAQgBQAFMAOwAgAFUA -TgBQAFIATwBUAEUAQwBUAEUARAA7ACAATgBPACAAUgBFAFMASQBMAEkARQBOAEMARQA7ACAA -TgBPACAAQwBPAEwAVAAgAFIATwBVAFQARQBSADsAIABGAEwAQQBUACAAUgBBAFQARQAgAEIA -SQBMAEwASQBOAEcAOwAgADMAUgBEACAAUABBAFIAVABZACAATABFAEEAUwBFAEQAIABMAEkA -TgBFADsAIABFAFQASABFAFIATgBFAFQAOwAgADEAMAAwADAAQgBBAFMARQAtAFQAOwAgAFIA -SgA0ADUACQBBAEMATQBFACAARQBVAFIATwBQAEUAIABTAEEACQBNAEEASQBOACAAUwBUAFIA -RQBFAFQACQAxADIAMwA0AAkAQgBSAFUAUwBTAEUATABTAAkAQwBvAGwAdAAJAAkACQAJAA== - ---------------0TFLSHrH0cciiTuijamM72EE-- - +Return-Path: +Received: from [192.0.2.1] ([192.0.2.1]) + by smtp.gmail.com with ESMTPSA id m3sm902024wrv.95.20192.0.2.1.1.50 + for + (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); + Wed, 24 Nov 2021 13:43:50 -0800 (PST) +Content-Type: multipart/mixed; boundary="------------0TFLSHrH0cciiTuijamM72EE" +Message-ID: <88226301-ff4c-6811-0ca8-9599d131eca5@networktocode.com> +Date: Wed, 24 Nov 2021 21:43:49 +0000 +MIME-Version: 1.0 +User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:91.0) + Gecko/20100101 Thunderbird/91.3.0 +Content-Language: en-US +From: Paddy Kelly +To: patrick.kelly@networktocode.com +Subject: [ EXTERNAL ] Cancellation Colt Third Party Maintenance Notification - + CRQ1-12345678 [07/12/2021 23:00:00 GMT - 08/12/2021 05:00:00 GMT] for + ACME, 123456 + +This is a multi-part message in MIME format. +--------------0TFLSHrH0cciiTuijamM72EE +Content-Type: text/plain; charset=UTF-8; format=flowed +Content-Transfer-Encoding: 7bit + +[ EXTERNAL ] + +Planned Outage Notification + +Dear Sir or Madam, + +In order to maintain the highest levels of availability and service to +our customers, it is sometimes necessary for Colt and our partners to +perform network maintenance. We apologize for any resulting +inconvenience and assure you of our efforts to minimise any service +disruption. To view this, and all other planned maintenance on your +services, or if you require any assistance, please contact us via the +Colt Online Portal http://online.colt.net. Alternatively, email us to +PlannedWorks@colt.net, quoting the following reference number +CRQ1-12345678. Please retain this unique reference for the maintenance. + +Planned Works Details: + +Planned Work (PW)Ref.: CRQ1-12345678 +Start Date & Time: 07/12/2021 23:00:00(GMT)* +End Date & Time: 08/12/2021 05:00:00 (GMT)* +Outage Duration: 360 Minutes + +*Time Zone: +Central European Time (CET) = GMT + 1 hour +Central European Summer Time (CEST) = GMT + 2 hours + +Justification of the work: We would like to make you aware of a +maintenance our carrier will conduct on their network affecting your +service to perform Cable Maintenance Work. As this maintenance is not +being conducted by Colt, rescheduling this work may not be possible. +Should the date and time for the maintenance have passed, without an +updated notification communicated for it, please consider the work as +completed. + +Service: ***Please refer to the attached CSV file for your service(s) +affected by this maintenance**** + +PLEASE NOTE: To enable you to plan appropriately the list of impacted +services includes those that have been completed, as well as those +pending completion. If the pending installation is completed prior to +the scheduled date for the planned maintenance these services will be +impacted. + +Please assist Colt by informing us about any changes to your contact +details via the Colt Online Portal http://online.colt.net or by replying +to PlannedWorks@colt.net so that we can ensure that future notifications +reach the correct parties. + +Should you experience any issue with your service post the maintenance +end time, please contact Colt Technical support via the Colt Online +Portal http://online.colt.net. Alternatively, visit +http://www.colt.net/support to contact us by phone, quoting your service ID. + +For more information about a service, please consult the Colt Online +Portal http://online.colt.net + + +Colt Change management +Colt Technology Services - Operations + +For support log into Colt Online: https://online.colt.net +For other contact options: https://www.colt.net/support +[Colt Disclaimer] This email is from an entity of the Colt group of +companies. Colt Group Holdings Limited, Colt House, 20 Great Eastern +Street, London, EC2A 3EH, United Kingdom, registered in England and +Wales, under company number 11530966. Corporate and contact information +for our entities can be found at +https://www.colt.net/legal/colt-group-of-companies/. Internet +communications are not secure and Colt does not accept responsibility +for the accurate transmission of this message. Content of this email or +its attachments is not legally or contractually binding unless expressly +previously agreed in writing by Colt +--------------0TFLSHrH0cciiTuijamM72EE +Content-Type: text/plain; charset=UTF-8; name="colt1" +Content-Disposition: attachment; filename="colt1" +Content-Transfer-Encoding: base64 + +QkVHSU46VkNBTEVOREFSClBST0RJRDotLy9NaWNyb3NvZnQgQ29ycG9yYXRpb24vL091dGxv +b2sgMTYuMCBNSU1FRElSLy9FTgpWRVJTSU9OOjIuMApNRVRIT0Q6UkVRVUVTVApCRUdJTjpW +VElNRVpPTkUKVFpJRDpVVEMKQkVHSU46U1RBTkRBUkQKRFRTVEFSVDoxNjAxMTAyOFQwMjAw +MDAKVFpPRkZTRVRGUk9NOi0wMDAwClRaT0ZGU0VUVE86LTAwMDAKRU5EOlNUQU5EQVJECkVO +RDpWVElNRVpPTkUKQkVHSU46VkVWRU5UCkNMQVNTOlBVQkxJQwpDUkVBVEVEOjIwMjEwNzMw +VDE0MDMwOFoKRFRFTkQ7VFpJRD1VVEM6MjAyMTA4MDdUMDUwMDAwCkRUU1RBTVA6MjAyMTA3 +MzBUMTQwMzA4WgpEVFNUQVJUO1RaSUQ9VVRDOjIwMjEwODA2VDIxMDAwMApMQVNULU1PRElG +SUVEOjIwMjEwNzMwVDE0MDMwOFoKT1JHQU5JWkVSOkRvTm90UmVwbHlfQ2hhbmdlQGNvbHQu +bmV0CkxPQ0FUSU9OOkNvbHQgSW50ZXJuYWwgTWFpbnRlbmFuY2UKUFJJT1JJVFk6NQpTRVFV +RU5DRTowClNVTU1BUlk7TEFOR1VBR0U9ZW4tdXM6WyBFWFRFUk5BTCBdIENvbHQgU2Vydmlj +ZSBBZmZlY3RpbmcgTWFpbnRlbmFuY2UgTm90aWZpY2F0aW9uIC0gQ1JRMS0xMjM0NTY3OCBb +MDYvOC8yMDIxIDIyOjAwOjAwIEdNVCAtIDA3LzgvMjAyMSAwNjowMDowMCBHTVRdIGZvciBB +Q01FLCAgMTIzNDUwMDAKVFJBTlNQOk9QQVFVRQpVSUQ6TVMwME5ERTFNamM1TkRjM05UTTRP +REU0TVRGSmJYQmhZM1JsWkE9PQpYLUFMVC1ERVNDO0ZNVFRZUEU9dGV4dC9odG1sOjxodG1s +IHhtbG5zOnY9J3VybjpzY2hlbWFzLW1pY3Jvc29mdC1jb206dm1sJyAgeG1sbnM6bz0ndXJu +OnNjaGVtYXMtbWljcm9zb2Z0LWNvbTpvZmZpY2U6b2ZmaWNlJyB4bWxuczp3PSd1cm46c2No +ZW1hcy1taWMgcm9zb2Z0LWNvbTpvZmZpY2U6d29yZCcgeG1sbnM6bT0naHR0cDovL3NjaGVt +YXMubWljcm9zb2Z0LmNvbS9vZmZpY2UvMjAwNC8xMi9vbW1sJyB4bWxucz0naHR0cDovL3d3 +dy53My5vcmcvVFIvUkVDLWh0bWw0MCc+PGhlYWQ+PG1ldGEgbmFtZT1Qcm9nSWQgY29udGVu +dD1Xb3JkLkRvY3VtZW50PjxtZXRhIG5hbWU9R2VuZXJhdG9yIGNvbnRlbnQ9J01pY3Jvc29m +dCBXb3JkIDE1Jz48bWV0YSBuYW1lPU9yaWdpbmF0b3IgY29udGVudD0nTWljcm9zb2Z0IFdv +cmQgMTUnPjxsaW5rIHJlbD1GaWxlLUxpc3QgaHJlZj0nY2lkOmZpbGVsaXN0LnhtbEAwMUQ2 +NDBFQS45QzI4MjU5MCc+IDwvaGVhZD4gPGJvZHkgbGFuZz1FTi1VUyBsaW5rPScjMDU2M0Mx +JyB2bGluaz0nIzk1NEY3Micgc3R5bGU9J3RhYi1pbnRlcnZhbDouNWluJz48dGFibGUgd2lk +dGg9IjEwMCUiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIj48 +dHI+PHRkIGFsaWduPSJjZW50ZXIiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTJwdDtmb250 +LWZhbWlseTonQ2FsaWJyaScsc2Fucy1zZXJpZjtjb2xvcjojQzAwMDAwO3RleHQtYWxpZ246 +Y2VudGVyIj48c3Ryb25nPlRoaXMgaXMgYSBzeXN0ZW0gZ2VuZXJhdGVkIGNhbGVuZGFyIGlu +dml0ZS4gQWNjZXB0aW5nIG9yIERlY2xpbmluZyBpcyBtZWFudCBvbmx5IGZvciB0aGUgcHVy +cG9zZSBvZiBhIENhbGVuZGFyIGRpc3BsYXkuICBUaGUgdGltaW5nIG9mIHRoZSBpbnZpdGUg +aXMgc2V0IHRvIHRoZSB1c2Vy4oCZcyBsb2NhbCBzeXN0ZW0gdGltZSBhbmQgc2hvdWxkIG5v +dCB0byBiZSBjb25mdXNlZCB3aXRoIHRoZSB0ZXh0IGRpc3BsYXllZCB3aXRoaQogbiB0aGUg +aW52aXRlLCB3aGljaCBpcyBpbiBHTVQuICBTaG91bGQgeW91IHJlcXVpcmUgYW55IGFzc2lz +dGFuY2UsIHBsZWFzZSBjb250YWN0IHVzIHZpYSB0aGUgQ29sdCBPbmxpbmUgUG9ydGFsIDxz +cGFuIHN0eWxlPSJjb2xvcjojQzAwMDAwIj48YSBocmVmPSJodHRwOi8vb25saW5lLmNvbHQu +bmV0LyIgc3R5bGU9ImJvcmRlci1ib3R0b206IDFweCBzb2xpZCAjMDAwOyI+PHNwYW4gbGFu +Zz0iREUiIHN0eWxlPSJjb2xvcjojQzAwMDAwO2JvcmRlci1ib3R0b206IDFweCBzb2xpZCAj +MDAwOyI+aHR0cDovL29ubGluZS5jb2x0Lm5ldDwvc3Bhbj48L2E+PC9zcGFuPiBvciBhbHRl +cm5hdGl2ZWx5IG1haWwgdXMgYnkgcmVwbHlpbmcgdG8gdGhlIG5vdGlmaWNhdGlvbjwvc3Bh +bj48L3RkPjwvdHI+PC90YWJsZT48cD48L3A+PHA+PHN0cm9uZz48c3BhbiBzdHlsZT0iZm9u +dC1zaXplOiAxMHB0OyI+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1z +ZXJpZjsiPjxpbWcgYm9yZGVyPSIwIiBpZD0iX3gwMDAwX2kxMDI1IiBzcmM9Imh0dHBzOi8v +ZmlsZXN0b3JlLnhtcjMuY29tLzc2MzI1Mi8xMTEzNTk3OTAvMTQ2MjI5LzE4NTAwNC9qb2Jz +ZXR0aW5ncy9kb2NzL2xvZ29sXzE0MjkxNDU1MDI0NDIucG5nIiAvPjwvc3Bhbj48L3NwYW4+ +PC9zdHJvbmc+PC9wPjxwPjwvcD48cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAxMHB0OyI+ +PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsiPjxzcGFuIHN0 +eWxlPSJmb250LXNpemU6IDEwcHQ7Ij48c3Ryb25nPlBsYW5uZWQgT3V0YWdlIE5vdGlmaWNh +dGlvbjwvc3Ryb25nPjwvc3Bhbj48L3NwYW4+PC9zcGFuPjwvcD48cD48L3A+PHA+PHNwYW4g +c3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJp +YWwsIHNhbnMtc2VyaWY7Ij5EZWFyIFNpciBvciBNYWRhbSw8L3NwYW4+PC9zcGFuPjwvcD48 +cD48L3A+PHA+PHNwYW4gc3R5bAogZT0iZm9udC1zaXplOiAxMHB0OyI+PHNwYW4gc3R5bGU9 +ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsiPkluIG9yZGVyJm5ic3A7dG8gbWFp +bnRhaW4gdGhlIGhpZ2hlc3QgbGV2ZWxzIG9mIGF2YWlsYWJpbGl0eSBhbmQgc2VydmljZSB0 +byBvdXIgY3VzdG9tZXJzLCBpdCBpcyBzb21ldGltZXMgbmVjZXNzYXJ5IGZvciBDb2x0Jm5i +c3A7YW5kIG91ciBwYXJ0bmVycyB0byBwZXJmb3JtIG5ldHdvcmsgbWFpbnRlbmFuY2UuJm5i +c3A7Jm5ic3A7V2UgYXBvbG9naXplIGZvciBhbnkgcmVzdWx0aW5nIGluY29udmVuaWVuY2Ug +YW5kIGFzc3VyZSB5b3Ugb2Ygb3VyIGVmZm9ydHMgdG8gbWluaW1pc2UgYW55IHNlcnZpY2Ug +ZGlzcnVwdGlvbi4gVG8gdmlldyB0aGlzLCBhbmQgYWxsIG90aGVyIHBsYW5uZWQgbWFpbnRl +bmFuY2Ugb24geW91ciBzZXJ2aWNlcywgb3IgaWYgeW91IHJlcXVpcmUgYW55IGFzc2lzdGFu +Y2UsIHBsZWFzZSBjb250YWN0IHVzIHZpYSB0aGUgQ29sdCBPbmxpbmUgUG9ydGFsJm5ic3A7 +PC9zcGFuPjwvc3Bhbj48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNl +cmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTFwdDsiPjxzcGFuIHN0eWxlPSJmb250 +LXNpemU6IDEwcHQ7Ij48YSBocmVmPSJodHRwOi8vb25saW5lLmNvbHQubmV0Ij5odHRwOi8v +b25saW5lLmNvbHQubmV0PC9hPi4gQWx0ZXJuYXRpdmVseSwgZW1haWwgdXMgdG8mbmJzcDs8 +L3NwYW4+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxhIGhyZWY9Im1haWx0bzpQ +bGFubmVkV29ya3NAY29sdC5uZXQiPlBsYW5uZWRXb3Jrc0Bjb2x0Lm5ldDwvYT4sJm5ic3A7 +PC9zcGFuPjwvc3Bhbj48L3NwYW4+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxz +cGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2VyaWY7Ij5xdW90aW5nIHRo +ZSBmb2xsb3dpbmcgcmVmZXJlbmNlIG51bWJlciZuYnNwOzxzdHJvbmc+Q1JRMQogLTEyMzQ1 +Njc4PC9zdHJvbmc+LiBQbGVhc2UgcmV0YWluIHRoaXMgdW5pcXVlIHJlZmVyZW5jZSBmb3Ig +dGhlIG1haW50ZW5hbmNlLjwvc3Bhbj48L3NwYW4+PC9wPjxwPjwvcD48cD48c3BhbiBzdHls +ZT0iZm9udC1zaXplOiAxMHB0OyI+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwg +c2Fucy1zZXJpZjsiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij48c3Ryb25nPjx1 +PlBsYW5uZWQgV29ya3MgRGV0YWlsczo8L3U+PC9zdHJvbmc+PC9zcGFuPjwvc3Bhbj48L3Nw +YW4+PC9wPjxwPjwvcD48cD48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAxMHB0OyI+PHNwYW4g +c3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsiPjxzdHJvbmc+UGxhbm5l +ZCBXb3JrIChQVylSZWYuOjwvc3Ryb25nPiZuYnNwOyZuYnNwOyBDUlExLTEyMzQ1Njc4PC9z +cGFuPjwvc3Bhbj48YnIgLz48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAxMHB0OyI+PHNwYW4g +c3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsiPjxzdHJvbmc+U3RhcnQg +RGF0ZSAmYW1wOyBUaW1lOjwvc3Ryb25nPiZuYnNwOyAmbmJzcDsgJm5ic3A7ICZuYnNwOyAm +bmJzcDsgJm5ic3A7ICZuYnNwOzwvc3Bhbj48L3NwYW4+MDYvOC8yMDIxIDIxOjAwOjAwPHNw +YW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTog +YXJpYWwsIHNhbnMtc2VyaWY7Ij4oR01UKSo8L3NwYW4+PC9zcGFuPjxiciAvPjxzcGFuIHN0 +eWxlPSJmb250LXNpemU6IDEwcHQ7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFs +LCBzYW5zLXNlcmlmOyI+PHN0cm9uZz5FbmQgRGF0ZSAmYW1wOyBUaW1lOjwvc3Ryb25nPiZu +YnNwOyAmbmJzcDsgJm5ic3A7ICZuYnNwOyAmbmJzcDsgJm5ic3A7ICZuYnNwOyZuYnNwOzwv +c3Bhbj48L3NwYW4+MDcvOC8yMDIxIDA1OjAwOjAwPHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTog +MTBwdDsiPjxzcGFuIAogc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsi +PiZuYnNwOyhHTVQpKjwvc3Bhbj48L3NwYW4+PGJyIC8+PHNwYW4gc3R5bGU9ImZvbnQtc2l6 +ZTogMTBwdDsiPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2VyaWY7 +Ij48c3Ryb25nPk91dGFnZSBEdXJhdGlvbjo8L3N0cm9uZz4mbmJzcDsgJm5ic3A7ICZuYnNw +OyAmbmJzcDsgJm5ic3A7ICZuYnNwOyAmbmJzcDsgTm8gSW1wYWN0PC9zcGFuPjwvc3Bhbj48 +L3A+PHA+PC9wPjxwPjxzdHJvbmc+PGVtPjxzcGFuIHN0eWxlPSJiYWNrZ3JvdW5kLWltYWdl +OiBpbml0aWFsOyBiYWNrZ3JvdW5kLXBvc2l0aW9uOiBpbml0aWFsOyBiYWNrZ3JvdW5kLXNp +emU6IGluaXRpYWw7IGJhY2tncm91bmQtcmVwZWF0OiBpbml0aWFsOyBiYWNrZ3JvdW5kLWF0 +dGFjaG1lbnQ6IGluaXRpYWw7IGJhY2tncm91bmQtb3JpZ2luOiBpbml0aWFsOyBiYWNrZ3Jv +dW5kLWNsaXA6IGluaXRpYWw7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBz +YW5zLXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogOXB0OyI+KlRpbWUgWm9uZTo8 +L3NwYW4+PC9zcGFuPjwvc3Bhbj48L2VtPjwvc3Ryb25nPjxiciAvPjxlbT48c3BhbiBzdHls +ZT0iYmFja2dyb3VuZC1pbWFnZTogaW5pdGlhbDsgYmFja2dyb3VuZC1wb3NpdGlvbjogaW5p +dGlhbDsgYmFja2dyb3VuZC1zaXplOiBpbml0aWFsOyBiYWNrZ3JvdW5kLXJlcGVhdDogaW5p +dGlhbDsgYmFja2dyb3VuZC1hdHRhY2htZW50OiBpbml0aWFsOyBiYWNrZ3JvdW5kLW9yaWdp +bjogaW5pdGlhbDsgYmFja2dyb3VuZC1jbGlwOiBpbml0aWFsOyI+PHNwYW4gc3R5bGU9ImZv +bnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6 +IDlwdDsiPkNlbnRyYWwgRXVyb3BlYW4gVGltZSAoQ0VUKSZuYnNwOyZuYnNwOz0gR01UICsg +MSBob3VyPC9zcGFuPjwvc3Bhbj48L3NwYW4+PC9lbT48YnIgLz48ZQogbT48c3BhbiBzdHls +ZT0iYmFja2dyb3VuZC1pbWFnZTogaW5pdGlhbDsgYmFja2dyb3VuZC1wb3NpdGlvbjogaW5p +dGlhbDsgYmFja2dyb3VuZC1zaXplOiBpbml0aWFsOyBiYWNrZ3JvdW5kLXJlcGVhdDogaW5p +dGlhbDsgYmFja2dyb3VuZC1hdHRhY2htZW50OiBpbml0aWFsOyBiYWNrZ3JvdW5kLW9yaWdp +bjogaW5pdGlhbDsgYmFja2dyb3VuZC1jbGlwOiBpbml0aWFsOyI+PHNwYW4gc3R5bGU9ImZv +bnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6 +IDlwdDsiPjxlbT5DZW50cmFsIEV1cm9wZWFuIFN1bW1lciBUaW1lIChDRVNUKSA9IEdNVCAr +IDImbmJzcDtob3VyczwvZW0+PC9zcGFuPjwvc3Bhbj48L3NwYW4+PC9lbT48L3A+PHA+PHNw +YW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTog +YXJpYWwsIHNhbnMtc2VyaWY7Ij48c3Ryb25nPkp1c3RpZmljYXRpb24gb2YgdGhlIHdvcms6 +PC9zdHJvbmc+Jm5ic3A7S2luZGx5IG5vdGUgdGhlIGRldmljZSBvbiB3aGljaCB5b3VyIHNl +cnZpY2UgaXMgY29tbWlzc2lvbmVkLCB3aWxsIGJlIHVwZ3JhZGVkIGF0IGEgbGF0ZXIgc3Rh +Z2UuIFRodXMgcGxlYXNlIHRha2Ugbm90ZSB0aGF0IHRoaXMgbWFpbnRlbmFuY2UgZm9yIHlv +dXIgc2VydmljZSwgaW4gdGhlIGF0dGFjaGVkIENTViBmaWxlLCBzdGFuZHMgYXMgY2FuY2Vs +bGVkLiBUaGVyZSBhcmUgY3VycmVudGx5IG5vIG5ldyBkYXRlcyBhdmFpbGFibGUuIE9uY2Ug +dGhlIG5ldyB0aW1pbmdzIGhhdmUgYmVlbiBmaW5hbGlzZWQsIENvbHQgd2lsbCByYWlzZSBh +IG5ldyBjaGFuZ2UgdGlja2V0LCBhbmQgaW5mb3JtIHlvdSBhYm91dCB0aGUgd29yay4gV2Ug +d291bGQgbGlrZSB0byBhcG9sb2dpc2UgZm9yIGFueSBpbmNvbnZlbmllbmNlIHRoaXMgbWF5 +IGhhdmUgcmVzdWx0ZWQgaW48L3NwYW4+PC9zcGFuPjwvcD48cD48L3A+PHA+PHNwYW4gc3R5 +bGU9ImZvbnQtc2l6ZQogOiAxMHB0OyI+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlh +bCwgc2Fucy1zZXJpZjsiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij48c3Ryb25n +PlNlcnZpY2U6Jm5ic3A7Jm5ic3A7PHNwYW4gc3R5bGU9ImNvbG9yOiByZ2IoMCwgNTEsIDE1 +Myk7Ij4qKipQbGVhc2UgcmVmZXIgdG8gdGhlIGF0dGFjaGVkIENTViBmaWxlIGZvciB5b3Vy +IHNlcnZpY2UocykgYWZmZWN0ZWQgYnkgdGhpcyBtYWludGVuYW5jZSoqKio8L3NwYW4+PC9z +dHJvbmc+PC9zcGFuPjwvc3Bhbj48L3NwYW4+PC9wPjxwPjwvcD48cD48L3A+PHA+PC9wPjxw +PjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1p +bHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+PHN0cm9uZz5QTEVBU0UgTk9URTo8L3N0cm9uZz4m +bmJzcDsmbmJzcDtUbyBlbmFibGUgeW91IHRvIHBsYW4gYXBwcm9wcmlhdGVseSB0aGUgbGlz +dCBvZiBpbXBhY3RlZCBzZXJ2aWNlcyBpbmNsdWRlcyB0aG9zZSB0aGF0IGhhdmUgYmVlbiBj +b21wbGV0ZWQsIGFzIHdlbGwgYXMgdGhvc2UgcGVuZGluZyBjb21wbGV0aW9uLiZuYnNwOyZu +YnNwO0lmIHRoZSBwZW5kaW5nIGluc3RhbGxhdGlvbiBpcyBjb21wbGV0ZWQgcHJpb3IgdG8g +dGhlIHNjaGVkdWxlZCBkYXRlIGZvciB0aGUgcGxhbm5lZCBtYWludGVuYW5jZSB0aGVzZSBz +ZXJ2aWNlcyB3aWxsIGJlIGltcGFjdGVkLjwvc3Bhbj48L3NwYW4+PC9wPjxwPjwvcD48cD48 +c3BhbiBzdHlsZT0iZm9udC1zaXplOiAxMHB0OyI+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5 +OiBhcmlhbCwgc2Fucy1zZXJpZjsiPlBsZWFzZSBhc3Npc3QgQ29sdCBieSBpbmZvcm1pbmcg +dXMgYWJvdXQgYW55IGNoYW5nZXMgdG8geW91ciBjb250YWN0IGRldGFpbHMmbmJzcDs8L3Nw +YW4+PC9zcGFuPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2VyaWY7 +Ij48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAxMHB0OyI+dmlhIHRoZQogIENvbHQgT25saW5l +IFBvcnRhbCZuYnNwOzwvc3Bhbj48L3NwYW4+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBh +cmlhbCwgc2Fucy1zZXJpZjsiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDExcHQ7Ij48YSBo +cmVmPSJodHRwOi8vb25saW5lLmNvbHQubmV0Ij48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAx +MHB0OyI+aHR0cDovL29ubGluZS5jb2x0Lm5ldDwvc3Bhbj48L2E+PC9zcGFuPjwvc3Bhbj48 +c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+PHNwYW4gc3R5 +bGU9ImZvbnQtc2l6ZTogMTBwdDsiPiZuYnNwO29yIGJ5IHJlcGx5aW5nIHRvJm5ic3A7PC9z +cGFuPjwvc3Bhbj48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlm +OyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTFwdDsiPjxzcGFuIHN0eWxlPSJmb250LXNp +emU6IDEwcHQ7Ij48YSBocmVmPSJtYWlsdG86UGxhbm5lZFdvcmtzQGNvbHQubmV0Ij5QbGFu +bmVkV29ya3NAY29sdC5uZXQ8L2E+Jm5ic3A7PC9zcGFuPjwvc3Bhbj48L3NwYW4+PHNwYW4g +c3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsiPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJp +YWwsIHNhbnMtc2VyaWY7Ij5zbyB0aGF0IHdlIGNhbiBlbnN1cmUgdGhhdCBmdXR1cmUgbm90 +aWZpY2F0aW9ucyByZWFjaCB0aGUgY29ycmVjdCBwYXJ0aWVzLjwvc3Bhbj48L3NwYW4+PGJy +IC8+PGJyIC8+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsi +PjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij5TaG91bGQgeW91IGV4cGVyaWVuY2Ug +YW55IGlzc3VlIHdpdGggeW91ciBzZXJ2aWNlIHBvc3QgdGhlIG1haW50ZW5hbmNlIGVuZCB0 +aW1lLCBwbGVhc2UgY29udGFjdCBDb2x0IFRlY2huaWNhbCBzdXBwb3J0IHZpYSB0aGUgQ29s +dCBPbmxpbmUgUG9ydGFsJm5ic3A7PC9zcGFuPjwvc3Bhbj48c3BhbiBzdHlsZT0iZm9udC1m +YW1pbHk6IGFyaWFsLAogIHNhbnMtc2VyaWY7Ij48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAx +MXB0OyI+PGEgaHJlZj0iaHR0cDovL29ubGluZS5jb2x0Lm5ldCI+PHNwYW4gc3R5bGU9ImZv +bnQtc2l6ZTogMTBwdDsiPmh0dHA6Ly9vbmxpbmUuY29sdC5uZXQ8L3NwYW4+PC9hPjwvc3Bh +bj48L3NwYW4+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBhcmlhbCwgc2Fucy1zZXJpZjsi +PjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDEwcHQ7Ij4uIEFsdGVybmF0aXZlbHksIHZpc2l0 +Jm5ic3A7PGEgaHJlZj0iaHR0cDovL3d3dy5jb2x0Lm5ldC9zdXBwb3J0Ij5odHRwOi8vd3d3 +LmNvbHQubmV0L3N1cHBvcnQ8L2E+Jm5ic3A7dG8gY29udGFjdCB1cyBieSBwaG9uZSwgcXVv +dGluZyB5b3VyIHNlcnZpY2UgSUQ8L3NwYW4+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTFw +dDsiPi48L3NwYW4+PGJyIC8+PGJyIC8+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTBwdDsi +PkZvciBtb3JlIGluZm9ybWF0aW9uIGFib3V0IGEgc2VydmljZSwgcGxlYXNlIGNvbnN1bHQm +bmJzcDs8L3NwYW4+PC9zcGFuPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNh +bnMtc2VyaWY7Ij48c3BhbiBzdHlsZT0iZm9udC1zaXplOiAxMHB0OyI+dGhlIENvbHQgT25s +aW5lIFBvcnRhbCZuYnNwOzwvc3Bhbj48L3NwYW4+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5 +OiBhcmlhbCwgc2Fucy1zZXJpZjsiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6IDExcHQ7Ij48 +YSBocmVmPSJodHRwOi8vb25saW5lLmNvbHQubmV0Ij48c3BhbiBzdHlsZT0iZm9udC1zaXpl +OiAxMHB0OyI+aHR0cDovL29ubGluZS5jb2x0Lm5ldDwvc3Bhbj48L2E+PC9zcGFuPjwvc3Bh +bj48L3A+PHA+PC9wPjxwPjxiciAvPjxzdHJvbmc+PHNwYW4gc3R5bGU9ImNvbG9yOiByZ2Io +MTA2LCAxMDYsIDEwNik7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBzYW5z +LXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogMTFwdDsiPgogQ29sdCBDaGFuZ2Ug +bWFuYWdlbWVudDwvc3Bhbj48L3NwYW4+PC9zcGFuPjwvc3Ryb25nPjxiciAvPjxzdHJvbmc+ +PHNwYW4gc3R5bGU9ImNvbG9yOiByZ2IoMTA2LCAxMDYsIDEwNik7Ij48c3BhbiBzdHlsZT0i +Zm9udC1mYW1pbHk6IGFyaWFsLCBzYW5zLXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6 +ZTogMTFwdDsiPjxzdHJvbmc+Q29sdCBUZWNobm9sb2d5IFNlcnZpY2VzIC0gT3BlcmF0aW9u +czwvc3Ryb25nPjwvc3Bhbj48L3NwYW4+PC9zcGFuPjwvc3Ryb25nPjxiciAvPjxzcGFuIHN0 +eWxlPSJmb250LXNpemU6IDEwcHQ7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFs +LCBzYW5zLXNlcmlmOyI+PGltZyBib3JkZXI9IjAiIGlkPSJfeDAwMDBfaTEwMjUiIHNyYz0i +aHR0cHM6Ly9maWxlc3RvcmUueG1yMy5jb20vNzYzMjUyLzExMTM1OTc5MC8xNDYyMjkvMTg1 +MDA0L2pvYnNldHRpbmdzL2RvY3MvbG9nb2xfMTQyOTE0NTUwMjQ0Mi5wbmciIC8+Jm5ic3A7 +PC9zcGFuPjwvc3Bhbj48YnIgLz48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6IGFyaWFsLCBz +YW5zLXNlcmlmOyI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogOXB0OyI+Rm9yIHN1cHBvcnQg +bG9nIGludG8gQ29sdCBPbmxpbmU6Jm5ic3A7PHNwYW4gc3R5bGU9ImNvbG9yOiByZ2IoMzEs +IDczLCAxMjUpOyI+PGEgaHJlZj0iaHR0cHM6Ly9vbmxpbmUuY29sdC5uZXQiPmh0dHBzOi8v +b25saW5lLmNvbHQubmV0PC9hPjwvc3Bhbj48L3NwYW4+PC9zcGFuPjxiciAvPjxzcGFuIHN0 +eWxlPSJmb250LWZhbWlseTogYXJpYWwsIHNhbnMtc2VyaWY7Ij48c3BhbiBzdHlsZT0iZm9u +dC1zaXplOiA5cHQ7Ij5Gb3Igb3RoZXIgY29udGFjdCBvcHRpb25zOiZuYnNwOzxzcGFuIHN0 +eWxlPSJjb2xvcjogcmdiKDMxLCA3MywgMTI1KTsiPjxhIGhyZWY9Imh0dHBzOi8vd3d3LmNv +bHQubmV0L3N1cHBvcnQiPmh0dHBzOi8vd3d3LmNvbHQubmV0L3N1cHBvcnQ8L2E+PC9zcGFu +Pjwvc3Bhbj48L3NwYQogbj48L3A+PC9ib2R5PjwvaHRtbD4KQkVHSU46VkFMQVJNClRSSUdH +RVI6LVBUMTVNCkFDVElPTjpESVNQTEFZCkRFU0NSSVBUSU9OOlJlbWluZGVyCkVORDpWQUxB +Uk0KRU5EOlZFVkVOVApFTkQ6VkNBTEVOREFS +--------------0TFLSHrH0cciiTuijamM72EE +Content-Type: text/csv; charset=UTF-16LE; name="colt2.csv" +Content-Disposition: attachment; filename="colt2.csv" +Content-Transfer-Encoding: base64 + +//5PAEMATgAJAEwAZQBnAGEAbAAgAEMAdQBzAHQAbwBtAGUAcgAJAE8AcgBkAGUAcgAgAE4A +dQBtAGIAZQByAAkAQwBpAHIAYwB1AGkAdAAgAEkARAAJAEMAdQBzAHQAbwBtAGUAcgAgAFIA +ZQBmACAAMQAJAEMAdQBzAHQAbwBtAGUAcgAgAFIAZQBmACAAMgAJAFMAZQByAHYAaQBjAGUA +CQBBACAAQwB1AHMAdABvAG0AZQByAAkAQQAgAEEAZABkAHIAZQBzAHMACQBBACAAUABvAHMA +dABjAG8AZABlAAkAQQAgAFQAbwB3AG4AIABDAGkAdAB5AAkAQgAgAEMAdQBzAHQAbwBtAGUA +cgAJAEIAIABBAGQAZAByAGUAcwBzAAkAQgAgAFAAbwBzAHQAYwBvAGQAZQAJAEIAIABUAG8A +dwBuACAAQwBpAHQAeQAJAA0ACgBPAEMATgA6ACAAMQAyADMANAA1ADYACQBBAEMATQBFACAA +RQBVAFIATwBQAEUAIABTAEEACQA5ADgANwA2ADUANAAzADIAMQAvADEAMgAzADQANQAtADYA +NwA4ADkACQBDAC0AMQAyADMANAA1ADYANwAJAAkAQgBlAGwAZwBpAHUAbQAgAC0AIABCAHIA +dQBzAHMAZQBsAHMACQBJAFAAIABBAEMAQwBFAFMAUwA6ACAAMQAgAEcAQgBQAFMAOwAgAFUA +TgBQAFIATwBUAEUAQwBUAEUARAA7ACAATgBPACAAUgBFAFMASQBMAEkARQBOAEMARQA7ACAA +TgBPACAAQwBPAEwAVAAgAFIATwBVAFQARQBSADsAIABGAEwAQQBUACAAUgBBAFQARQAgAEIA +SQBMAEwASQBOAEcAOwAgADMAUgBEACAAUABBAFIAVABZACAATABFAEEAUwBFAEQAIABMAEkA +TgBFADsAIABFAFQASABFAFIATgBFAFQAOwAgADEAMAAwADAAQgBBAFMARQAtAFQAOwAgAFIA +SgA0ADUACQBBAEMATQBFACAARQBVAFIATwBQAEUAIABTAEEACQBNAEEASQBOACAAUwBUAFIA +RQBFAFQACQAxADIAMwA0AAkAQgBSAFUAUwBTAEUATABTAAkAQwBvAGwAdAAJAAkACQAJAA== + +--------------0TFLSHrH0cciiTuijamM72EE-- + diff --git a/tests/unit/data/email/test_sample_message.eml b/tests/unit/data/email/test_sample_message.eml index 25a53edb..4f23ca29 100644 --- a/tests/unit/data/email/test_sample_message.eml +++ b/tests/unit/data/email/test_sample_message.eml @@ -1,171 +1,171 @@ -Return-Path: -To: Manuel Lemos -Subject: Testing Manuel Lemos' MIME E-mail composing and sending PHP class: HTML message -From: mlemos -Reply-To: mlemos -Sender: mlemos@acm.org -X-Mailer: http://www.phpclasses.org/mimemessage $Revision: 1.63 $ (mail) -MIME-Version: 1.0 -Content-Type: multipart/mixed; boundary="652b8c4dcb00cdcdda1e16af36781caf" -Message-ID: <20050430192829.0489.mlemos@acm.org> -Date: Sat, 30 Apr 2005 19:28:29 -0300 - - ---652b8c4dcb00cdcdda1e16af36781caf -Content-Type: multipart/related; boundary="6a82fb459dcaacd40ab3404529e808dc" - - ---6a82fb459dcaacd40ab3404529e808dc -Content-Type: multipart/alternative; boundary="69c1683a3ee16ef7cf16edd700694a2f" - - ---69c1683a3ee16ef7cf16edd700694a2f -Content-Type: text/plain; charset=ISO-8859-1 -Content-Transfer-Encoding: quoted-printable - -This is an HTML message. Please use an HTML capable mail program to read -this message. - ---69c1683a3ee16ef7cf16edd700694a2f -Content-Type: text/html; charset=ISO-8859-1 -Content-Transfer-Encoding: quoted-printable - - - -Testing Manuel Lemos' MIME E-mail composing and sending PHP class: H= -TML message - - - - - - - -
-

Testing Manuel Lemos' MIME E-mail composing and sending PHP cla= -ss: HTML message

-
-

Hello Manuel,

-This message is just to let you know that the MIME E-mail message composing and sending PHP class is working as expected.

-

Here is an image embedded in a message as a separate part:

= -
-
Than= -k you,
-mlemos

-
- - ---69c1683a3ee16ef7cf16edd700694a2f-- - ---6a82fb459dcaacd40ab3404529e808dc -Content-Type: image/gif; name="logo.gif" -Content-Transfer-Encoding: base64 -Content-Disposition: inline; filename="logo.gif" -Content-ID: - -R0lGODlhlgAjAPMJAAAAAAAA/y8vLz8/P19fX19f339/f4+Pj4+Pz7+/v/////////////////// -/////yH5BAEAAAkALAAAAACWACMAQwT+MMlJq7046827/2AoHYChGAChAkBylgKgKClFyEl6xDMg -qLFBj3C5uXKplVAxIOxkA8BhdFCpDlMK1urMTrZWbAV8tVS5YsxtxmZHBVOSCcW9zaXyNhslVcto -RBp5NQYxLAYGLi8oSwoJBlE+BiSNj5E/PDQsmy4pAJWQLAKJY5+hXhZ2dDYldFWtNSFPiXssXnZR -k5+1pjpBiDMJUXG/Jo7DI4eKfMSmxsJ9GAUB1NXW19jZ2tvc3d7f4OHi2AgZN5vom1kk6F7s6u/p -m3Ab7AOIiCxOyZuBIv8AOeTJIaYQjiR/kKTr5GQNE3pYSjCJ9mUXClRUsLxaZGciC0X+OlpoOuQo -ZKdNJnIoKfnxRUQh6FLG0iLxIoYnJd0JEKISJyAQDodp3EUDC48oDnUY7HFI3wEDRjzycQJVZCQT -Ol7NK+G0qgtkAcOKHUu2rNmzYTVqRMt2bB49bHompSchqg6HcGeANSMxr8sEa2y2HexnSEUTuWri -SSbkYh7BgGVAnhB1b2REibESYaRoBgqIMYx59tFM9AvQffVG49P5NMZkMlHKhJPJb0knmSKZ6kSX -JtbeF3Am7ocok6c7cM7pU5xcXiJJETUz16qPrzEfaFgZpvzn7h86YV5r/1mxXeAUMVyEIpnVUGpN -RlG2ka9b3lP3pm2l6u7P+l/YLj3+RlEHbz1C0kRxSITQaAcilVBMEzmkkEQO8oSOBNg9SN+AX6hV -z1pjgJiAhwCRsY8ZIp6xj1ruqCgeGeKNGEZwLnIwzTg45qjjjjz2GEA5hAUp5JBEFmnkkSCoWEcZ -X8yohZNK1pFGPQS4hx0qNSLJlk9wCQORYu5QiMd7bUzGVyNlRiOHSlpuKdGEItHQ3HZ18beRRyws -YSY/waDTiHf/tWlWUBAJiMJ1/Z0XXU7N0FnREpKM4NChCgbyRDq9XYpOplaKopN9NMkDnBbG+UMC -QwLWIeaiglES6AjGARcPHCWoVAiatcTnGTABZoLPaPG1phccPv366mEvWEFSLnj+2QaonECwcJt/ -e1Zw3lJvVMmftBdVNQS3UngLCA85YHIQOy6JO9N4eZW7KJwtOUZmGwOMWqejwVW6RQzaikRHX3yI -osKhDAq8wmnKSmdMwNidSOof9ZG2DoV0RfTVmLFtGmNk+CoZna0HQnPHS3AhRbIeDpqmR09E0bsu -soeaw994z+rwQVInvqLenBftYjLOVphLFHhV9qsnez8AEUbQRgO737AxChjmyANxuEFHSGi7hFCV -4jxLst2N8sRJYU+SHiAKjlmCgz2IffbLI5aaQR71hnkxq1ZfHSfKata6YDCJDMAQwY7wOgzhjxgj -VFQnKB5uX4mr9qJ79pann+VcfcSzsSCd2mw5scqRRvlQ6TgcUelYhu75iPE4JejrsJOFQAG01277 -7bjnrvvuvPfu++/ABy887hfc6OPxyCevPDdAVoDA89BHL/301Fdv/fXYZ6/99tx3Pz0FEQAAOw== - ---6a82fb459dcaacd40ab3404529e808dc -Content-Type: image/gif; name="background.gif" -Content-Transfer-Encoding: base64 -Content-Disposition: inline; filename="background.gif" -Content-ID: <4c837ed463ad29c820668e835a270e8a.gif> - -R0lGODlh+wHCAPMAAKPFzKLEy6HDyqHCyaDByJ/Ax56/xp2+xZ28xJy7w5u6wpq5wZm4wJm3v5i2 -vpe1vSwAAAAA+wHCAEME/hDISau9OOvNu/9gKI5kaZ5oqq5s675wLM90bd94ru987//AoHBILBqP -yKRyyWw6n9CodEqtWq+gwSHReHgfjobY8X00FIc019tIHAYS7dqcQCDm3vC4fD4QAhUBBFsMZF8O -hnkLCAYFW11tb1iTlJWWOXJdZZtmC24Eg3hgYntfbXainJ2fgBSZbG5wFAG0E6+RoAZ3CbwJCgya -p3cMbAyevQcFAgMGCcRmxr1uyszOxQq+wF4MdcPFx7zJApfk5eYhr3SSGemRsu3dc+4iAqELhZwO -0X6hkHUHCBRoGtUg0RkEAAUeKhhGAcICBQIODIPooIEBzCTmKcjGYSNd/go3VvQo65zJkyhTqlzJ -sqXLlzBjypxJs6bNmzhz6tzJs6fPn0CDCh1KtKjRo0iTKl3KtKnTp1CXBhhAwECaq1gPNCIwANDU -qmkMcG311apWULmyZt3alcPXAma1FgAlgCxVq2LbRt3LF0Y7hwWoEjLEDZUmff8AOjMkTB5gwYu3 -JbhIQUDEZw+4+aE1aNc0R2vcDYjoDBgpBoUDj95yzzRqbH7qgW4t5vUnAfVAoj7NwOOf1QloN7Ad -u1Xf41b+IlCNsa6rR7DWwTPccTnG5sYvCEKwgPGiZI64A9OsK/Q/BM/0YfuFz13VOwsULLhHps+f -98Hl0zeDRk0X9Qih/vLPWPjFN197aPyB3IJVBLDMdc5t4OB1A0QowYQQ0vIgdilgyGEgG1roYV0j -GufhhyBSWGF2s2yIYosqWsjgjDTWaOONOOao44489ujjj0AGKeSQRBZp5JFIJqnkkkw26eSTUMJU -llpYseXVXWGNdSGWZ6EVF5VWukUVXFdtRUCEU+bFYpRslqNcYKHgk1k8hxWWxjCM0VkdnINJRtkE -lqH3hWZ/CKJYOBBBJxppu/FWh2qzNUrcmQRE6lpvt+UWUKPD9cbIb5bWhmlxbbL5JoUywiMddHRQ -x591GWqwXXdsfJeoeMO5UZ4/AaaHKXv1xVKgfghuNuyB9fUHHYAA/u2CEIHlGbiffWuWyuSJMmKA -bXbbbtuhi9kCUOIEJY57oYsraoduuOfGWO2J6Vor77z01mvvvfjmq+++/Pbr778AByzwwAQXbPDB -CCfcZDobldLRVfLEEgerjQ1EEEemJMiioZEdkggYizSiqMQKl5wCw6qswg+rDTvc6h0Wq9KAJ5tV -oGpJF9YysXn8lCfNL8HE88xw4EyzTDNDR4MMNUhfk40mhXkDTdHimHzjzRpgDcB0MEeHswf1sCZn -GfrQDMrIAYZEkEEOJTQRQweBp5FIDTGCEUiHYWwRXHOPMpLdVgcu+OCEF2744YgnrvjijDfu+OOQ -Ry755JRXbvnl/phnrvnmnHfu+eegZ57RAqSUzptv75E+M+Bb66L6InZwZ7rpr31aLQBhb2pap548 -e7TsIX8dOr/pIIZQQphFHfGqEbtq/J2/DDrZ13Ga0jt8h/XX9TxvfRmmuPVUatb34INCplxakjtm -XOQ7aP74c+k1fE4MD7fefvxBbLEeLldsyq/4o9ZzHOOHylBFS7f4RJxQMx/8MeB4ggIDA02ziLno -wlfGoOByKnUAhZQNWfkzwAXzMEExVFB+86NJ/TDVC4SIZRzFs5Ni5OQ/p7XwLOOwQDXSswgFiYuD -Z4GMP8AjtvGgJk9aYU2davdCeyzRU2LpBwkb2KjvWCU4T/TN/u1S+BKtYUBrXFue8DYQKFoVAzXa -eJh/XiYPpZEOFhAMTnzkk8aQWQU+c7yHJkIGkGd4SkDhMJ9i5qMAOu4RAWfiYk1yxwvfaYCRA8oh -JF14x0bGhgSyaZY07JCMRDLyWWnxTOyc1UmweMaSL5zSKf/xQgnk5lA3TCWWVunCRCrylrjMpS53 -ycte+vKXwAymMIdJzGIa85jITKYyl8nMZjrzmdCMpjSnSc1qWvOa2MymvkY3u9IxMReyW92fuLm6 -2Kmum53SIgZyxx7e9C423AyeNnkUw8RsSnqumsfWKKYnCdozen6iHiGsF483gkF7PIND96oUP7KE -73zteyj8/tK3JfGVqaHkkmhYMDrPJqzwfjRUlij4hzE4ds1pdGSMxgYYjAQZEBRtSeDKSmMMEGYG -ghjU4+osGEF9ZNCEG3SEB2s6LTSIsKcl3CkKO2qEj24Sh/ucw/NmmCdXQQMbsbSlzZoGMkSSBYh5 -kWIkEhWc3aARiVc0qE+hSCklkvCbUpQgFTWYRCy+la1bZGoQvHgBMPIznyT7QBkNgsY05m+NNSQa -Lwx6ijvJsZB69IIdB5nHOjKij9twCCAVGJ7HGlKyiMyhXo0wyUtmoLS2LK0ID+XIEWRys5ycyzg+ -yQ9TtjB2lpyLbZ8qy91mVZK+ReWZVCkNVmp1tMhNrnKX/svc5jr3udCNrnSnS93qWve62M2udrfL -3e5697vgDa94x0ve8pr3vOhNr3rXy972uve98I2vfOdLXxrBS0Uv8lZGUaUh/OKXXRmAV7jMVV+X -QLK4vD0TaoHLWq1UEsEJFu0FXknLh3iyM5EssEtQlrK98ZN5QbNqyl71pwqEza752MfZEqrhljg1 -pYMKkBh3FuKTXtUX+LupMkwcETNCA40D6QNiA3tfdunXAkdOEX+1Ba68tjiqLbVOnKp60oNAam6J -fcyUvTYLAnDHOw8Jjx7Js71YTKWzxX1IV76iyayuWTCwDSIgKJxmqLI5zmp6sg5ZNdV7bkPGQWYh -0EzR/s8+A1THEt6hIrx6IbByRawKHKjfpEfExVREpUEdzKX3dJe5UaQ6UdT0p18VGCfPF2X8S4QD -QgaamI24hi1TtTxZyuVZ6AzK6gBnIbE66DmhImlzxAYouUq0XQ+oUhG039P+rAZgG7u1erYFyy6W -Tt85ddkmHak3PWVaWuePAC9F4Mh6dgdjB/A8tCqbscUxWLmumxp8jsa5A5RuY7xbwtHGtT+Phz69 -nGo0WC60DPt9u0AljxWG8kylh9hsRKw1jbiwx24cDsUKSRwYFPdIq2347NoWkSEAKnG++brnGes7 -sYH1QPVqVdDsOZZXUlN2WYO1soCA9JBoScjNQdvs/n3fKXaxYefOH9BDfD+Z5Db78Dv+WuWUd4Bj -YwPDx1bNiI03BoO7yRi9CzJBBLlQdj5tTbKIOFQqikHjruN6Bovlw5GnXZxjtMXbZ01O2NnhdawL -ASOFw8BIxpOSuutUYWfmBjW0U1S+gczhqy0Wzuhmd7Ur5RYW/01Tz3dKcpYVl/Isrs2jBSyZJ4H7 -LIq+4VYUL2NZaCMgQiY1LXSjFH09wWexvovGvvawX2q+d8/73vv+98APvvCHT/ziG//4yE++8pfP -/OY7//nQj770p0/96lv/+tjPvva3z/3ue//74A+/+MdP/vKb//zoT7/6e3Lf/3KryTDKUPvdBQIB -/q+JwOuPwYEhbFzcYDjDuPN/lARL/FdLRlcZwdUNnTRbGAZt+fcCHCYzGqd0NJZtrsYJFjFGJ2ZQ -m1A2kcZiD+gXLKNsMMZsTQdiFvg/IJUID7RjldFjhAVkGaM/6lASRfYu8KcuS6aDO4hkOfh7p7Jl -bBRlVxYSWSZlfVKDXfZltRJmADFmulJmb3BmBJhbb9YZp1RLV9hmwtUWdBZhnYeFCaZ7Rxdv/5Q8 -gKaCvNBrQ0hCZxhjLhgHXEV1PiQIjhBEkDZT6VFSmkFWhbBppMZBljZqVtZpIUGIqCNqevMYlhdf -qEYKslZ10zZibbgQDkN1IndyTkcLxiFTulZI/muYRsrjbKA4bNYwNR1nPsn2K6J4PKdYbKXYbSM3 -bSQVeWdybWwIa9Rmi0b3FwUEKAcUU+MGTr4AivP2hGSgbqDIbjDobssIb1IlbzSEbslob894gGUY -jYkxeyf3GABnhAK3jeTDYxE0J5uRcEtjdYUnaoMXHStGGxlnNxs4cYgARRt3Y8UobB5XVhhXjyTR -e0jnbfoURkGzDh+wcquACmqFUDD3iiw0LZFmczhmWTknkZ9FdK5IDH0GdArWGaB4kUXHewEpbSZH -kLX2AVA3dVPHamgjNQ8XZG0Ddl2XLF9HOmF3RPmTKGV3IGdXdWl3k2zXiPBVd3nXV3PHOkRpgk5A -lYlgg2F8Fw3WlnZW9HiCB2Q0Y3ic8k2Kl5V4JQhUiXgWFgqUh1e9h3mcpy2epxdm+XnjQ1EiMHoQ -pVtogiWuV3urBxGod4Xnw41huJfjKHvtg3t8GYKEWZiGeZiImZiKuZiM2ZiO+ZiQGZmSOZmUWZmW -eZmYmZmauZmc2ZlCEQEAOw== - ---6a82fb459dcaacd40ab3404529e808dc-- - ---652b8c4dcb00cdcdda1e16af36781caf -Content-Type: text/plain; name="attachment.txt" -Content-Transfer-Encoding: base64 -Content-Disposition: attachment; filename="attachment.txt" - -VGhpcyBpcyBqdXN0IGEgcGxhaW4gdGV4dCBhdHRhY2htZW50IGZpbGUgbmFtZWQgYXR0YWNobWVu -dC50eHQgLg== - ---652b8c4dcb00cdcdda1e16af36781caf-- - +Return-Path: +To: Manuel Lemos +Subject: Testing Manuel Lemos' MIME E-mail composing and sending PHP class: HTML message +From: mlemos +Reply-To: mlemos +Sender: mlemos@acm.org +X-Mailer: http://www.phpclasses.org/mimemessage $Revision: 1.63 $ (mail) +MIME-Version: 1.0 +Content-Type: multipart/mixed; boundary="652b8c4dcb00cdcdda1e16af36781caf" +Message-ID: <20050430192829.0489.mlemos@acm.org> +Date: Sat, 30 Apr 2005 19:28:29 -0300 + + +--652b8c4dcb00cdcdda1e16af36781caf +Content-Type: multipart/related; boundary="6a82fb459dcaacd40ab3404529e808dc" + + +--6a82fb459dcaacd40ab3404529e808dc +Content-Type: multipart/alternative; boundary="69c1683a3ee16ef7cf16edd700694a2f" + + +--69c1683a3ee16ef7cf16edd700694a2f +Content-Type: text/plain; charset=ISO-8859-1 +Content-Transfer-Encoding: quoted-printable + +This is an HTML message. Please use an HTML capable mail program to read +this message. + +--69c1683a3ee16ef7cf16edd700694a2f +Content-Type: text/html; charset=ISO-8859-1 +Content-Transfer-Encoding: quoted-printable + + + +Testing Manuel Lemos' MIME E-mail composing and sending PHP class: H= +TML message + + + + + + + +
+

Testing Manuel Lemos' MIME E-mail composing and sending PHP cla= +ss: HTML message

+
+

Hello Manuel,

+This message is just to let you know that the MIME E-mail message composing and sending PHP class is working as expected.

+

Here is an image embedded in a message as a separate part:

= +
+
Than= +k you,
+mlemos

+
+ + +--69c1683a3ee16ef7cf16edd700694a2f-- + +--6a82fb459dcaacd40ab3404529e808dc +Content-Type: image/gif; name="logo.gif" +Content-Transfer-Encoding: base64 +Content-Disposition: inline; filename="logo.gif" +Content-ID: + +R0lGODlhlgAjAPMJAAAAAAAA/y8vLz8/P19fX19f339/f4+Pj4+Pz7+/v/////////////////// +/////yH5BAEAAAkALAAAAACWACMAQwT+MMlJq7046827/2AoHYChGAChAkBylgKgKClFyEl6xDMg +qLFBj3C5uXKplVAxIOxkA8BhdFCpDlMK1urMTrZWbAV8tVS5YsxtxmZHBVOSCcW9zaXyNhslVcto +RBp5NQYxLAYGLi8oSwoJBlE+BiSNj5E/PDQsmy4pAJWQLAKJY5+hXhZ2dDYldFWtNSFPiXssXnZR +k5+1pjpBiDMJUXG/Jo7DI4eKfMSmxsJ9GAUB1NXW19jZ2tvc3d7f4OHi2AgZN5vom1kk6F7s6u/p +m3Ab7AOIiCxOyZuBIv8AOeTJIaYQjiR/kKTr5GQNE3pYSjCJ9mUXClRUsLxaZGciC0X+OlpoOuQo +ZKdNJnIoKfnxRUQh6FLG0iLxIoYnJd0JEKISJyAQDodp3EUDC48oDnUY7HFI3wEDRjzycQJVZCQT +Ol7NK+G0qgtkAcOKHUu2rNmzYTVqRMt2bB49bHompSchqg6HcGeANSMxr8sEa2y2HexnSEUTuWri +SSbkYh7BgGVAnhB1b2REibESYaRoBgqIMYx59tFM9AvQffVG49P5NMZkMlHKhJPJb0knmSKZ6kSX +JtbeF3Am7ocok6c7cM7pU5xcXiJJETUz16qPrzEfaFgZpvzn7h86YV5r/1mxXeAUMVyEIpnVUGpN +RlG2ka9b3lP3pm2l6u7P+l/YLj3+RlEHbz1C0kRxSITQaAcilVBMEzmkkEQO8oSOBNg9SN+AX6hV +z1pjgJiAhwCRsY8ZIp6xj1ruqCgeGeKNGEZwLnIwzTg45qjjjjz2GEA5hAUp5JBEFmnkkSCoWEcZ +X8yohZNK1pFGPQS4hx0qNSLJlk9wCQORYu5QiMd7bUzGVyNlRiOHSlpuKdGEItHQ3HZ18beRRyws +YSY/waDTiHf/tWlWUBAJiMJ1/Z0XXU7N0FnREpKM4NChCgbyRDq9XYpOplaKopN9NMkDnBbG+UMC +QwLWIeaiglES6AjGARcPHCWoVAiatcTnGTABZoLPaPG1phccPv366mEvWEFSLnj+2QaonECwcJt/ +e1Zw3lJvVMmftBdVNQS3UngLCA85YHIQOy6JO9N4eZW7KJwtOUZmGwOMWqejwVW6RQzaikRHX3yI +osKhDAq8wmnKSmdMwNidSOof9ZG2DoV0RfTVmLFtGmNk+CoZna0HQnPHS3AhRbIeDpqmR09E0bsu +soeaw994z+rwQVInvqLenBftYjLOVphLFHhV9qsnez8AEUbQRgO737AxChjmyANxuEFHSGi7hFCV +4jxLst2N8sRJYU+SHiAKjlmCgz2IffbLI5aaQR71hnkxq1ZfHSfKata6YDCJDMAQwY7wOgzhjxgj +VFQnKB5uX4mr9qJ79pann+VcfcSzsSCd2mw5scqRRvlQ6TgcUelYhu75iPE4JejrsJOFQAG01277 +7bjnrvvuvPfu++/ABy887hfc6OPxyCevPDdAVoDA89BHL/301Fdv/fXYZ6/99tx3Pz0FEQAAOw== + +--6a82fb459dcaacd40ab3404529e808dc +Content-Type: image/gif; name="background.gif" +Content-Transfer-Encoding: base64 +Content-Disposition: inline; filename="background.gif" +Content-ID: <4c837ed463ad29c820668e835a270e8a.gif> + +R0lGODlh+wHCAPMAAKPFzKLEy6HDyqHCyaDByJ/Ax56/xp2+xZ28xJy7w5u6wpq5wZm4wJm3v5i2 +vpe1vSwAAAAA+wHCAEME/hDISau9OOvNu/9gKI5kaZ5oqq5s675wLM90bd94ru987//AoHBILBqP +yKRyyWw6n9CodEqtWq+gwSHReHgfjobY8X00FIc019tIHAYS7dqcQCDm3vC4fD4QAhUBBFsMZF8O +hnkLCAYFW11tb1iTlJWWOXJdZZtmC24Eg3hgYntfbXainJ2fgBSZbG5wFAG0E6+RoAZ3CbwJCgya +p3cMbAyevQcFAgMGCcRmxr1uyszOxQq+wF4MdcPFx7zJApfk5eYhr3SSGemRsu3dc+4iAqELhZwO +0X6hkHUHCBRoGtUg0RkEAAUeKhhGAcICBQIODIPooIEBzCTmKcjGYSNd/go3VvQo65zJkyhTqlzJ +sqXLlzBjypxJs6bNmzhz6tzJs6fPn0CDCh1KtKjRo0iTKl3KtKnTp1CXBhhAwECaq1gPNCIwANDU +qmkMcG311apWULmyZt3alcPXAma1FgAlgCxVq2LbRt3LF0Y7hwWoEjLEDZUmff8AOjMkTB5gwYu3 +JbhIQUDEZw+4+aE1aNc0R2vcDYjoDBgpBoUDj95yzzRqbH7qgW4t5vUnAfVAoj7NwOOf1QloN7Ad +u1Xf41b+IlCNsa6rR7DWwTPccTnG5sYvCEKwgPGiZI64A9OsK/Q/BM/0YfuFz13VOwsULLhHps+f +98Hl0zeDRk0X9Qih/vLPWPjFN197aPyB3IJVBLDMdc5t4OB1A0QowYQQ0vIgdilgyGEgG1roYV0j +GufhhyBSWGF2s2yIYosqWsjgjDTWaOONOOao44489ujjj0AGKeSQRBZp5JFIJqnkkkw26eSTUMJU +llpYseXVXWGNdSGWZ6EVF5VWukUVXFdtRUCEU+bFYpRslqNcYKHgk1k8hxWWxjCM0VkdnINJRtkE +lqH3hWZ/CKJYOBBBJxppu/FWh2qzNUrcmQRE6lpvt+UWUKPD9cbIb5bWhmlxbbL5JoUywiMddHRQ +x591GWqwXXdsfJeoeMO5UZ4/AaaHKXv1xVKgfghuNuyB9fUHHYAA/u2CEIHlGbiffWuWyuSJMmKA +bXbbbtuhi9kCUOIEJY57oYsraoduuOfGWO2J6Vor77z01mvvvfjmq+++/Pbr778AByzwwAQXbPDB +CCfcZDobldLRVfLEEgerjQ1EEEemJMiioZEdkggYizSiqMQKl5wCw6qswg+rDTvc6h0Wq9KAJ5tV +oGpJF9YysXn8lCfNL8HE88xw4EyzTDNDR4MMNUhfk40mhXkDTdHimHzjzRpgDcB0MEeHswf1sCZn +GfrQDMrIAYZEkEEOJTQRQweBp5FIDTGCEUiHYWwRXHOPMpLdVgcu+OCEF2744YgnrvjijDfu+OOQ +Ry755JRXbvnl/phnrvnmnHfu+eegZ57RAqSUzptv75E+M+Bb66L6InZwZ7rpr31aLQBhb2pap548 +e7TsIX8dOr/pIIZQQphFHfGqEbtq/J2/DDrZ13Ga0jt8h/XX9TxvfRmmuPVUatb34INCplxakjtm +XOQ7aP74c+k1fE4MD7fefvxBbLEeLldsyq/4o9ZzHOOHylBFS7f4RJxQMx/8MeB4ggIDA02ziLno +wlfGoOByKnUAhZQNWfkzwAXzMEExVFB+86NJ/TDVC4SIZRzFs5Ni5OQ/p7XwLOOwQDXSswgFiYuD +Z4GMP8AjtvGgJk9aYU2davdCeyzRU2LpBwkb2KjvWCU4T/TN/u1S+BKtYUBrXFue8DYQKFoVAzXa +eJh/XiYPpZEOFhAMTnzkk8aQWQU+c7yHJkIGkGd4SkDhMJ9i5qMAOu4RAWfiYk1yxwvfaYCRA8oh +JF14x0bGhgSyaZY07JCMRDLyWWnxTOyc1UmweMaSL5zSKf/xQgnk5lA3TCWWVunCRCrylrjMpS53 +ycte+vKXwAymMIdJzGIa85jITKYyl8nMZjrzmdCMpjSnSc1qWvOa2MymvkY3u9IxMReyW92fuLm6 +2Kmum53SIgZyxx7e9C423AyeNnkUw8RsSnqumsfWKKYnCdozen6iHiGsF483gkF7PIND96oUP7KE +73zteyj8/tK3JfGVqaHkkmhYMDrPJqzwfjRUlij4hzE4ds1pdGSMxgYYjAQZEBRtSeDKSmMMEGYG +ghjU4+osGEF9ZNCEG3SEB2s6LTSIsKcl3CkKO2qEj24Sh/ucw/NmmCdXQQMbsbSlzZoGMkSSBYh5 +kWIkEhWc3aARiVc0qE+hSCklkvCbUpQgFTWYRCy+la1bZGoQvHgBMPIznyT7QBkNgsY05m+NNSQa +Lwx6ijvJsZB69IIdB5nHOjKij9twCCAVGJ7HGlKyiMyhXo0wyUtmoLS2LK0ID+XIEWRys5ycyzg+ +yQ9TtjB2lpyLbZ8qy91mVZK+ReWZVCkNVmp1tMhNrnKX/svc5jr3udCNrnSnS93qWve62M2udrfL +3e5697vgDa94x0ve8pr3vOhNr3rXy972uve98I2vfOdLXxrBS0Uv8lZGUaUh/OKXXRmAV7jMVV+X +QLK4vD0TaoHLWq1UEsEJFu0FXknLh3iyM5EssEtQlrK98ZN5QbNqyl71pwqEza752MfZEqrhljg1 +pYMKkBh3FuKTXtUX+LupMkwcETNCA40D6QNiA3tfdunXAkdOEX+1Ba68tjiqLbVOnKp60oNAam6J +fcyUvTYLAnDHOw8Jjx7Js71YTKWzxX1IV76iyayuWTCwDSIgKJxmqLI5zmp6sg5ZNdV7bkPGQWYh +0EzR/s8+A1THEt6hIrx6IbByRawKHKjfpEfExVREpUEdzKX3dJe5UaQ6UdT0p18VGCfPF2X8S4QD +QgaamI24hi1TtTxZyuVZ6AzK6gBnIbE66DmhImlzxAYouUq0XQ+oUhG039P+rAZgG7u1erYFyy6W +Tt85ddkmHak3PWVaWuePAC9F4Mh6dgdjB/A8tCqbscUxWLmumxp8jsa5A5RuY7xbwtHGtT+Phz69 +nGo0WC60DPt9u0AljxWG8kylh9hsRKw1jbiwx24cDsUKSRwYFPdIq2347NoWkSEAKnG++brnGes7 +sYH1QPVqVdDsOZZXUlN2WYO1soCA9JBoScjNQdvs/n3fKXaxYefOH9BDfD+Z5Db78Dv+WuWUd4Bj +YwPDx1bNiI03BoO7yRi9CzJBBLlQdj5tTbKIOFQqikHjruN6Bovlw5GnXZxjtMXbZ01O2NnhdawL +ASOFw8BIxpOSuutUYWfmBjW0U1S+gczhqy0Wzuhmd7Ur5RYW/01Tz3dKcpYVl/Isrs2jBSyZJ4H7 +LIq+4VYUL2NZaCMgQiY1LXSjFH09wWexvovGvvawX2q+d8/73vv+98APvvCHT/ziG//4yE++8pfP +/OY7//nQj770p0/96lv/+tjPvva3z/3ue//74A+/+MdP/vKb//zoT7/6e3Lf/3KryTDKUPvdBQIB +/q+JwOuPwYEhbFzcYDjDuPN/lARL/FdLRlcZwdUNnTRbGAZt+fcCHCYzGqd0NJZtrsYJFjFGJ2ZQ +m1A2kcZiD+gXLKNsMMZsTQdiFvg/IJUID7RjldFjhAVkGaM/6lASRfYu8KcuS6aDO4hkOfh7p7Jl +bBRlVxYSWSZlfVKDXfZltRJmADFmulJmb3BmBJhbb9YZp1RLV9hmwtUWdBZhnYeFCaZ7Rxdv/5Q8 +gKaCvNBrQ0hCZxhjLhgHXEV1PiQIjhBEkDZT6VFSmkFWhbBppMZBljZqVtZpIUGIqCNqevMYlhdf +qEYKslZ10zZibbgQDkN1IndyTkcLxiFTulZI/muYRsrjbKA4bNYwNR1nPsn2K6J4PKdYbKXYbSM3 +bSQVeWdybWwIa9Rmi0b3FwUEKAcUU+MGTr4AivP2hGSgbqDIbjDobssIb1IlbzSEbslob894gGUY +jYkxeyf3GABnhAK3jeTDYxE0J5uRcEtjdYUnaoMXHStGGxlnNxs4cYgARRt3Y8UobB5XVhhXjyTR +e0jnbfoURkGzDh+wcquACmqFUDD3iiw0LZFmczhmWTknkZ9FdK5IDH0GdArWGaB4kUXHewEpbSZH +kLX2AVA3dVPHamgjNQ8XZG0Ddl2XLF9HOmF3RPmTKGV3IGdXdWl3k2zXiPBVd3nXV3PHOkRpgk5A +lYlgg2F8Fw3WlnZW9HiCB2Q0Y3ic8k2Kl5V4JQhUiXgWFgqUh1e9h3mcpy2epxdm+XnjQ1EiMHoQ +pVtogiWuV3urBxGod4Xnw41huJfjKHvtg3t8GYKEWZiGeZiImZiKuZiM2ZiO+ZiQGZmSOZmUWZmW +eZmYmZmauZmc2ZlCEQEAOw== + +--6a82fb459dcaacd40ab3404529e808dc-- + +--652b8c4dcb00cdcdda1e16af36781caf +Content-Type: text/plain; name="attachment.txt" +Content-Transfer-Encoding: base64 +Content-Disposition: attachment; filename="attachment.txt" + +VGhpcyBpcyBqdXN0IGEgcGxhaW4gdGV4dCBhdHRhY2htZW50IGZpbGUgbmFtZWQgYXR0YWNobWVu +dC50eHQgLg== + +--652b8c4dcb00cdcdda1e16af36781caf-- + diff --git a/tests/unit/data/equinix/equinix1.eml b/tests/unit/data/equinix/equinix1.eml index fc1d0f66..f92bcd67 100644 --- a/tests/unit/data/equinix/equinix1.eml +++ b/tests/unit/data/equinix/equinix1.eml @@ -1,610 +1,610 @@ -Received: by 2002:ac9:2e4b:0:0:0:0:0 with SMTP id s11csp522796ocf; - Tue, 19 Oct 2021 08:56:00 -0700 (PDT) -X-Received: by 2002:ab0:5548:: with SMTP id u8mr857164uaa.0.1634658960078; - Tue, 19 Oct 2021 08:56:00 -0700 (PDT) -Received: from mail-sor-f41.google.com (mail-sor-f41.google.com. [209.85.220.41]) - by mx.google.com with SMTPS id g11sor5314027uan.30.2021.10.19.08.56.00 - (Google Transport Security); - Tue, 19 Oct 2021 08:56:00 -0700 (PDT) -X-Received: by 2002:ab0:56c1:: with SMTP id c1mr871051uab.6.1634658959279; - Tue, 19 Oct 2021 08:55:59 -0700 (PDT) -MIME-Version: 1.0 -References: <2079981293.739237.1625133948669@vmclxremas08.corp.equinix.com> -In-Reply-To: -Date: Tue, 19 Oct 2021 08:55:48 -0700 -Message-ID: -Subject: Fwd: REMINDER - 3rd Party Equinix Network Device Maintenance-TY Metro Area Network Maintenance -02-JUL-2021 [K-293030438574] -Content-Type: multipart/alternative; boundary="00000000000098d74105ceb6b2e6" - ---00000000000098d74105ceb6b2e6 -Content-Type: text/plain; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - ----------- Forwarded message --------- -From: Equinix Network Maintenance NO-REPLY -Date: Thu, 1 Jul 2021 at 11:05 -Subject: REMINDER - 3rd Party Equinix Network Device Maintenance-TY Metro -Area Network Maintenance -02-JUL-2021 [K-293030438574] -To: - - -[image: Meet Equinix] - - -=E3=82=A8=E3=82=AF=E3=82=A4=E3=83=8B=E3=82=AF=E3=82=B9=E3=82=92=E3=81=94=E5= -=88=A9=E7=94=A8=E3=81=AE=E3=81=8A=E5=AE=A2=E6=A7=98=E3=81=B8/Dear Equinix C= -ustomer, - -=E4=B8=8B=E8=A8=98=E3=83=A1=E3=83=B3=E3=83=86=E3=83=8A=E3=83=B3=E3=82=B9=E3= -=81=AF=E3=80=8124 =E6=99=82=E9=96=93=E5=BE=8C=E3=81=AB=E9=96=8B=E5=A7=8B=E3= -=81=97=E3=81=BE=E3=81=99=E3=80=82 - -The maintenance listed below will commence in 24 hours. - ------------------------------- - - -=E3=82=A8=E3=82=AF=E3=82=A4=E3=83=8B=E3=82=AF=E3=82=B9=E3=82=92=E3=81=94=E5= -=88=A9=E7=94=A8=E3=81=AE=E3=81=8A=E5=AE=A2=E6=A7=98=E3=81=B8, - -*=E6=97=A5=E4=BB=98:*02-JUL-2021 - 03-JUL-2021 - -*SPAN: 02-JUL-2021 - 03-JUL-2021* - -*=E3=83=AD=E3=83=BC=E3=82=AB=E3=83=AB:* =E9=87=91=E6=9B=9C=E6=97=A5, 02 JUL= - 19:00 - =E5=9C=9F=E6=9B=9C=E6=97=A5, 03 JUL 00:00 -*UTC:* =E9=87=91=E6=9B=9C=E6=97=A5, 02 JUL 10:00 - =E9=87=91=E6=9B=9C=E6=97= -=A5, 02 JUL 15:00 - -*IBX(s): *TY4 - -*=E8=AA=AC=E6=98=8E:*=E5=BC=8A=E7=A4=BE=E3=83=9E=E3=83=8D=E3=82=B8=E3=83=A1= -=E3=83=B3=E3=83=88=E3=83=8D=E3=83=83=E3=83=88=E3=83=AF=E3=83=BC=E3=82=AF=E7= -=92=B0=E5=A2=83=E3=81=AE=E3=83=A1=E3=83=B3=E3=83=86=E3=83=8A=E3=83=B3=E3=82= -=B9=E3=82=92=E5=AE=9F=E6=96=BD=E8=87=B4=E3=81=97=E3=81=BE=E3=81=99=E3=80=82 -=E3=83=88=E3=83=A9=E3=83=95=E3=82=A3=E3=83=83=E3=82=AF=E7=9B=A3=E8=A6=96=E3= -=83=84=E3=83=BC=E3=83=AB=E3=81=AE=E3=83=9D=E3=83=BC=E3=83=AA=E3=83=B3=E3=82= -=B0=E3=81=8C=E5=81=9C=E6=AD=A2=E3=81=99=E3=82=8B=E3=81=9F=E3=82=81=E3=80=81= -=E9=96=B2=E8=A6=A7=E7=94=A8=E3=83=88=E3=83=A9=E3=83=95=E3=82=A3=E3=83=83=E3= -=82=AF=E3=83=87=E3=83=BC=E3=82=BF=E3=81=AB=E4=B8=80=E6=99=82=E7=9A=84=E3=81= -=AA=E6=AC=A0=E6=90=8D=E3=81=8C=E7=99=BA=E7=94=9F=E3=81=84=E3=81=9F=E3=81=97= -=E3=81=BE=E3=81=99=E3=80=82 -=E3=81=BE=E3=81=9F=E3=80=81=E3=83=A1=E3=83=B3=E3=83=86=E3=83=8A=E3=83=B3=E3= -=82=B9=E3=81=AE=E9=96=93=E3=80=81=E3=81=8A=E5=AE=A2=E6=A7=98=E5=9B=9E=E7=B7= -=9A=E3=81=AELink down/flap =E6=A4=9C=E7=9F=A5=E5=8F=8A=E3=81=B3=E9=80=9A=E7= -=9F=A5=E6=A9=9F=E8=83=BD=E3=82=82=E5=81=9C=E6=AD=A2=E3=81=84=E3=81=9F=E3=81= -=97=E3=81=BE=E3=81=99=E3=81=AE=E3=81=A7=E3=80=81=E3=81=94=E5=AE=B9=E8=B5=A6= -=E3=81=84=E3=81=9F=E3=81=A0=E3=81=91=E3=82=8C=E3=81=B0=E3=81=A8=E5=AD=98=E3= -=81=98=E3=81=BE=E3=81=99=E3=80=82 - -*=E8=A3=BD=E5=93=81:*EQUINIX CONNECT, EQUINIX FABRIC, INTERNET EXCHANGE, ME= -TRO CONNECT - -*=E5=BD=B1=E9=9F=BF:*=E3=81=8A=E5=AE=A2=E6=A7=98=E3=81=AE=E3=82=B5=E3=83=BC= -=E3=83=93=E3=82=B9=E3=81=AB=E5=BD=B1=E9=9F=BF=E3=81=AF=E3=81=94=E3=81=96=E3= -=81=84=E3=81=BE=E3=81=9B=E3=82=93=E3=80=82 - - -*Equinix Connect* -Account # Product Service Serial # -009999 Equinix Connect 10101 -009999 Equinix Connect 10108 -009999 Equinix Connect 10001 -*Internet Exchange* -Account # Product Service Serial # -009999 Internet Exchange 09999000-B -*Metro Connect* -Account # Product Service Serial # -009999 Metro Connect 09999020-B -009999 Metro Connect 09999045-B -009999 Metro Connect 09999063-B -009999 Metro Connect 09999022-B -009999 Metro Connect 09999022-B -009999 Metro Connect 09999064-B -009999 Metro Connect 09999063-B -009999 Metro Connect 09999069-B -009999 Metro Connect 09999057-B -009999 Metro Connect 09999058-B -009999 Metro Connect 09999052-B - - -=E3=81=8A=E5=AE=A2=E6=A7=98=E3=81=AE=E3=81=94=E5=8D=94=E5=8A=9B=E3=81=A8=E3= -=81=94=E7=90=86=E8=A7=A3=E3=82=92=E3=81=8A=E9=A1=98=E3=81=84=E3=81=84=E3=81= -=9F=E3=81=97=E3=81=BE=E3=81=99=E3=80=82 - -=E3=81=93=E3=81=AE=E4=BD=9C=E6=A5=AD=E3=81=AB=E3=81=A4=E3=81=84=E3=81=A6=E3= -=81=94=E8=B3=AA=E5=95=8F=E3=81=8C=E3=81=82=E3=82=8B=E5=A0=B4=E5=90=88=E3=81= -=AF=E3=80=81Equinix NOC =E3=81=8B=E3=82=89=E6=9C=80=E6=96=B0=E3=81=AE=E3=82= -=B9=E3=83=86=E3=83=BC=E3=82=BF=E3=82=B9=E3=82=84=E8=BF=BD=E5=8A=A0=E3=81=AE= -=E8=A9=B3=E7=B4=B0=E6=83=85=E5=A0=B1=E3=82=92=E3=81=94=E5=85=A5=E6=89=8B=E3= -=81=84=E3=81=9F=E3=81=A0=E3=81=91=E3=81=BE=E3=81=99=E3=80=82K-293030438574 -=E3=82=92=E3=81=94=E5=8F=82=E7=85=A7=E3=81=8F=E3=81=A0=E3=81=95=E3=81=84=E3= -=80=82 - -***************************************************************************= -*********** - -Dear Equinix Customer, - -*DATE:* 02-JUL-2021 - 03-JUL-2021 - -*SPAN: 02-JUL-2021 - 03-JUL-2021* - -*LOCAL:* FRIDAY, 02 JUL 19:00 - SATURDAY, 03 JUL 00:00 -*UTC:* FRIDAY, 02 JUL 10:00 - FRIDAY, 02 JUL 15:00 - -*IBX(s): *TY4 - - -*DESCRIPTION:*Equinix will perform maintenance on our device management -platform. The polling of traffic on your circuit(s) will be unavailable -intermittently and traffic gaps will be observed in the monitoring graph. -The customer port monitoring will be unavailable, and no port down / bounce -email notifications will be triggered during the maintenance period. - -*PRODUCTS:* EQUINIX CONNECT, EQUINIX FABRIC, INTERNET EXCHANGE, METRO -CONNECT - -*IMPACT:* No impact to your service - - -We apologize for any inconvenience you may experience during this activity. -Your cooperation and understanding are greatly appreciated. - -The Equinix NOC is available to provide up-to-date status information or -additional details, should you have any questions regarding the -maintenance. Please reference K-293030438574. - -Sincerely, -Equinix NOC - -Contacts: - -To place orders, schedule site access, report trouble or manage your user -list online, please visit: http://www.equinix.com/contact-us/customer-suppo= -rt/ - - -Please do not reply to this email address. If you have any questions or -concerns regarding this notification, please email Service Desk - and include the ticket [K-293030438574] in the -subject line. If the matter is urgent, you may contact the Equinix Service -Desk - Asia Pacific by phone at following numbers for an up-to-date status. -Australia - 1 800 312 838 | Hong Kong - 800 938 645 | China - 400 842 8001 -| Japan - 0800 123 6449 | Singapore - 800 852 6825 | Dialing from other -countries +65 3158 2175 - -To unsubscribe from notifications, please log in to the Equinix Customer -Portal and change -your preferences. - - -[image: Equinix] -How are we doing? Tell Equinix - We're Listening. -<#m_7560097672011896283_m_5406425428107900549_> -<#m_7560097672011896283_m_5406425428107900549_> - -E Q U I N I X | Units 6501-04A, 65/F International Commerce Centre, -1 Austin Road West, Kowloon, Hong Kong | www.equinix.com -=C2=A9 2021 Equinix, Inc. All rights reserved.| Legal - | Privacy - ---00000000000098d74105ceb6b2e6 -Content-Type: text/html; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - - -From: Equinix Network Maintenance NO-REPLY <no-reply@equ= -inix.com>
Date: Thu, 1 Jul 2021 at 11:05
Subject: REMIN= -DER - 3rd Party Equinix Network Device Maintenance-TY Metro Area Network Ma= -intenance -02-JUL-2021 [K-293030438574]
To: <EquinixNetworkMai= -ntenance.JP@ap.equinix.com>


- - - - - - - -
<= -td>
- - - - - -
- -
3D"Meet= -
-
- - - - - - - -
=C2=A0= - - -

- - -

-=E3=82=A8=E3=82=AF=E3=82=A4=E3=83=8B=E3=82=AF=E3=82=B9=E3=82=92=E3=81=94=E5= -=88=A9=E7=94=A8=E3=81=AE=E3=81=8A=E5=AE=A2=E6=A7=98=E3=81=B8/Dear Equinix C= -ustomer,
-
-=E4=B8=8B=E8=A8=98=E3=83=A1=E3=83=B3=E3=83=86=E3=83=8A=E3=83=B3=E3=82=B9=E3= -=81=AF=E3=80=8124 =E6=99=82=E9=96=93=E5=BE=8C=E3=81=AB=E9=96=8B=E5=A7=8B=E3= -=81=97=E3=81=BE=E3=81=99=E3=80=82
-
-The maintenance listed below will commence in 24 hours.
-
-

-


-=E3=82=A8=E3=82=AF=E3=82=A4=E3=83=8B=E3=82=AF=E3=82=B9=E3=82=92=E3=81=94=E5= -=88=A9=E7=94=A8=E3=81=AE=E3=81=8A=E5=AE=A2=E6=A7=98=E3=81=B8,
-
-=E6=97=A5=E4=BB=98:02-JUL-2021 - 03-JUL-2021
-
-SPAN: 02-JUL-2021 - 03-JUL-2021
-
-=E3=83=AD=E3=83=BC=E3=82=AB=E3=83=AB: =E9=87=91=E6=9B=9C=E6=97=A5, = -02 JUL 19:00 - =E5=9C=9F=E6=9B=9C=E6=97=A5, 03 JUL 00:00
-UTC: =E9=87=91=E6=9B=9C=E6=97=A5, 02 JUL 10:00 - =E9=87=91=E6=9B=9C= -=E6=97=A5, 02 JUL 15:00
-
-IBX(s): TY4
-
-=E8=AA=AC=E6=98=8E:=E5=BC=8A=E7=A4=BE=E3=83=9E=E3=83=8D=E3=82=B8=E3= -=83=A1=E3=83=B3=E3=83=88=E3=83=8D=E3=83=83=E3=83=88=E3=83=AF=E3=83=BC=E3=82= -=AF=E7=92=B0=E5=A2=83=E3=81=AE=E3=83=A1=E3=83=B3=E3=83=86=E3=83=8A=E3=83=B3= -=E3=82=B9=E3=82=92=E5=AE=9F=E6=96=BD=E8=87=B4=E3=81=97=E3=81=BE=E3=81=99=E3= -=80=82
-=E3=83=88=E3=83=A9=E3=83=95=E3=82=A3=E3=83=83=E3=82=AF=E7=9B=A3=E8=A6=96=E3= -=83=84=E3=83=BC=E3=83=AB=E3=81=AE=E3=83=9D=E3=83=BC=E3=83=AA=E3=83=B3=E3=82= -=B0=E3=81=8C=E5=81=9C=E6=AD=A2=E3=81=99=E3=82=8B=E3=81=9F=E3=82=81=E3=80=81= -=E9=96=B2=E8=A6=A7=E7=94=A8=E3=83=88=E3=83=A9=E3=83=95=E3=82=A3=E3=83=83=E3= -=82=AF=E3=83=87=E3=83=BC=E3=82=BF=E3=81=AB=E4=B8=80=E6=99=82=E7=9A=84=E3=81= -=AA=E6=AC=A0=E6=90=8D=E3=81=8C=E7=99=BA=E7=94=9F=E3=81=84=E3=81=9F=E3=81=97= -=E3=81=BE=E3=81=99=E3=80=82
-=E3=81=BE=E3=81=9F=E3=80=81=E3=83=A1=E3=83=B3=E3=83=86=E3=83=8A=E3=83=B3=E3= -=82=B9=E3=81=AE=E9=96=93=E3=80=81=E3=81=8A=E5=AE=A2=E6=A7=98=E5=9B=9E=E7=B7= -=9A=E3=81=AELink down/flap =E6=A4=9C=E7=9F=A5=E5=8F=8A=E3=81=B3=E9=80=9A=E7= -=9F=A5=E6=A9=9F=E8=83=BD=E3=82=82=E5=81=9C=E6=AD=A2=E3=81=84=E3=81=9F=E3=81= -=97=E3=81=BE=E3=81=99=E3=81=AE=E3=81=A7=E3=80=81=E3=81=94=E5=AE=B9=E8=B5=A6= -=E3=81=84=E3=81=9F=E3=81=A0=E3=81=91=E3=82=8C=E3=81=B0=E3=81=A8=E5=AD=98=E3= -=81=98=E3=81=BE=E3=81=99=E3=80=82
-
-=E8=A3=BD=E5=93=81:EQUINIX CONNECT, EQUINIX FABRIC, INTERNET EXCHANG= -E, METRO CONNECT
-
-=E5=BD=B1=E9=9F=BF:=E3=81=8A=E5=AE=A2=E6=A7=98=E3=81=AE=E3=82=B5=E3= -=83=BC=E3=83=93=E3=82=B9=E3=81=AB=E5=BD=B1=E9=9F=BF=E3=81=AF=E3=81=94=E3=81= -=96=E3=81=84=E3=81=BE=E3=81=9B=E3=82=93=E3=80=82
-


-
- Equinix Connect -=09 - - - - - - - - - - - - - - - - - - - - - - -
Account #ProductService Serial #
009999Equinix Connect10101
009999Equinix Connect10108
009999Equinix Connect10001
-
- Internet Exchange -=09 - - - - - - - - - - - - -
Account #ProductService Serial #
009999Internet Exchange09999000-B
-
- Metro Connect -=09 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Account #ProductService Serial #
009999Metro Connect09999020-B
009999Metro Connect09999045-B
009999Metro Connect09999063-B
009999Metro Connect09999022-B
009999Metro Connect09999022-B
009999Metro Connect09999064-B
009999Metro Connect09999063-B
009999Metro Connect09999069-B
009999Metro Connect09999057-B
009999Metro Connect09999058-B
009999Metro Connect09999052-B
-
-
-


-=E3=81=8A=E5=AE=A2=E6=A7=98=E3=81=AE=E3=81=94=E5=8D=94=E5=8A=9B=E3=81=A8=E3= -=81=94=E7=90=86=E8=A7=A3=E3=82=92=E3=81=8A=E9=A1=98=E3=81=84=E3=81=84=E3=81= -=9F=E3=81=97=E3=81=BE=E3=81=99=E3=80=82
-
-=E3=81=93=E3=81=AE=E4=BD=9C=E6=A5=AD=E3=81=AB=E3=81=A4=E3=81=84=E3=81=A6=E3= -=81=94=E8=B3=AA=E5=95=8F=E3=81=8C=E3=81=82=E3=82=8B=E5=A0=B4=E5=90=88=E3=81= -=AF=E3=80=81Equinix NOC =E3=81=8B=E3=82=89=E6=9C=80=E6=96=B0=E3=81=AE=E3=82= -=B9=E3=83=86=E3=83=BC=E3=82=BF=E3=82=B9=E3=82=84=E8=BF=BD=E5=8A=A0=E3=81=AE= -=E8=A9=B3=E7=B4=B0=E6=83=85=E5=A0=B1=E3=82=92=E3=81=94=E5=85=A5=E6=89=8B=E3= -=81=84=E3=81=9F=E3=81=A0=E3=81=91=E3=81=BE=E3=81=99=E3=80=82K-293030438574 = -=E3=82=92=E3=81=94=E5=8F=82=E7=85=A7=E3=81=8F=E3=81=A0=E3=81=95=E3=81=84=E3= -=80=82
-
***********************************************************************= -***************
-
-Dear Equinix Customer,
-
-DATE: 02-JUL-2021 - 03-JUL-2021
-
-SPAN: 02-JUL-2021 - 03-JUL-2021
-
-LOCAL: FRIDAY, 02 JUL 19:00 - SATURDAY, 03 JUL 00:00
-UTC: FRIDAY, 02 JUL 10:00 - FRIDAY, 02 JUL 15:00
-
-IBX(s): TY4
-
-
-DESCRIPTION:Equinix will perform maintenance on our device managemen= -t platform. The polling of traffic on your circuit(s) will be unavailable i= -ntermittently and traffic gaps will be observed in the monitoring graph. Th= -e customer port monitoring will be unavailable, and no port down / bounce e= -mail notifications will be triggered during the maintenance period.
-
-PRODUCTS: EQUINIX CONNECT, EQUINIX FABRIC, INTERNET EXCHANGE, METRO = -CONNECT
-
-IMPACT: No impact to your service
-

-We apologize for any inconvenience you may experience during this activity.= - Your cooperation and understanding are greatly appreciated.
-
-The Equinix NOC is available to provide up-to-date status information or ad= -ditional details, should you have any questions regarding the maintenance. = - Please reference K-293030438574.
-
-

Sincerely,
Equinix NOC

Contacts:

To place orders, schedule site access, rep= -ort trouble or manage your user list online, please visit: http://ww= -w.equinix.com/contact-us/customer-support/

Please do not reply= - to this email address. If you have any questions or concerns regarding thi= -s notification, please email Service Desk and include the ticket [K-293030438574] in = -the subject line. If the matter is urgent, you may contact the Equinix Serv= -ice Desk - Asia Pacific by phone at following numbers for an up-to-date sta= -tus. Australia - 1 800 312 838 | Hong Kong - 800 938 645 | China - 400 842= - 8001 | Japan - 0800 123 6449 | Singapore - 800 852 6825 | Dialing from oth= -er countries +65 3158 2175


-
To unsubscribe from notifications, please log in to the Eq= -uinix Customer Portal and change your preferences.

-
-
-
-
-

=C2=A0

-
-
- - - -
3D"Equinix" - - - -
How are we doing? Tell E= -quinix - We're Listening. - -=C2=A0 -
-
=C2=A0
-
- - - - - -
- - - - - -
- - - - - -
E Q U I N I X=C2=A0=C2=A0= -=C2=A0|=C2=A0=C2=A0=C2=A0Units 6501-04A, 65/F International Commerce Centre,
1 Austin R= -oad West, Kowloon, Hong Kong
-
=C2=A0=C2=A0=C2=A0|=C2=A0=C2=A0=C2=A0www.equinix.com<= -/td> -
-
=C2=A9 2021 Equinix, Inc. A= -ll rights reserved.| Legal | Privacy -
- - - -
- - - ---00000000000098d74105ceb6b2e6-- +Received: by 2001:DB8::1 with SMTP id s11csp522796ocf; + Tue, 19 Oct 2021 08:56:00 -0700 (PDT) +X-Received: by 2001:DB8::1 with SMTP id u8mr857164uaa.0.1634658960078; + Tue, 19 Oct 2021 08:56:00 -0700 (PDT) +Received: from mail-sor-f41.google.com (mail-sor-f41.google.com. [192.0.2.1]) + by mx.google.com with SMTPS id g11sor5314027uan.30.20192.0.2.1.1.00 + (Google Transport Security); + Tue, 19 Oct 2021 08:56:00 -0700 (PDT) +X-Received: by 2001:DB8::1 with SMTP id c1mr871051uab.6.1634658959279; + Tue, 19 Oct 2021 08:55:59 -0700 (PDT) +MIME-Version: 1.0 +References: <2079981293.739237.1625133948669@vmclxremas08.corp.equinix.com> +In-Reply-To: +Date: Tue, 19 Oct 2021 08:55:48 -0700 +Message-ID: +Subject: Fwd: REMINDER - 3rd Party Equinix Network Device Maintenance-TY Metro Area Network Maintenance -02-JUL-2021 [K-293030438574] +Content-Type: multipart/alternative; boundary="00000000000098d74105ceb6b2e6" + +--00000000000098d74105ceb6b2e6 +Content-Type: text/plain; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + +---------- Forwarded message --------- +From: Equinix Network Maintenance NO-REPLY +Date: Thu, 1 Jul 2021 at 11:05 +Subject: REMINDER - 3rd Party Equinix Network Device Maintenance-TY Metro +Area Network Maintenance -02-JUL-2021 [K-293030438574] +To: + + +[image: Meet Equinix] + + +=E3=82=A8=E3=82=AF=E3=82=A4=E3=83=8B=E3=82=AF=E3=82=B9=E3=82=92=E3=81=94=E5= +=88=A9=E7=94=A8=E3=81=AE=E3=81=8A=E5=AE=A2=E6=A7=98=E3=81=B8/Dear Equinix C= +ustomer, + +=E4=B8=8B=E8=A8=98=E3=83=A1=E3=83=B3=E3=83=86=E3=83=8A=E3=83=B3=E3=82=B9=E3= +=81=AF=E3=80=8124 =E6=99=82=E9=96=93=E5=BE=8C=E3=81=AB=E9=96=8B=E5=A7=8B=E3= +=81=97=E3=81=BE=E3=81=99=E3=80=82 + +The maintenance listed below will commence in 24 hours. + +------------------------------ + + +=E3=82=A8=E3=82=AF=E3=82=A4=E3=83=8B=E3=82=AF=E3=82=B9=E3=82=92=E3=81=94=E5= +=88=A9=E7=94=A8=E3=81=AE=E3=81=8A=E5=AE=A2=E6=A7=98=E3=81=B8, + +*=E6=97=A5=E4=BB=98:*02-JUL-2021 - 03-JUL-2021 + +*SPAN: 02-JUL-2021 - 03-JUL-2021* + +*=E3=83=AD=E3=83=BC=E3=82=AB=E3=83=AB:* =E9=87=91=E6=9B=9C=E6=97=A5, 02 JUL= + 19:00 - =E5=9C=9F=E6=9B=9C=E6=97=A5, 03 JUL 00:00 +*UTC:* =E9=87=91=E6=9B=9C=E6=97=A5, 02 JUL 10:00 - =E9=87=91=E6=9B=9C=E6=97= +=A5, 02 JUL 15:00 + +*IBX(s): *TY4 + +*=E8=AA=AC=E6=98=8E:*=E5=BC=8A=E7=A4=BE=E3=83=9E=E3=83=8D=E3=82=B8=E3=83=A1= +=E3=83=B3=E3=83=88=E3=83=8D=E3=83=83=E3=83=88=E3=83=AF=E3=83=BC=E3=82=AF=E7= +=92=B0=E5=A2=83=E3=81=AE=E3=83=A1=E3=83=B3=E3=83=86=E3=83=8A=E3=83=B3=E3=82= +=B9=E3=82=92=E5=AE=9F=E6=96=BD=E8=87=B4=E3=81=97=E3=81=BE=E3=81=99=E3=80=82 +=E3=83=88=E3=83=A9=E3=83=95=E3=82=A3=E3=83=83=E3=82=AF=E7=9B=A3=E8=A6=96=E3= +=83=84=E3=83=BC=E3=83=AB=E3=81=AE=E3=83=9D=E3=83=BC=E3=83=AA=E3=83=B3=E3=82= +=B0=E3=81=8C=E5=81=9C=E6=AD=A2=E3=81=99=E3=82=8B=E3=81=9F=E3=82=81=E3=80=81= +=E9=96=B2=E8=A6=A7=E7=94=A8=E3=83=88=E3=83=A9=E3=83=95=E3=82=A3=E3=83=83=E3= +=82=AF=E3=83=87=E3=83=BC=E3=82=BF=E3=81=AB=E4=B8=80=E6=99=82=E7=9A=84=E3=81= +=AA=E6=AC=A0=E6=90=8D=E3=81=8C=E7=99=BA=E7=94=9F=E3=81=84=E3=81=9F=E3=81=97= +=E3=81=BE=E3=81=99=E3=80=82 +=E3=81=BE=E3=81=9F=E3=80=81=E3=83=A1=E3=83=B3=E3=83=86=E3=83=8A=E3=83=B3=E3= +=82=B9=E3=81=AE=E9=96=93=E3=80=81=E3=81=8A=E5=AE=A2=E6=A7=98=E5=9B=9E=E7=B7= +=9A=E3=81=AELink down/flap =E6=A4=9C=E7=9F=A5=E5=8F=8A=E3=81=B3=E9=80=9A=E7= +=9F=A5=E6=A9=9F=E8=83=BD=E3=82=82=E5=81=9C=E6=AD=A2=E3=81=84=E3=81=9F=E3=81= +=97=E3=81=BE=E3=81=99=E3=81=AE=E3=81=A7=E3=80=81=E3=81=94=E5=AE=B9=E8=B5=A6= +=E3=81=84=E3=81=9F=E3=81=A0=E3=81=91=E3=82=8C=E3=81=B0=E3=81=A8=E5=AD=98=E3= +=81=98=E3=81=BE=E3=81=99=E3=80=82 + +*=E8=A3=BD=E5=93=81:*EQUINIX CONNECT, EQUINIX FABRIC, INTERNET EXCHANGE, ME= +TRO CONNECT + +*=E5=BD=B1=E9=9F=BF:*=E3=81=8A=E5=AE=A2=E6=A7=98=E3=81=AE=E3=82=B5=E3=83=BC= +=E3=83=93=E3=82=B9=E3=81=AB=E5=BD=B1=E9=9F=BF=E3=81=AF=E3=81=94=E3=81=96=E3= +=81=84=E3=81=BE=E3=81=9B=E3=82=93=E3=80=82 + + +*Equinix Connect* +Account # Product Service Serial # +009999 Equinix Connect 10101 +009999 Equinix Connect 10108 +009999 Equinix Connect 10001 +*Internet Exchange* +Account # Product Service Serial # +009999 Internet Exchange 09999000-B +*Metro Connect* +Account # Product Service Serial # +009999 Metro Connect 09999020-B +009999 Metro Connect 09999045-B +009999 Metro Connect 09999063-B +009999 Metro Connect 09999022-B +009999 Metro Connect 09999022-B +009999 Metro Connect 09999064-B +009999 Metro Connect 09999063-B +009999 Metro Connect 09999069-B +009999 Metro Connect 09999057-B +009999 Metro Connect 09999058-B +009999 Metro Connect 09999052-B + + +=E3=81=8A=E5=AE=A2=E6=A7=98=E3=81=AE=E3=81=94=E5=8D=94=E5=8A=9B=E3=81=A8=E3= +=81=94=E7=90=86=E8=A7=A3=E3=82=92=E3=81=8A=E9=A1=98=E3=81=84=E3=81=84=E3=81= +=9F=E3=81=97=E3=81=BE=E3=81=99=E3=80=82 + +=E3=81=93=E3=81=AE=E4=BD=9C=E6=A5=AD=E3=81=AB=E3=81=A4=E3=81=84=E3=81=A6=E3= +=81=94=E8=B3=AA=E5=95=8F=E3=81=8C=E3=81=82=E3=82=8B=E5=A0=B4=E5=90=88=E3=81= +=AF=E3=80=81Equinix NOC =E3=81=8B=E3=82=89=E6=9C=80=E6=96=B0=E3=81=AE=E3=82= +=B9=E3=83=86=E3=83=BC=E3=82=BF=E3=82=B9=E3=82=84=E8=BF=BD=E5=8A=A0=E3=81=AE= +=E8=A9=B3=E7=B4=B0=E6=83=85=E5=A0=B1=E3=82=92=E3=81=94=E5=85=A5=E6=89=8B=E3= +=81=84=E3=81=9F=E3=81=A0=E3=81=91=E3=81=BE=E3=81=99=E3=80=82K-293030438574 +=E3=82=92=E3=81=94=E5=8F=82=E7=85=A7=E3=81=8F=E3=81=A0=E3=81=95=E3=81=84=E3= +=80=82 + +***************************************************************************= +*********** + +Dear Equinix Customer, + +*DATE:* 02-JUL-2021 - 03-JUL-2021 + +*SPAN: 02-JUL-2021 - 03-JUL-2021* + +*LOCAL:* FRIDAY, 02 JUL 19:00 - SATURDAY, 03 JUL 00:00 +*UTC:* FRIDAY, 02 JUL 10:00 - FRIDAY, 02 JUL 15:00 + +*IBX(s): *TY4 + + +*DESCRIPTION:*Equinix will perform maintenance on our device management +platform. The polling of traffic on your circuit(s) will be unavailable +intermittently and traffic gaps will be observed in the monitoring graph. +The customer port monitoring will be unavailable, and no port down / bounce +email notifications will be triggered during the maintenance period. + +*PRODUCTS:* EQUINIX CONNECT, EQUINIX FABRIC, INTERNET EXCHANGE, METRO +CONNECT + +*IMPACT:* No impact to your service + + +We apologize for any inconvenience you may experience during this activity. +Your cooperation and understanding are greatly appreciated. + +The Equinix NOC is available to provide up-to-date status information or +additional details, should you have any questions regarding the +maintenance. Please reference K-293030438574. + +Sincerely, +Equinix NOC + +Contacts: + +To place orders, schedule site access, report trouble or manage your user +list online, please visit: http://www.equinix.com/contact-us/customer-suppo= +rt/ + + +Please do not reply to this email address. If you have any questions or +concerns regarding this notification, please email Service Desk + and include the ticket [K-293030438574] in the +subject line. If the matter is urgent, you may contact the Equinix Service +Desk - Asia Pacific by phone at following numbers for an up-to-date status. +Australia - 1 800 312 838 | Hong Kong - 800 938 645 | China - 400 842 8001 +| Japan - 0800 123 6449 | Singapore - 800 852 6825 | Dialing from other +countries +65 3158 2175 + +To unsubscribe from notifications, please log in to the Equinix Customer +Portal and change +your preferences. + + +[image: Equinix] +How are we doing? Tell Equinix - We're Listening. +<#m_7560097672011896283_m_5406425428107900549_> +<#m_7560097672011896283_m_5406425428107900549_> + +E Q U I N I X | Units 6501-04A, 65/F International Commerce Centre, +1 Austin Road West, Kowloon, Hong Kong | www.equinix.com +=C2=A9 2021 Equinix, Inc. All rights reserved.| Legal + | Privacy + +--00000000000098d74105ceb6b2e6 +Content-Type: text/html; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + + +From: Equinix Network Maintenance NO-REPLY <no-reply@equ= +inix.com>
Date: Thu, 1 Jul 2021 at 11:05
Subject: REMIN= +DER - 3rd Party Equinix Network Device Maintenance-TY Metro Area Network Ma= +intenance -02-JUL-2021 [K-293030438574]
To: <EquinixNetworkMai= +ntenance.JP@ap.equinix.com>


+ + + + + + + +
<= +td>
+ + + + + +
+ +
3D"Meet= +
+
+ + + + + + + +
=C2=A0= + + +

+ + +

+=E3=82=A8=E3=82=AF=E3=82=A4=E3=83=8B=E3=82=AF=E3=82=B9=E3=82=92=E3=81=94=E5= +=88=A9=E7=94=A8=E3=81=AE=E3=81=8A=E5=AE=A2=E6=A7=98=E3=81=B8/Dear Equinix C= +ustomer,
+
+=E4=B8=8B=E8=A8=98=E3=83=A1=E3=83=B3=E3=83=86=E3=83=8A=E3=83=B3=E3=82=B9=E3= +=81=AF=E3=80=8124 =E6=99=82=E9=96=93=E5=BE=8C=E3=81=AB=E9=96=8B=E5=A7=8B=E3= +=81=97=E3=81=BE=E3=81=99=E3=80=82
+
+The maintenance listed below will commence in 24 hours.
+
+

+


+=E3=82=A8=E3=82=AF=E3=82=A4=E3=83=8B=E3=82=AF=E3=82=B9=E3=82=92=E3=81=94=E5= +=88=A9=E7=94=A8=E3=81=AE=E3=81=8A=E5=AE=A2=E6=A7=98=E3=81=B8,
+
+=E6=97=A5=E4=BB=98:02-JUL-2021 - 03-JUL-2021
+
+SPAN: 02-JUL-2021 - 03-JUL-2021
+
+=E3=83=AD=E3=83=BC=E3=82=AB=E3=83=AB: =E9=87=91=E6=9B=9C=E6=97=A5, = +02 JUL 19:00 - =E5=9C=9F=E6=9B=9C=E6=97=A5, 03 JUL 00:00
+UTC: =E9=87=91=E6=9B=9C=E6=97=A5, 02 JUL 10:00 - =E9=87=91=E6=9B=9C= +=E6=97=A5, 02 JUL 15:00
+
+IBX(s): TY4
+
+=E8=AA=AC=E6=98=8E:=E5=BC=8A=E7=A4=BE=E3=83=9E=E3=83=8D=E3=82=B8=E3= +=83=A1=E3=83=B3=E3=83=88=E3=83=8D=E3=83=83=E3=83=88=E3=83=AF=E3=83=BC=E3=82= +=AF=E7=92=B0=E5=A2=83=E3=81=AE=E3=83=A1=E3=83=B3=E3=83=86=E3=83=8A=E3=83=B3= +=E3=82=B9=E3=82=92=E5=AE=9F=E6=96=BD=E8=87=B4=E3=81=97=E3=81=BE=E3=81=99=E3= +=80=82
+=E3=83=88=E3=83=A9=E3=83=95=E3=82=A3=E3=83=83=E3=82=AF=E7=9B=A3=E8=A6=96=E3= +=83=84=E3=83=BC=E3=83=AB=E3=81=AE=E3=83=9D=E3=83=BC=E3=83=AA=E3=83=B3=E3=82= +=B0=E3=81=8C=E5=81=9C=E6=AD=A2=E3=81=99=E3=82=8B=E3=81=9F=E3=82=81=E3=80=81= +=E9=96=B2=E8=A6=A7=E7=94=A8=E3=83=88=E3=83=A9=E3=83=95=E3=82=A3=E3=83=83=E3= +=82=AF=E3=83=87=E3=83=BC=E3=82=BF=E3=81=AB=E4=B8=80=E6=99=82=E7=9A=84=E3=81= +=AA=E6=AC=A0=E6=90=8D=E3=81=8C=E7=99=BA=E7=94=9F=E3=81=84=E3=81=9F=E3=81=97= +=E3=81=BE=E3=81=99=E3=80=82
+=E3=81=BE=E3=81=9F=E3=80=81=E3=83=A1=E3=83=B3=E3=83=86=E3=83=8A=E3=83=B3=E3= +=82=B9=E3=81=AE=E9=96=93=E3=80=81=E3=81=8A=E5=AE=A2=E6=A7=98=E5=9B=9E=E7=B7= +=9A=E3=81=AELink down/flap =E6=A4=9C=E7=9F=A5=E5=8F=8A=E3=81=B3=E9=80=9A=E7= +=9F=A5=E6=A9=9F=E8=83=BD=E3=82=82=E5=81=9C=E6=AD=A2=E3=81=84=E3=81=9F=E3=81= +=97=E3=81=BE=E3=81=99=E3=81=AE=E3=81=A7=E3=80=81=E3=81=94=E5=AE=B9=E8=B5=A6= +=E3=81=84=E3=81=9F=E3=81=A0=E3=81=91=E3=82=8C=E3=81=B0=E3=81=A8=E5=AD=98=E3= +=81=98=E3=81=BE=E3=81=99=E3=80=82
+
+=E8=A3=BD=E5=93=81:EQUINIX CONNECT, EQUINIX FABRIC, INTERNET EXCHANG= +E, METRO CONNECT
+
+=E5=BD=B1=E9=9F=BF:=E3=81=8A=E5=AE=A2=E6=A7=98=E3=81=AE=E3=82=B5=E3= +=83=BC=E3=83=93=E3=82=B9=E3=81=AB=E5=BD=B1=E9=9F=BF=E3=81=AF=E3=81=94=E3=81= +=96=E3=81=84=E3=81=BE=E3=81=9B=E3=82=93=E3=80=82
+


+
+ Equinix Connect +=09 + + + + + + + + + + + + + + + + + + + + + + +
Account #ProductService Serial #
009999Equinix Connect10101
009999Equinix Connect10108
009999Equinix Connect10001
+
+ Internet Exchange +=09 + + + + + + + + + + + + +
Account #ProductService Serial #
009999Internet Exchange09999000-B
+
+ Metro Connect +=09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Account #ProductService Serial #
009999Metro Connect09999020-B
009999Metro Connect09999045-B
009999Metro Connect09999063-B
009999Metro Connect09999022-B
009999Metro Connect09999022-B
009999Metro Connect09999064-B
009999Metro Connect09999063-B
009999Metro Connect09999069-B
009999Metro Connect09999057-B
009999Metro Connect09999058-B
009999Metro Connect09999052-B
+
+
+


+=E3=81=8A=E5=AE=A2=E6=A7=98=E3=81=AE=E3=81=94=E5=8D=94=E5=8A=9B=E3=81=A8=E3= +=81=94=E7=90=86=E8=A7=A3=E3=82=92=E3=81=8A=E9=A1=98=E3=81=84=E3=81=84=E3=81= +=9F=E3=81=97=E3=81=BE=E3=81=99=E3=80=82
+
+=E3=81=93=E3=81=AE=E4=BD=9C=E6=A5=AD=E3=81=AB=E3=81=A4=E3=81=84=E3=81=A6=E3= +=81=94=E8=B3=AA=E5=95=8F=E3=81=8C=E3=81=82=E3=82=8B=E5=A0=B4=E5=90=88=E3=81= +=AF=E3=80=81Equinix NOC =E3=81=8B=E3=82=89=E6=9C=80=E6=96=B0=E3=81=AE=E3=82= +=B9=E3=83=86=E3=83=BC=E3=82=BF=E3=82=B9=E3=82=84=E8=BF=BD=E5=8A=A0=E3=81=AE= +=E8=A9=B3=E7=B4=B0=E6=83=85=E5=A0=B1=E3=82=92=E3=81=94=E5=85=A5=E6=89=8B=E3= +=81=84=E3=81=9F=E3=81=A0=E3=81=91=E3=81=BE=E3=81=99=E3=80=82K-293030438574 = +=E3=82=92=E3=81=94=E5=8F=82=E7=85=A7=E3=81=8F=E3=81=A0=E3=81=95=E3=81=84=E3= +=80=82
+
***********************************************************************= +***************
+
+Dear Equinix Customer,
+
+DATE: 02-JUL-2021 - 03-JUL-2021
+
+SPAN: 02-JUL-2021 - 03-JUL-2021
+
+LOCAL: FRIDAY, 02 JUL 19:00 - SATURDAY, 03 JUL 00:00
+UTC: FRIDAY, 02 JUL 10:00 - FRIDAY, 02 JUL 15:00
+
+IBX(s): TY4
+
+
+DESCRIPTION:Equinix will perform maintenance on our device managemen= +t platform. The polling of traffic on your circuit(s) will be unavailable i= +ntermittently and traffic gaps will be observed in the monitoring graph. Th= +e customer port monitoring will be unavailable, and no port down / bounce e= +mail notifications will be triggered during the maintenance period.
+
+PRODUCTS: EQUINIX CONNECT, EQUINIX FABRIC, INTERNET EXCHANGE, METRO = +CONNECT
+
+IMPACT: No impact to your service
+

+We apologize for any inconvenience you may experience during this activity.= + Your cooperation and understanding are greatly appreciated.
+
+The Equinix NOC is available to provide up-to-date status information or ad= +ditional details, should you have any questions regarding the maintenance. = + Please reference K-293030438574.
+
+

Sincerely,
Equinix NOC

Contacts:

To place orders, schedule site access, rep= +ort trouble or manage your user list online, please visit: http://ww= +w.equinix.com/contact-us/customer-support/

Please do not reply= + to this email address. If you have any questions or concerns regarding thi= +s notification, please email Service Desk and include the ticket [K-293030438574] in = +the subject line. If the matter is urgent, you may contact the Equinix Serv= +ice Desk - Asia Pacific by phone at following numbers for an up-to-date sta= +tus. Australia - 1 800 312 838 | Hong Kong - 800 938 645 | China - 400 842= + 8001 | Japan - 0800 123 6449 | Singapore - 800 852 6825 | Dialing from oth= +er countries +65 3158 2175


+
To unsubscribe from notifications, please log in to the Eq= +uinix Customer Portal and change your preferences.

+
+
+
+
+

=C2=A0

+
+
+ + + +
3D"Equinix" + + + +
How are we doing? Tell E= +quinix - We're Listening. + +=C2=A0 +
+
=C2=A0
+
+ + + + + +
+ + + + + +
+ + + + + +
E Q U I N I X=C2=A0=C2=A0= +=C2=A0|=C2=A0=C2=A0=C2=A0Units 6501-04A, 65/F International Commerce Centre,
1 Austin R= +oad West, Kowloon, Hong Kong
+
=C2=A0=C2=A0=C2=A0|=C2=A0=C2=A0=C2=A0www.equinix.com<= +/td> +
+
=C2=A9 2021 Equinix, Inc. A= +ll rights reserved.| Legal | Privacy +
+ + + +
+ + + +--00000000000098d74105ceb6b2e6-- diff --git a/tests/unit/data/equinix/equinix3.eml b/tests/unit/data/equinix/equinix3.eml index cdc9d7d8..817207b0 100644 --- a/tests/unit/data/equinix/equinix3.eml +++ b/tests/unit/data/equinix/equinix3.eml @@ -1,518 +1,518 @@ -Delivered-To: nautobot.email@example.com -Received: by 2002:a05:7000:1f21:0:0:0:0 with SMTP id hs33csp396879mab; - Wed, 17 Nov 2021 05:10:26 -0800 (PST) -X-Received: by 2002:a05:6808:2014:: with SMTP id q20mr44138276oiw.9.1637154626741; - Wed, 17 Nov 2021 05:10:26 -0800 (PST) -ARC-Seal: i=3; a=rsa-sha256; t=1637154626; cv=pass; - d=google.com; s=arc-20160816; - b=KJC5VM31/eiQyaGHA116PBrOB44xsYVxFNMrA7K0oGLeU87DvQNORtTctHg06xOmSY - NO6N/16MXFhz1CnMXgMnyd4mIU225pmNcnDIzY7rLJJmIaATCHvkxS+XpdTV/XxRSS4A - 4M2zDrgLkm5zADdk//ef1d23MbNINylpZp2pKUSDWs/wK+FdWmQ9msMH0fOGD/yorxQa - /EVwa8tf1hD0UfyrWfjej1wo86gE9Kqz9uExhtMFZfJgcH5bojYwBdhdJAak5wi4uyJD - aE6399vkp+i/KovwT7AwrdvEGT9iL0wprrXhqKoa1DXF+dRUNkWuUZ9VKUzzV9DGyke2 - njvQ== -ARC-Message-Signature: i=3; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=list-unsubscribe:list-archive:list-help:list-post:list-id - :mailing-list:precedence:organization:mime-version:subject - :message-id:to:reply-to:from:date:sender:dkim-signature; - bh=dLvVdVH96vN2c5dDukZsjAaCmYzGMxWOQg1N4W4aeU8=; - b=F//IHBKr6yLZVnO66r3NArxPOOhrSlEobnA60lValuj9/GPuVzJPTh4yx1+5+N4oDu - Mj2Qsm/nqsQam3cTvl/Sa4C0bBGXJTfBaHkvJuesQ97ILj8T4HYO6oO2NCn+5YQniBlo - Mp8sjoEifqzVqCCrpylHTI6puSIK3p5SiPyP5B81c5eWqtrwtKN3CelaRicgbaRwgd0b - lY/n+T8mYuNfZSx0jo9GEK/0ZEEA/zi7lOV5vRdO953eCUpbKsPgqqrXK/WvpFRoQNQ9 - n5n9TWfDX3AEJYP51x+7HkJIbz6cSvijZJHWuu0TSVtz/n79UKz8T9jHd8ieeUSTYPcQ - DjBQ== -ARC-Authentication-Results: i=3; mx.google.com; - dkim=pass header.i=@example.com header.s=example header.b=MQ8puX7v; - arc=pass (i=2 spf=pass spfdomain=equinix.com dmarc=pass fromdomain=equinix.com); - spf=pass (google.com: domain of maintenance-notices+bncbdbld5ph4eibbph62ogamgqe5vxs7oq@example.com designates 209.85.220.97 as permitted sender) smtp.mailfrom=maintenance-notices+bncBDBLD5PH4EIBBPH62OGAMGQE5VXS7OQ@example.com; - dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=equinix.com -Return-Path: -Received: from mail-sor-f97.google.com (mail-sor-f97.google.com. [209.85.220.97]) - by mx.google.com with SMTPS id t10sor4802790otm.65.2021.11.17.05.10.26 - for - (Google Transport Security); - Wed, 17 Nov 2021 05:10:26 -0800 (PST) -Received-SPF: pass (google.com: domain of maintenance-notices+bncbdbld5ph4eibbph62ogamgqe5vxs7oq@example.com designates 209.85.220.97 as permitted sender) client-ip=209.85.220.97; -Authentication-Results: mx.google.com; - dkim=pass header.i=@example.com header.s=example header.b=MQ8puX7v; - arc=pass (i=2 spf=pass spfdomain=equinix.com dmarc=pass fromdomain=equinix.com); - spf=pass (google.com: domain of maintenance-notices+bncbdbld5ph4eibbph62ogamgqe5vxs7oq@example.com designates 209.85.220.97 as permitted sender) smtp.mailfrom=maintenance-notices+bncBDBLD5PH4EIBBPH62OGAMGQE5VXS7OQ@example.com; - dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=equinix.com -X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; - d=1e100.net; s=20210112; - h=x-gm-message-state:dkim-signature:sender:date:from:reply-to:to - :message-id:subject:mime-version:organization:x-original-sender - :x-original-authentication-results:precedence:mailing-list:list-id - :list-post:list-help:list-archive:list-unsubscribe; - bh=dLvVdVH96vN2c5dDukZsjAaCmYzGMxWOQg1N4W4aeU8=; - b=XZb3UBhZjqkCvgakucchPEwcHhuJBqi9pfaC2m4nSJpl5rDD9dMTRC5QhLtK7u4xBE - l+9h32a0isipPZ25R5h3TeUXojQc3uDaoFogp6M/EhfDPZ3vuV1PAXE3Tja+q4iilzKL - QWGeRLJvQxFArKkBWP58ZnEEASkFMO2yytYjJQ+S0czuePxNKCfHa3o6nT1wxP8WQ0cA - yfJputt2nd13rMeR8B3r8J8V127NiJu6Nel8zAH5nXF3me+tAPUrpFAjdJYOrdbWdFoW - J/fZWQVSqialKTf3BgZFOYvmmJaXqw/QxZdFBWYX0Sptf0sEDfWvtNdt7AZwDf3B7Bay - xohw== -X-Gm-Message-State: AOAM530GPrLKTIWZmnUg9m0QElsEI0wXj7rqdiEOuB3pMEiC6N03QDqZ - FUPimxHJOXdXBD0desppOZzHs1qsQgMF5YSpqFOuQtSNMd0yOFUh -X-Google-Smtp-Source: ABdhPJxzOd6h+5kUj1qt+jyBy5FhPqLetjpEgHdUdummq2iZUjleM1Esho2bcmmeOlbxGatiNIkVEIla0xKG -X-Received: by 2002:a05:6830:1445:: with SMTP id w5mr13499681otp.112.1637154626351; - Wed, 17 Nov 2021 05:10:26 -0800 (PST) -Return-Path: -Received: from netskope.com ([163.116.131.173]) - by smtp-relay.gmail.com with ESMTPS id f20sm6179603otu.10.2021.11.17.05.10.26 - for - (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); - Wed, 17 Nov 2021 05:10:26 -0800 (PST) -X-Relaying-Domain: example.com -Received: by mail-pg1-f198.google.com with SMTP id e4-20020a630f04000000b002cc40fe16afsf1059275pgl.23 - for ; Wed, 17 Nov 2021 05:10:25 -0800 (PST) -ARC-Seal: i=2; a=rsa-sha256; t=1637154625; cv=pass; - d=google.com; s=arc-20160816; - b=dPvjD4uYIz+OeAQgv993c2Xdp1+6l8gSnKJfQNVxrrrrFU8HTepvonuZkT8BXYEeoV - bsGyUbJySveL72oDTGVjq3GEM0nqHcGg2QNbyTKXStkFVHCrw2cKJyQDNcjQ/BrvVhk9 - X4TzX25Y2+AAeqVDibvolRqt1xjKJEgnCxa/KqilBs9Utzw+uUfqBnmbp14TpYKgzSo2 - /GBedd6/54g6E6s74EzeN2BRfec5uPV1lEioINVacw0iJ/lLRa90uD3LFbTqWjNt3H7G - vCLA0I82G9DyJfPb3CU0PgP6CR6U9dnElQ7rfYCZoSWkfea0pU6GOVu8FnVIfqToedtB - ZBoA== -ARC-Message-Signature: i=2; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=list-unsubscribe:list-archive:list-help:list-post:list-id - :mailing-list:precedence:organization:mime-version:subject - :message-id:to:reply-to:from:date:sender:dkim-signature; - bh=dLvVdVH96vN2c5dDukZsjAaCmYzGMxWOQg1N4W4aeU8=; - b=oQGaNNnL8SgXtbpK28cJrupmFf5fFhARwP1OmDxR/xHOH1JtpJVr0btiNNAQzXfNIl - d9S+j1PDOFqi9a1C2px67/0376OttY9TI560EftTV/EpSTSYlO7RqsIoZ+qByMWz9VtJ - 4B+eQCX1LK0hlnZnGbka1e91zgKlLgq/W1N8sh72bvVFPucRLGeegTuIXkr0wGdTzAzk - 5qS4SRJXiw+F8sjucyeKbzOgHRlZaIdhMBvA7l2YUsQlx16Qt2UZIkox67MYTUgWIG91 - pkTgnI8sGFec9CqCecBoGq0iAyLYxlw2FuKBzPdHve/1CvkCkgAA8z1D10ECWddz/fzv - l3EQ== -ARC-Authentication-Results: i=2; mx.google.com; - spf=pass (google.com: domain of no-reply@equinix.com designates 216.221.232.129 as permitted sender) smtp.mailfrom=no-reply@equinix.com; - dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=equinix.com -DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; - d=example.com; s=example; - h=sender:date:from:reply-to:to:message-id:subject:mime-version - :organization:x-original-sender:x-original-authentication-results - :precedence:mailing-list:list-id:list-post:list-help:list-archive - :list-unsubscribe; - bh=dLvVdVH96vN2c5dDukZsjAaCmYzGMxWOQg1N4W4aeU8=; - b=MQ8puX7v63oJz7it1DNPYJeeVdKryEsmretgHPpcn1/rirvX9le3Edru8ai3U3XiIQ - PJvqv1k7uwSg/k3/ojvMzAegc9LbYWxLjUFS+JxggHsonTqt384GOpYwtgLmCXx0sMts - Mdzsp+vb/kImnuV1jW8a4QfDMw/nP+fG3+Ims= -Sender: maintenance-notices@example.com -X-Received: by 2002:a17:90b:2309:: with SMTP id mt9mr9548698pjb.213.1637154623296; - Wed, 17 Nov 2021 05:10:23 -0800 (PST) -X-Received: by 2002:a17:90b:2309:: with SMTP id mt9mr9548355pjb.213.1637154620880; - Wed, 17 Nov 2021 05:10:20 -0800 (PST) -X-BeenThere: maintenance-notices@example.com -Received: by 2002:a17:90b:1bcf:: with SMTP id oa15ls2981174pjb.0.canary-gmail; - Wed, 17 Nov 2021 05:10:20 -0800 (PST) -X-Received: by 2002:a17:902:a605:b0:143:d289:f3fb with SMTP id u5-20020a170902a60500b00143d289f3fbmr12862050plq.41.1637154619788; - Wed, 17 Nov 2021 05:10:19 -0800 (PST) -ARC-Seal: i=1; a=rsa-sha256; t=1637154619; cv=none; - d=google.com; s=arc-20160816; - b=k9nXrDbnNsbkLsnQt8lvLp0rP8j2dlvW/nsTs1rQk2qrpOjKO7k2k2EVOG6FyHirRL - Ed0t0lKXF+nDtjU8nrjcH0FDH0t+7kQ5XpMz2S745c+cyddwXQOBu1zegAg0AS3NU4o9 - enegjQOr9GkKNDCAXpqIYRIG7r/IUHt+e8i/3DZZf/q76hrR/BCakLwsETfgTGjt+hz8 - QqEG+D5+ZdfzR8JzRp6D8HY3pdQkTNSK5q5YD49iCXvZOm1dAXPhi0KkPwV7TnsZ5suR - OJTlGiieXaPpRcA/BZeMCxz0NSeywfj8MFaBQIRB6p/XYQtnhhhqYOoo06ukaMTzoNul - eC1g== -ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=organization:mime-version:subject:message-id:to:reply-to:from:date; - bh=6E9iV3kwO52DRLfdVAG0hTkrh4VKiPxUu9e13GDquT8=; - b=J3hFFeGTu9htcR6eN0psfcphbInLVMfMmFU7eIm8Gb1Pz6RjuHSAioHPpICxTOk+Dd - YKrP/k5SDGcC2joGziljXTqTik8bqSWLNh5L+yC8hNnrBclnZjBV0S4B8vnv20J9X+nV - +wRR7aEATC9DmF6dh7sQlCOLUTFgVkVls2gRrFZJMI3D3u/ompCQzv7KQf2z6UIP1MUm - 5cZibAka6SniBs0hU8z3Cai/DoB/83fMDNOg9mWuXI/boHpygrbG1//5Kc8z+HKcN1Oa - PnhbaF2l1fkYr9AvqO5QsC+ZBDDOxbA59iwnon8r5wK2HtJZiTByi1w7dCilQflYvLXJ - GKiQ== -ARC-Authentication-Results: i=1; mx.google.com; - spf=pass (google.com: domain of no-reply@equinix.com designates 216.221.232.129 as permitted sender) smtp.mailfrom=no-reply@equinix.com; - dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=equinix.com -Received: from sv2esa01.corp.equinix.com (nat1-mis.equinix.com. [216.221.232.129]) - by mx.google.com with ESMTPS id r2si9088157pjr.143.2021.11.17.05.10.16 - (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); - Wed, 17 Nov 2021 05:10:19 -0800 (PST) -Received-SPF: pass (google.com: domain of no-reply@equinix.com designates 216.221.232.129 as permitted sender) client-ip=216.221.232.129; -Received: from unknown (HELO vmclxremas08.corp.equinix.com) ([10.192.140.2]) - by sv2esa01.corp.equinix.com with ESMTP; 17 Nov 2021 05:10:16 -0800 -Date: Wed, 17 Nov 2021 13:10:16 +0000 (UTC) -From: Equinix Network Maintenance NO-REPLY -Reply-To: Equinix Network Maintenance NO-REPLY -To: EquinixNetworkMaintenance -Message-ID: <1814407781.76370.1637154616133@vmclxremas08.corp.equinix.com> -Subject: [maintenance-notices] COMPLETED - Scheduled MLPE Upgrade-SV Metro Area Network - Maintenance -16-NOV-2021 [EQ-GL-20211027-00621] -MIME-Version: 1.0 -Content-Type: multipart/alternative; - boundary="----=_Part_76369_234541402.1637154616132" -X-Priority: 1 -Organization: Equinix, Inc -X-Original-Sender: no-reply@equinix.com -X-Original-Authentication-Results: mx.google.com; spf=pass (google.com: - domain of no-reply@equinix.com designates 216.221.232.129 as permitted - sender) smtp.mailfrom=no-reply@equinix.com; dmarc=pass (p=NONE sp=NONE - dis=NONE) header.from=equinix.com -Precedence: list -Mailing-list: list maintenance-notices@example.com; contact maintenance-notices+owners@example.com -List-ID: -X-Google-Group-Id: 536184160288 -List-Post: , -List-Help: , - -List-Archive: -List-Unsubscribe: , - -x-netskope-inspected: true - -------=_Part_76369_234541402.1637154616132 -Content-Type: text/plain; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - - Dear Equinix Customer, - -The maintenance listed below has now been completed. - - =20 - -Dear Equinix Customer, - -DATE: 16-NOV-2021 - 17-NOV-2021 - -SPAN: 16-NOV-2021 - 17-NOV-2021 - -LOCAL: TUESDAY, 16 NOV 23:00 - WEDNESDAY, 17 NOV 05:00 -UTC: WEDNESDAY, 17 NOV 07:00 - WEDNESDAY, 17 NOV 13:00 - -IBX(s): HQ,SUN,SV1,SV10,SV11,SV13,SV14,SV15,SV16,SV17,SV2,SV3,SV4,SV5,SV6,S= -V8,SV9 - - -DESCRIPTION:Please be advised as part of an ongoing effort to improve relia= -bility and security, Equinix will be performing software patching on Intern= -et Exchange (IX) route servers. -Please ensure your BGP sessions to both route servers are operational befor= -e the start of the maintenance to avoid service interruption. The activity = -will be carried out one at a time on each route servers and BGP sessions to= - each route server will be down for approximately 60 minutes. -This work will not cause a physical downtime to the peering port. - -Equinix will be performing essential maintenance on the Primary Route Serve= -r in the SV metro. - -BGP sessions to RS1 (AS64511) 192.168.117.251, 2001:db8:0:1:ffff:ffff:ffff:= -1 will be impacted. - -BGP sessions to RS2 (AS64511) 192.168.117.252, 2001:db8:0:1:ffff:ffff:ffff:= -2 will not be impacted. - -BGP sessions to RC1 (AS64510) 192.168.117.250, 2001:db8:0:1:0:6:5517:1 will= - not be impacted. - - -PRODUCTS: INTERNET EXCHANGE - -IMPACT: Loss of redundancy to your service - -Internet Exchange Account # Product Servi= -ce Serial # 123456 Internet Exchange 12345678= --A =09 - -We apologize for any inconvenience you may experience during this activity.= - Your cooperation and understanding are greatly appreciated. - -The Equinix SMC is available to provide up-to-date status information or ad= -ditional details, should you have any questions regarding the maintenance. = - Please reference EQ-GL-20211027-00621.=20 - - -Sincerely, =20 -Equinix SMC Contacts: =20 -To place orders, schedule site access, report trouble or manage your user l= -ist online, please visit: http://www.equinix.com/contact-us/customer-suppor= -t/=20 -Please do not reply to this email address. If you have any questions or con= -cerns regarding this notification, please email Service Desk and include = -the ticket [EQ-GL-20211027-00621] in the subject line. If the matter is urg= -ent, you may contact the Service Desk North America by phone at +1.866.EQU= -INIX (378.4649) (USA or Canada) or +1.408.451.5200 (outside USA or Canada) = - for an up-to-date status. - -To unsubscribe from notifications, please log in to the Equinix Customer Po= -rtal and change your preferences. - -How are we doing? Tell Equinix - We're Listening. E Q U= - I N I X | One Lagoon Drive, 4th Floor, Redwood City, CA 94065 | = - www.equinix.com =C2=A9 2021 Equinix, Inc. All rights reserved.| Leg= -al | Privacy - ---=20 -You received this message because you are subscribed to the Google Groups "= -Maintenance Notices" group. -To unsubscribe from this group and stop receiving emails from it, send an e= -mail to maintenance-notices+unsubscribe@example.com. -To view this discussion on the web visit https://groups.google.com/a/riotga= -mes.com/d/msgid/maintenance-notices/1814407781.76370.1637154616133%40vmclxremas08.co= -rp.equinix.com. - -------=_Part_76369_234541402.1637154616132 -Content-Type: text/html; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - - - - - - - - - - - - - -
- - - - -
- -
3D"Meet -
-
- - - - - - -
  - -
-

-Dear Equinix Customer,
-
-The maintenance listed below has now been completed.
-
-

-
-


-Dear Equinix Customer,
-
-DATE: 16-NOV-2021 - 17-NOV-2021
-
-SPAN: 16-NOV-2021 - 17-NOV-2021
-
-LOCAL: TUESDAY, 16 NOV 23:00 - WEDNESDAY, 17 NOV 05:00
-UTC: WEDNESDAY, 17 NOV 07:00 - WEDNESDAY, 17 NOV 13:00
-
-IBX(s): HQ,SUN,SV1,SV10,SV11,SV13,SV14,SV15,SV16,SV17,SV2,SV3,SV4,SV= -5,SV6,SV8,SV9
-
-
-DESCRIPTION:Please be advised as part of an ongoing effort to improv= -e reliability and security, Equinix will be performing software patching on= - Internet Exchange (IX) route servers.
-Please ensure your BGP sessions to both route servers are operational befor= -e the start of the maintenance to avoid service interruption. The activity = -will be carried out one at a time on each route servers and BGP sessions to= - each route server will be down for approximately 60 minutes.
-This work will not cause a physical downtime to the peering port.
-
-Equinix will be performing essential maintenance on the Primary Route Serve= -r in the SV metro.
-
-BGP sessions to RS1 (AS24115) 192.168.117.251, 2001:db8:0:1:ffff:ffff:ffff:= -1 will be impacted.
-
-BGP sessions to RS2 (AS24115) 192.168.117.252, 2001:db8:0:1:ffff:ffff:ffff:= -2 will not be impacted.
-
-BGP sessions to RC1 (AS65517) 192.168.117.250, 2001:db8:0:1:0:6:5517:1 will= - not be impacted.
-

-PRODUCTS: INTERNET EXCHANGE
-
-IMPACT: Loss of redundancy to your service
-
- Internet Exchange -=09 - -

- - - - - - - - - - -
Account #ProductService Serial #
123456Internet Exchange12345678-A
-
-
We apologize for any inconvenience you may experienc= -e during this activity. Your cooperation and understanding are greatly app= -reciated.

The Equinix SMC is available to provide up-to-date s= -tatus information or additional details, should you have any questions rega= -rding the maintenance. Please reference EQ-GL-20211027-00621.
-
-

Sincerely,
Equinix SMC

Contacts:

To place orders, schedule s= -ite access, report trouble or manage your user list online, please visit: <= -a href=3D"http://www.equinix.com/contact-us/customer-support/ ">http://www.= -equinix.com/contact-us/customer-support/

Please do not reply to = -this email address. If you have any questions or concerns regarding this no= -tification, please email Servic= -e Desk and include the ticket [EQ-GL-20211027-00621] in the subject li= -ne. If the matter is urgent, you may contact the Service Desk North America= - by phone at +1.866.EQUINIX (378.4649) (USA or Canada) or +1.408.451.5200 = -(outside USA or Canada) for an up-to-date status.


-
To unsubscribe from notifications, please log in to the E= -quinix Customer Portal and change your preferences.

-
-
-
-
-

 

-
-
- - - -
3D"Equinix" - - - -
How are we doi= -ng? Tell Equinix - We're Listening. - -  -
-
 
-
- - - - - -
- - - - - -
- - - - - - -
= -E Q U I N I X &nb= -sp; |   One Lagoon Drive, 4th Floor, Redwood City, CA 94065 -   |   www.equinix.com
-
© 2021 Eq= -uinix, Inc. All rights reserved.| Legal | Priva= -cy -
- - - - - - -

- ---
-You received this message because you are subscribed to the Google Groups &= -quot;Maintenance Notices" group.
-To unsubscribe from this group and stop receiving emails from it, send an e= -mail to maintenance-notices+= -unsubscribe@example.com.
-To view this discussion on the web visit https://g= -roups.google.com/a/example.com/d/msgid/maintenance-notices/1814407781.76370.163715= -4616133%40vmclxremas08.corp.equinix.com.
- -------=_Part_76369_234541402.1637154616132-- +Delivered-To: nautobot.email@example.com +Received: by 2001:DB8::1 with SMTP id hs33csp396879mab; + Wed, 17 Nov 2021 05:10:26 -0800 (PST) +X-Received: by 2001:DB8::1 with SMTP id q20mr44138276oiw.9.1637154626741; + Wed, 17 Nov 2021 05:10:26 -0800 (PST) +ARC-Seal: i=3; a=rsa-sha256; t=1637154626; cv=pass; + d=google.com; s=arc-20160816; + b=KJC5VM31/eiQyaGHA116PBrOB44xsYVxFNMrA7K0oGLeU87DvQNORtTctHg06xOmSY + NO6N/16MXFhz1CnMXgMnyd4mIU225pmNcnDIzY7rLJJmIaATCHvkxS+XpdTV/XxRSS4A + 4M2zDrgLkm5zADdk//ef1d23MbNINylpZp2pKUSDWs/wK+FdWmQ9msMH0fOGD/yorxQa + /EVwa8tf1hD0UfyrWfjej1wo86gE9Kqz9uExhtMFZfJgcH5bojYwBdhdJAak5wi4uyJD + aE6399vkp+i/KovwT7AwrdvEGT9iL0wprrXhqKoa1DXF+dRUNkWuUZ9VKUzzV9DGyke2 + njvQ== +ARC-Message-Signature: i=3; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=list-unsubscribe:list-archive:list-help:list-post:list-id + :mailing-list:precedence:organization:mime-version:subject + :message-id:to:reply-to:from:date:sender:dkim-signature; + bh=dLvVdVH96vN2c5dDukZsjAaCmYzGMxWOQg1N4W4aeU8=; + b=F//IHBKr6yLZVnO66r3NArxPOOhrSlEobnA60lValuj9/GPuVzJPTh4yx1+5+N4oDu + Mj2Qsm/nqsQam3cTvl/Sa4C0bBGXJTfBaHkvJuesQ97ILj8T4HYO6oO2NCn+5YQniBlo + Mp8sjoEifqzVqCCrpylHTI6puSIK3p5SiPyP5B81c5eWqtrwtKN3CelaRicgbaRwgd0b + lY/n+T8mYuNfZSx0jo9GEK/0ZEEA/zi7lOV5vRdO953eCUpbKsPgqqrXK/WvpFRoQNQ9 + n5n9TWfDX3AEJYP51x+7HkJIbz6cSvijZJHWuu0TSVtz/n79UKz8T9jHd8ieeUSTYPcQ + DjBQ== +ARC-Authentication-Results: i=3; mx.google.com; + dkim=pass header.i=@example.com header.s=example header.b=MQ8puX7v; + arc=pass (i=2 spf=pass spfdomain=equinix.com dmarc=pass fromdomain=equinix.com); + spf=pass (google.com: domain of maintenance-notices+bncbdbld5ph4eibbph62ogamgqe5vxs7oq@example.com designates 192.0.2.1 as permitted sender) smtp.mailfrom=maintenance-notices+bncBDBLD5PH4EIBBPH62OGAMGQE5VXS7OQ@example.com; + dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=equinix.com +Return-Path: +Received: from mail-sor-f97.google.com (mail-sor-f97.google.com. [192.0.2.1]) + by mx.google.com with SMTPS id t10sor4802790otm.65.20192.0.2.1.1.26 + for + (Google Transport Security); + Wed, 17 Nov 2021 05:10:26 -0800 (PST) +Received-SPF: pass (google.com: domain of maintenance-notices+bncbdbld5ph4eibbph62ogamgqe5vxs7oq@example.com designates 192.0.2.1 as permitted sender) client-ip=192.0.2.1; +Authentication-Results: mx.google.com; + dkim=pass header.i=@example.com header.s=example header.b=MQ8puX7v; + arc=pass (i=2 spf=pass spfdomain=equinix.com dmarc=pass fromdomain=equinix.com); + spf=pass (google.com: domain of maintenance-notices+bncbdbld5ph4eibbph62ogamgqe5vxs7oq@example.com designates 192.0.2.1 as permitted sender) smtp.mailfrom=maintenance-notices+bncBDBLD5PH4EIBBPH62OGAMGQE5VXS7OQ@example.com; + dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=equinix.com +X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=1e100.net; s=20210112; + h=x-gm-message-state:dkim-signature:sender:date:from:reply-to:to + :message-id:subject:mime-version:organization:x-original-sender + :x-original-authentication-results:precedence:mailing-list:list-id + :list-post:list-help:list-archive:list-unsubscribe; + bh=dLvVdVH96vN2c5dDukZsjAaCmYzGMxWOQg1N4W4aeU8=; + b=XZb3UBhZjqkCvgakucchPEwcHhuJBqi9pfaC2m4nSJpl5rDD9dMTRC5QhLtK7u4xBE + l+9h32a0isipPZ25R5h3TeUXojQc3uDaoFogp6M/EhfDPZ3vuV1PAXE3Tja+q4iilzKL + QWGeRLJvQxFArKkBWP58ZnEEASkFMO2yytYjJQ+S0czuePxNKCfHa3o6nT1wxP8WQ0cA + yfJputt2nd13rMeR8B3r8J8V127NiJu6Nel8zAH5nXF3me+tAPUrpFAjdJYOrdbWdFoW + J/fZWQVSqialKTf3BgZFOYvmmJaXqw/QxZdFBWYX0Sptf0sEDfWvtNdt7AZwDf3B7Bay + xohw== +X-Gm-Message-State: AOAM530GPrLKTIWZmnUg9m0QElsEI0wXj7rqdiEOuB3pMEiC6N03QDqZ + FUPimxHJOXdXBD0desppOZzHs1qsQgMF5YSpqFOuQtSNMd0yOFUh +X-Google-Smtp-Source: ABdhPJxzOd6h+5kUj1qt+jyBy5FhPqLetjpEgHdUdummq2iZUjleM1Esho2bcmmeOlbxGatiNIkVEIla0xKG +X-Received: by 2001:DB8::1 with SMTP id w5mr13499681otp.112.1637154626351; + Wed, 17 Nov 2021 05:10:26 -0800 (PST) +Return-Path: +Received: from netskope.com ([192.0.2.1]) + by smtp-relay.gmail.com with ESMTPS id f20sm6179603otu.10.20192.0.2.1.1.26 + for + (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); + Wed, 17 Nov 2021 05:10:26 -0800 (PST) +X-Relaying-Domain: example.com +Received: by mail-pg1-f198.google.com with SMTP id e4-20020a630f04000000b002cc40fe16afsf1059275pgl.23 + for ; Wed, 17 Nov 2021 05:10:25 -0800 (PST) +ARC-Seal: i=2; a=rsa-sha256; t=1637154625; cv=pass; + d=google.com; s=arc-20160816; + b=dPvjD4uYIz+OeAQgv993c2Xdp1+6l8gSnKJfQNVxrrrrFU8HTepvonuZkT8BXYEeoV + bsGyUbJySveL72oDTGVjq3GEM0nqHcGg2QNbyTKXStkFVHCrw2cKJyQDNcjQ/BrvVhk9 + X4TzX25Y2+AAeqVDibvolRqt1xjKJEgnCxa/KqilBs9Utzw+uUfqBnmbp14TpYKgzSo2 + /GBedd6/54g6E6s74EzeN2BRfec5uPV1lEioINVacw0iJ/lLRa90uD3LFbTqWjNt3H7G + vCLA0I82G9DyJfPb3CU0PgP6CR6U9dnElQ7rfYCZoSWkfea0pU6GOVu8FnVIfqToedtB + ZBoA== +ARC-Message-Signature: i=2; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=list-unsubscribe:list-archive:list-help:list-post:list-id + :mailing-list:precedence:organization:mime-version:subject + :message-id:to:reply-to:from:date:sender:dkim-signature; + bh=dLvVdVH96vN2c5dDukZsjAaCmYzGMxWOQg1N4W4aeU8=; + b=oQGaNNnL8SgXtbpK28cJrupmFf5fFhARwP1OmDxR/xHOH1JtpJVr0btiNNAQzXfNIl + d9S+j1PDOFqi9a1C2px67/0376OttY9TI560EftTV/EpSTSYlO7RqsIoZ+qByMWz9VtJ + 4B+eQCX1LK0hlnZnGbka1e91zgKlLgq/W1N8sh72bvVFPucRLGeegTuIXkr0wGdTzAzk + 5qS4SRJXiw+F8sjucyeKbzOgHRlZaIdhMBvA7l2YUsQlx16Qt2UZIkox67MYTUgWIG91 + pkTgnI8sGFec9CqCecBoGq0iAyLYxlw2FuKBzPdHve/1CvkCkgAA8z1D10ECWddz/fzv + l3EQ== +ARC-Authentication-Results: i=2; mx.google.com; + spf=pass (google.com: domain of no-reply@equinix.com designates 192.0.2.1 as permitted sender) smtp.mailfrom=no-reply@equinix.com; + dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=equinix.com +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=example.com; s=example; + h=sender:date:from:reply-to:to:message-id:subject:mime-version + :organization:x-original-sender:x-original-authentication-results + :precedence:mailing-list:list-id:list-post:list-help:list-archive + :list-unsubscribe; + bh=dLvVdVH96vN2c5dDukZsjAaCmYzGMxWOQg1N4W4aeU8=; + b=MQ8puX7v63oJz7it1DNPYJeeVdKryEsmretgHPpcn1/rirvX9le3Edru8ai3U3XiIQ + PJvqv1k7uwSg/k3/ojvMzAegc9LbYWxLjUFS+JxggHsonTqt384GOpYwtgLmCXx0sMts + Mdzsp+vb/kImnuV1jW8a4QfDMw/nP+fG3+Ims= +Sender: maintenance-notices@example.com +X-Received: by 2001:DB8::1 with SMTP id mt9mr9548698pjb.213.1637154623296; + Wed, 17 Nov 2021 05:10:23 -0800 (PST) +X-Received: by 2001:DB8::1 with SMTP id mt9mr9548355pjb.213.1637154620880; + Wed, 17 Nov 2021 05:10:20 -0800 (PST) +X-BeenThere: maintenance-notices@example.com +Received: by 2001:DB8::1 with SMTP id oa15ls2981174pjb.0.canary-gmail; + Wed, 17 Nov 2021 05:10:20 -0800 (PST) +X-Received: by 2001:DB8::1 with SMTP id u5-20020a170902a60500b00143d289f3fbmr12862050plq.41.1637154619788; + Wed, 17 Nov 2021 05:10:19 -0800 (PST) +ARC-Seal: i=1; a=rsa-sha256; t=1637154619; cv=none; + d=google.com; s=arc-20160816; + b=k9nXrDbnNsbkLsnQt8lvLp0rP8j2dlvW/nsTs1rQk2qrpOjKO7k2k2EVOG6FyHirRL + Ed0t0lKXF+nDtjU8nrjcH0FDH0t+7kQ5XpMz2S745c+cyddwXQOBu1zegAg0AS3NU4o9 + enegjQOr9GkKNDCAXpqIYRIG7r/IUHt+e8i/3DZZf/q76hrR/BCakLwsETfgTGjt+hz8 + QqEG+D5+ZdfzR8JzRp6D8HY3pdQkTNSK5q5YD49iCXvZOm1dAXPhi0KkPwV7TnsZ5suR + OJTlGiieXaPpRcA/BZeMCxz0NSeywfj8MFaBQIRB6p/XYQtnhhhqYOoo06ukaMTzoNul + eC1g== +ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=organization:mime-version:subject:message-id:to:reply-to:from:date; + bh=6E9iV3kwO52DRLfdVAG0hTkrh4VKiPxUu9e13GDquT8=; + b=J3hFFeGTu9htcR6eN0psfcphbInLVMfMmFU7eIm8Gb1Pz6RjuHSAioHPpICxTOk+Dd + YKrP/k5SDGcC2joGziljXTqTik8bqSWLNh5L+yC8hNnrBclnZjBV0S4B8vnv20J9X+nV + +wRR7aEATC9DmF6dh7sQlCOLUTFgVkVls2gRrFZJMI3D3u/ompCQzv7KQf2z6UIP1MUm + 5cZibAka6SniBs0hU8z3Cai/DoB/83fMDNOg9mWuXI/boHpygrbG1//5Kc8z+HKcN1Oa + PnhbaF2l1fkYr9AvqO5QsC+ZBDDOxbA59iwnon8r5wK2HtJZiTByi1w7dCilQflYvLXJ + GKiQ== +ARC-Authentication-Results: i=1; mx.google.com; + spf=pass (google.com: domain of no-reply@equinix.com designates 192.0.2.1 as permitted sender) smtp.mailfrom=no-reply@equinix.com; + dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=equinix.com +Received: from sv2esa01.corp.equinix.com (nat1-mis.equinix.com. [192.0.2.1]) + by mx.google.com with ESMTPS id r2si9088157pjr.143.20192.0.2.1.1.16 + (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); + Wed, 17 Nov 2021 05:10:19 -0800 (PST) +Received-SPF: pass (google.com: domain of no-reply@equinix.com designates 192.0.2.1 as permitted sender) client-ip=192.0.2.1; +Received: from unknown (HELO vmclxremas08.corp.equinix.com) ([192.0.2.1]) + by sv2esa01.corp.equinix.com with ESMTP; 17 Nov 2021 05:10:16 -0800 +Date: Wed, 17 Nov 2021 13:10:16 +0000 (UTC) +From: Equinix Network Maintenance NO-REPLY +Reply-To: Equinix Network Maintenance NO-REPLY +To: EquinixNetworkMaintenance +Message-ID: <1814407781.76370.1637154616133@vmclxremas08.corp.equinix.com> +Subject: [maintenance-notices] COMPLETED - Scheduled MLPE Upgrade-SV Metro Area Network + Maintenance -16-NOV-2021 [EQ-GL-20211027-00621] +MIME-Version: 1.0 +Content-Type: multipart/alternative; + boundary="----=_Part_76369_234541402.1637154616132" +X-Priority: 1 +Organization: Equinix, Inc +X-Original-Sender: no-reply@equinix.com +X-Original-Authentication-Results: mx.google.com; spf=pass (google.com: + domain of no-reply@equinix.com designates 192.0.2.1 as permitted + sender) smtp.mailfrom=no-reply@equinix.com; dmarc=pass (p=NONE sp=NONE + dis=NONE) header.from=equinix.com +Precedence: list +Mailing-list: list maintenance-notices@example.com; contact maintenance-notices+owners@example.com +List-ID: +X-Google-Group-Id: 536184160288 +List-Post: , +List-Help: , + +List-Archive: +List-Unsubscribe: , + +x-netskope-inspected: true + +------=_Part_76369_234541402.1637154616132 +Content-Type: text/plain; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + + Dear Equinix Customer, + +The maintenance listed below has now been completed. + + =20 + +Dear Equinix Customer, + +DATE: 16-NOV-2021 - 17-NOV-2021 + +SPAN: 16-NOV-2021 - 17-NOV-2021 + +LOCAL: TUESDAY, 16 NOV 23:00 - WEDNESDAY, 17 NOV 05:00 +UTC: WEDNESDAY, 17 NOV 07:00 - WEDNESDAY, 17 NOV 13:00 + +IBX(s): HQ,SUN,SV1,SV10,SV11,SV13,SV14,SV15,SV16,SV17,SV2,SV3,SV4,SV5,SV6,S= +V8,SV9 + + +DESCRIPTION:Please be advised as part of an ongoing effort to improve relia= +bility and security, Equinix will be performing software patching on Intern= +et Exchange (IX) route servers. +Please ensure your BGP sessions to both route servers are operational befor= +e the start of the maintenance to avoid service interruption. The activity = +will be carried out one at a time on each route servers and BGP sessions to= + each route server will be down for approximately 60 minutes. +This work will not cause a physical downtime to the peering port. + +Equinix will be performing essential maintenance on the Primary Route Serve= +r in the SV metro. + +BGP sessions to RS1 (AS64511) 192.0.2.1, 2001:db8:0:1:ffff:ffff:ffff:= +1 will be impacted. + +BGP sessions to RS2 (AS64511) 192.0.2.1, 2001:db8:0:1:ffff:ffff:ffff:= +2 will not be impacted. + +BGP sessions to RC1 (AS64510) 192.0.2.1, 2001:DB8::1 will= + not be impacted. + + +PRODUCTS: INTERNET EXCHANGE + +IMPACT: Loss of redundancy to your service + +Internet Exchange Account # Product Servi= +ce Serial # 123456 Internet Exchange 12345678= +-A =09 + +We apologize for any inconvenience you may experience during this activity.= + Your cooperation and understanding are greatly appreciated. + +The Equinix SMC is available to provide up-to-date status information or ad= +ditional details, should you have any questions regarding the maintenance. = + Please reference EQ-GL-20211027-00621.=20 + + +Sincerely, =20 +Equinix SMC Contacts: =20 +To place orders, schedule site access, report trouble or manage your user l= +ist online, please visit: http://www.equinix.com/contact-us/customer-suppor= +t/=20 +Please do not reply to this email address. If you have any questions or con= +cerns regarding this notification, please email Service Desk and include = +the ticket [EQ-GL-20211027-00621] in the subject line. If the matter is urg= +ent, you may contact the Service Desk North America by phone at +1.866.EQU= +INIX (378.4649) (USA or Canada) or +1.408.451.5200 (outside USA or Canada) = + for an up-to-date status. + +To unsubscribe from notifications, please log in to the Equinix Customer Po= +rtal and change your preferences. + +How are we doing? Tell Equinix - We're Listening. E Q U= + I N I X | One Lagoon Drive, 4th Floor, Redwood City, CA 94065 | = + www.equinix.com =C2=A9 2021 Equinix, Inc. All rights reserved.| Leg= +al | Privacy + +--=20 +You received this message because you are subscribed to the Google Groups "= +Maintenance Notices" group. +To unsubscribe from this group and stop receiving emails from it, send an e= +mail to maintenance-notices+unsubscribe@example.com. +To view this discussion on the web visit https://groups.google.com/a/riotga= +mes.com/d/msgid/maintenance-notices/1814407781.76370.1637154616133%40vmclxremas08.co= +rp.equinix.com. + +------=_Part_76369_234541402.1637154616132 +Content-Type: text/html; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + + + + + + + + + + + + + +
+ + + + +
+ +
3D"Meet +
+
+ + + + + + +
  + +
+

+Dear Equinix Customer,
+
+The maintenance listed below has now been completed.
+
+

+
+


+Dear Equinix Customer,
+
+DATE: 16-NOV-2021 - 17-NOV-2021
+
+SPAN: 16-NOV-2021 - 17-NOV-2021
+
+LOCAL: TUESDAY, 16 NOV 23:00 - WEDNESDAY, 17 NOV 05:00
+UTC: WEDNESDAY, 17 NOV 07:00 - WEDNESDAY, 17 NOV 13:00
+
+IBX(s): HQ,SUN,SV1,SV10,SV11,SV13,SV14,SV15,SV16,SV17,SV2,SV3,SV4,SV= +5,SV6,SV8,SV9
+
+
+DESCRIPTION:Please be advised as part of an ongoing effort to improv= +e reliability and security, Equinix will be performing software patching on= + Internet Exchange (IX) route servers.
+Please ensure your BGP sessions to both route servers are operational befor= +e the start of the maintenance to avoid service interruption. The activity = +will be carried out one at a time on each route servers and BGP sessions to= + each route server will be down for approximately 60 minutes.
+This work will not cause a physical downtime to the peering port.
+
+Equinix will be performing essential maintenance on the Primary Route Serve= +r in the SV metro.
+
+BGP sessions to RS1 (AS24115) 192.0.2.1, 2001:db8:0:1:ffff:ffff:ffff:= +1 will be impacted.
+
+BGP sessions to RS2 (AS24115) 192.0.2.1, 2001:db8:0:1:ffff:ffff:ffff:= +2 will not be impacted.
+
+BGP sessions to RC1 (AS65517) 192.0.2.1, 2001:DB8::1 will= + not be impacted.
+

+PRODUCTS: INTERNET EXCHANGE
+
+IMPACT: Loss of redundancy to your service
+
+ Internet Exchange +=09 + +

+ + + + + + + + + + +
Account #ProductService Serial #
123456Internet Exchange12345678-A
+
+
We apologize for any inconvenience you may experienc= +e during this activity. Your cooperation and understanding are greatly app= +reciated.

The Equinix SMC is available to provide up-to-date s= +tatus information or additional details, should you have any questions rega= +rding the maintenance. Please reference EQ-GL-20211027-00621.
+
+

Sincerely,
Equinix SMC

Contacts:

To place orders, schedule s= +ite access, report trouble or manage your user list online, please visit: <= +a href=3D"http://www.equinix.com/contact-us/customer-support/ ">http://www.= +equinix.com/contact-us/customer-support/

Please do not reply to = +this email address. If you have any questions or concerns regarding this no= +tification, please email Servic= +e Desk and include the ticket [EQ-GL-20211027-00621] in the subject li= +ne. If the matter is urgent, you may contact the Service Desk North America= + by phone at +1.866.EQUINIX (378.4649) (USA or Canada) or +1.408.451.5200 = +(outside USA or Canada) for an up-to-date status.


+
To unsubscribe from notifications, please log in to the E= +quinix Customer Portal and change your preferences.

+
+
+
+
+

 

+
+
+ + + +
3D"Equinix" + + + +
How are we doi= +ng? Tell Equinix - We're Listening. + +  +
+
 
+
+ + + + + +
+ + + + + +
+ + + + + + +
= +E Q U I N I X &nb= +sp; |   One Lagoon Drive, 4th Floor, Redwood City, CA 94065 +   |   www.equinix.com
+
© 2021 Eq= +uinix, Inc. All rights reserved.| Legal | Priva= +cy +
+ + + + + + +

+ +--
+You received this message because you are subscribed to the Google Groups &= +quot;Maintenance Notices" group.
+To unsubscribe from this group and stop receiving emails from it, send an e= +mail to maintenance-notices+= +unsubscribe@example.com.
+To view this discussion on the web visit https://g= +roups.google.com/a/example.com/d/msgid/maintenance-notices/1814407781.76370.163715= +4616133%40vmclxremas08.corp.equinix.com.
+ +------=_Part_76369_234541402.1637154616132-- diff --git a/tests/unit/data/equinix/equinix4.eml b/tests/unit/data/equinix/equinix4.eml index 117964fc..26a8488f 100644 --- a/tests/unit/data/equinix/equinix4.eml +++ b/tests/unit/data/equinix/equinix4.eml @@ -1,457 +1,457 @@ -Delivered-To: nautobot.email@example.com -Received: by 2002:a05:7000:1f21:0:0:0:0 with SMTP id hs33csp4865244mab; - Mon, 6 Dec 2021 07:03:42 -0800 (PST) -X-Received: by 2002:a05:6512:1093:: with SMTP id j19mr36120315lfg.340.1638803022202; - Mon, 06 Dec 2021 07:03:42 -0800 (PST) -ARC-Seal: i=3; a=rsa-sha256; t=1638803022; cv=pass; - d=google.com; s=arc-20160816; - b=wFeh1i2FgY4zIP6j6JX7ur5ZxGySWbBOmnEAqWt0efhNZHYO7dYGGvhd+ew5J3hyei - rYIeHM7bJYqloB8pv3fbFOpOyOoSdpOeuFPZuTdOpn8s/YQKFpkD/cXdM6+EL6ae0MPR - Qg4lggMLqctIFDxGJKkUiFKF11IGdZcGhL/HZKUqAyD4QaxNbhJymBi3cIeSWv9YxMri - mGcZNsMuLpD6DCsn7J8NmL8DIt+VIPhqJNnSqZRtNCiLI4EmOO8e6S5sDItfGMp8qerx - /4GLV4ERMmeiSteVAEUoDSvXyCdbqODitCSRpwwY4Duf24EQPoWR9ZNE9R4rjuwSv+Ft - lAZQ== -ARC-Message-Signature: i=3; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=list-unsubscribe:list-archive:list-help:list-post:list-id - :mailing-list:precedence:organization:mime-version:subject - :message-id:to:reply-to:from:date:sender:dkim-signature; - bh=R0VYk2ZSiBDs7fEF522bB6CVP+jkmxIwlo7fEz5wuM4=; - b=Ndvx3ze2TJi6Z7rrImATCyNxDPIBXLrGNBZFJfxOY1TjGJsO1P/c8v6yvEkJyveDBS - HeFYmsVCII+50ma0RwRrE6igvgp81wQsAfD09TXnadgzBbsal/u/TKBXpakvfmBOXieU - vhf/dneaion+l9cnWbrAZxgCeErZk4YcvcA/XOAXUQvmz+q3rEClsXy4qxpRRIDY9bIj - XiEcQ8cIyVmLjJkfMg/+8FxjlJz+oEVdCMciM/TbiI+IXDmWCW2nNT7kxmTZq5DrSLS/ - SrCqESUPMngmI+TDZLbqQk0hA/hAqv0tBP/LKtS3blFKnByaE2XqDDnc74/xqOGs0tcN - LQ0g== -ARC-Authentication-Results: i=3; mx.google.com; - dkim=pass header.i=@example.com header.s=example header.b=jlMpGX2M; - arc=pass (i=2 spf=pass spfdomain=equinix.com dmarc=pass fromdomain=equinix.com); - spf=pass (google.com: domain of maint-notices+bncbdbld5ph4eibbtomxcgqmgqeyrh3nsy@example.com designates 209.85.220.69 as permitted sender) smtp.mailfrom=maint-notices+bncBDBLD5PH4EIBBTOMXCGQMGQEYRH3NSY@example.com; - dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=equinix.com -Return-Path: -Received: from mail-sor-f69.google.com (mail-sor-f69.google.com. [209.85.220.69]) - by mx.google.com with SMTPS id 124sor4230631vkb.28.2021.12.06.07.03.41 - for - (Google Transport Security); - Mon, 06 Dec 2021 07:03:42 -0800 (PST) -Received-SPF: pass (google.com: domain of maint-notices+bncbdbld5ph4eibbtomxcgqmgqeyrh3nsy@example.com designates 209.85.220.69 as permitted sender) client-ip=209.85.220.69; -Authentication-Results: mx.google.com; - dkim=pass header.i=@example.com header.s=example header.b=jlMpGX2M; - arc=pass (i=2 spf=pass spfdomain=equinix.com dmarc=pass fromdomain=equinix.com); - spf=pass (google.com: domain of maint-notices+bncbdbld5ph4eibbtomxcgqmgqeyrh3nsy@example.com designates 209.85.220.69 as permitted sender) smtp.mailfrom=maint-notices+bncBDBLD5PH4EIBBTOMXCGQMGQEYRH3NSY@example.com; - dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=equinix.com -ARC-Seal: i=2; a=rsa-sha256; t=1638803021; cv=pass; - d=google.com; s=arc-20160816; - b=mTB+fBQ+mIfJnTasYRtWnDI7MwI+p8gC+KuU6BNv5TUAm3M9nr6Aq5cccMfTWkzvTP - nXMMEH5AAwpNEXHQP7XzGvQLv7cxOIY5g7B1v1KLpdtrU8dZkoNMUqs3BmpEdBOhujX8 - sOQ9lMBjF8efEJ48x9Ot0B2te1Nzj0+eNS/dymp138OuSdbINbVTxiuqcwlZ97JXOCL8 - zbNpaKgtjmBvsPkCh6otz4BiZmQDOXgV/dEWqJEFzVGc0le8LfWZBCwnZYhVzEyyTPtW - AI5NLZDdqUOjTxLMbY6y4kM1Kyg5EL4hAvSGR01JPdOiH5to3A8DQ2MhnpfQmADTuK7T - bsnA== -ARC-Message-Signature: i=2; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=list-unsubscribe:list-archive:list-help:list-post:list-id - :mailing-list:precedence:organization:mime-version:subject - :message-id:to:reply-to:from:date:sender:dkim-signature; - bh=R0VYk2ZSiBDs7fEF522bB6CVP+jkmxIwlo7fEz5wuM4=; - b=FVNVdWQeZml1pbbmGemW1a1Cq75xibwRVddCm3xjJO1xlxghswE2i3R8LGGVbTrMl5 - +6D8tVuVs/g1Auezvs6Gj7ZCGTPa2DTmSvcMGxczjVgY8qaYvB2TEJUNdCyrtrv6i1bL - 6mJO0TZbBUbaIAo2Thr4kMOA62UI4s8fufSoKIcFdKXD6Si+1d8Ug2yeztB9IYcbQTcR - iUF3kWSGl4F7VT1tKa0+qK9IEJ+TOyXZFNivxD8bylX/aqvZ/haEaqFZJAw5wBWA+HI0 - 2/7voD6JAa4IJSk3dNaX87Pdhs1WcxlOKAalgsCNVuSeN96kc5FdN0PGV+kFxfl42uy4 - BUow== -ARC-Authentication-Results: i=2; mx.google.com; - spf=pass (google.com: domain of no-reply@equinix.com designates 64.191.227.129 as permitted sender) smtp.mailfrom=no-reply@equinix.com; - dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=equinix.com -DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; - d=example.com; s=example; - h=sender:date:from:reply-to:to:message-id:subject:mime-version - :organization:x-original-sender:x-original-authentication-results - :precedence:mailing-list:list-id:list-post:list-help:list-archive - :list-unsubscribe; - bh=R0VYk2ZSiBDs7fEF522bB6CVP+jkmxIwlo7fEz5wuM4=; - b=jlMpGX2M3S6PHG8oE6631CVzWVoLPWcnDiCH83EQ67YXX9rVvz/SuZjPIhjApqYYu5 - J7w8XkeAXAQWJAKbr9IE4AUJ7nA8kLZU/ZP7lAxPTQsM7MFRXdvqw5+xg6R0sk5Pr1uq - 1g3JmWdiVAZKEipEq7H5N1a8K7kNOu27R14yQ= -X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; - d=1e100.net; s=20210112; - h=sender:x-gm-message-state:date:from:reply-to:to:message-id:subject - :mime-version:organization:x-original-sender - :x-original-authentication-results:precedence:mailing-list:list-id - :x-spam-checked-in-group:list-post:list-help:list-archive - :list-unsubscribe; - bh=R0VYk2ZSiBDs7fEF522bB6CVP+jkmxIwlo7fEz5wuM4=; - b=N8yb6kiuCXL7WSYeD60M6aEx67Y7+KXKIlZawUJAzZ71rQaqfnferFxPvZAop+p4/H - Uhj0PghDskYHNkR0vbUOUty842JNIbYOI2S+FrHs/cfdLqHNwNwiv8N5OWdczAUqMDOc - aD0iGBk1A/YucqKtrGqpoNDmiUMDb8bcVqEvx1Tmhs4cIl1fzPTZkvJQZXed4dXQFNUg - B7w2DPNH7+gpm2xETc2XU78kvoopKl4Uqtg3va9ntDl47p7QQ/RH65GOKonIfy6w5sZ7 - UZZVHPP+L/QUA7y1NDHBSVlQWFNiLYCo9tviITATZJWR6NzUpNhHELwMzcErRlhwjxHA - gsNg== -Sender: maint-notices@example.com -X-Gm-Message-State: AOAM533VjlUj/LnFyQw6o0/xeOuSqlLm74Eu6fwRVVfPgXTuX5AJXBcT - cAvJNZpcyEL49FDqjsEE1/LPLlro -X-Google-Smtp-Source: ABdhPJy6PqBs7zFjsCpnVPD/K3IQt2HloRSlQiCjXVwxBKRb7W8g+KhWJ4iR4IeVft1P+Iihq/Xk8Q== -X-Received: by 2002:ac5:cfca:: with SMTP id m10mr41966216vkf.29.1638803021272; - Mon, 06 Dec 2021 07:03:41 -0800 (PST) -X-BeenThere: maint-notices@example.com -Received: by 2002:a05:6102:41a6:: with SMTP id cd38ls5065354vsb.5.gmail; Mon, - 06 Dec 2021 07:03:40 -0800 (PST) -X-Received: by 2002:a05:6102:38ce:: with SMTP id k14mr35991447vst.70.1638803019627; - Mon, 06 Dec 2021 07:03:39 -0800 (PST) -ARC-Seal: i=1; a=rsa-sha256; t=1638803019; cv=none; - d=google.com; s=arc-20160816; - b=s3eQTgOQyndq/+00IH3QWxfI3Sb794jyPwy9/dMYijX8Kp1EcV7v5lTcym69+eKGbU - ZhiI4fVygo80ZL2Sx9GMeO4aT8gWQgzZBSVsumL+zhCdTrXhSQSd05XRX6Ywnlh/S7x8 - 3qxD97RjdTHySFLVoPSg5sd7T51MqRE4Uo4gUcuypm9uMlwyeeC+Zxguk5/1/+03+VXO - bkzvp/wOVAy7OK/H3G7SGUXqQ7L2CchMSHVS/mDrEC7dbPSIzPtMErC1ZG6V6KNHZDoC - O5KSfTGdGPjsYYxb30dTL0fqdfvLqWB7IO2fNA2Hbz5JSIPgGRncY7W8BP3PnfPqQpQB - zryg== -ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=organization:mime-version:subject:message-id:to:reply-to:from:date; - bh=KXImSC2nRLcb870x1UBCENwiwa6LLafq6KrnTRpMeMA=; - b=z4xTPHCi+j6NfccgK7zZUYlAytL9/xoM2BFIMfBxIvleq6rxXKZ4moL0K0Bm/iizZD - ozEFUQNVsO9Xf0KoA6al8wvHH0v0UnFgcjtK77+cWFR3uabcp3jcny2F66YO3d/3INwH - BLXoi92zLlitD+y7UF3rGhjdArYUGgQPxiL/K5I9k1hvnkG7zvdNNdONiVwHJz1Msj7H - drP+Z/SRjhrnSqZbPHEc3dZSC18uUW0U6tc+lV/qzn+rcplbH9/LJ35U21TLTnKibM88 - PKoIN+w96weW4/fLbXnQmFDFpuLYIDlPicnd+kvrdXhMoLv/SBtz+h9Qf4zxQ1FqwZHD - zz0Q== -ARC-Authentication-Results: i=1; mx.google.com; - spf=pass (google.com: domain of no-reply@equinix.com designates 64.191.227.129 as permitted sender) smtp.mailfrom=no-reply@equinix.com; - dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=equinix.com -Received: from ch3esa01.corp.equinix.com (nat1-ch-mis.equinix.com. [64.191.227.129]) - by mx.google.com with ESMTPS id n9si10427993vse.680.2021.12.06.07.03.24 - (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); - Mon, 06 Dec 2021 07:03:39 -0800 (PST) -Received-SPF: pass (google.com: domain of no-reply@equinix.com designates 64.191.227.129 as permitted sender) client-ip=64.191.227.129; -Received: from unknown (HELO vmclxremas08.corp.equinix.com) ([10.192.140.2]) - by ch3esa01.corp.equinix.com with ESMTP; 06 Dec 2021 07:03:22 -0800 -Date: Mon, 6 Dec 2021 15:03:22 +0000 (UTC) -From: Equinix Network Maintenance NO-REPLY -Reply-To: Equinix Network Maintenance NO-REPLY -To: "EquinixNetworkMaintenance.SE" -Message-ID: <382392005.90948.1638803002267@vmclxremas08.corp.equinix.com> -Subject: [maint-notices] 3rd Party SK Maintenance-SK Metro Area Network - Maintenance -17-DEC-2021 [5-210987654321] -MIME-Version: 1.0 -Content-Type: multipart/alternative; - boundary="----=_Part_90947_625377126.1638803002267" -X-Priority: 1 -Organization: Equinix, Inc -X-Original-Sender: no-reply@equinix.com -X-Original-Authentication-Results: mx.google.com; spf=pass (google.com: - domain of no-reply@equinix.com designates 64.191.227.129 as permitted sender) - smtp.mailfrom=no-reply@equinix.com; dmarc=pass (p=NONE sp=NONE - dis=NONE) header.from=equinix.com -Precedence: list -Mailing-list: list maint-notices@example.com; contact maint-notices+owners@example.com -List-ID: -X-Spam-Checked-In-Group: maint-notices@example.com -X-Google-Group-Id: 536184160288 -List-Post: , -List-Help: , - -List-Archive: -List-Unsubscribe: , - - -------=_Part_90947_625377126.1638803002267 -Content-Type: text/plain; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - - Dear Equinix Customer, - -DATE: 17-DEC-2021 - -SPAN: 17-DEC-2021 - 17-DEC-2021 - -LOCAL: FRIDAY, 17 DEC 00:01 - FRIDAY, 17 DEC 06:00 -UTC: THURSDAY, 16 DEC 23:01 - FRIDAY, 17 DEC 05:00 - -IBX(s): SK2,SK3 - - DESCRIPTION:Please be advised that our provider will perform maintenance w= -orks that will cause a loss of redundancy for your services. - -PRODUCTS: EQUINIX FABRIC, INTERNET EXCHANGE, METRO CONNECT - -IMPACT: Loss of redundancy to your service - - -Internet Exchange Account # Product Servi= -ce Serial # 309876 Internet Exchange 20987564= - =09 -=20 - -We apologize for any inconvenience you may experience during this activity.= - Your cooperation and understanding are greatly appreciated. - -The Equinix SMC is available to provide up-to-date status information or ad= -ditional details, should you have any questions regarding the maintenance. = - Please reference 5-210987654321.=20 - -v=C3=A4nliga h=C3=A4lsningar/Sincerely, -Equinix SMC - - =20 -Contacts: -To place orders, schedule site access, report trouble or manage your user l= -ist online, please visit: http://www.equinix.com/contact-us/customer-suppor= -t/=20 -Please do not reply to this email address. If you have any questions or con= -cerns regarding this notification, please email Service Desk and include th= -e ticket [5-210987654321] in the subject line. If the matter is urgent, you= - may contact the Equinix Service Desk SE by phone at +46 8 446 866 08 for = -an up-to-date status. - -To unsubscribe from notifications, please log in to the Equinix Customer Po= -rtal and change your preferences. - -How are we doing? Tell Equinix - We're Listening. E Q U= - I N I X (Sweden) Ltd | Kvastv=C3=A4gen 25-29, 128 62 Sk=C3=B6ndal, St= -ockholm, Sweden | www.equinix.com =C2=A9 2021 Equinix, Inc. Al= -l rights reserved.| Legal | Privacy - ---=20 -You received this message because you are subscribed to the Google Groups "= -Maintenance Notices" group. -To unsubscribe from this group and stop receiving emails from it, send an e= -mail to maint-notices+unsubscribe@example.com. -To view this discussion on the web visit https://groups.google.com/a/exampl= -e.com/d/msgid/maint-notices/382392005.90948.1638803002267%40vmclxremas08.cor= -p.equinix.com. - -------=_Part_90947_625377126.1638803002267 -Content-Type: text/html; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - - - - - - - - - - - - - -
- - - - -
- -
3D"Meet -
-
- - - - - - -
  - -
-

-Dear Equinix Customer,
-
-DATE: 17-DEC-2021
-
-SPAN: 17-DEC-2021 - 17-DEC-2021
-
-LOCAL: FRIDAY, 17 DEC 00:01 - FRIDAY, 17 DEC 06:00
-UTC: THURSDAY, 16 DEC 23:01 - FRIDAY, 17 DEC 05:00
-
-IBX(s): SK2,SK3
-
- -DESCRIPTION:Please be advised that our provider will perform mainten= -ance works that will cause a loss of redundancy for your services.
-
-PRODUCTS: EQUINIX FABRIC, INTERNET EXCHANGE, METRO CONNECT
-
-IMPACT: Loss of redundancy to your service
-
-
- Internet Exchange -=09 - -

- - - - - - - - - - -
Account #ProductService Serial #
309876Internet Exchange20987564
-
- -

We apologize for any inconvenience you may experience during t= -his activity. Your cooperation and understanding are greatly appreciated.<= -br />
The Equinix SMC is available to provide up-to-date status info= -rmation or additional details, should you have any questions regarding the = -maintenance. Please reference 5-210987654321.
-
-v=C3=A4nliga h=C3=A4lsningar/Sincerely,
Equinix SMC

<= -/span>

Contacts:

To place orders, schedule site access, report trouble or= - manage your user list online, please visit: http://www.equinix.com/contact-us/custom= -er-support/

Please do not reply to this email address. If y= -ou have any questions or concerns regarding this notification, please email= - Service Desk and include th= -e ticket [5-210987654321] in the subject line. If the matter is urgent, you= - may contact the Equinix Service Desk SE by phone at +46 8 446 866 08 for = -an up-to-date status.


-
To unsubscribe from notifications, please log in to the E= -quinix Customer Portal and change your preferences.

-
-
-
-
-

 

-
-
- - - -
3D"Equinix" - - - -
How are we doi= -ng? Tell Equinix - We're Listening. - -  -
-
 
-
- - - - - -
- - - - - -
- - - - - - -
= -E Q U I N I X (Sweden) Ltd   |   Kvastv=C3=A4gen 25-29, 128 62 Sk=C3=B6ndal, Stockholm, Sw= -eden -   |   www.equinix.com
-
© 2021 Eq= -uinix, Inc. All rights reserved.| Legal | Priva= -cy -
- - - - - - -

- ---
-You received this message because you are subscribed to the Google Groups &= -quot;Maintenance Notices" group.
-To unsubscribe from this group and stop receiving emails from it, send an e= -mail to maint-notices+= -unsubscribe@example.com.
-To view this discussion on the web visit https://gr= -oups.google.com/a/example.com/d/msgid/maint-notices/382392005.90948.16388030= -02267%40vmclxremas08.corp.equinix.com.
- -------=_Part_90947_625377126.1638803002267-- +Delivered-To: nautobot.email@example.com +Received: by 2001:DB8::1 with SMTP id hs33csp4865244mab; + Mon, 6 Dec 2021 07:03:42 -0800 (PST) +X-Received: by 2001:DB8::1 with SMTP id j19mr36120315lfg.340.1638803022202; + Mon, 06 Dec 2021 07:03:42 -0800 (PST) +ARC-Seal: i=3; a=rsa-sha256; t=1638803022; cv=pass; + d=google.com; s=arc-20160816; + b=wFeh1i2FgY4zIP6j6JX7ur5ZxGySWbBOmnEAqWt0efhNZHYO7dYGGvhd+ew5J3hyei + rYIeHM7bJYqloB8pv3fbFOpOyOoSdpOeuFPZuTdOpn8s/YQKFpkD/cXdM6+EL6ae0MPR + Qg4lggMLqctIFDxGJKkUiFKF11IGdZcGhL/HZKUqAyD4QaxNbhJymBi3cIeSWv9YxMri + mGcZNsMuLpD6DCsn7J8NmL8DIt+VIPhqJNnSqZRtNCiLI4EmOO8e6S5sDItfGMp8qerx + /4GLV4ERMmeiSteVAEUoDSvXyCdbqODitCSRpwwY4Duf24EQPoWR9ZNE9R4rjuwSv+Ft + lAZQ== +ARC-Message-Signature: i=3; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=list-unsubscribe:list-archive:list-help:list-post:list-id + :mailing-list:precedence:organization:mime-version:subject + :message-id:to:reply-to:from:date:sender:dkim-signature; + bh=R0VYk2ZSiBDs7fEF522bB6CVP+jkmxIwlo7fEz5wuM4=; + b=Ndvx3ze2TJi6Z7rrImATCyNxDPIBXLrGNBZFJfxOY1TjGJsO1P/c8v6yvEkJyveDBS + HeFYmsVCII+50ma0RwRrE6igvgp81wQsAfD09TXnadgzBbsal/u/TKBXpakvfmBOXieU + vhf/dneaion+l9cnWbrAZxgCeErZk4YcvcA/XOAXUQvmz+q3rEClsXy4qxpRRIDY9bIj + XiEcQ8cIyVmLjJkfMg/+8FxjlJz+oEVdCMciM/TbiI+IXDmWCW2nNT7kxmTZq5DrSLS/ + SrCqESUPMngmI+TDZLbqQk0hA/hAqv0tBP/LKtS3blFKnByaE2XqDDnc74/xqOGs0tcN + LQ0g== +ARC-Authentication-Results: i=3; mx.google.com; + dkim=pass header.i=@example.com header.s=example header.b=jlMpGX2M; + arc=pass (i=2 spf=pass spfdomain=equinix.com dmarc=pass fromdomain=equinix.com); + spf=pass (google.com: domain of maint-notices+bncbdbld5ph4eibbtomxcgqmgqeyrh3nsy@example.com designates 192.0.2.1 as permitted sender) smtp.mailfrom=maint-notices+bncBDBLD5PH4EIBBTOMXCGQMGQEYRH3NSY@example.com; + dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=equinix.com +Return-Path: +Received: from mail-sor-f69.google.com (mail-sor-f69.google.com. [192.0.2.1]) + by mx.google.com with SMTPS id 124sor4230631vkb.28.20192.0.2.1.1.41 + for + (Google Transport Security); + Mon, 06 Dec 2021 07:03:42 -0800 (PST) +Received-SPF: pass (google.com: domain of maint-notices+bncbdbld5ph4eibbtomxcgqmgqeyrh3nsy@example.com designates 192.0.2.1 as permitted sender) client-ip=192.0.2.1; +Authentication-Results: mx.google.com; + dkim=pass header.i=@example.com header.s=example header.b=jlMpGX2M; + arc=pass (i=2 spf=pass spfdomain=equinix.com dmarc=pass fromdomain=equinix.com); + spf=pass (google.com: domain of maint-notices+bncbdbld5ph4eibbtomxcgqmgqeyrh3nsy@example.com designates 192.0.2.1 as permitted sender) smtp.mailfrom=maint-notices+bncBDBLD5PH4EIBBTOMXCGQMGQEYRH3NSY@example.com; + dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=equinix.com +ARC-Seal: i=2; a=rsa-sha256; t=1638803021; cv=pass; + d=google.com; s=arc-20160816; + b=mTB+fBQ+mIfJnTasYRtWnDI7MwI+p8gC+KuU6BNv5TUAm3M9nr6Aq5cccMfTWkzvTP + nXMMEH5AAwpNEXHQP7XzGvQLv7cxOIY5g7B1v1KLpdtrU8dZkoNMUqs3BmpEdBOhujX8 + sOQ9lMBjF8efEJ48x9Ot0B2te1Nzj0+eNS/dymp138OuSdbINbVTxiuqcwlZ97JXOCL8 + zbNpaKgtjmBvsPkCh6otz4BiZmQDOXgV/dEWqJEFzVGc0le8LfWZBCwnZYhVzEyyTPtW + AI5NLZDdqUOjTxLMbY6y4kM1Kyg5EL4hAvSGR01JPdOiH5to3A8DQ2MhnpfQmADTuK7T + bsnA== +ARC-Message-Signature: i=2; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=list-unsubscribe:list-archive:list-help:list-post:list-id + :mailing-list:precedence:organization:mime-version:subject + :message-id:to:reply-to:from:date:sender:dkim-signature; + bh=R0VYk2ZSiBDs7fEF522bB6CVP+jkmxIwlo7fEz5wuM4=; + b=FVNVdWQeZml1pbbmGemW1a1Cq75xibwRVddCm3xjJO1xlxghswE2i3R8LGGVbTrMl5 + +6D8tVuVs/g1Auezvs6Gj7ZCGTPa2DTmSvcMGxczjVgY8qaYvB2TEJUNdCyrtrv6i1bL + 6mJO0TZbBUbaIAo2Thr4kMOA62UI4s8fufSoKIcFdKXD6Si+1d8Ug2yeztB9IYcbQTcR + iUF3kWSGl4F7VT1tKa0+qK9IEJ+TOyXZFNivxD8bylX/aqvZ/haEaqFZJAw5wBWA+HI0 + 2/7voD6JAa4IJSk3dNaX87Pdhs1WcxlOKAalgsCNVuSeN96kc5FdN0PGV+kFxfl42uy4 + BUow== +ARC-Authentication-Results: i=2; mx.google.com; + spf=pass (google.com: domain of no-reply@equinix.com designates 192.0.2.1 as permitted sender) smtp.mailfrom=no-reply@equinix.com; + dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=equinix.com +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=example.com; s=example; + h=sender:date:from:reply-to:to:message-id:subject:mime-version + :organization:x-original-sender:x-original-authentication-results + :precedence:mailing-list:list-id:list-post:list-help:list-archive + :list-unsubscribe; + bh=R0VYk2ZSiBDs7fEF522bB6CVP+jkmxIwlo7fEz5wuM4=; + b=jlMpGX2M3S6PHG8oE6631CVzWVoLPWcnDiCH83EQ67YXX9rVvz/SuZjPIhjApqYYu5 + J7w8XkeAXAQWJAKbr9IE4AUJ7nA8kLZU/ZP7lAxPTQsM7MFRXdvqw5+xg6R0sk5Pr1uq + 1g3JmWdiVAZKEipEq7H5N1a8K7kNOu27R14yQ= +X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=1e100.net; s=20210112; + h=sender:x-gm-message-state:date:from:reply-to:to:message-id:subject + :mime-version:organization:x-original-sender + :x-original-authentication-results:precedence:mailing-list:list-id + :x-spam-checked-in-group:list-post:list-help:list-archive + :list-unsubscribe; + bh=R0VYk2ZSiBDs7fEF522bB6CVP+jkmxIwlo7fEz5wuM4=; + b=N8yb6kiuCXL7WSYeD60M6aEx67Y7+KXKIlZawUJAzZ71rQaqfnferFxPvZAop+p4/H + Uhj0PghDskYHNkR0vbUOUty842JNIbYOI2S+FrHs/cfdLqHNwNwiv8N5OWdczAUqMDOc + aD0iGBk1A/YucqKtrGqpoNDmiUMDb8bcVqEvx1Tmhs4cIl1fzPTZkvJQZXed4dXQFNUg + B7w2DPNH7+gpm2xETc2XU78kvoopKl4Uqtg3va9ntDl47p7QQ/RH65GOKonIfy6w5sZ7 + UZZVHPP+L/QUA7y1NDHBSVlQWFNiLYCo9tviITATZJWR6NzUpNhHELwMzcErRlhwjxHA + gsNg== +Sender: maint-notices@example.com +X-Gm-Message-State: AOAM533VjlUj/LnFyQw6o0/xeOuSqlLm74Eu6fwRVVfPgXTuX5AJXBcT + cAvJNZpcyEL49FDqjsEE1/LPLlro +X-Google-Smtp-Source: ABdhPJy6PqBs7zFjsCpnVPD/K3IQt2HloRSlQiCjXVwxBKRb7W8g+KhWJ4iR4IeVft1P+Iihq/Xk8Q== +X-Received: by 2001:DB8::1 with SMTP id m10mr41966216vkf.29.1638803021272; + Mon, 06 Dec 2021 07:03:41 -0800 (PST) +X-BeenThere: maint-notices@example.com +Received: by 2001:DB8::1 with SMTP id cd38ls5065354vsb.5.gmail; Mon, + 06 Dec 2021 07:03:40 -0800 (PST) +X-Received: by 2001:DB8::1 with SMTP id k14mr35991447vst.70.1638803019627; + Mon, 06 Dec 2021 07:03:39 -0800 (PST) +ARC-Seal: i=1; a=rsa-sha256; t=1638803019; cv=none; + d=google.com; s=arc-20160816; + b=s3eQTgOQyndq/+00IH3QWxfI3Sb794jyPwy9/dMYijX8Kp1EcV7v5lTcym69+eKGbU + ZhiI4fVygo80ZL2Sx9GMeO4aT8gWQgzZBSVsumL+zhCdTrXhSQSd05XRX6Ywnlh/S7x8 + 3qxD97RjdTHySFLVoPSg5sd7T51MqRE4Uo4gUcuypm9uMlwyeeC+Zxguk5/1/+03+VXO + bkzvp/wOVAy7OK/H3G7SGUXqQ7L2CchMSHVS/mDrEC7dbPSIzPtMErC1ZG6V6KNHZDoC + O5KSfTGdGPjsYYxb30dTL0fqdfvLqWB7IO2fNA2Hbz5JSIPgGRncY7W8BP3PnfPqQpQB + zryg== +ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=organization:mime-version:subject:message-id:to:reply-to:from:date; + bh=KXImSC2nRLcb870x1UBCENwiwa6LLafq6KrnTRpMeMA=; + b=z4xTPHCi+j6NfccgK7zZUYlAytL9/xoM2BFIMfBxIvleq6rxXKZ4moL0K0Bm/iizZD + ozEFUQNVsO9Xf0KoA6al8wvHH0v0UnFgcjtK77+cWFR3uabcp3jcny2F66YO3d/3INwH + BLXoi92zLlitD+y7UF3rGhjdArYUGgQPxiL/K5I9k1hvnkG7zvdNNdONiVwHJz1Msj7H + drP+Z/SRjhrnSqZbPHEc3dZSC18uUW0U6tc+lV/qzn+rcplbH9/LJ35U21TLTnKibM88 + PKoIN+w96weW4/fLbXnQmFDFpuLYIDlPicnd+kvrdXhMoLv/SBtz+h9Qf4zxQ1FqwZHD + zz0Q== +ARC-Authentication-Results: i=1; mx.google.com; + spf=pass (google.com: domain of no-reply@equinix.com designates 192.0.2.1 as permitted sender) smtp.mailfrom=no-reply@equinix.com; + dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=equinix.com +Received: from ch3esa01.corp.equinix.com (nat1-ch-mis.equinix.com. [192.0.2.1]) + by mx.google.com with ESMTPS id n9si10427993vse.680.20192.0.2.1.1.24 + (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); + Mon, 06 Dec 2021 07:03:39 -0800 (PST) +Received-SPF: pass (google.com: domain of no-reply@equinix.com designates 192.0.2.1 as permitted sender) client-ip=192.0.2.1; +Received: from unknown (HELO vmclxremas08.corp.equinix.com) ([192.0.2.1]) + by ch3esa01.corp.equinix.com with ESMTP; 06 Dec 2021 07:03:22 -0800 +Date: Mon, 6 Dec 2021 15:03:22 +0000 (UTC) +From: Equinix Network Maintenance NO-REPLY +Reply-To: Equinix Network Maintenance NO-REPLY +To: "EquinixNetworkMaintenance.SE" +Message-ID: <382392005.90948.1638803002267@vmclxremas08.corp.equinix.com> +Subject: [maint-notices] 3rd Party SK Maintenance-SK Metro Area Network + Maintenance -17-DEC-2021 [5-210987654321] +MIME-Version: 1.0 +Content-Type: multipart/alternative; + boundary="----=_Part_90947_625377126.1638803002267" +X-Priority: 1 +Organization: Equinix, Inc +X-Original-Sender: no-reply@equinix.com +X-Original-Authentication-Results: mx.google.com; spf=pass (google.com: + domain of no-reply@equinix.com designates 192.0.2.1 as permitted sender) + smtp.mailfrom=no-reply@equinix.com; dmarc=pass (p=NONE sp=NONE + dis=NONE) header.from=equinix.com +Precedence: list +Mailing-list: list maint-notices@example.com; contact maint-notices+owners@example.com +List-ID: +X-Spam-Checked-In-Group: maint-notices@example.com +X-Google-Group-Id: 536184160288 +List-Post: , +List-Help: , + +List-Archive: +List-Unsubscribe: , + + +------=_Part_90947_625377126.1638803002267 +Content-Type: text/plain; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + + Dear Equinix Customer, + +DATE: 17-DEC-2021 + +SPAN: 17-DEC-2021 - 17-DEC-2021 + +LOCAL: FRIDAY, 17 DEC 00:01 - FRIDAY, 17 DEC 06:00 +UTC: THURSDAY, 16 DEC 23:01 - FRIDAY, 17 DEC 05:00 + +IBX(s): SK2,SK3 + + DESCRIPTION:Please be advised that our provider will perform maintenance w= +orks that will cause a loss of redundancy for your services. + +PRODUCTS: EQUINIX FABRIC, INTERNET EXCHANGE, METRO CONNECT + +IMPACT: Loss of redundancy to your service + + +Internet Exchange Account # Product Servi= +ce Serial # 309876 Internet Exchange 20987564= + =09 +=20 + +We apologize for any inconvenience you may experience during this activity.= + Your cooperation and understanding are greatly appreciated. + +The Equinix SMC is available to provide up-to-date status information or ad= +ditional details, should you have any questions regarding the maintenance. = + Please reference 5-210987654321.=20 + +v=C3=A4nliga h=C3=A4lsningar/Sincerely, +Equinix SMC + + =20 +Contacts: +To place orders, schedule site access, report trouble or manage your user l= +ist online, please visit: http://www.equinix.com/contact-us/customer-suppor= +t/=20 +Please do not reply to this email address. If you have any questions or con= +cerns regarding this notification, please email Service Desk and include th= +e ticket [5-210987654321] in the subject line. If the matter is urgent, you= + may contact the Equinix Service Desk SE by phone at +46 8 446 866 08 for = +an up-to-date status. + +To unsubscribe from notifications, please log in to the Equinix Customer Po= +rtal and change your preferences. + +How are we doing? Tell Equinix - We're Listening. E Q U= + I N I X (Sweden) Ltd | Kvastv=C3=A4gen 25-29, 128 62 Sk=C3=B6ndal, St= +ockholm, Sweden | www.equinix.com =C2=A9 2021 Equinix, Inc. Al= +l rights reserved.| Legal | Privacy + +--=20 +You received this message because you are subscribed to the Google Groups "= +Maintenance Notices" group. +To unsubscribe from this group and stop receiving emails from it, send an e= +mail to maint-notices+unsubscribe@example.com. +To view this discussion on the web visit https://groups.google.com/a/exampl= +e.com/d/msgid/maint-notices/382392005.90948.1638803002267%40vmclxremas08.cor= +p.equinix.com. + +------=_Part_90947_625377126.1638803002267 +Content-Type: text/html; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + + + + + + + + + + + + + +
+ + + + +
+ +
3D"Meet +
+
+ + + + + + +
  + +
+

+Dear Equinix Customer,
+
+DATE: 17-DEC-2021
+
+SPAN: 17-DEC-2021 - 17-DEC-2021
+
+LOCAL: FRIDAY, 17 DEC 00:01 - FRIDAY, 17 DEC 06:00
+UTC: THURSDAY, 16 DEC 23:01 - FRIDAY, 17 DEC 05:00
+
+IBX(s): SK2,SK3
+
+ +DESCRIPTION:Please be advised that our provider will perform mainten= +ance works that will cause a loss of redundancy for your services.
+
+PRODUCTS: EQUINIX FABRIC, INTERNET EXCHANGE, METRO CONNECT
+
+IMPACT: Loss of redundancy to your service
+
+
+ Internet Exchange +=09 + +

+ + + + + + + + + + +
Account #ProductService Serial #
309876Internet Exchange20987564
+
+ +

We apologize for any inconvenience you may experience during t= +his activity. Your cooperation and understanding are greatly appreciated.<= +br />
The Equinix SMC is available to provide up-to-date status info= +rmation or additional details, should you have any questions regarding the = +maintenance. Please reference 5-210987654321.
+
+v=C3=A4nliga h=C3=A4lsningar/Sincerely,
Equinix SMC

<= +/span>

Contacts:

To place orders, schedule site access, report trouble or= + manage your user list online, please visit: http://www.equinix.com/contact-us/custom= +er-support/

Please do not reply to this email address. If y= +ou have any questions or concerns regarding this notification, please email= + Service Desk and include th= +e ticket [5-210987654321] in the subject line. If the matter is urgent, you= + may contact the Equinix Service Desk SE by phone at +46 8 446 866 08 for = +an up-to-date status.


+
To unsubscribe from notifications, please log in to the E= +quinix Customer Portal and change your preferences.

+
+
+
+
+

 

+
+
+ + + +
3D"Equinix" + + + +
How are we doi= +ng? Tell Equinix - We're Listening. + +  +
+
 
+
+ + + + + +
+ + + + + +
+ + + + + + +
= +E Q U I N I X (Sweden) Ltd   |   Kvastv=C3=A4gen 25-29, 128 62 Sk=C3=B6ndal, Stockholm, Sw= +eden +   |   www.equinix.com
+
© 2021 Eq= +uinix, Inc. All rights reserved.| Legal | Priva= +cy +
+ + + + + + +

+ +--
+You received this message because you are subscribed to the Google Groups &= +quot;Maintenance Notices" group.
+To unsubscribe from this group and stop receiving emails from it, send an e= +mail to maint-notices+= +unsubscribe@example.com.
+To view this discussion on the web visit https://gr= +oups.google.com/a/example.com/d/msgid/maint-notices/382392005.90948.16388030= +02267%40vmclxremas08.corp.equinix.com.
+ +------=_Part_90947_625377126.1638803002267-- diff --git a/tests/unit/data/gtt/gtt4.html b/tests/unit/data/gtt/gtt4.html index fe2191f3..a1476ba7 100644 --- a/tests/unit/data/gtt/gtt4.html +++ b/tests/unit/data/gtt/gtt4.html @@ -1,127 +1,127 @@ - - - - - - =20 - - -
- - - - - -
Planned Work= - Notification: 60543210 - Rescheduled
-

Please note that the Planned Work is rescheduled.=E2=80=AFPlease see= - details of the work and impact on your service below.

-

- Reschedule Reason:
- rescheduled by supplier -

- Details:
- - - - - - - - - - =20 - =20 - - - - -
-Start - -2021-11-10 03:00:00 GMT 2021-1= -2-08 03:00 GMT -
-End - -2021-11-10 11:00:00 GMT 2021-1= -2-08 11:00 GMT -
-Location - -Vaden Dr & Country Creek Rd in Oakton, VA -
- -

- Planned work Reason:
- Network optimization on our partner network -

- - - - - - - - - - - - =20 - - - - - - - - - =20 -
Services AffectedSLID/CCSDCustomer PONService TypeExpected Impact to your Service= -Site Address
HI/Wavelength/006969691234567-10987654PO # RGB00012345Wavelength180 min12345 Some St, Ashburn, VA 20147, USA
- =20 -

If you have any questions regarding the planned work, please login t= -o MyPortal or contact= - our Change Management Team using the email below.

- -
Kind Regards, -
EXA Network Operations -
InfraCo.CM@exainfra.net -
- - + + + + + + =20 + + +
+ + + + + +
Planned Work= + Notification: 60543210 - Rescheduled
+

Please note that the Planned Work is rescheduled.=E2=80=AFPlease see= + details of the work and impact on your service below.

+

+ Reschedule Reason:
+ rescheduled by supplier +

+ Details:
+ + + + + + + + + + =20 + =20 + + + + +
+Start + +2021-11-10 03:00:00 GMT 2021-1= +2-08 03:00 GMT +
+End + +2021-11-10 11:00:00 GMT 2021-1= +2-08 11:00 GMT +
+Location + +Vaden Dr & Country Creek Rd in Oakton, VA +
+ +

+ Planned work Reason:
+ Network optimization on our partner network +

+ + + + + + + + + + + + =20 + + + + + + + + + =20 +
Services AffectedSLID/CCSDCustomer PONService TypeExpected Impact to your Service= +Site Address
HI/Wavelength/006969691234567-10987654PO # RGB00012345Wavelength180 min12345 Some St, Ashburn, VA 20147, USA
+ =20 +

If you have any questions regarding the planned work, please login t= +o MyPortal or contact= + our Change Management Team using the email below.

+ +
Kind Regards, +
EXA Network Operations +
InfraCo.CM@exainfra.net +
+ + diff --git a/tests/unit/data/gtt/gtt5.html b/tests/unit/data/gtt/gtt5.html index 36a1ad3e..9a431d02 100644 --- a/tests/unit/data/gtt/gtt5.html +++ b/tests/unit/data/gtt/gtt5.html @@ -1,125 +1,125 @@ - - - - - - =20 - - -
- - - - - -
Planned Work= - Notification: 60543210 - Completed
- -
- Final Update:
- ***Completed*** This notice is to inform you that the Planned Maintenan= -ce has concluded. -

- Details:
- - - - - - - - - - =20 - - - - -
-Start - -2021-11-13 04:00:00 GMT -
-End - -2021-11-13 10:00:00 GMT -
-Location - -165 Some Street, New Jersey -
- -

- Planned work Reason:
- Emergency software upgrade on the 165Some Street -

- - - - - - - - - - - - =20 - - - - - - - - - =20 -
Services AffectedSLID/CCSDCustomer PONService TypeExpected Impact to your Service= -Site Address
HI/Wavelength/006969691815743-10987654PO # RGD00012345Wavelength90 min23456 Some St, Ashburn, VA 20147, USA
- =20 -

If you have any questions regarding the planned work or if you are s= -till experiencing a service outage, please login to MyPortal or contact our Change Management Te= -am using the email below.

- -
Kind Regards, -
EXA Network Operations -
InfraCo.CM@exainfra.net -
- - + + + + + + =20 + + +
+ + + + + +
Planned Work= + Notification: 60543210 - Completed
+ +
+ Final Update:
+ ***Completed*** This notice is to inform you that the Planned Maintenan= +ce has concluded. +

+ Details:
+ + + + + + + + + + =20 + + + + +
+Start + +2021-11-13 04:00:00 GMT +
+End + +2021-11-13 10:00:00 GMT +
+Location + +165 Some Street, New Jersey +
+ +

+ Planned work Reason:
+ Emergency software upgrade on the 165Some Street +

+ + + + + + + + + + + + =20 + + + + + + + + + =20 +
Services AffectedSLID/CCSDCustomer PONService TypeExpected Impact to your Service= +Site Address
HI/Wavelength/006969691815743-10987654PO # RGD00012345Wavelength90 min23456 Some St, Ashburn, VA 20147, USA
+ =20 +

If you have any questions regarding the planned work or if you are s= +till experiencing a service outage, please login to MyPortal or contact our Change Management Te= +am using the email below.

+ +
Kind Regards, +
EXA Network Operations +
InfraCo.CM@exainfra.net +
+ + diff --git a/tests/unit/data/gtt/gtt6.html b/tests/unit/data/gtt/gtt6.html index 5bcec1bd..bbdc961a 100644 --- a/tests/unit/data/gtt/gtt6.html +++ b/tests/unit/data/gtt/gtt6.html @@ -1,168 +1,168 @@ - - - - - - =20 - - -
- - - - - -
Planned Work= - Notification: 60543210 - New
-

As part of our commitment to continually improve the quality of serv= -ice we provide to our clients, we will be performing a planned work in 165 = -Some Street, New Jersey between 2021-11-09 04:00:00 - 2021-11-09 10:00:00 GMT.= -=E2=80=AFPlease see details of the work and impact on your service below. <= -/p> - - Detail:
- - - - - - - - - - =20 - - - - -
-Start - -2021-11-09 04:00:00 GMT -
-End - -2021-11-09 10:00:00 GMT -
-Location - -165 Some Street, New Jersey -
- -

- Planned work Reason:
- Emergency software upgrade on the 165Some Street -

- - - - - - - - - - - - =20 - - - - - - - - - =20 -
Services AffectedSLID/CCSDCustomer PONService TypeExpected Impact to your Service= -Site Address
HI/Wavelength/006969691815743-10987654PO # RGD00012345Wavelength90 m= -in23456 Some St, Ashburn, VA 20147, USA
- =20 -
- Comments (Color explanation) :
- - - - - - - - - -
-Service interruption - Service will experience interruption lasting maximu= -m the duration value in the service row -
-Resiliency Loss - Primary or backup circuit will be impacted only. Service will rem= -ain operational throughout the maintenance -
- -

If you have any questions regarding the planned work, please login t= -o MyPor= -tal or contact our Change Management Team using the email below.

- -
Kind Regards, -
EXA Network Operations -
InfraCo.CM@exainfra.net -

-
- - Did you know that it is now easier than ever to log your tickets=E2=80=AF= -on our=E2=80=AFMyPortal=E2=80=AF? You will be able to answer a few troubleshoo= -ting questions and receive a ticket ID immediately.=E2=80=AFMyPortal=E2=80= -=AFalso helps you check on status of existing tickets and access your escal= -ation list. - - If you do not have an=E2=80=AFMyPortal=E2=80=AFlogin, you can contact you= -r company=E2=80=99s account administrator or submit a request on=E2=80=AFou= -r=E2=80=AFwebsite. - -
-
- - + + + + + + =20 + + +
+ + + + + +
Planned Work= + Notification: 60543210 - New
+

As part of our commitment to continually improve the quality of serv= +ice we provide to our clients, we will be performing a planned work in 165 = +Some Street, New Jersey between 2021-11-09 04:00:00 - 2021-11-09 10:00:00 GMT.= +=E2=80=AFPlease see details of the work and impact on your service below. <= +/p> + + Detail:
+ + + + + + + + + + =20 + + + + +
+Start + +2021-11-09 04:00:00 GMT +
+End + +2021-11-09 10:00:00 GMT +
+Location + +165 Some Street, New Jersey +
+ +

+ Planned work Reason:
+ Emergency software upgrade on the 165Some Street +

+ + + + + + + + + + + + =20 + + + + + + + + + =20 +
Services AffectedSLID/CCSDCustomer PONService TypeExpected Impact to your Service= +Site Address
HI/Wavelength/006969691815743-10987654PO # RGD00012345Wavelength90 m= +in23456 Some St, Ashburn, VA 20147, USA
+ =20 +
+ Comments (Color explanation) :
+ + + + + + + + + +
+Service interruption + Service will experience interruption lasting maximu= +m the duration value in the service row +
+Resiliency Loss + Primary or backup circuit will be impacted only. Service will rem= +ain operational throughout the maintenance +
+ +

If you have any questions regarding the planned work, please login t= +o MyPor= +tal or contact our Change Management Team using the email below.

+ +
Kind Regards, +
EXA Network Operations +
InfraCo.CM@exainfra.net +

+
+ + Did you know that it is now easier than ever to log your tickets=E2=80=AF= +on our=E2=80=AFMyPortal=E2=80=AF? You will be able to answer a few troubleshoo= +ting questions and receive a ticket ID immediately.=E2=80=AFMyPortal=E2=80= +=AFalso helps you check on status of existing tickets and access your escal= +ation list. + + If you do not have an=E2=80=AFMyPortal=E2=80=AFlogin, you can contact you= +r company=E2=80=99s account administrator or submit a request on=E2=80=AFou= +r=E2=80=AFwebsite. + +
+
+ + diff --git a/tests/unit/data/gtt/gtt7.eml b/tests/unit/data/gtt/gtt7.eml index cddd7f09..e6f52501 100644 --- a/tests/unit/data/gtt/gtt7.eml +++ b/tests/unit/data/gtt/gtt7.eml @@ -1,430 +1,430 @@ -Delivered-To: nautobot.email@example.com -Received: by 2002:a05:7000:1f21:0:0:0:0 with SMTP id hs33csp8787082mab; - Tue, 23 Nov 2021 06:50:05 -0800 (PST) -X-Received: by 2002:a05:620a:1a10:: with SMTP id bk16mr5510732qkb.258.1637679004754; - Tue, 23 Nov 2021 06:50:04 -0800 (PST) -ARC-Seal: i=3; a=rsa-sha256; t=1637679004; cv=pass; - d=google.com; s=arc-20160816; - b=vUe79MzQJmlVkvvGnvcgbAgme/2Jwt1B2Zo3js/kAu7QCToy4cjQqUHyT7J2srn5dO - /kyktHkm4zI6WH5rSd7rWgSkabkVJs0Uwb0BewZ6pTCqITcz7spPhRyQ/mWR7kaALAXy - MKJSvJ+486N/6N/Wos867jffOxERI5C7fLxtGdJSaXDwYvA2ecJ3SUaRheuF7i1GzrgL - CO9EvbCOaSftPlkUolS98E7wWoIxkNJYZRs7FoMUZNeJJ9LxUQJwOvoBV8LnTB0Obklm - YfuSQ5BteOgMj7JSqJJSb23uPRgc3G/RQ0Pp5+vSHjCkaBGNOEMuFK6c6xvyxKkZfmB4 - 7tuQ== -ARC-Message-Signature: i=3; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=list-unsubscribe:list-archive:list-help:list-post:list-id - :mailing-list:precedence:content-transfer-encoding:mime-version - :message-id:reply-to:from:date:subject:to:sender:dkim-signature; - bh=C0Jesyuuv4BU+nssMchN2LsveiLMpbfsTndp3ny2HT4=; - b=jh+TxTU+BvFo6G0sAv03NdxeaMNwVBUGuIX/ZMudpc1hie8NpY225QcazVPg3CMfno - GXTF8srtUvofKWf1VHkAii0AvqIpJUDIY62zr/raOX2r2vMzAGDP270PREpazPgscNZj - iBLuebnSvy3NoyxS+X+plJ70vrDY0lKzeDkrb6DeEC/LiRXJXSZksazG8q+xngW+FCQK - YpJenJlRIGgBfNaH4JNe0L4uRFWpfJZhtKI2cIXSilGla3T8WfcK3k3UaaIUovGK9ZAZ - Jjg/6ko3Cd02WLd0wnQdE/j1M6Ecy3o75hEvHhiKr7Lnc0NjEGDzPkEtN9PtpQgyHg59 - vXSQ== -ARC-Authentication-Results: i=3; mx.google.com; - dkim=pass header.i=@example.com header.s=example header.b=Va3JHXMB; - arc=pass (i=2 spf=pass spfdomain=exainfra.net); - spf=pass (google.com: domain of maint-notices+bncbaabbgp76ogamgqetzq64dq@example.com designates 209.85.220.101 as permitted sender) smtp.mailfrom=maint-notices+bncBAABBGP76OGAMGQETZQ64DQ@example.com -Return-Path: -Received: from mail-sor-f101.google.com (mail-sor-f101.google.com. [209.85.220.101]) - by mx.google.com with SMTPS id t65sor2273382qkh.48.2021.11.23.06.50.04 - for - (Google Transport Security); - Tue, 23 Nov 2021 06:50:04 -0800 (PST) -Received-SPF: pass (google.com: domain of maint-notices+bncbaabbgp76ogamgqetzq64dq@example.com designates 209.85.220.101 as permitted sender) client-ip=209.85.220.101; -Authentication-Results: mx.google.com; - dkim=pass header.i=@example.com header.s=example header.b=Va3JHXMB; - arc=pass (i=2 spf=pass spfdomain=exainfra.net); - spf=pass (google.com: domain of maint-notices+bncbaabbgp76ogamgqetzq64dq@example.com designates 209.85.220.101 as permitted sender) smtp.mailfrom=maint-notices+bncBAABBGP76OGAMGQETZQ64DQ@example.com -X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; - d=1e100.net; s=20210112; - h=x-gm-message-state:dkim-signature:sender:to:subject:date:from - :reply-to:message-id:mime-version:content-transfer-encoding - :x-original-sender:x-original-authentication-results:precedence - :mailing-list:list-id:list-post:list-help:list-archive - :list-unsubscribe; - bh=C0Jesyuuv4BU+nssMchN2LsveiLMpbfsTndp3ny2HT4=; - b=jllEAnf+YmTc4vg0ITD6WzAynLyTDtcn1n4IXcLucVwBzG9O2JNmgdZ5r7qH14dyZY - ox2cYTbG8vmTvG5EMOLDZpwItR45dCnr4fGY6Q3E5t3+UNGMzgxhlXgYz6weQejPeL3Z - O3vtKJL7VZaVz0lAIj6XWLH9NjI/1UjHheZLFp4jjkPArhYvtGAMadvaLj6OvMID2U/s - RqPsYv0Jp9o9wCUeV0TGadOTHj1OKtj8idxwFNZ/Qp1qeDbQsCGFhmN2V2Vvvr0s5KCA - +MRCT5YhSgzLj83QDbccmHuot6WCzN9bVqGp0qnPKDyRsmGGTRW3JtsNSD5wM2IMbqfJ - 5X2g== -X-Gm-Message-State: AOAM531KBPx07Y6btFUQSetapqmUGATdLolWR5FI5p5SzB17j7XNBOD2 - mpcrzHfz28uZn3CaYk6COBL83Kn5GHMv73Aq3ZzZtOHTDtCPkF/k -X-Google-Smtp-Source: ABdhPJyKtSr2+JBNZ/K7AU0fv8rsre882Kbrvmgui9UZnUisErOQMUCLsJEigXZHEY+lBCF40OczIu95mTF2 -X-Received: by 2002:ab0:3349:: with SMTP id h9mr9749289uap.111.1637679004217; - Tue, 23 Nov 2021 06:50:04 -0800 (PST) -Return-Path: -Received: from netskope.com ([8.36.116.139]) - by smtp-relay.gmail.com with ESMTPS id y6sm3667722vkc.4.2021.11.23.06.50.03 - for - (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); - Tue, 23 Nov 2021 06:50:04 -0800 (PST) -X-Relaying-Domain: example.com -Received: by mail-wm1-f72.google.com with SMTP id 187-20020a1c02c4000000b003335872db8dsf8071724wmc.2 - for ; Tue, 23 Nov 2021 06:50:02 -0800 (PST) -ARC-Seal: i=2; a=rsa-sha256; t=1637679001; cv=pass; - d=google.com; s=arc-20160816; - b=FAEyypmFn1ucJuPYezfoObVktEmUzIWF9RbdsLFVWT+koSL/cW7fjahj1f71Gh2HFm - 9MnPddkynP8m4fY6p9J096ZmLk7UcYNngvzHgJcJxSfuAN0daPplTdKnTL+Xlh7CPkF+ - gzq+VFmcRO2ZMc664SCt1DJASI5D1tb+gbXj/O+AFU1KpKKNRI/H1G5H35BU32LO6ewZ - +FJdjTmL5SpAN47Yhl/Cxe1AbVcrCj2kEj8zbcrcICWNiTxH3sC7Xaz9As/NYR5B7ggD - PFVMIqPoKkDtOwvZFZXQXuhNlcs9p9k5e9MLRX/dwsJBOgsE7oP2ypDxRtAd/MGtmwSW - Vj9w== -ARC-Message-Signature: i=2; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=list-unsubscribe:list-archive:list-help:list-post:list-id - :mailing-list:precedence:content-transfer-encoding:mime-version - :message-id:reply-to:from:date:subject:to:sender:dkim-signature; - bh=C0Jesyuuv4BU+nssMchN2LsveiLMpbfsTndp3ny2HT4=; - b=Y4qeLp1Ne97E8V8qD2lystu+9ocF4zJd8WU4yOsCGqH520Ut1Vq8F6gcq5q+Bhciuz - tQ2ms2rspHLKTYKzMjcm3OcAWzIdo2R/0c5WMD0r3K2ws3S+UVY4EAnetonWZownRMFs - zmHDRJNn6/uOmiEgOq7rCyiUFfoBMovEcJqcNuan8rKOV91KpnEN6gcYTYvhr2X0edH2 - AlpnJbwHgu3fha1q8t5RGwuFE/AGlRgX0/n6BXpyg2k2ijXc8W0MqWrSf+4YBUreesFm - gxnydAhzUE+oRhPyWme+YsgnUv6zpFz1/1QSrZ1REwD7tHLe3SwwY2BvOh5y6PIhJb/V - eUjg== -ARC-Authentication-Results: i=2; mx.google.com; - spf=pass (google.com: domain of cmd.bounceback@exainfra.net designates 154.14.213.215 as permitted sender) smtp.mailfrom=cmd.bounceback@exainfra.net -DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; - d=example.com; s=example; - h=sender:to:subject:date:from:reply-to:message-id:mime-version - :content-transfer-encoding:x-original-sender - :x-original-authentication-results:precedence:mailing-list:list-id - :list-post:list-help:list-archive:list-unsubscribe; - bh=C0Jesyuuv4BU+nssMchN2LsveiLMpbfsTndp3ny2HT4=; - b=Va3JHXMBfNDPJisXXDXiEuiwMYHEa4Efrlc5pXIdolSBuNQUiq6/7ClhYCc2Mr88Yx - V0cqHX+MK/IeATDfPoWii7irgv7RCGW5iq7l/vZ+nJSlmhk8aGz3pvDEoSFShFndo60h - bzR2sOV2vUHahllv4m7Tgwir2Mzv+c+MmiNa4= -Sender: maint-notices@example.com -X-Received: by 2002:a5d:68d2:: with SMTP id p18mr8189115wrw.21.1637679001692; - Tue, 23 Nov 2021 06:50:01 -0800 (PST) -X-Received: by 2002:a5d:68d2:: with SMTP id p18mr8189096wrw.21.1637679001549; - Tue, 23 Nov 2021 06:50:01 -0800 (PST) -X-BeenThere: maint-notices@example.com -Received: by 2002:a05:600c:ad6:: with SMTP id c22ls889756wmr.1.canary-gmail; - Tue, 23 Nov 2021 06:50:00 -0800 (PST) -X-Received: by 2002:a05:600c:a08:: with SMTP id z8mr3945922wmp.52.1637679000526; - Tue, 23 Nov 2021 06:50:00 -0800 (PST) -ARC-Seal: i=1; a=rsa-sha256; t=1637679000; cv=none; - d=google.com; s=arc-20160816; - b=iZPVXO7zKyxAnRrjL+FBY7L1RayjqS1Qx4su4wA/yKZmODuu+GvUHbckcEoHYeX46z - WYXYG7web/1sbxK/G3MKDxt7lfLg4tBdXX5dtCHFwq6nPDbPrZ9b71AZJPSjNJVSAinz - BkV9FJYdPESBBG6scAVBJ2MD7Rn850q7XAmdXdkLUyvvWSiimqVaNDOLOPRMPOm5OYDL - 4RJ1JArnMR0uFR1zkO6Uk293RJZ6SKZTQCub7LVJCmHD7m/57M83IeJMIHgdCevt4qD9 - PO6V2rybxuYj/HrMtkc+CHgtVU12s2h5YhuuD5A23RrsZJRzoMHcwZq/UwI1cU6cgY50 - GvYw== -ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=content-transfer-encoding:mime-version:message-id:reply-to:from - :date:subject:to; - bh=q4mPDFTARsCcneEpOnF/XKc0L6eRffzoP2m6dEvPRaE=; - b=WmP2TfL5/HMjeAlnWxy5uCaEhIVlI9Lsp10OkUZ5M9EfBUkjbBY0yBYwlbDmRUMpAs - VYyOkjovQg1E1DuOI3LO6x0O60NdP/myf7Uo3z42gwnikh7xRUjxpqWtTjcxkPlGEUuE - HbikknX8P2JY0fOWAkjSsDF4UiyTQLii8gvH+4YcnkGIHMZYNxntnxSKh7XP8RaoVd5T - 66noi25/QZnorAIpYffCNgT7zOOyFtboxBU1wwe3eXvpO/VAGtjUZRQbRX1abU+4iRAZ - FfPiwr8Bkqt1F74QJAVRcx8EGsH6laarVEr3hhpu+vv8xwSqdiXfCugFmwganrkpvMjL - 4lUg== -ARC-Authentication-Results: i=1; mx.google.com; - spf=pass (google.com: domain of cmd.bounceback@exainfra.net designates 154.14.213.215 as permitted sender) smtp.mailfrom=cmd.bounceback@exainfra.net -Received: from mexch01.crosstera.com (mexch01.crosstera.com. [154.14.213.215]) - by mx.google.com with ESMTPS id v129si1976559wme.213.2021.11.23.06.49.59 - (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); - Tue, 23 Nov 2021 06:50:00 -0800 (PST) -Received-SPF: pass (google.com: domain of cmd.bounceback@exainfra.net designates 154.14.213.215 as permitted sender) client-ip=154.14.213.215; -Received: from uklon1-cmd2.gt-t.net (89.149.165.100) by - IEDUB-EXCEDGE01.crosstera.com (10.151.34.215) with Microsoft SMTP Server id - 15.2.659.4; Tue, 23 Nov 2021 14:49:59 +0000 -Received: by uklon1-cmd2.gt-t.net (Postfix, from userid 1001) - id D931C2800122A; Tue, 23 Nov 2021 14:49:58 +0000 (UTC) -To: , , - , - -Subject: =?UTF-8?Q?=5Bmaint=2Dnotices=5D_EXA_Emergency_Work_Notification_TT_6543?= - =?UTF-8?Q?0619_=E2=80=93_New?= -Date: Tue, 23 Nov 2021 14:49:58 +0000 -From: -Reply-To: -Message-ID: -X-Mailer: PHPMailer 6.1.7 (https://github.com/PHPMailer/PHPMailer) -MIME-Version: 1.0 -Content-Type: multipart/mixed; - boundary="b1_NhhArHvVcTgy70DuEH3RYcn0mg5DORMTnhJfuXf2E" -Content-Transfer-Encoding: 8bit -X-Original-Sender: infraco.cm@exainfra.net -X-Original-Authentication-Results: mx.google.com; spf=pass (google.com: - domain of cmd.bounceback@exainfra.net designates 154.14.213.215 as permitted - sender) smtp.mailfrom=cmd.bounceback@exainfra.net -Precedence: list -Mailing-list: list maint-notices@example.com; contact maint-notices+owners@example.com -List-ID: -X-Google-Group-Id: 536184160288 -List-Post: , -List-Help: , - -List-Archive: -List-Unsubscribe: , - -x-netskope-inspected: true - ---b1_NhhArHvVcTgy70DuEH3RYcn0mg5DORMTnhJfuXf2E -Content-Type: multipart/alternative; - boundary="b2_NhhArHvVcTgy70DuEH3RYcn0mg5DORMTnhJfuXf2E" - ---b2_NhhArHvVcTgy70DuEH3RYcn0mg5DORMTnhJfuXf2E -Content-Type: text/plain; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - -Planned Work Notification: 65430585 - New - -As part of our commitment to continually improve the quality of service we = -provide to our clients, we will be performing a planned work in Washington,= - DC between 2021-12-02 05:00:00 - 2021-12-02 10:00:00 GMT.=E2=80=AFPlease s= -ee details of the work and impact on your service below. - -Detail: - -Start 2021-12-02 05:00:00 GMT -End 2021-12-02 10:00:00 GMT -Location Washington, DC - -Planned work Reason: -Network optimization on our partner network. - -Services Affected SLID/CCSD Customer PON Service Type Expected Impact to yo= -ur Service Site Address -HI/Wavelength/00696448 1098765-12345678 PO # EXA00012345 Wavelength 300 min= - 23456 Example Ct,1st Floor Equinix DC2,Ashburn, VA 20147, USA -Comments (Color explanation) : - -Service interruption Service will experience interruption lasting maximum t= -he duration value in the service row -Resiliency Loss Primary or backup circuit will be impacted only. Service wi= -ll remain operational throughout the maintenance - -If you have any questions regarding the planned work, please login to MyPor= -tal or contact our Change Management Team using the email below. - -Kind Regards, -EXA Network Operations -InfraCo.CM@exainfra.net - -Did you know that it is now easier than ever to log your tickets=E2=80=AFon= - our=E2=80=AFMyPortal=E2=80=AF? You will be able to answer a few troublesho= -oting questions and receive a ticket ID immediately.=E2=80=AFMyPortal=E2=80= -=AFalso helps you check on status of existing tickets and access your escal= -ation list. If you do not have an=E2=80=AFMyPortal=E2=80=AFlogin, you can c= -ontact your company=E2=80=99s account administrator or submit a request on= -=E2=80=AFour=E2=80=AFwebsite. - ---=20 -You received this message because you are subscribed to the Google Groups "= -Riot Direct Notices" group. -To unsubscribe from this group and stop receiving emails from it, send an e= -mail to maint-notices+unsubscribe@example.com. -To view this discussion on the web visit https://groups.google.com/a/exampl= -e.com/d/msgid/maint-notices/EXA_MSG_ID-62c2d771-800d-4be1-b458-f2b3f9de31ea-= -EXA_MSG_ID%40exainfra.net. - ---b2_NhhArHvVcTgy70DuEH3RYcn0mg5DORMTnhJfuXf2E -Content-Type: text/html; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - - - - - - - =20 - - -
- - - - - -
Planned Work= - Notification: 65430585 - New
-

As part of our commitment to continually improve the quality of serv= -ice we provide to our clients, we will be performing a planned work in Wash= -ington, DC between 2021-12-02 05:00:00 - 2021-12-02 10:00:00 GMT.=E2=80=AFP= -lease see details of the work and impact on your service below.

- - Detail:
- - - - - - - - - - =20 - - - - -
-Start - -2021-12-02 05:00:00 GMT -
-End - -2021-12-02 10:00:00 GMT -
-Location - -Washington, DC -
- -

- Planned work Reason:
- Network optimization on our partner network. -

- - - - - - - - - - - - =20 - - - - - - - - - =20 -
Services AffectedSLID/CCSDCustomer PONService TypeExpected Impact to your Service= -Site Address
HI/Wavelength/006964481098765-12345678PO # EXA00012345Wavelength300 = -min23456 Example Ct,1st Floor Equinix DC2,= -Ashburn, VA 20147, USA
- =20 -
- Comments (Color explanation) :
- - - - - - - - - -
-Service interruption - Service will experience interruption lasting maximu= -m the duration value in the service row -
-Resiliency Loss - Primary or backup circuit will be impacted only. Service will rem= -ain operational throughout the maintenance -
- -

If you have any questions regarding the planned work, please login t= -o MyPor= -tal or contact our Change Management Team using the email below.

- -
Kind Regards, -
EXA Network Operations -
InfraCo.CM@exainfra.net -

-
- - Did you know that it is now easier than ever to log your tickets=E2=80=AF= -on our=E2=80=AFMyPortal=E2=80=AF? You will be able to answer a few troubleshoo= -ting questions and receive a ticket ID immediately.=E2=80=AFMyPortal=E2=80= -=AFalso helps you check on status of existing tickets and access your escal= -ation list. - - If you do not have an=E2=80=AFMyPortal=E2=80=AFlogin, you can contact you= -r company=E2=80=99s account administrator or submit a request on=E2=80=AFou= -r=E2=80=AFwebsite. - -
-
- - - -

- ---
-You received this message because you are subscribed to the Google Groups &= -quot;Riot Direct Notices" group.
-To unsubscribe from this group and stop receiving emails from it, send an e= -mail to maint-notices+= -unsubscribe@example.com.
-To view this discussion on the web visit https://groups.google.com/a/example.com/d/msgid/maint-notices/EXA_MSG_ID-6= -2c2d771-800d-4be1-b458-f2b3f9de31ea-EXA_MSG_ID%40exainfra.net.
- ---b2_NhhArHvVcTgy70DuEH3RYcn0mg5DORMTnhJfuXf2E-- - ---b1_NhhArHvVcTgy70DuEH3RYcn0mg5DORMTnhJfuXf2E -Content-Type: text/calendar; name="planned_work_primary_window.ics" -Content-Transfer-Encoding: base64 -Content-Disposition: attachment; filename="planned_work_primary_window.ics" -Content-Description: planned_work_primary_window.ics - -QkVHSU46VkNBTEVOREFSDQpWRVJTSU9OOjIuMA0KUFJPRElEOkVYQQ0KTUVUSE9EOlJFUVVFU1QN -CkJFR0lOOlZFVkVOVA0KVUlEOjYwNTQwNjE5LTIwMjExMjAyVDA1MDAwMFotMjAyMTEyMDJUMTAw -MDAwWi0wDQpEVFNUQVJUOjIwMjExMjAyVDA1MDAwMFoNClNFUVVFTkNFOjANClRSQU5TUDpPUEFR -VUUNCkRURU5EOjIwMjExMjAyVDEwMDAwMFoNClNVTU1BUlk6RVhBIFRUIyg2MDU0MDYxOSlcLCBQ -bGFubmVkIFdvcmsNCkNMQVNTOlBVQkxJQw0KT1JHQU5JWkVSOkluZnJhQ28uQ01AZXhhaW5mcmEu -bmV0DQpEVFNUQU1QOjIwMjExMTIzVDE0NDk1OFoNCkVORDpWRVZFTlQNCkVORDpWQ0FMRU5EQVI= - ---b1_NhhArHvVcTgy70DuEH3RYcn0mg5DORMTnhJfuXf2E-- +Delivered-To: nautobot.email@example.com +Received: by 2001:DB8::1 with SMTP id hs33csp8787082mab; + Tue, 23 Nov 2021 06:50:05 -0800 (PST) +X-Received: by 2001:DB8::1 with SMTP id bk16mr5510732qkb.258.1637679004754; + Tue, 23 Nov 2021 06:50:04 -0800 (PST) +ARC-Seal: i=3; a=rsa-sha256; t=1637679004; cv=pass; + d=google.com; s=arc-20160816; + b=vUe79MzQJmlVkvvGnvcgbAgme/2Jwt1B2Zo3js/kAu7QCToy4cjQqUHyT7J2srn5dO + /kyktHkm4zI6WH5rSd7rWgSkabkVJs0Uwb0BewZ6pTCqITcz7spPhRyQ/mWR7kaALAXy + MKJSvJ+486N/6N/Wos867jffOxERI5C7fLxtGdJSaXDwYvA2ecJ3SUaRheuF7i1GzrgL + CO9EvbCOaSftPlkUolS98E7wWoIxkNJYZRs7FoMUZNeJJ9LxUQJwOvoBV8LnTB0Obklm + YfuSQ5BteOgMj7JSqJJSb23uPRgc3G/RQ0Pp5+vSHjCkaBGNOEMuFK6c6xvyxKkZfmB4 + 7tuQ== +ARC-Message-Signature: i=3; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=list-unsubscribe:list-archive:list-help:list-post:list-id + :mailing-list:precedence:content-transfer-encoding:mime-version + :message-id:reply-to:from:date:subject:to:sender:dkim-signature; + bh=C0Jesyuuv4BU+nssMchN2LsveiLMpbfsTndp3ny2HT4=; + b=jh+TxTU+BvFo6G0sAv03NdxeaMNwVBUGuIX/ZMudpc1hie8NpY225QcazVPg3CMfno + GXTF8srtUvofKWf1VHkAii0AvqIpJUDIY62zr/raOX2r2vMzAGDP270PREpazPgscNZj + iBLuebnSvy3NoyxS+X+plJ70vrDY0lKzeDkrb6DeEC/LiRXJXSZksazG8q+xngW+FCQK + YpJenJlRIGgBfNaH4JNe0L4uRFWpfJZhtKI2cIXSilGla3T8WfcK3k3UaaIUovGK9ZAZ + Jjg/6ko3Cd02WLd0wnQdE/j1M6Ecy3o75hEvHhiKr7Lnc0NjEGDzPkEtN9PtpQgyHg59 + vXSQ== +ARC-Authentication-Results: i=3; mx.google.com; + dkim=pass header.i=@example.com header.s=example header.b=Va3JHXMB; + arc=pass (i=2 spf=pass spfdomain=exainfra.net); + spf=pass (google.com: domain of maint-notices+bncbaabbgp76ogamgqetzq64dq@example.com designates 192.0.2.1 as permitted sender) smtp.mailfrom=maint-notices+bncBAABBGP76OGAMGQETZQ64DQ@example.com +Return-Path: +Received: from mail-sor-f101.google.com (mail-sor-f101.google.com. [192.0.2.1]) + by mx.google.com with SMTPS id t65sor2273382qkh.48.20192.0.2.1.1.04 + for + (Google Transport Security); + Tue, 23 Nov 2021 06:50:04 -0800 (PST) +Received-SPF: pass (google.com: domain of maint-notices+bncbaabbgp76ogamgqetzq64dq@example.com designates 192.0.2.1 as permitted sender) client-ip=192.0.2.1; +Authentication-Results: mx.google.com; + dkim=pass header.i=@example.com header.s=example header.b=Va3JHXMB; + arc=pass (i=2 spf=pass spfdomain=exainfra.net); + spf=pass (google.com: domain of maint-notices+bncbaabbgp76ogamgqetzq64dq@example.com designates 192.0.2.1 as permitted sender) smtp.mailfrom=maint-notices+bncBAABBGP76OGAMGQETZQ64DQ@example.com +X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=1e100.net; s=20210112; + h=x-gm-message-state:dkim-signature:sender:to:subject:date:from + :reply-to:message-id:mime-version:content-transfer-encoding + :x-original-sender:x-original-authentication-results:precedence + :mailing-list:list-id:list-post:list-help:list-archive + :list-unsubscribe; + bh=C0Jesyuuv4BU+nssMchN2LsveiLMpbfsTndp3ny2HT4=; + b=jllEAnf+YmTc4vg0ITD6WzAynLyTDtcn1n4IXcLucVwBzG9O2JNmgdZ5r7qH14dyZY + ox2cYTbG8vmTvG5EMOLDZpwItR45dCnr4fGY6Q3E5t3+UNGMzgxhlXgYz6weQejPeL3Z + O3vtKJL7VZaVz0lAIj6XWLH9NjI/1UjHheZLFp4jjkPArhYvtGAMadvaLj6OvMID2U/s + RqPsYv0Jp9o9wCUeV0TGadOTHj1OKtj8idxwFNZ/Qp1qeDbQsCGFhmN2V2Vvvr0s5KCA + +MRCT5YhSgzLj83QDbccmHuot6WCzN9bVqGp0qnPKDyRsmGGTRW3JtsNSD5wM2IMbqfJ + 5X2g== +X-Gm-Message-State: AOAM531KBPx07Y6btFUQSetapqmUGATdLolWR5FI5p5SzB17j7XNBOD2 + mpcrzHfz28uZn3CaYk6COBL83Kn5GHMv73Aq3ZzZtOHTDtCPkF/k +X-Google-Smtp-Source: ABdhPJyKtSr2+JBNZ/K7AU0fv8rsre882Kbrvmgui9UZnUisErOQMUCLsJEigXZHEY+lBCF40OczIu95mTF2 +X-Received: by 2001:DB8::1 with SMTP id h9mr9749289uap.111.1637679004217; + Tue, 23 Nov 2021 06:50:04 -0800 (PST) +Return-Path: +Received: from netskope.com ([192.0.2.1]) + by smtp-relay.gmail.com with ESMTPS id y6sm3667722vkc.4.20192.0.2.1.1.03 + for + (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); + Tue, 23 Nov 2021 06:50:04 -0800 (PST) +X-Relaying-Domain: example.com +Received: by mail-wm1-f72.google.com with SMTP id 187-20020a1c02c4000000b003335872db8dsf8071724wmc.2 + for ; Tue, 23 Nov 2021 06:50:02 -0800 (PST) +ARC-Seal: i=2; a=rsa-sha256; t=1637679001; cv=pass; + d=google.com; s=arc-20160816; + b=FAEyypmFn1ucJuPYezfoObVktEmUzIWF9RbdsLFVWT+koSL/cW7fjahj1f71Gh2HFm + 9MnPddkynP8m4fY6p9J096ZmLk7UcYNngvzHgJcJxSfuAN0daPplTdKnTL+Xlh7CPkF+ + gzq+VFmcRO2ZMc664SCt1DJASI5D1tb+gbXj/O+AFU1KpKKNRI/H1G5H35BU32LO6ewZ + +FJdjTmL5SpAN47Yhl/Cxe1AbVcrCj2kEj8zbcrcICWNiTxH3sC7Xaz9As/NYR5B7ggD + PFVMIqPoKkDtOwvZFZXQXuhNlcs9p9k5e9MLRX/dwsJBOgsE7oP2ypDxRtAd/MGtmwSW + Vj9w== +ARC-Message-Signature: i=2; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=list-unsubscribe:list-archive:list-help:list-post:list-id + :mailing-list:precedence:content-transfer-encoding:mime-version + :message-id:reply-to:from:date:subject:to:sender:dkim-signature; + bh=C0Jesyuuv4BU+nssMchN2LsveiLMpbfsTndp3ny2HT4=; + b=Y4qeLp1Ne97E8V8qD2lystu+9ocF4zJd8WU4yOsCGqH520Ut1Vq8F6gcq5q+Bhciuz + tQ2ms2rspHLKTYKzMjcm3OcAWzIdo2R/0c5WMD0r3K2ws3S+UVY4EAnetonWZownRMFs + zmHDRJNn6/uOmiEgOq7rCyiUFfoBMovEcJqcNuan8rKOV91KpnEN6gcYTYvhr2X0edH2 + AlpnJbwHgu3fha1q8t5RGwuFE/AGlRgX0/n6BXpyg2k2ijXc8W0MqWrSf+4YBUreesFm + gxnydAhzUE+oRhPyWme+YsgnUv6zpFz1/1QSrZ1REwD7tHLe3SwwY2BvOh5y6PIhJb/V + eUjg== +ARC-Authentication-Results: i=2; mx.google.com; + spf=pass (google.com: domain of cmd.bounceback@exainfra.net designates 192.0.2.1 as permitted sender) smtp.mailfrom=cmd.bounceback@exainfra.net +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=example.com; s=example; + h=sender:to:subject:date:from:reply-to:message-id:mime-version + :content-transfer-encoding:x-original-sender + :x-original-authentication-results:precedence:mailing-list:list-id + :list-post:list-help:list-archive:list-unsubscribe; + bh=C0Jesyuuv4BU+nssMchN2LsveiLMpbfsTndp3ny2HT4=; + b=Va3JHXMBfNDPJisXXDXiEuiwMYHEa4Efrlc5pXIdolSBuNQUiq6/7ClhYCc2Mr88Yx + V0cqHX+MK/IeATDfPoWii7irgv7RCGW5iq7l/vZ+nJSlmhk8aGz3pvDEoSFShFndo60h + bzR2sOV2vUHahllv4m7Tgwir2Mzv+c+MmiNa4= +Sender: maint-notices@example.com +X-Received: by 2001:DB8::1 with SMTP id p18mr8189115wrw.21.1637679001692; + Tue, 23 Nov 2021 06:50:01 -0800 (PST) +X-Received: by 2001:DB8::1 with SMTP id p18mr8189096wrw.21.1637679001549; + Tue, 23 Nov 2021 06:50:01 -0800 (PST) +X-BeenThere: maint-notices@example.com +Received: by 2001:DB8::1 with SMTP id c22ls889756wmr.1.canary-gmail; + Tue, 23 Nov 2021 06:50:00 -0800 (PST) +X-Received: by 2001:DB8::1 with SMTP id z8mr3945922wmp.52.1637679000526; + Tue, 23 Nov 2021 06:50:00 -0800 (PST) +ARC-Seal: i=1; a=rsa-sha256; t=1637679000; cv=none; + d=google.com; s=arc-20160816; + b=iZPVXO7zKyxAnRrjL+FBY7L1RayjqS1Qx4su4wA/yKZmODuu+GvUHbckcEoHYeX46z + WYXYG7web/1sbxK/G3MKDxt7lfLg4tBdXX5dtCHFwq6nPDbPrZ9b71AZJPSjNJVSAinz + BkV9FJYdPESBBG6scAVBJ2MD7Rn850q7XAmdXdkLUyvvWSiimqVaNDOLOPRMPOm5OYDL + 4RJ1JArnMR0uFR1zkO6Uk293RJZ6SKZTQCub7LVJCmHD7m/57M83IeJMIHgdCevt4qD9 + PO6V2rybxuYj/HrMtkc+CHgtVU12s2h5YhuuD5A23RrsZJRzoMHcwZq/UwI1cU6cgY50 + GvYw== +ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=content-transfer-encoding:mime-version:message-id:reply-to:from + :date:subject:to; + bh=q4mPDFTARsCcneEpOnF/XKc0L6eRffzoP2m6dEvPRaE=; + b=WmP2TfL5/HMjeAlnWxy5uCaEhIVlI9Lsp10OkUZ5M9EfBUkjbBY0yBYwlbDmRUMpAs + VYyOkjovQg1E1DuOI3LO6x0O60NdP/myf7Uo3z42gwnikh7xRUjxpqWtTjcxkPlGEUuE + HbikknX8P2JY0fOWAkjSsDF4UiyTQLii8gvH+4YcnkGIHMZYNxntnxSKh7XP8RaoVd5T + 66noi25/QZnorAIpYffCNgT7zOOyFtboxBU1wwe3eXvpO/VAGtjUZRQbRX1abU+4iRAZ + FfPiwr8Bkqt1F74QJAVRcx8EGsH6laarVEr3hhpu+vv8xwSqdiXfCugFmwganrkpvMjL + 4lUg== +ARC-Authentication-Results: i=1; mx.google.com; + spf=pass (google.com: domain of cmd.bounceback@exainfra.net designates 192.0.2.1 as permitted sender) smtp.mailfrom=cmd.bounceback@exainfra.net +Received: from mexch01.crosstera.com (mexch01.crosstera.com. [192.0.2.1]) + by mx.google.com with ESMTPS id v129si1976559wme.213.20192.0.2.1.1.59 + (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); + Tue, 23 Nov 2021 06:50:00 -0800 (PST) +Received-SPF: pass (google.com: domain of cmd.bounceback@exainfra.net designates 192.0.2.1 as permitted sender) client-ip=192.0.2.1; +Received: from uklon1-cmd2.gt-t.net (192.0.2.1) by + IEDUB-EXCEDGE01.crosstera.com (192.0.2.1) with Microsoft SMTP Server id + 15.2.659.4; Tue, 23 Nov 2021 14:49:59 +0000 +Received: by uklon1-cmd2.gt-t.net (Postfix, from userid 1001) + id D931C2800122A; Tue, 23 Nov 2021 14:49:58 +0000 (UTC) +To: , , + , + +Subject: =?UTF-8?Q?=5Bmaint=2Dnotices=5D_EXA_Emergency_Work_Notification_TT_6543?= + =?UTF-8?Q?0619_=E2=80=93_New?= +Date: Tue, 23 Nov 2021 14:49:58 +0000 +From: +Reply-To: +Message-ID: +X-Mailer: PHPMailer 6.1.7 (https://github.com/PHPMailer/PHPMailer) +MIME-Version: 1.0 +Content-Type: multipart/mixed; + boundary="b1_NhhArHvVcTgy70DuEH3RYcn0mg5DORMTnhJfuXf2E" +Content-Transfer-Encoding: 8bit +X-Original-Sender: infraco.cm@exainfra.net +X-Original-Authentication-Results: mx.google.com; spf=pass (google.com: + domain of cmd.bounceback@exainfra.net designates 192.0.2.1 as permitted + sender) smtp.mailfrom=cmd.bounceback@exainfra.net +Precedence: list +Mailing-list: list maint-notices@example.com; contact maint-notices+owners@example.com +List-ID: +X-Google-Group-Id: 536184160288 +List-Post: , +List-Help: , + +List-Archive: +List-Unsubscribe: , + +x-netskope-inspected: true + +--b1_NhhArHvVcTgy70DuEH3RYcn0mg5DORMTnhJfuXf2E +Content-Type: multipart/alternative; + boundary="b2_NhhArHvVcTgy70DuEH3RYcn0mg5DORMTnhJfuXf2E" + +--b2_NhhArHvVcTgy70DuEH3RYcn0mg5DORMTnhJfuXf2E +Content-Type: text/plain; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + +Planned Work Notification: 65430585 - New + +As part of our commitment to continually improve the quality of service we = +provide to our clients, we will be performing a planned work in Washington,= + DC between 2021-12-02 05:00:00 - 2021-12-02 10:00:00 GMT.=E2=80=AFPlease s= +ee details of the work and impact on your service below. + +Detail: + +Start 2021-12-02 05:00:00 GMT +End 2021-12-02 10:00:00 GMT +Location Washington, DC + +Planned work Reason: +Network optimization on our partner network. + +Services Affected SLID/CCSD Customer PON Service Type Expected Impact to yo= +ur Service Site Address +HI/Wavelength/00696448 1098765-12345678 PO # EXA00012345 Wavelength 300 min= + 23456 Example Ct,1st Floor Equinix DC2,Ashburn, VA 20147, USA +Comments (Color explanation) : + +Service interruption Service will experience interruption lasting maximum t= +he duration value in the service row +Resiliency Loss Primary or backup circuit will be impacted only. Service wi= +ll remain operational throughout the maintenance + +If you have any questions regarding the planned work, please login to MyPor= +tal or contact our Change Management Team using the email below. + +Kind Regards, +EXA Network Operations +InfraCo.CM@exainfra.net + +Did you know that it is now easier than ever to log your tickets=E2=80=AFon= + our=E2=80=AFMyPortal=E2=80=AF? You will be able to answer a few troublesho= +oting questions and receive a ticket ID immediately.=E2=80=AFMyPortal=E2=80= +=AFalso helps you check on status of existing tickets and access your escal= +ation list. If you do not have an=E2=80=AFMyPortal=E2=80=AFlogin, you can c= +ontact your company=E2=80=99s account administrator or submit a request on= +=E2=80=AFour=E2=80=AFwebsite. + +--=20 +You received this message because you are subscribed to the Google Groups "= +Riot Direct Notices" group. +To unsubscribe from this group and stop receiving emails from it, send an e= +mail to maint-notices+unsubscribe@example.com. +To view this discussion on the web visit https://groups.google.com/a/exampl= +e.com/d/msgid/maint-notices/EXA_MSG_ID-62c2d771-800d-4be1-b458-f2b3f9de31ea-= +EXA_MSG_ID%40exainfra.net. + +--b2_NhhArHvVcTgy70DuEH3RYcn0mg5DORMTnhJfuXf2E +Content-Type: text/html; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + + + + + + + =20 + + +
+ + + + + +
Planned Work= + Notification: 65430585 - New
+

As part of our commitment to continually improve the quality of serv= +ice we provide to our clients, we will be performing a planned work in Wash= +ington, DC between 2021-12-02 05:00:00 - 2021-12-02 10:00:00 GMT.=E2=80=AFP= +lease see details of the work and impact on your service below.

+ + Detail:
+ + + + + + + + + + =20 + + + + +
+Start + +2021-12-02 05:00:00 GMT +
+End + +2021-12-02 10:00:00 GMT +
+Location + +Washington, DC +
+ +

+ Planned work Reason:
+ Network optimization on our partner network. +

+ + + + + + + + + + + + =20 + + + + + + + + + =20 +
Services AffectedSLID/CCSDCustomer PONService TypeExpected Impact to your Service= +Site Address
HI/Wavelength/006964481098765-12345678PO # EXA00012345Wavelength300 = +min23456 Example Ct,1st Floor Equinix DC2,= +Ashburn, VA 20147, USA
+ =20 +
+ Comments (Color explanation) :
+ + + + + + + + + +
+Service interruption + Service will experience interruption lasting maximu= +m the duration value in the service row +
+Resiliency Loss + Primary or backup circuit will be impacted only. Service will rem= +ain operational throughout the maintenance +
+ +

If you have any questions regarding the planned work, please login t= +o MyPor= +tal or contact our Change Management Team using the email below.

+ +
Kind Regards, +
EXA Network Operations +
InfraCo.CM@exainfra.net +

+
+ + Did you know that it is now easier than ever to log your tickets=E2=80=AF= +on our=E2=80=AFMyPortal=E2=80=AF? You will be able to answer a few troubleshoo= +ting questions and receive a ticket ID immediately.=E2=80=AFMyPortal=E2=80= +=AFalso helps you check on status of existing tickets and access your escal= +ation list. + + If you do not have an=E2=80=AFMyPortal=E2=80=AFlogin, you can contact you= +r company=E2=80=99s account administrator or submit a request on=E2=80=AFou= +r=E2=80=AFwebsite. + +
+
+ + + +

+ +--
+You received this message because you are subscribed to the Google Groups &= +quot;Riot Direct Notices" group.
+To unsubscribe from this group and stop receiving emails from it, send an e= +mail to maint-notices+= +unsubscribe@example.com.
+To view this discussion on the web visit https://groups.google.com/a/example.com/d/msgid/maint-notices/EXA_MSG_ID-6= +2c2d771-800d-4be1-b458-f2b3f9de31ea-EXA_MSG_ID%40exainfra.net.
+ +--b2_NhhArHvVcTgy70DuEH3RYcn0mg5DORMTnhJfuXf2E-- + +--b1_NhhArHvVcTgy70DuEH3RYcn0mg5DORMTnhJfuXf2E +Content-Type: text/calendar; name="planned_work_primary_window.ics" +Content-Transfer-Encoding: base64 +Content-Disposition: attachment; filename="planned_work_primary_window.ics" +Content-Description: planned_work_primary_window.ics + +QkVHSU46VkNBTEVOREFSDQpWRVJTSU9OOjIuMA0KUFJPRElEOkVYQQ0KTUVUSE9EOlJFUVVFU1QN +CkJFR0lOOlZFVkVOVA0KVUlEOjYwNTQwNjE5LTIwMjExMjAyVDA1MDAwMFotMjAyMTEyMDJUMTAw +MDAwWi0wDQpEVFNUQVJUOjIwMjExMjAyVDA1MDAwMFoNClNFUVVFTkNFOjANClRSQU5TUDpPUEFR +VUUNCkRURU5EOjIwMjExMjAyVDEwMDAwMFoNClNVTU1BUlk6RVhBIFRUIyg2MDU0MDYxOSlcLCBQ +bGFubmVkIFdvcmsNCkNMQVNTOlBVQkxJQw0KT1JHQU5JWkVSOkluZnJhQ28uQ01AZXhhaW5mcmEu +bmV0DQpEVFNUQU1QOjIwMjExMTIzVDE0NDk1OFoNCkVORDpWRVZFTlQNCkVORDpWQ0FMRU5EQVI= + +--b1_NhhArHvVcTgy70DuEH3RYcn0mg5DORMTnhJfuXf2E-- diff --git a/tests/unit/data/hgc/hgc1.eml b/tests/unit/data/hgc/hgc1.eml index 55890efa..e6ad9493 100644 --- a/tests/unit/data/hgc/hgc1.eml +++ b/tests/unit/data/hgc/hgc1.eml @@ -1,223 +1,223 @@ -X-Received: by 2002:a2e:b80f:: with SMTP id u15mr10092348ljo.232.1629131494669; - Mon, 16 Aug 2021 09:31:34 -0700 (PDT) -MIME-Version: 1.0 -Date: Mon, 16 Aug 2021 17:31:23 +0100 -Message-ID: -Subject: Fwd: [rd-notices] [Emergency] HGC Maintenance Work Notification - - Customer Inc | CIR000001 | TIC000000000000001 -Content-Type: multipart/related; boundary="00000000000008848c05c9afbc4c" - ---00000000000008848c05c9afbc4c -Content-Type: multipart/alternative; boundary="00000000000008848c05c9afbc4b" - ---00000000000008848c05c9afbc4b -Content-Type: text/html; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - -
-
-

Dear Customer, -

-


-
Please be= - advised that there will be emergency maintenance work by International ser= -vice provider. Below are the details: -
-
-

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-

Circuit ID

-
-

:

-
-

CIR000001

-
-

Customer

-
-

:

-
-

Account Name

-
-

Maintenance Window start date & time

-
-

:

-
-

15-Aug-2021=C2=A0 07:01 UTC

-
-

Maintenance Window end date & time

-
-

:

-
-

15-Aug-2021=C2=A0 12:00 UTC

-
-

Service Impact

-
-

:

-
-

Down throughout maintenance window

-
-

Description

-
-

:

-
-

Service provider performing fault isolation and hardware replacement= - in London.

-
-

=C2=A0 -
-
Regret th= -at the maintenance notification are sent to you with short notice because o= -ur service provider just found maintenance needed to be performed ASAP, oth= -erwise the service - will be interrupted under uncontrolled situation.
-
We thank = -you for your attention and apologize for any inconvenience for the planned = -maintenance work -
-
=C2=A0 -
-
=C2=A0

-

Best Reg= -ards
-Hafizul
-Planned Maintenance Work
-International Business Engineering & Operations
-
HGC Global Communications Ltd<= -u>

-

Tel:=C2= -=A0=C2=A0=C2=A0 +852-39050037/+852 39050038

-

=C2=A0= -=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 +852-31561500(option= -al)

-

Email:=C2= -=A0<= -span style=3D"font-size:9.0pt;font-family:"Arial",sans-serif">hgc= -inocpw@hgc.com.hk

-

= -3D"HGC

-

=C2=A0

-


-
-

-

=C2=A0

-

=C2=A0

-

=C2=A0

-

=C2=A0

-

=C2=A0

-

=C2=A0

-

=C2=A0

-

=C2=A0

-

=C2=A0

-
-Disclaimer: This email, the information and any attachments contained herei= -n are intended solely for the addressee or addressees. It may be confidenti= -al and legally privileged. If you are not an intended recipient, please del= -ete the message and any attachments - and notify the sender. Any use or disclosure of the contents is unauthoriz= -ed and may be unlawful. To know more, please click -here. Email transmission cannot be guaranteed to be secure or e= -rror-free. We therefore do not accept liability for any loss or damage hows= -oever arising as a result of email transmission -
- ---00000000000008848c05c9afbc4b-- +X-Received: by 2001:DB8::1 with SMTP id u15mr10092348ljo.232.1629131494669; + Mon, 16 Aug 2021 09:31:34 -0700 (PDT) +MIME-Version: 1.0 +Date: Mon, 16 Aug 2021 17:31:23 +0100 +Message-ID: +Subject: Fwd: [rd-notices] [Emergency] HGC Maintenance Work Notification - + Customer Inc | CIR000001 | TIC000000000000001 +Content-Type: multipart/related; boundary="00000000000008848c05c9afbc4c" + +--00000000000008848c05c9afbc4c +Content-Type: multipart/alternative; boundary="00000000000008848c05c9afbc4b" + +--00000000000008848c05c9afbc4b +Content-Type: text/html; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + +
+
+

Dear Customer, +

+


+
Please be= + advised that there will be emergency maintenance work by International ser= +vice provider. Below are the details: +
+
+

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

Circuit ID

+
+

:

+
+

CIR000001

+
+

Customer

+
+

:

+
+

Account Name

+
+

Maintenance Window start date & time

+
+

:

+
+

15-Aug-2021=C2=A0 07:01 UTC

+
+

Maintenance Window end date & time

+
+

:

+
+

15-Aug-2021=C2=A0 12:00 UTC

+
+

Service Impact

+
+

:

+
+

Down throughout maintenance window

+
+

Description

+
+

:

+
+

Service provider performing fault isolation and hardware replacement= + in London.

+
+

=C2=A0 +
+
Regret th= +at the maintenance notification are sent to you with short notice because o= +ur service provider just found maintenance needed to be performed ASAP, oth= +erwise the service + will be interrupted under uncontrolled situation.
+
We thank = +you for your attention and apologize for any inconvenience for the planned = +maintenance work +
+
=C2=A0 +
+
=C2=A0

+

Best Reg= +ards
+Hafizul
+Planned Maintenance Work
+International Business Engineering & Operations
+
HGC Global Communications Ltd<= +u>

+

Tel:=C2= +=A0=C2=A0=C2=A0 +852-39050037/+852 39050038

+

=C2=A0= +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 +852-31561500(option= +al)

+

Email:=C2= +=A0<= +span style=3D"font-size:9.0pt;font-family:"Arial",sans-serif">hgc= +inocpw@hgc.com.hk

+

= +3D"HGC

+

=C2=A0

+


+
+

+

=C2=A0

+

=C2=A0

+

=C2=A0

+

=C2=A0

+

=C2=A0

+

=C2=A0

+

=C2=A0

+

=C2=A0

+

=C2=A0

+
+Disclaimer: This email, the information and any attachments contained herei= +n are intended solely for the addressee or addressees. It may be confidenti= +al and legally privileged. If you are not an intended recipient, please del= +ete the message and any attachments + and notify the sender. Any use or disclosure of the contents is unauthoriz= +ed and may be unlawful. To know more, please click +here. Email transmission cannot be guaranteed to be secure or e= +rror-free. We therefore do not accept liability for any loss or damage hows= +oever arising as a result of email transmission +
+ +--00000000000008848c05c9afbc4b-- diff --git a/tests/unit/data/hgc/hgc2.eml b/tests/unit/data/hgc/hgc2.eml index 8224b510..a95080ec 100644 --- a/tests/unit/data/hgc/hgc2.eml +++ b/tests/unit/data/hgc/hgc2.eml @@ -1,145 +1,145 @@ -MIME-Version: 1.0 -Date: Mon, 16 Aug 2021 17:31:56 +0100 -Message-ID: -Subject: Fwd: [rd-notices] HGC Maintenance Work Notification - Customer Inc - _ CIR0000001 (TIC000000000000001) -Content-Type: multipart/related; boundary="000000000000052c3d05c9afbee0" - ---000000000000052c3d05c9afbee0 -Content-Type: multipart/alternative; boundary="000000000000052c3c05c9afbedf" - ---000000000000052c3c05c9afbedf -Content-Type: text/html; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - -
-
-

Dear Customer, -

-


-
Please be= - advised that there will be maintenance work by International service provi= -der. Below are the details: -
-
=C2=A0 -
-
Circuit I= -D:=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= -=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= -=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= -=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= -=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 CIR0000001=C2=A0=C2=A0=C2=A0 -
-
Customer:= -=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= -=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= -=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= -=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= -=C2=A0=C2=A0=C2=A0=C2=A0 Customer Inc

-

Maintenance Window start date & time:=C2=A0=C2=A0=C2=A0=C2=A0=C2= -=A0 08-Jul-2021 17:00 UTC -
-
Maintenan= -ce Window end date & time:=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 08= --Jul-2021 18:00 UTC -
-
Service I= -mpact:=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= -=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= -=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= -=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 1 hour downtime
-
Descripti= -on:=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= -=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= -=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= -=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= -=A0=C2=A0=C2=A0 Cable fiber relocation -between Tokyo an= -d Wada by International service provider
-
=C2=A0 -
-
The conte= -nt of this activity notice has been agreed and understood in case HGC do no= -t receive any response within 24 hours from the time advisory was sent -
-
We thank = -you for your attention and apologize for any inconvenience for the planned = -maintenance work -
-
=C2=A0 -
-
=C2=A0

-

Best Reg= -ards
-Amran
-Planned Maintenance Work
-International Business Engineering & Operations
-
HGC Global Communications Ltd<= -u>

-

Tel:=C2= -=A0=C2=A0=C2=A0 +852-39050037/+852 39050038

-

=C2=A0= -=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 +852-31561500(option= -al)

-

Email:=C2= -=A0<= -span style=3D"font-size:9.0pt;font-family:"Arial",sans-serif">hgc= -inocpw@hgc.com.hk

-

3D"HGC= -

-

=C2=A0

-


-
-

-

=C2=A0

-

=C2=A0

-

=C2=A0

-

=C2=A0

-

=C2=A0

-

=C2=A0

-

=C2=A0

-

=C2=A0

-
-

Disclaimer: This email, the information and any attachments contained he= -rein are intended solely for the addressee or addressees. It may be confide= -ntial and legally privileged. If you are not an intended recipient, please = -delete the message and any attachments - and notify the sender. Any use or disclosure of the contents is unauthoriz= -ed and may be unlawful. To know more, please click here. -
-
-Email transmission cannot be guaranteed to be secure or error-free. We ther= -efore do not accept liability for any loss or damage howsoever arising as a= - result of email transmission.

-
- ---000000000000052c3c05c9afbedf-- +MIME-Version: 1.0 +Date: Mon, 16 Aug 2021 17:31:56 +0100 +Message-ID: +Subject: Fwd: [rd-notices] HGC Maintenance Work Notification - Customer Inc + _ CIR0000001 (TIC000000000000001) +Content-Type: multipart/related; boundary="000000000000052c3d05c9afbee0" + +--000000000000052c3d05c9afbee0 +Content-Type: multipart/alternative; boundary="000000000000052c3c05c9afbedf" + +--000000000000052c3c05c9afbedf +Content-Type: text/html; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + +
+
+

Dear Customer, +

+


+
Please be= + advised that there will be maintenance work by International service provi= +der. Below are the details: +
+
=C2=A0 +
+
Circuit I= +D:=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= +=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= +=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 CIR0000001=C2=A0=C2=A0=C2=A0 +
+
Customer:= +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= +=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= +=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= +=C2=A0=C2=A0=C2=A0=C2=A0 Customer Inc

+

Maintenance Window start date & time:=C2=A0=C2=A0=C2=A0=C2=A0=C2= +=A0 08-Jul-2021 17:00 UTC +
+
Maintenan= +ce Window end date & time:=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 08= +-Jul-2021 18:00 UTC +
+
Service I= +mpact:=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= +=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= +=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 1 hour downtime
+
Descripti= +on:=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= +=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= +=A0=C2=A0=C2=A0 Cable fiber relocation +between Tokyo an= +d Wada by International service provider
+
=C2=A0 +
+
The conte= +nt of this activity notice has been agreed and understood in case HGC do no= +t receive any response within 24 hours from the time advisory was sent +
+
We thank = +you for your attention and apologize for any inconvenience for the planned = +maintenance work +
+
=C2=A0 +
+
=C2=A0

+

Best Reg= +ards
+Amran
+Planned Maintenance Work
+International Business Engineering & Operations
+
HGC Global Communications Ltd<= +u>

+

Tel:=C2= +=A0=C2=A0=C2=A0 +852-39050037/+852 39050038

+

=C2=A0= +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 +852-31561500(option= +al)

+

Email:=C2= +=A0<= +span style=3D"font-size:9.0pt;font-family:"Arial",sans-serif">hgc= +inocpw@hgc.com.hk

+

3D"HGC= +

+

=C2=A0

+


+
+

+

=C2=A0

+

=C2=A0

+

=C2=A0

+

=C2=A0

+

=C2=A0

+

=C2=A0

+

=C2=A0

+

=C2=A0

+
+

Disclaimer: This email, the information and any attachments contained he= +rein are intended solely for the addressee or addressees. It may be confide= +ntial and legally privileged. If you are not an intended recipient, please = +delete the message and any attachments + and notify the sender. Any use or disclosure of the contents is unauthoriz= +ed and may be unlawful. To know more, please click here. +
+
+Email transmission cannot be guaranteed to be secure or error-free. We ther= +efore do not accept liability for any loss or damage howsoever arising as a= + result of email transmission.

+
+ +--000000000000052c3c05c9afbedf-- diff --git a/tests/unit/data/lumen/lumen1.html b/tests/unit/data/lumen/lumen1.html index eb47d62e..57a3f0eb 100644 --- a/tests/unit/data/lumen/lumen1.html +++ b/tests/unit/data/lumen/lumen1.html @@ -1,122 +1,122 @@ - -
-
-     3D"Lumen" -
-
- -Scheduled Maintenance Window #: 987654321-1 -

-Summary: -


-Lumen intends to carry out internal maintenance within its network. This h= -as been designated as EMERGENCY. The nature of this work is to replace fau= -lty hardware and is required in order to improve network reliability and co= -ntinue providing optimal service for our clients.=20 -
-
Lumen would like to apologize for any inconvenience caused by this m= -aintenance. -
-

-Updates: -

-2021-05-20 07:00:21 GMT - The scheduled maintenance work has begun.
-
- -Customer Impact: -

-

21266034-1<= -/span>


Maintenance Location(s): P= -ROVO, UT USA

StartEnd
2= -021-05-20 07:00 GMT (Greenwich Mean Time)2021-05-20 12:00 GMT (Gre= -enwich Mean Time)
2021-05-20 01:00 MDT (Mountain Daylight = -Time)2021-05-20 06:00 MDT (Mountain Daylight Time)
Customer Nam= -eCircuit IDAl= -t Circuit IDBandwidthA LocationZ LocationImpact TypeMaximum Duration= -Order Number
Generic Account, Inc.123456789N/A100 = -GIGSAN JOSE CA USADENVER CO USAOutage1 = -hour  
-

-Click here for immediate information on scheduled maintenances via the = -Lumen Customer Portal. - -

-Click here to manage your notification subscriptions via the Lumen Cust= -omer Portal. - -

-Click here to open a case for assistance on this scheduled maintenance = -via the Lumen Customer Portal. - -

-Click here to give us feedback on this scheduled maintenance. - -

-For updates anytime via telephone: -

   -North America: 877-453-8353 -

   -Europe, Middle East, and Africa: +44 1270 727 126 -

   -Latin America: -

        -Argentina: 0800-800-5383 -

        -Brazil: 0800-887-3333 =20 -

        -Chile: 800-360-303 -

        -Colombia: 01 8000 117997 -

        -Ecuador: 1800-400-408 -

        -Peru: 0800-7-0662=20 -

        -Venezuela: 0800-538-3538 -

-The information in this communication is confidential and may not be disclo= -sed to=20 -third parties or shared further without the express permission of Lumen. - -

+ +
+
+     3D"Lumen" +
+
+ +Scheduled Maintenance Window #: 987654321-1 +

+Summary: +


+Lumen intends to carry out internal maintenance within its network. This h= +as been designated as EMERGENCY. The nature of this work is to replace fau= +lty hardware and is required in order to improve network reliability and co= +ntinue providing optimal service for our clients.=20 +
+
Lumen would like to apologize for any inconvenience caused by this m= +aintenance. +
+

+Updates: +

+2021-05-20 07:00:21 GMT - The scheduled maintenance work has begun.
+
+ +Customer Impact: +

+

21266034-1<= +/span>


Maintenance Location(s): P= +ROVO, UT USA

StartEnd
2= +021-05-20 07:00 GMT (Greenwich Mean Time)2021-05-20 12:00 GMT (Gre= +enwich Mean Time)
2021-05-20 01:00 MDT (Mountain Daylight = +Time)2021-05-20 06:00 MDT (Mountain Daylight Time)
Customer Nam= +eCircuit IDAl= +t Circuit IDBandwidthA LocationZ LocationImpact TypeMaximum Duration= +Order Number
Generic Account, Inc.123456789N/A100 = +GIGSAN JOSE CA USADENVER CO USAOutage1 = +hour  
+

+Click here for immediate information on scheduled maintenances via the = +Lumen Customer Portal. + +

+Click here to manage your notification subscriptions via the Lumen Cust= +omer Portal. + +

+Click here to open a case for assistance on this scheduled maintenance = +via the Lumen Customer Portal. + +

+Click here to give us feedback on this scheduled maintenance. + +

+For updates anytime via telephone: +

   +North America: 877-453-8353 +

   +Europe, Middle East, and Africa: +44 1270 727 126 +

   +Latin America: +

        +Argentina: 0800-800-5383 +

        +Brazil: 0800-887-3333 =20 +

        +Chile: 800-360-303 +

        +Colombia: 01 8000 117997 +

        +Ecuador: 1800-400-408 +

        +Peru: 0800-7-0662=20 +

        +Venezuela: 0800-538-3538 +

+The information in this communication is confidential and may not be disclo= +sed to=20 +third parties or shared further without the express permission of Lumen. + +

diff --git a/tests/unit/data/lumen/lumen2.html b/tests/unit/data/lumen/lumen2.html index 1d569e62..c5719b3f 100644 --- a/tests/unit/data/lumen/lumen2.html +++ b/tests/unit/data/lumen/lumen2.html @@ -1,129 +1,129 @@ - -
-
-     3D"Lumen" -
-
- -Scheduled Maintenance Window #: 987654321-1 -

-Summary: -


-Lumen intends to carry out internal maintenance within its network. This h= -as been designated as EMERGENCY. The nature of this work is to replace fau= -lty hardware and is required in order to improve network reliability and co= -ntinue providing optimal service for our clients.=20 -
-
Lumen would like to apologize for any inconvenience caused by this m= -aintenance. -
-

-Updates: -

-2021-05-20 07:00:21 GMT - The scheduled maintenance work has begun.
-
- -Customer Impact: - - -


Work on the services below was completed succ= -essfully. If your service has not restored please try resetting your local = -equipment. If that does not clear the issue please call the numbers below f= -or assistance.

987654321-1
= -
StartEnd
2021-05-20 07:00 GMT (Greenwich Mean Time)2021-05-20 = -12:00 GMT (Greenwich Mean Time)
2021-05-20 01:00 MDT (Moun= -tain Daylight Time)2021-05-20 06:00 MDT (Mountain Daylight Time)


Maintenance Locatio= -n(s): PROVO, UT USA

Customer NameCircuit IDAlt Circuit IDBandwidthA LocationZ LocationImpact TypeMaxi= -mum DurationOrder NumberStatusGeneric Account, = -Inc.123456789N/A100 GIGSAN JOSE CA US= -ADENVER CO USAOutage1 hour  <= -td>Completed
- -
-

-Click here for immediate information on scheduled maintenances via the = -Lumen Customer Portal. - -

-Click here to manage your notification subscriptions via the Lumen Cust= -omer Portal. - -

-Click here to open a case for assistance on this scheduled maintenance = -via the Lumen Customer Portal. - -

-Click here to give us feedback on this scheduled maintenance. - -

-For updates anytime via telephone: -

   -North America: 877-453-8353 -

   -Europe, Middle East, and Africa: +44 1270 727 126 -

   -Latin America: -

        -Argentina: 0800-800-5383 -

        -Brazil: 0800-887-3333 =20 -

        -Chile: 800-360-303 -

        -Colombia: 01 8000 117997 -

        -Ecuador: 1800-400-408 -

        -Peru: 0800-7-0662=20 -

        -Venezuela: 0800-538-3538 -

-The information in this communication is confidential and may not be disclo= -sed to=20 -third parties or shared further without the express permission of Lumen. - -

+ +
+
+     3D"Lumen" +
+
+ +Scheduled Maintenance Window #: 987654321-1 +

+Summary: +


+Lumen intends to carry out internal maintenance within its network. This h= +as been designated as EMERGENCY. The nature of this work is to replace fau= +lty hardware and is required in order to improve network reliability and co= +ntinue providing optimal service for our clients.=20 +
+
Lumen would like to apologize for any inconvenience caused by this m= +aintenance. +
+

+Updates: +

+2021-05-20 07:00:21 GMT - The scheduled maintenance work has begun.
+
+ +Customer Impact: + + +


Work on the services below was completed succ= +essfully. If your service has not restored please try resetting your local = +equipment. If that does not clear the issue please call the numbers below f= +or assistance.

987654321-1
= +
StartEnd
2021-05-20 07:00 GMT (Greenwich Mean Time)2021-05-20 = +12:00 GMT (Greenwich Mean Time)
2021-05-20 01:00 MDT (Moun= +tain Daylight Time)2021-05-20 06:00 MDT (Mountain Daylight Time)


Maintenance Locatio= +n(s): PROVO, UT USA

Customer NameCircuit IDAlt Circuit IDBandwidthA LocationZ LocationImpact TypeMaxi= +mum DurationOrder NumberStatusGeneric Account, = +Inc.123456789N/A100 GIGSAN JOSE CA US= +ADENVER CO USAOutage1 hour  <= +td>Completed
+ +
+

+Click here for immediate information on scheduled maintenances via the = +Lumen Customer Portal. + +

+Click here to manage your notification subscriptions via the Lumen Cust= +omer Portal. + +

+Click here to open a case for assistance on this scheduled maintenance = +via the Lumen Customer Portal. + +

+Click here to give us feedback on this scheduled maintenance. + +

+For updates anytime via telephone: +

   +North America: 877-453-8353 +

   +Europe, Middle East, and Africa: +44 1270 727 126 +

   +Latin America: +

        +Argentina: 0800-800-5383 +

        +Brazil: 0800-887-3333 =20 +

        +Chile: 800-360-303 +

        +Colombia: 01 8000 117997 +

        +Ecuador: 1800-400-408 +

        +Peru: 0800-7-0662=20 +

        +Venezuela: 0800-538-3538 +

+The information in this communication is confidential and may not be disclo= +sed to=20 +third parties or shared further without the express permission of Lumen. + +

diff --git a/tests/unit/data/lumen/lumen3.html b/tests/unit/data/lumen/lumen3.html index 0fc2d609..07ca3835 100644 --- a/tests/unit/data/lumen/lumen3.html +++ b/tests/unit/data/lumen/lumen3.html @@ -1,122 +1,122 @@ - -
-
-     3D"Lumen" -
-
- -Scheduled Maintenance #: 987654321-1 -

-Summary: -


-Lumen intends to carry out internal maintenance within its network. This h= -as been designated as EMERGENCY. The nature of this work is to replace fau= -lty hardware and is required in order to improve network reliability and co= -ntinue providing optimal service for our clients.=20 -
-
Lumen would like to apologize for any inconvenience caused by this m= -aintenance. -
-

-Updates: -

-2021-05-20 07:00:21 GMT - This maintenance is scheduled.
-
- -Customer Impact: -

-

21266034-1<= -/span>


Maintenance Location(s): P= -ROVO, UT USA

StartEnd
2= -021-05-20 07:00 GMT (Greenwich Mean Time)2021-05-20 12:00 GMT (Gre= -enwich Mean Time)
2021-05-20 01:00 MDT (Mountain Daylight = -Time)2021-05-20 06:00 MDT (Mountain Daylight Time)
Customer Nam= -eCircuit IDAl= -t Circuit IDBandwidthA LocationZ LocationImpact TypeMaximum Duration= -Order Number
Generic Account, Inc.123456789N/A100 = -GIGSAN JOSE CA USADENVER CO USAOutage1 = -hour  
-

-Click here for immediate information on scheduled maintenances via the = -Lumen Customer Portal. - -

-Click here to manage your notification subscriptions via the Lumen Cust= -omer Portal. - -

-Click here to open a case for assistance on this scheduled maintenance = -via the Lumen Customer Portal. - -

-Click here to give us feedback on this scheduled maintenance. - -

-For updates anytime via telephone: -

   -North America: 877-453-8353 -

   -Europe, Middle East, and Africa: +44 1270 727 126 -

   -Latin America: -

        -Argentina: 0800-800-5383 -

        -Brazil: 0800-887-3333 =20 -

        -Chile: 800-360-303 -

        -Colombia: 01 8000 117997 -

        -Ecuador: 1800-400-408 -

        -Peru: 0800-7-0662=20 -

        -Venezuela: 0800-538-3538 -

-The information in this communication is confidential and may not be disclo= -sed to=20 -third parties or shared further without the express permission of Lumen. - -

+ +
+
+     3D"Lumen" +
+
+ +Scheduled Maintenance #: 987654321-1 +

+Summary: +


+Lumen intends to carry out internal maintenance within its network. This h= +as been designated as EMERGENCY. The nature of this work is to replace fau= +lty hardware and is required in order to improve network reliability and co= +ntinue providing optimal service for our clients.=20 +
+
Lumen would like to apologize for any inconvenience caused by this m= +aintenance. +
+

+Updates: +

+2021-05-20 07:00:21 GMT - This maintenance is scheduled.
+
+ +Customer Impact: +

+

21266034-1<= +/span>


Maintenance Location(s): P= +ROVO, UT USA

StartEnd
2= +021-05-20 07:00 GMT (Greenwich Mean Time)2021-05-20 12:00 GMT (Gre= +enwich Mean Time)
2021-05-20 01:00 MDT (Mountain Daylight = +Time)2021-05-20 06:00 MDT (Mountain Daylight Time)
Customer Nam= +eCircuit IDAl= +t Circuit IDBandwidthA LocationZ LocationImpact TypeMaximum Duration= +Order Number
Generic Account, Inc.123456789N/A100 = +GIGSAN JOSE CA USADENVER CO USAOutage1 = +hour  
+

+Click here for immediate information on scheduled maintenances via the = +Lumen Customer Portal. + +

+Click here to manage your notification subscriptions via the Lumen Cust= +omer Portal. + +

+Click here to open a case for assistance on this scheduled maintenance = +via the Lumen Customer Portal. + +

+Click here to give us feedback on this scheduled maintenance. + +

+For updates anytime via telephone: +

   +North America: 877-453-8353 +

   +Europe, Middle East, and Africa: +44 1270 727 126 +

   +Latin America: +

        +Argentina: 0800-800-5383 +

        +Brazil: 0800-887-3333 =20 +

        +Chile: 800-360-303 +

        +Colombia: 01 8000 117997 +

        +Ecuador: 1800-400-408 +

        +Peru: 0800-7-0662=20 +

        +Venezuela: 0800-538-3538 +

+The information in this communication is confidential and may not be disclo= +sed to=20 +third parties or shared further without the express permission of Lumen. + +

diff --git a/tests/unit/data/lumen/lumen5.html b/tests/unit/data/lumen/lumen5.html index b49b869a..876b8a62 100644 --- a/tests/unit/data/lumen/lumen5.html +++ b/tests/unit/data/lumen/lumen5.html @@ -1,196 +1,196 @@ - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-     3D"Lumen" -
-
- -Scheduled Maintenance Window #: 12345678-1 -

-Summary: -


-Dear customer, we hereby inform you about this activity. We apologize for t= -he inconvenience that this may cause. -
**Software Upgrade IP EDGE. -
We appreciate your understanding that allow us improve every day the su= -pplying of the telecommunication services we provide you. -
-
Prezado cliente, O presente com o fim de informar que realizaremos uma = -atividade de manuten=C3=A7=C3=A3o emergencial, pela qual apresentamos descu= -lpas por inconvenientes. -
** =C3=89 necess=C3=A1rio realizar Software Upgrade de equipamento IP E= -dgee garantir a estabilidade do servi=C3=A7o. -
Agradecemos sua compreens=C3=A3o que nos permite melhorar todos os dias= - o fornecimento dos servi=C3=A7os de telecomunica=C3=A7=C3=B5es que lhe ofe= -recemos. -
-
Estimado cliente, Lo presente con el fin de informarle que realizaremos= - una actividad de mantenimiento de emergencia, por lo cual le pedimos discu= -lpas por las molestias. -
** Es necesario realizar Software Upgrade de equipo IP Edge y garantiza= -r la estabilidad del servicio. -
Agradecemos su comprensi=C3=B3n que nos permite mejorar la oferta de lo= -s servicios de telecomunicaciones que le ofrecemos todos los d=C3=ADas. -

-Updates: -

-2021-10-12 08:11:38 GMT - The scheduled maintenance window 12345678-1 has e= -nded.
2021-10-12 04:05:31 GMT - The scheduled maintenance work has begu= -n.
-
- -Customer Impact: - - -



Work on the services below was completed = -successfully. If your service has not restored please try resetting your lo= -cal equipment. If that does not clear the issue please call the numbers bel= -ow for assistance.

12345678-1


Maintenance Location(s): C= -OTIA, Brazil

StartEnd<= -/td>
2021-10-12 03:00 GMT (Greenwich Mean Time)2021-10= --12 05:00 GMT (Greenwich Mean Time)
2021-10-12 00:00 BRT (= -Brasilia Time)2021-10-12 02:00 BRT (Brasilia Time)
 
Customer Nam= -eCircuit IDAl= -t Circuit IDBandwidthA LocationZ LocationImpact TypeMaximum Duration= -Order NumberS= -tatus
CUSTOMER SERVI=C3=87OS LTDA= -._500123456_ AV. JORNALIS= -TA ROBERTO MARINHO 85S=C3=83O PAULOOutage1 hour Completed
CUSTOMER = -SERVI=C3=87OS LTDA._500001234_ = -CUSTOMER - GC DC SPOOutage1 hour  Completed
- -


-

-Click here for immediate information on scheduled maintenances via the = -Lumen Customer Portal. - -

-Click here to manage your notification subscriptions via the Lumen Cust= -omer Portal. - -

-Click here to open a case for assistance on this scheduled maintenance = -via the Lumen Customer Portal. - -

-Click here to give us feedback on this scheduled maintenance. - -

-For updates anytime via telephone: -

   -North America: 877-453-8353 -

   -Europe, Middle East, and Africa: +44 1270 727 126 -

   -Latin America: -

        -Argentina: 0800-800-5383 -

        -Brazil: 0800-887-3333 =20 -

        -Chile: 800-360-303 -

        -Colombia: 01 8000 117997 -

        -Ecuador: 1800-400-408 -

        -Peru: 0800-7-0662=20 -

        -Venezuela: 0800-538-3538 -

-The information in this communication is confidential and may not be disclo= -sed to=20 -third parties or shared further without the express permission of Lumen. - -

+ + + + + + + + + + + + + + + + + + + + + + + + + +
+
+     3D"Lumen" +
+
+ +Scheduled Maintenance Window #: 12345678-1 +

+Summary: +


+Dear customer, we hereby inform you about this activity. We apologize for t= +he inconvenience that this may cause. +
**Software Upgrade IP EDGE. +
We appreciate your understanding that allow us improve every day the su= +pplying of the telecommunication services we provide you. +
+
Prezado cliente, O presente com o fim de informar que realizaremos uma = +atividade de manuten=C3=A7=C3=A3o emergencial, pela qual apresentamos descu= +lpas por inconvenientes. +
** =C3=89 necess=C3=A1rio realizar Software Upgrade de equipamento IP E= +dgee garantir a estabilidade do servi=C3=A7o. +
Agradecemos sua compreens=C3=A3o que nos permite melhorar todos os dias= + o fornecimento dos servi=C3=A7os de telecomunica=C3=A7=C3=B5es que lhe ofe= +recemos. +
+
Estimado cliente, Lo presente con el fin de informarle que realizaremos= + una actividad de mantenimiento de emergencia, por lo cual le pedimos discu= +lpas por las molestias. +
** Es necesario realizar Software Upgrade de equipo IP Edge y garantiza= +r la estabilidad del servicio. +
Agradecemos su comprensi=C3=B3n que nos permite mejorar la oferta de lo= +s servicios de telecomunicaciones que le ofrecemos todos los d=C3=ADas. +

+Updates: +

+2021-10-12 08:11:38 GMT - The scheduled maintenance window 12345678-1 has e= +nded.
2021-10-12 04:05:31 GMT - The scheduled maintenance work has begu= +n.
+
+ +Customer Impact: + + +



Work on the services below was completed = +successfully. If your service has not restored please try resetting your lo= +cal equipment. If that does not clear the issue please call the numbers bel= +ow for assistance.

12345678-1


Maintenance Location(s): C= +OTIA, Brazil

StartEnd<= +/td>
2021-10-12 03:00 GMT (Greenwich Mean Time)2021-10= +-12 05:00 GMT (Greenwich Mean Time)
2021-10-12 00:00 BRT (= +Brasilia Time)2021-10-12 02:00 BRT (Brasilia Time)
 
Customer Nam= +eCircuit IDAl= +t Circuit IDBandwidthA LocationZ LocationImpact TypeMaximum Duration= +Order NumberS= +tatus
CUSTOMER SERVI=C3=87OS LTDA= +._500123456_ AV. JORNALIS= +TA ROBERTO MARINHO 85S=C3=83O PAULOOutage1 hour Completed
CUSTOMER = +SERVI=C3=87OS LTDA._500001234_ = +CUSTOMER - GC DC SPOOutage1 hour  Completed
+ +


+

+Click here for immediate information on scheduled maintenances via the = +Lumen Customer Portal. + +

+Click here to manage your notification subscriptions via the Lumen Cust= +omer Portal. + +

+Click here to open a case for assistance on this scheduled maintenance = +via the Lumen Customer Portal. + +

+Click here to give us feedback on this scheduled maintenance. + +

+For updates anytime via telephone: +

   +North America: 877-453-8353 +

   +Europe, Middle East, and Africa: +44 1270 727 126 +

   +Latin America: +

        +Argentina: 0800-800-5383 +

        +Brazil: 0800-887-3333 =20 +

        +Chile: 800-360-303 +

        +Colombia: 01 8000 117997 +

        +Ecuador: 1800-400-408 +

        +Peru: 0800-7-0662=20 +

        +Venezuela: 0800-538-3538 +

+The information in this communication is confidential and may not be disclo= +sed to=20 +third parties or shared further without the express permission of Lumen. + +

diff --git a/tests/unit/data/lumen/lumen7.html b/tests/unit/data/lumen/lumen7.html index 76567d8f..997e8c71 100644 --- a/tests/unit/data/lumen/lumen7.html +++ b/tests/unit/data/lumen/lumen7.html @@ -1,181 +1,181 @@ - - - - - - - - - - - - - - - - - - - - - - - - -
-
-     3D"Lumen" -
-
- -Scheduled Maintenance #: 23456789 -

-Summary: -


-Dear customer, we hereby inform you about this corrective activity performe= -d by our Third Party. We apologize for the inconvenience that this may caus= -e. -
-
It is require replace a equipment, in order to guarantee the stability = -and continuity of the services. -
-
We appreciate your understanding in allowing us to improve every day th= -e provision of telecommunications services that we provide. -
-

-Updates: -

-2021-12-01 15:50:45 GMT - Please be advised that this maintenance has been = -cancelled.
-
- -Customer Impact: -

-

23456789-1<= -/span>
StartEnd
2= -021-11-05 06:00 GMT (Greenwich Mean Time)2021-11-05 12:00 GMT (Gre= -enwich Mean Time)
2021-11-05 00:00 CST (Central Standard T= -ime)2021-11-05 06:00 CST (Central Standard Time)
= -

Maintenance Location(s): Ciu= -dad de M=C3=A9xico Mexico

Customer NameCircuit IDAlt Circuit IDBandwidthA LocationZ LocationImpact TypeMaxim= -um DurationOrder NumberStatusSOME CUSTOMER INC,= - INC.2006789012N/A10GIGSOME CUSTOMER IN= -C, INC MIAMI FL USASOME CUSTOMER INC, INC CIUDAD DE MEXICO MEXICO<= -/td>Outage2 hours  Cancelled<= -/table>
-

- -Notes History: -

-2021-12-01 15:50:45 GMT - Please be advised that this maintenance has been = -cancelled.
2021-11-05 12:58:30 GMT - This maintenance has been = -postponed due to vendor issue. Once a new date is determined, upda= -ted notifications will be sent reflecting the date change.
2021-10-28 2= -2:42:06 GMT - This maintenance is scheduled.
-

-Click here for immediate information on scheduled maintenances via the = -Lumen Customer Portal. - -

-Click here to manage your notification subscriptions via the Lumen Cust= -omer Potral. - -

-Click here to open a case for assistance on this scheduled maintenance = -via the Lumen Customer Portal. -

-Network Change Management Team -
-Lumen -
- -Click here=20 - -for Latin America contact numbers -
- -Change.Management.LATAM@Lumen.com - -

-Lumen and its logos are registered trademarks of Lumen in the United States= - and other countries. -
-Your privacy is important to us. -
-Please review the Lumen Online Privacy Policy by clicking on: -
- -http://www.level3.com/en/network-security/ - -

-The information in this communication is confidential and may not be disclo= -sed to=20 -third parties or shared further without the express permission of Lumen. - -

+ + + + + + + + + + + + + + + + + + + + + + + + +
+
+     3D"Lumen" +
+
+ +Scheduled Maintenance #: 23456789 +

+Summary: +


+Dear customer, we hereby inform you about this corrective activity performe= +d by our Third Party. We apologize for the inconvenience that this may caus= +e. +
+
It is require replace a equipment, in order to guarantee the stability = +and continuity of the services. +
+
We appreciate your understanding in allowing us to improve every day th= +e provision of telecommunications services that we provide. +
+

+Updates: +

+2021-12-01 15:50:45 GMT - Please be advised that this maintenance has been = +cancelled.
+
+ +Customer Impact: +

+

23456789-1<= +/span>
StartEnd
2= +021-11-05 06:00 GMT (Greenwich Mean Time)2021-11-05 12:00 GMT (Gre= +enwich Mean Time)
2021-11-05 00:00 CST (Central Standard T= +ime)2021-11-05 06:00 CST (Central Standard Time)
= +

Maintenance Location(s): Ciu= +dad de M=C3=A9xico Mexico

Customer NameCircuit IDAlt Circuit IDBandwidthA LocationZ LocationImpact TypeMaxim= +um DurationOrder NumberStatusSOME CUSTOMER INC,= + INC.2006789012N/A10GIGSOME CUSTOMER IN= +C, INC MIAMI FL USASOME CUSTOMER INC, INC CIUDAD DE MEXICO MEXICO<= +/td>Outage2 hours  Cancelled<= +/table>
+

+ +Notes History: +

+2021-12-01 15:50:45 GMT - Please be advised that this maintenance has been = +cancelled.
2021-11-05 12:58:30 GMT - This maintenance has been = +postponed due to vendor issue. Once a new date is determined, upda= +ted notifications will be sent reflecting the date change.
2021-10-28 2= +2:42:06 GMT - This maintenance is scheduled.
+

+Click here for immediate information on scheduled maintenances via the = +Lumen Customer Portal. + +

+Click here to manage your notification subscriptions via the Lumen Cust= +omer Potral. + +

+Click here to open a case for assistance on this scheduled maintenance = +via the Lumen Customer Portal. +

+Network Change Management Team +
+Lumen +
+ +Click here=20 + +for Latin America contact numbers +
+ +Change.Management.LATAM@Lumen.com + +

+Lumen and its logos are registered trademarks of Lumen in the United States= + and other countries. +
+Your privacy is important to us. +
+Please review the Lumen Online Privacy Policy by clicking on: +
+ +http://www.level3.com/en/network-security/ + +

+The information in this communication is confidential and may not be disclo= +sed to=20 +third parties or shared further without the express permission of Lumen. + +

diff --git a/tests/unit/data/megaport/megaport1.html b/tests/unit/data/megaport/megaport1.html index 866b3abb..081cc533 100644 --- a/tests/unit/data/megaport/megaport1.html +++ b/tests/unit/data/megaport/megaport1.html @@ -1,1131 +1,1131 @@ - - - - - - - - Megaport - We Make Connectivity Easy - - - -
- - - - -
- - - - - - - - - - - - - - - -
- - - - - - -
- - - - - - -
-
Megaport - We Make = -Connectivity Easy
-
-
-
- - - - - - -
- - - - - - -
- 3D"Megaport"= -
-
- - - - - - -
- - - - - - -
-
-
- - - - - - -
- - - - - - -
-

Hi Generic = -Account, Inc.

-

This is = -a reminder that Planned maintenance (987654321-1) that will impact the = -services listed below.

-

Purpose = -of Maintenance: Please be advised that Megaport will be performing hardware= - and software upgrades to our route servers that will affect the secondary = -route server for MegaIX lax-tx1 on the date and times mentioned below: -Date and time:: 10: 00 - 11: 00 UTC, 12/05/21 -Expected impact: The secondary route server for services at lax-tx1 (1.1.= -1.1) will be unavailable during the maintenance window. -Please note that bilateral sessions and sessions with the primary route ser= -ver (1.1.1.2) will not be affected. Peers that have not yet configured= - BGP sessions to both the primary and the secondary route servers are encou= -raged to do so before the maintenance. -If you have any questions concerning this activity, please enquire via emai= -l to support@megaport.com citing reference 987654321-1.

-

Impacted= - Service(s): 10: 00 - 11: 00 UTC, 12/05/21

- - - - - - - - - - - - - - =20 -
Service ID = -;Service Type = -;Service Name
- 123456789 -  = -;IX -  = -;Los A= -ngeles IX at CoreSite LA1
-
-

Start= - Date and Time: Wed, 12 May 2021 10:00:00 UTC

-

End D= -ate and Time: Wed, 12 May 2021 11:00:00 UTC

-
-

Got ques= -tions in relation to this maintenance activity? Did you know you can chat w= -ith us 24/7/365? Most support interactions are handled best via chat in our portal. Alternatively, re= -ply to this email. -

-
-

Thank yo= -u for using Megaport=E2=80=99s services!

-

The Mega= -port Team

- =20 -
-
-
- - - - - - -
- - - - - - -
-
- 3D"megaport-git"   - 3D"megaport-facebook"   - 3D"megaport-google+"   - 3D"megaport-twitter"   - 3D"megaport-linkedin" -
-
- Megaport.com | Logi= -n | Knowledgebase
-
-
- - - - - - -
- - - - - - -
-
- - - - - - -
- - - - - - -
Copyright =C2=A9 2020 Megaport, All rights = -reserved. -
-
- Our= - mailing address is: -
Level = -3 - 825 Ann St, Fortitude Valley, QLD, Australia -
- Click here to manage your notification preferences -
-
-
- - -
-
- - 3D"" - - -

+ + + + + + + + Megaport - We Make Connectivity Easy + + + +
+ + + + +
+ + + + + + + + + + + + + + + +
+ + + + + + +
+ + + + + + +
+
Megaport - We Make = +Connectivity Easy
+
+
+
+ + + + + + +
+ + + + + + +
+ 3D"Megaport"= +
+
+ + + + + + +
+ + + + + + +
+
+
+ + + + + + +
+ + + + + + +
+

Hi Generic = +Account, Inc.

+

This is = +a reminder that Planned maintenance (987654321-1) that will impact the = +services listed below.

+

Purpose = +of Maintenance: Please be advised that Megaport will be performing hardware= + and software upgrades to our route servers that will affect the secondary = +route server for MegaIX lax-tx1 on the date and times mentioned below: +Date and tim2001:DB8::1 10: 00 - 11: 00 UTC, 12/05/21 +Expected impact: The secondary route server for services at lax-tx1 (192.0.= +2.1) will be unavailable during the maintenance window. +Please note that bilateral sessions and sessions with the primary route ser= +ver (192.0.2.1) will not be affected. Peers that have not yet configured= + BGP sessions to both the primary and the secondary route servers are encou= +raged to do so before the maintenance. +If you have any questions concerning this activity, please enquire via emai= +l to support@megaport.com citing reference 987654321-1.

+

Impacted= + Service(s): 10: 00 - 11: 00 UTC, 12/05/21

+ + + + + + + + + + + + + + =20 +
Service ID = +;Service Type = +;Service Name
+ 123456789 +  = +;IX +  = +;Los A= +ngeles IX at CoreSite LA1
+
+

Start= + Date and Time: Wed, 12 May 2021 10:00:00 UTC

+

End D= +ate and Time: Wed, 12 May 2021 11:00:00 UTC

+
+

Got ques= +tions in relation to this maintenance activity? Did you know you can chat w= +ith us 24/7/365? Most support interactions are handled best via chat in our portal. Alternatively, re= +ply to this email. +

+
+

Thank yo= +u for using Megaport=E2=80=99s services!

+

The Mega= +port Team

+ =20 +
+
+
+ + + + + + +
+ + + + + + +
+
+ 3D"megaport-git"   + 3D"megaport-facebook"   + 3D"megaport-google+"   + 3D"megaport-twitter"   + 3D"megaport-linkedin" +
+
+ Megaport.com | Logi= +n | Knowledgebase
+
+
+ + + + + + +
+ + + + + + +
+
+ + + + + + +
+ + + + + + +
Copyright =C2=A9 2020 Megaport, All rights = +reserved. +
+
+ Our= + mailing address is: +
Level = +3 - 825 Ann St, Fortitude Valley, QLD, Australia +
+ Click here to manage your notification preferences +
+
+
+ + +
+
+ + 3D"" + + +

diff --git a/tests/unit/data/megaport/megaport1_result.json b/tests/unit/data/megaport/megaport1_result.json index 21709429..da801a6e 100644 --- a/tests/unit/data/megaport/megaport1_result.json +++ b/tests/unit/data/megaport/megaport1_result.json @@ -11,6 +11,6 @@ "maintenance_id": "987654321-1", "start": 1620813600, "status": "CONFIRMED", - "summary": "Please be advised that Megaport will be performing hardware and software upgrades to our route servers that will affect the secondary route server for MegaIX lax-tx1 on the date and times mentioned below:\r\nDate and time:: 10: 00 - 11: 00 UTC, 12/05/21\r\nExpected impact: The secondary route server for services at lax-tx1 (1.1.1.1) will be unavailable during the maintenance window.\r\nPlease note that bilateral sessions and sessions with the primary route server (1.1.1.2) will not be affected. Peers that have not yet configured BGP sessions to both the primary and the secondary route servers are encouraged to do so before the maintenance.\r\nIf you have any questions concerning this activity, please enquire via email to support@megaport.com citing reference 987654321-1." + "summary": "Please be advised that Megaport will be performing hardware and software upgrades to our route servers that will affect the secondary route server for MegaIX lax-tx1 on the date and times mentioned below:\nDate and tim2001:DB8::1 10: 00 - 11: 00 UTC, 12/05/21\nExpected impact: The secondary route server for services at lax-tx1 (192.0.2.1) will be unavailable during the maintenance window.\nPlease note that bilateral sessions and sessions with the primary route server (192.0.2.1) will not be affected. Peers that have not yet configured BGP sessions to both the primary and the secondary route servers are encouraged to do so before the maintenance.\nIf you have any questions concerning this activity, please enquire via email to support@megaport.com citing reference 987654321-1." } ] diff --git a/tests/unit/data/megaport/megaport2.html b/tests/unit/data/megaport/megaport2.html index d041d613..ce429215 100644 --- a/tests/unit/data/megaport/megaport2.html +++ b/tests/unit/data/megaport/megaport2.html @@ -1,1109 +1,1109 @@ - - - - - - - - Megaport - We Make Connectivity Easy - - - -
- - - - -
- - - - - - - - - - - - - - - -
- - - - - - -
- - - - - - -
-
Megaport - We Make = -Connectivity Easy
-
-
-
- - - - - - -
- - - - - - -
- 3D"Meg= -
-
- - - - - - -
- - - - - - -
-
-
- - - - - - -
- - - - - - -
-

Hi Generic = -Account, Inc.

-

This is = -a reminder that Emergency maintenance (987654321-1) that will impact th= -e services listed below.

-

Purpose = -of Maintenance: Please be advised that AMS-IX will be performing a maintena= -nce activity (1234) that will impact services located at Mega-iAdvantag= -e | Hong Kong Impacted Service(s): Interconnects undergoing maintenance mig= -ht experience an outage.

-

Impacted= - Service(s): 6 hours

- - - - - - - - - - - - - - =20 -
Service ID = -;Service Type = -;Service Name
- 123456789 -  = -;VXC -  = -;AMS-I= -X HKG
-
-

Start= - Date and Time: Tue, 25 May 2021 16:00:00 UTC

-

End D= -ate and Time: Tue, 25 May 2021 22:00:00 UTC

-
-

Got ques= -tions in relation to this maintenance activity? Did you know you can chat w= -ith us 24/7/365? Most support interactions are handled best via chat in our portal. Alternatively, reply to t= -his email. -

-
-

Thank yo= -u for using Megaport=E2=80=99s services!

-

The Mega= -port Team

- =20 -
-
-
- - - - - - -
- - - - - - -
-
- 3D"megaport-git"   - 3D"megaport-facebook"=   - 3D"megaport-google+"   - 3D"megaport-twitter"   - 3D"megaport-linkedin" -
-
- Megaport.com = -| Login<= -/a> | Knowledgebase
-
-
- - - - - - -
- - - - - - -
-
- - - - - - -
- - - - - - -
Copyright =C2=A9 2020 Megaport, All rights = -reserved. -
-
- Our= - mailing address is: -
Level = -3 - 825 Ann St, Fortitude Valley, QLD, Australia -
- Click here to manage your notification prefere= -nces -
-
-
- - -
-
- - 3D"" - - -

+ + + + + + + + Megaport - We Make Connectivity Easy + + + +
+ + + + +
+ + + + + + + + + + + + + + + +
+ + + + + + +
+ + + + + + +
+
Megaport - We Make = +Connectivity Easy
+
+
+
+ + + + + + +
+ + + + + + +
+ 3D"Meg= +
+
+ + + + + + +
+ + + + + + +
+
+
+ + + + + + +
+ + + + + + +
+

Hi Generic = +Account, Inc.

+

This is = +a reminder that Emergency maintenance (987654321-1) that will impact th= +e services listed below.

+

Purpose = +of Maintenance: Please be advised that AMS-IX will be performing a maintena= +nce activity (1234) that will impact services located at Mega-iAdvantag= +e | Hong Kong Impacted Service(s): Interconnects undergoing maintenance mig= +ht experience an outage.

+

Impacted= + Service(s): 6 hours

+ + + + + + + + + + + + + + =20 +
Service ID = +;Service Type = +;Service Name
+ 123456789 +  = +;VXC +  = +;AMS-I= +X HKG
+
+

Start= + Date and Time: Tue, 25 May 2021 16:00:00 UTC

+

End D= +ate and Time: Tue, 25 May 2021 22:00:00 UTC

+
+

Got ques= +tions in relation to this maintenance activity? Did you know you can chat w= +ith us 24/7/365? Most support interactions are handled best via chat in our portal. Alternatively, reply to t= +his email. +

+
+

Thank yo= +u for using Megaport=E2=80=99s services!

+

The Mega= +port Team

+ =20 +
+
+
+ + + + + + +
+ + + + + + +
+
+ 3D"megaport-git"   + 3D"megaport-facebook"=   + 3D"megaport-google+"   + 3D"megaport-twitter"   + 3D"megaport-linkedin" +
+
+ Megaport.com = +| Login<= +/a> | Knowledgebase
+
+
+ + + + + + +
+ + + + + + +
+
+ + + + + + +
+ + + + + + +
Copyright =C2=A9 2020 Megaport, All rights = +reserved. +
+
+ Our= + mailing address is: +
Level = +3 - 825 Ann St, Fortitude Valley, QLD, Australia +
+ Click here to manage your notification prefere= +nces +
+
+
+ + +
+
+ + 3D"" + + +

diff --git a/tests/unit/data/momentum/momentum1.eml b/tests/unit/data/momentum/momentum1.eml index e6c1ec70..9d3a7243 100644 --- a/tests/unit/data/momentum/momentum1.eml +++ b/tests/unit/data/momentum/momentum1.eml @@ -1,268 +1,268 @@ -MIME-Version: 1.0 -Date: Mon, 16 Aug 2021 17:30:54 +0100 -Message-ID: -Subject: Fwd: [rd-notices] Momentum Data Services | Planned Network - Maintenance , | Customer Inc | | 11111111 | [ ref:_00D80aJlo._5000h1mVijR:ref - ] -Content-Type: multipart/alternative; boundary="0000000000004d2f8105c9afba64" - ---0000000000004d2f8105c9afba64 -Content-Type: text/html; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - -

Be brig= -ht

- -

Customer

Network Enginee= -r III=C2=A0 |=C2=A0 Customer

Summoner: Customer Engineer



= -
----------= - Forwarded message ---------
From: Data Support Maintenance Email to Case <maintenance@momen= -tumtelecom.com>
Date: Sat, 31 Jul 2021 at 09:23
Subject= -: [rd-notices] Momentum Data Services | Planned Network Maintenance , | Cus= -tomer Inc | | 11111111 | [ ref:_00D80aJlo._5000h1mVijR:ref ]
To: = -notices@customer.com &l= -t;notices@customer.com&= -gt;


- -=09 - -
- -
-
- - - - - - - - - - - - - - - - - - - - - -
=C2=A0
- - - - - - -
-
- - - - - - -
-

=C2=A0

- -

=C2=A0

- -

= -Dear,

- -


- As a valued = -customer, Momentum is committed to keeping you informed about any changes i= -n the status of your service with us.=C2=A0

- -

=C2=A0

- -

This= - email is to alert you regarding maintenance we will be performing on our n= -etwork, please be advised tha= -t you may experience=C2=A0a b= -rief outage during the time frame listed below:=C2=A0

- -

=C2=A0

- -

Maintenance start date/time:=C2=A0<= -/span>2021-08-14 09:30 AM UTC

- -

Maintenance finish date/time= -:=C2=A02021-08-14 11:00 AM UTC

- -

=C2=A0

- -

Reason for Maintenance:=C2=A0Remove the attenuations identi= -fied in this circuit. -/font>

- -

Expected Impact:=C2=A0Days 6 Hours 30 Minutes.

- -


- Account:=C2=A0 Customer Inc
- Circuit ID(s) impacted:
C000= -01
- Address(s):=C2=A0SP4 Avenida Ceci 1900 Tambor=C3= -=A9 -, CEP: 06460-120 Barueri/SP
- Address 1

- -

=C2=A0

- -

Your circuit listed above may experience an outage during this= - maintenance window.=C2=A0
-
- Our en= -gineers closely monitor the work and will do everything possible to minimiz= -e any inconvenience to you.=C2=A0We appreciate your patience during this wo= -rk and welcome any feedback.=C2=A0
-
- If you have any inquiries or require any clarification please repl= -y=C2=A0to this email or contact us at 888 227 5620 opt 6, 1

- -

=C2=A0

- -

Thank you = -for being a Momentum customer.

- -


- Regards,

- -
Mayra Funes
- -

Data Support= - Technician=C2= -=A0

- -


- Momentum Data Support Services.= -

- -


- 24x7 Support email=C2=A0= -d= -atasupport@momentumtelecom.com=C2=A0=C2=A0
- 24x7 Support Line - 212.655.4444 or 888.277.5620

- -

For main= -tenance-related inquiries email us at maintenance@momentumtelecom.com=C2=A0

- -

=C2=A0

-
-
- -

=C2=A0

- -

=C2=A0

-
-
=C2=A0
=C2=A0
-
-
-
ref:_00D80aJlo._5000h1mVijR:ref
- ---0000000000004d2f8105c9afba64-- +MIME-Version: 1.0 +Date: Mon, 16 Aug 2021 17:30:54 +0100 +Message-ID: +Subject: Fwd: [rd-notices] Momentum Data Services | Planned Network + Maintenance , | Customer Inc | | 11111111 | [ ref:_00D80aJlo._5000h1mVijR:ref + ] +Content-Type: multipart/alternative; boundary="0000000000004d2f8105c9afba64" + +--0000000000004d2f8105c9afba64 +Content-Type: text/html; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + +

Be brig= +ht

+ +

Customer

Network Enginee= +r III=C2=A0 |=C2=A0 Customer

Summoner: Customer Engineer



= +
----------= + Forwarded message ---------
From: Data Support Maintenance Email to Case <maintenance@momen= +tumtelecom.com>
Date: Sat, 31 Jul 2021 at 09:23
Subject= +: [rd-notices] Momentum Data Services | Planned Network Maintenance , | Cus= +tomer Inc | | 11111111 | [ ref:_00D80aJlo._5000h1mVijR:ref ]
To: = +notices@customer.com &l= +t;notices@customer.com&= +gt;


+ +=09 + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + +
=C2=A0
+ + + + + + +
+
+ + + + + + +
+

=C2=A0

+ +

=C2=A0

+ +

= +Dear,

+ +


+ As a valued = +customer, Momentum is committed to keeping you informed about any changes i= +n the status of your service with us.=C2=A0

+ +

=C2=A0

+ +

This= + email is to alert you regarding maintenance we will be performing on our n= +etwork, please be advised tha= +t you may experience=C2=A0a b= +rief outage during the time frame listed below:=C2=A0

+ +

=C2=A0

+ +

Maintenance start date/time:=C2=A0<= +/span>2021-08-14 09:30 AM UTC

+ +

Maintenance finish date/time= +:=C2=A02021-08-14 11:00 AM UTC

+ +

=C2=A0

+ +

Reason for Maintenance:=C2=A0Remove the attenuations identi= +fied in this circuit. +/font>

+ +

Expected Impact:=C2=A0Days 6 Hours 30 Minutes.

+ +


+ Account:=C2=A0 Customer Inc
+ Circuit ID(s) impacted:
C000= +01
+ Address(s):=C2=A0SP4 Avenida Ceci 1900 Tambor=C3= +=A9 -, CEP: 06460-120 Barueri/SP
+ Address 1

+ +

=C2=A0

+ +

Your circuit listed above may experience an outage during this= + maintenance window.=C2=A0
+
+ Our en= +gineers closely monitor the work and will do everything possible to minimiz= +e any inconvenience to you.=C2=A0We appreciate your patience during this wo= +rk and welcome any feedback.=C2=A0
+
+ If you have any inquiries or require any clarification please repl= +y=C2=A0to this email or contact us at 888 227 5620 opt 6, 1

+ +

=C2=A0

+ +

Thank you = +for being a Momentum customer.

+ +


+ Regards,

+ +
Mayra Funes
+ +

Data Support= + Technician=C2= +=A0

+ +


+ Momentum Data Support Services.= +

+ +


+ 24x7 Support email=C2=A0= +d= +atasupport@momentumtelecom.com=C2=A0=C2=A0
+ 24x7 Support Line - 212.655.4444 or 888.277.5620

+ +

For main= +tenance-related inquiries email us at maintenance@momentumtelecom.com=C2=A0

+ +

=C2=A0

+
+
+ +

=C2=A0

+ +

=C2=A0

+
+
=C2=A0
=C2=A0
+
+
+
ref:_00D80aJlo._5000h1mVijR:ref
+ +--0000000000004d2f8105c9afba64-- diff --git a/tests/unit/data/seaborn/seaborn1.eml b/tests/unit/data/seaborn/seaborn1.eml index e054895d..1e6b7918 100644 --- a/tests/unit/data/seaborn/seaborn1.eml +++ b/tests/unit/data/seaborn/seaborn1.eml @@ -1,89 +1,89 @@ -Date: Mon, 16 Aug 2021 17:29:56 +0100 -Message-ID: -Subject: Fwd: [rd-notices] Re:[## 99999 ##] Emergency Maintenance Notification - CID: AAA-AAAAA-AAAAA-AAA1-00000-00 TT#7777 -Content-Type: multipart/related; boundary="000000000000dfb73e05c9afb661" - ---000000000000dfb73e05c9afb661 -Content-Type: multipart/alternative; boundary="000000000000dfb73c05c9afb660" - ---000000000000dfb73c05c9afb660 -Content-Type: text/plain; charset="UTF-8" - ----------- Forwarded message --------- -From: NOC Seaborn -Date: Wed, 11 Aug 2021 at 23:09 -Subject: [rd-notices] Re:[## 99999 ##] Emergency Maintenance Notification - CID: AAA-AAAAA-AAAAA-AAA1-00000-00 TT#7777 -To: - ---000000000000dfb73c05c9afb660 -Content-Type: text/html; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - -

Be brig= -ht

- -

Engineer

Network Enginee= -r III=C2=A0 |=C2=A0 Customer

Summoner: Customer Eng



= - +Date: Mon, 16 Aug 2021 17:29:56 +0100 +Message-ID: +Subject: Fwd: [rd-notices] Re:[## 99999 ##] Emergency Maintenance Notification + CID: AAA-AAAAA-AAAAA-AAA1-00000-00 TT#7777 +Content-Type: multipart/related; boundary="000000000000dfb73e05c9afb661" + +--000000000000dfb73e05c9afb661 +Content-Type: multipart/alternative; boundary="000000000000dfb73c05c9afb660" + +--000000000000dfb73c05c9afb660 +Content-Type: text/plain; charset="UTF-8" + +---------- Forwarded message --------- +From: NOC Seaborn +Date: Wed, 11 Aug 2021 at 23:09 +Subject: [rd-notices] Re:[## 99999 ##] Emergency Maintenance Notification + CID: AAA-AAAAA-AAAAA-AAA1-00000-00 TT#7777 +To: + +--000000000000dfb73c05c9afb660 +Content-Type: text/html; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + +

Be brig= +ht

+ +

Engineer

Network Enginee= +r III=C2=A0 |=C2=A0 Customer

Summoner: Customer Eng



= + diff --git a/tests/unit/data/seaborn/seaborn2.eml b/tests/unit/data/seaborn/seaborn2.eml index da844cee..35bd24c7 100644 --- a/tests/unit/data/seaborn/seaborn2.eml +++ b/tests/unit/data/seaborn/seaborn2.eml @@ -1,80 +1,80 @@ -MIME-Version: 1.0 -Date: Mon, 16 Aug 2021 17:29:56 +0100 -Message-ID: -Subject: Fwd: [rd-notices] Re:[## 99999 ##] Emergency Maintenance Notification - CID: AAA-AAAAA-AAAAA-AAA1-0000-00 TT#11111 -Content-Type: multipart/related; boundary="000000000000dfb73e05c9afb661" - ---000000000000dfb73e05c9afb661 -Content-Type: multipart/alternative; boundary="000000000000dfb73c05c9afb660" - ---000000000000dfb73c05c9afb660 -Content-Type: text/html; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - -

Be brig= -ht

- -

Engineer name

Network Enginee= -r III=C2=A0 |=C2=A0 Customer

Summoner: Customer



= - +MIME-Version: 1.0 +Date: Mon, 16 Aug 2021 17:29:56 +0100 +Message-ID: +Subject: Fwd: [rd-notices] Re:[## 99999 ##] Emergency Maintenance Notification + CID: AAA-AAAAA-AAAAA-AAA1-0000-00 TT#11111 +Content-Type: multipart/related; boundary="000000000000dfb73e05c9afb661" + +--000000000000dfb73e05c9afb661 +Content-Type: multipart/alternative; boundary="000000000000dfb73c05c9afb660" + +--000000000000dfb73c05c9afb660 +Content-Type: text/html; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + +

Be brig= +ht

+ +

Engineer name

Network Enginee= +r III=C2=A0 |=C2=A0 Customer

Summoner: Customer



= + diff --git a/tests/unit/data/seaborn/seaborn3.eml b/tests/unit/data/seaborn/seaborn3.eml index 6a786488..9e89818b 100644 --- a/tests/unit/data/seaborn/seaborn3.eml +++ b/tests/unit/data/seaborn/seaborn3.eml @@ -1,120 +1,120 @@ -Date: Mon, 16 Aug 2021 17:29:07 +0100 -Message-ID: -Subject: Fwd: [Customer Direct] 7777 8/13 EMERGENCY MAINTENANCE -Content-Type: multipart/alternative; boundary="000000000000f317a105c9afb37f" - ---000000000000f317a105c9afb37f -Content-Type: text/html; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - -

Be brig= -ht

- -

Rodrigo Magno

Network Enginee= -r III=C2=A0 |=C2=A0 Customers

Summoner: Customer



= -
----------= - Forwarded message ---------
From: NOC <NOC@seabornnetworks.com>
Date: Thu, 12 Aug = -2021 at 14:06
Subject: [Customer Direct] 7777 8/13 EMERGENCY MAINTENANCE
= -To: Customer Direct Team <eng-rg= -@customer.com>
Cc: NOC <NOC@seabornnetworks.com>


- - - - - -
-
-

Dear Customer,

-

=C2=A0

-

Be advised that a planned maintenance= - activity has been scheduled. Please find details below

-

=C2=A0

-

=C2=A0

-

NOTIFICATION TYPE: Emergency

-

DESCRIPTION: A scheduled work will be= - carried out in order to perform OTDR measures.

-

SERVICE IMPACT: 50 MS SWITCH HITS DUR= -ING 05 MINUTES

-

LOCATION: Los Andes, Chile<= -/u>

-

SCHEDULE: (UTC):

-

13-Aug-2021 04:00 - 13-Aug-2021 11:00= -

-

AFFECTED CIRCUIT: AAA-AAAAA-AAAAA-AAA= -0-0000-00

-

=C2=A0

-

=C2=A0

-
-
-

Regards,

-

3D"signature_2081131798"

-

Ronald S. Pasana

-

NOC Engineer

-

Seaborn Networks

-

2 Emerson Lane Secaucus NJ.= -

-

+201-351-5811 (Ofc)

-

www.seabornnetworks.c= -om

-

=C2=A0

-
-
-

=C2=A0

-

=C2=A0

-

=C2=A0

-
-
- ---000000000000f317a105c9afb37f-- +Date: Mon, 16 Aug 2021 17:29:07 +0100 +Message-ID: +Subject: Fwd: [Customer Direct] 7777 8/13 EMERGENCY MAINTENANCE +Content-Type: multipart/alternative; boundary="000000000000f317a105c9afb37f" + +--000000000000f317a105c9afb37f +Content-Type: text/html; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + +

Be brig= +ht

+ +

Rodrigo Magno

Network Enginee= +r III=C2=A0 |=C2=A0 Customers

Summoner: Customer



= +
----------= + Forwarded message ---------
From: NOC <NOC@seabornnetworks.com>
Date: Thu, 12 Aug = +2021 at 14:06
Subject: [Customer Direct] 7777 8/13 EMERGENCY MAINTENANCE
= +To: Customer Direct Team <eng-rg= +@customer.com>
Cc: NOC <NOC@seabornnetworks.com>


+ + + + + +
+
+

Dear Customer,

+

=C2=A0

+

Be advised that a planned maintenance= + activity has been scheduled. Please find details below

+

=C2=A0

+

=C2=A0

+

NOTIFICATION TYPE: Emergency

+

DESCRIPTION: A scheduled work will be= + carried out in order to perform OTDR measures.

+

SERVICE IMPACT: 50 MS SWITCH HITS DUR= +ING 05 MINUTES

+

LOCATION: Los Andes, Chile<= +/u>

+

SCHEDULE: (UTC):

+

13-Aug-2021 04:00 - 13-Aug-2021 11:00= +

+

AFFECTED CIRCUIT: AAA-AAAAA-AAAAA-AAA= +0-0000-00

+

=C2=A0

+

=C2=A0

+
+
+

Regards,

+

3D"signature_2081131798"

+

Ronald S. Pasana

+

NOC Engineer

+

Seaborn Networks

+

2 Emerson Lane Secaucus NJ.= +

+

+201-351-5811 (Ofc)

+

www.seabornnetworks.c= +om

+

=C2=A0

+
+
+

=C2=A0

+

=C2=A0

+

=C2=A0

+
+
+ +--000000000000f317a105c9afb37f-- diff --git a/tests/unit/data/sparkle/sparkle1.eml b/tests/unit/data/sparkle/sparkle1.eml index 06962102..a770cffd 100644 --- a/tests/unit/data/sparkle/sparkle1.eml +++ b/tests/unit/data/sparkle/sparkle1.eml @@ -1,387 +1,387 @@ -MIME-Version: 1.0 -Date: Fri, 27 Aug 2021 16:24:42 +0100 -Message-ID: -Subject: Fwd: Maintenance Notification for 08/10/2021 - - 08/11/2021 - 08/12/2021 | Sparkle TT# 1111111 / 22222 / 33333 -Content-Type: multipart/alternative; boundary="000000000000b6e60505ca8c15a1" - -08/11/2021 - 08/12/2021 | Sparkle TT# 1111111 / 22222 / 33333 -Cc: Network to Code - ---000000000000b6e60505ca8c15a1 -Content-Type: text/html; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - -
-


-

-

-Dear Customer:

-

-=C2=A0

-

-Please be informed of an activity to be performed:

-

-=C2=A0

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-

-Type of Maintenance

-
-

-Emergency

-
-

-Sparkle Ticket Number

-
-

-1111111=C2=A0/ 22222=C2=A0/ 33333
-

-
-

-Start Date/Time (UTC) Day 1

-
-

-08/10/2021 03:00 UTC

-
-

-End Date/Time (UTC) Day 1

-
-

-08/10/2021 11:00 UTC

-
-

-Start Date/Time (UTC) Day 2

-
-

-08/11/2021 03:00 UTC

-
-

-End Date/Time (UTC) Day 2

-
-

-08/11/2021 11:00 UTC

-
-

-Start Date/Time (UTC) BACKUP

-
-

-08/12/2021 03:00 UTC

-
-

-End Date/Time (UTC) BACKUP

-
-

-08/12/2021 11:00 UTC

-
-

-Duration of Maintenance (minutes)

-
-

-480 minutes
-

-
-

-Expected Impact Time (minutes)

-
-

-480 minutes

-
-

-Location

-
-

-Segment San Juan, Puerto Rico - Barranquilla, Colombia= -

-
-

-Circuits Involved in the Activity

-
-

-

- - - - - - - -
CIR0000000000001
-
-
-

-Description of Work

-
-

-A scheduled work will be carried out to perform hardware upgrade in order i= -n order to ensure the continued integrity of the network.

-
-

-=C2=A0

-

-In case your service is linear the impact will be the described on the main= -tenance.
-If your service is protected you will observe protection switch hits.

-

-=C2=A0

-

-Please be aware that if we do not receive any response from you in the next= - 24 hour, we will proceed with this activity as scheduled.

-

-=C2=A0

-

-If you have any additional questions or concerns feel free to contact us. -

-


-

-
-
-

-
-

-
-
Dear customer= -, please be informed about our new e-mail address:=C2=A0TISAm= -ericaNOC@tisparkle.com
-
-
-
-
-_____________________________
-
- -
- -

TI Sparkle Americas NOC
-
-USA=C2= -=A0 +1 866 936-5668

-

ARG = -+54 11 3753-2079

-

BRA = -+55 21 2429-2520
-www.tisparkle.com= -

-

http://americas.tisparkle.com

-
-This message may contain confidential informa= -tion and is intended only for the individual(s) named. If you are not the n= -amed addressee you should not disseminate, distribute or copy this e-mail. = -Please, notify the sender immediately - by e-mail reply if you have received this e-mail by mistake and immediatel= -y delete this e-mail and any attachments from your system.
-
-
-
- -
-
-
- - - - - - - -
- -
-Questo messaggio e i suoi allegati sono indirizzati esclusivamente alle per= -sone indicate. La diffusione, copia o qualsiasi altra azione derivante dall= -a conoscenza di queste informazioni sono rigorosamente vietate. Qualora abb= -iate ricevuto questo documento per errore siete cortesemente pregati di dar= -ne immediata comunicazione al mittente e di provvedere alla sua distruzione= -, Grazie. -

- -This e-mail and any attachments is confidential and may contain privileged= - information intended for the addressee(s) only. Dissemination, copying, pr= -inting or use by anybody else is unauthorised. If you are not the intended = -recipient, please delete this message and any attachments and advise the se= -nder by return e-mail, Thanks. - -

-Rispetta l'ambiente. Non stampare questa mail se non =C3=A8 necessar= -io. -
=09 -
- ---000000000000b6e60505ca8c15a1-- +MIME-Version: 1.0 +Date: Fri, 27 Aug 2021 16:24:42 +0100 +Message-ID: +Subject: Fwd: Maintenance Notification for 08/10/2021 - + 08/11/2021 - 08/12/2021 | Sparkle TT# 1111111 / 22222 / 33333 +Content-Type: multipart/alternative; boundary="000000000000b6e60505ca8c15a1" + +08/11/2021 - 08/12/2021 | Sparkle TT# 1111111 / 22222 / 33333 +Cc: Network to Code + +--000000000000b6e60505ca8c15a1 +Content-Type: text/html; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + +
+


+

+

+Dear Customer:

+

+=C2=A0

+

+Please be informed of an activity to be performed:

+

+=C2=A0

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+Type of Maintenance

+
+

+Emergency

+
+

+Sparkle Ticket Number

+
+

+1111111=C2=A0/ 22222=C2=A0/ 33333
+

+
+

+Start Date/Time (UTC) Day 1

+
+

+08/10/2021 03:00 UTC

+
+

+End Date/Time (UTC) Day 1

+
+

+08/10/2021 11:00 UTC

+
+

+Start Date/Time (UTC) Day 2

+
+

+08/11/2021 03:00 UTC

+
+

+End Date/Time (UTC) Day 2

+
+

+08/11/2021 11:00 UTC

+
+

+Start Date/Time (UTC) BACKUP

+
+

+08/12/2021 03:00 UTC

+
+

+End Date/Time (UTC) BACKUP

+
+

+08/12/2021 11:00 UTC

+
+

+Duration of Maintenance (minutes)

+
+

+480 minutes
+

+
+

+Expected Impact Time (minutes)

+
+

+480 minutes

+
+

+Location

+
+

+Segment San Juan, Puerto Rico - Barranquilla, Colombia= +

+
+

+Circuits Involved in the Activity

+
+

+

+ + + + + + + +
CIR0000000000001
+
+
+

+Description of Work

+
+

+A scheduled work will be carried out to perform hardware upgrade in order i= +n order to ensure the continued integrity of the network.

+
+

+=C2=A0

+

+In case your service is linear the impact will be the described on the main= +tenance.
+If your service is protected you will observe protection switch hits.

+

+=C2=A0

+

+Please be aware that if we do not receive any response from you in the next= + 24 hour, we will proceed with this activity as scheduled.

+

+=C2=A0

+

+If you have any additional questions or concerns feel free to contact us. +

+


+

+
+
+

+
+

+
+
Dear customer= +, please be informed about our new e-mail address:=C2=A0TISAm= +ericaNOC@tisparkle.com
+
+
+
+
+_____________________________
+
+ +
+ +

TI Sparkle Americas NOC
+
+USA=C2= +=A0 +1 866 936-5668

+

ARG = ++54 11 3753-2079

+

BRA = ++55 21 2429-2520
+www.tisparkle.com= +

+

http://americas.tisparkle.com

+
+This message may contain confidential informa= +tion and is intended only for the individual(s) named. If you are not the n= +amed addressee you should not disseminate, distribute or copy this e-mail. = +Please, notify the sender immediately + by e-mail reply if you have received this e-mail by mistake and immediatel= +y delete this e-mail and any attachments from your system.
+
+
+
+ +
+
+
+ + + + + + + +
+ +
+Questo messaggio e i suoi allegati sono indirizzati esclusivamente alle per= +sone indicate. La diffusione, copia o qualsiasi altra azione derivante dall= +a conoscenza di queste informazioni sono rigorosamente vietate. Qualora abb= +iate ricevuto questo documento per errore siete cortesemente pregati di dar= +ne immediata comunicazione al mittente e di provvedere alla sua distruzione= +, Grazie. +

+ +This e-mail and any attachments is confidential and may contain privileged= + information intended for the addressee(s) only. Dissemination, copying, pr= +inting or use by anybody else is unauthorised. If you are not the intended = +recipient, please delete this message and any attachments and advise the se= +nder by return e-mail, Thanks. + +

+Rispetta l'ambiente. Non stampare questa mail se non =C3=A8 necessar= +io. +
=09 +
+ +--000000000000b6e60505ca8c15a1-- diff --git a/tests/unit/data/telstra/telstra1.html b/tests/unit/data/telstra/telstra1.html index 4f8788dd..48e1b26e 100644 --- a/tests/unit/data/telstra/telstra1.html +++ b/tests/unit/data/telstra/telstra1.html @@ -1,168 +1,168 @@ - -
- - - -
- - - - -
- - -
3D"Telstra"
- - - - - =20 - - - - - -
P= -lanned Maintenance Notification
Ser= -vice Impacting
P= -lanned Maintenance has been scheduled that will impact your service. -
We are unable to provide 14 calendar days notice.Telstr= -a wishes to apologise for the short notice and any inconvenience caused. -
-
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-
To: Generic Account, Inc.
Attention: some names
=C2=A0
=C2=A0
Change Reference: 987654321-1
=C2=A0
Maintenance Window: 01-Jun-2021 15:59:00(UTC) to 0= -1-Jun-2021 22:00:00(UTC)
Expected Impact: 4 hours outage during the chan= -ge window
=C2=A0
Maintenance Details:
=C2=A0
Telstra Planned Maintenance Activity 3409132
=C2=A0
Telstra will perform planned maintenance activity f= -or transmission work - Australia
=C2=A0
Service(s) Impacted:123 456 789
=C2=A0
Click here If you have any questions, comments or concerns regarding this maint= -enance activity or telephone Global 800: +800 8448 8888* or Direct: +852 31= -92 7420
=C2=A0
Click here for immedia= -te information on planned maintenance or viewing your historical planned ma= -intenance tickets details via our Telstra Connect Portal using your email I= -D as login.
=C2=A0
- Click here to email us about any updates to your contact= - details or requesting access to Telstra Connect Portal. -
-
- =20 - =20 - - =20 - =20 - -
- - -
- -

+ +
+ + + +
+ + + + +
+ + +
3D"Telstra"
+ + + + + =20 + + + + + +
P= +lanned Maintenance Notification
Ser= +vice Impacting
P= +lanned Maintenance has been scheduled that will impact your service. +
We are unable to provide 14 calendar days notice.Telstr= +a wishes to apologise for the short notice and any inconvenience caused. +
+
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+
To: Generic Account, Inc.
Attention: some names
=C2=A0
=C2=A0
Change Reference: 987654321-1
=C2=A0
Maintenance Window: 01-Jun-2021 15:59:00(UTC) to 0= +1-Jun-2021 22:00:00(UTC)
Expected Impact: 4 hours outage during the chan= +ge window
=C2=A0
Maintenance Details:
=C2=A0
Telstra Planned Maintenance Activity 3409132
=C2=A0
Telstra will perform planned maintenance activity f= +or transmission work - Australia
=C2=A0
Service(s) Impacted:123 456 789
=C2=A0
Click here If you have any questions, comments or concerns regarding this maint= +enance activity or telephone Global 800: +800 8448 8888* or Direct: +852 31= +92 7420
=C2=A0
Click here for immedia= +te information on planned maintenance or viewing your historical planned ma= +intenance tickets details via our Telstra Connect Portal using your email I= +D as login.
=C2=A0
+ Click here to email us about any updates to your contact= + details or requesting access to Telstra Connect Portal. +
+
+ =20 + =20 + + =20 + =20 + +
+ + +
+ +

diff --git a/tests/unit/data/telstra/telstra2.html b/tests/unit/data/telstra/telstra2.html index 9373867c..ff562d06 100644 --- a/tests/unit/data/telstra/telstra2.html +++ b/tests/unit/data/telstra/telstra2.html @@ -1,173 +1,173 @@ -
- - - -
- - - - -
- - -
3D"Telstra"
- - - - - =20 - - - - - - -
P= -lanned Maintenance Reminder Notification
Ser= -vice Impacting
T= -his is a reminder notification to notify that a planned maintenance has bee= -n scheduled that will impact your service. -
Telstra wishes to apologise for the short notice and an= -y inconvenience caused.
-
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-
To: Generic Account, Inc.
Attention: some names
=C2=A0
=C2=A0
Change Reference: 987654321-1
=C2=A0
Maintenance Window: 22-May-2021 10:00:00(UTC) to 0= -6-Jun-2021 12:00:00(UTC)
Expected Impact: Loss of service for the full d= -uration of the change window
=C2=A0
Maintenance Details:
=C2=A0
Telstra C2C Segment 6 (Singapore - Philippines) Sub= -marine Cable Repair
=C2=A0
This is to notify that Telstra will be conducting 2= -x Repeater R36 & R41A Replacement Work on C2C Segment 6 (Singapore - Ph= -ilippines due to suspected fauly Laser Diodes to reinstate the End-to-End c= -onnectivity of Faulty and Degraded Fiber Pairs and optimize the maximum per= -formance of all Fiber Pairs on this Segment between Singapore and Philippin= -es. Unprotected circuits will be down throughout the repair window. Schedul= -e of this work may change as they are dependent on many outside factors (we= -ather / rough sea / permits/ hostile waters etc) which are beyond Telstra c= -ontrol. Our sincere apologies for any inconvenience caused. - -Update #1: Change of schedule due to availability of cable repair ship CS= - Teneo
=C2=A0
Service(s) Impacted:123 456 789
=C2=A0
Click here If you have any questions, comments or concerns regarding this maint= -enance activity or telephone Global 800: +800 8448 8888* or Direct: +852 31= -92 7420
=C2=A0
Click here for immedia= -te information on planned maintenance or viewing your historical planned ma= -intenance tickets details via our Telstra Connect Portal using your email I= -D as login.
=C2=A0
- Click here to email us about any updates to your contact= - details or requesting access to Telstra Connect Portal. -
-
- =20 - =20 - - =20 - =20 - -
+
+ + + +
+ + + + +
+ + +
3D"Telstra"
+ + + + + =20 + + + + + + +
P= +lanned Maintenance Reminder Notification
Ser= +vice Impacting
T= +his is a reminder notification to notify that a planned maintenance has bee= +n scheduled that will impact your service. +
Telstra wishes to apologise for the short notice and an= +y inconvenience caused.
+
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+
To: Generic Account, Inc.
Attention: some names
=C2=A0
=C2=A0
Change Reference: 987654321-1
=C2=A0
Maintenance Window: 22-May-2021 10:00:00(UTC) to 0= +6-Jun-2021 12:00:00(UTC)
Expected Impact: Loss of service for the full d= +uration of the change window
=C2=A0
Maintenance Details:
=C2=A0
Telstra C2C Segment 6 (Singapore - Philippines) Sub= +marine Cable Repair
=C2=A0
This is to notify that Telstra will be conducting 2= +x Repeater R36 & R41A Replacement Work on C2C Segment 6 (Singapore - Ph= +ilippines due to suspected fauly Laser Diodes to reinstate the End-to-End c= +onnectivity of Faulty and Degraded Fiber Pairs and optimize the maximum per= +formance of all Fiber Pairs on this Segment between Singapore and Philippin= +es. Unprotected circuits will be down throughout the repair window. Schedul= +e of this work may change as they are dependent on many outside factors (we= +ather / rough sea / permits/ hostile waters etc) which are beyond Telstra c= +ontrol. Our sincere apologies for any inconvenience caused. + +Update #1: Change of schedule due to availability of cable repair ship CS= + Teneo
=C2=A0
Service(s) Impacted:123 456 789
=C2=A0
Click here If you have any questions, comments or concerns regarding this maint= +enance activity or telephone Global 800: +800 8448 8888* or Direct: +852 31= +92 7420
=C2=A0
Click here for immedia= +te information on planned maintenance or viewing your historical planned ma= +intenance tickets details via our Telstra Connect Portal using your email I= +D as login.
=C2=A0
+ Click here to email us about any updates to your contact= + details or requesting access to Telstra Connect Portal. +
+
+ =20 + =20 + + =20 + =20 + +
diff --git a/tests/unit/data/telstra/telstra2_result.json b/tests/unit/data/telstra/telstra2_result.json index 582013ab..4c1cadef 100644 --- a/tests/unit/data/telstra/telstra2_result.json +++ b/tests/unit/data/telstra/telstra2_result.json @@ -11,6 +11,6 @@ "maintenance_id": "987654321-1", "start": 1621677600, "status": "CONFIRMED", - "summary": "Telstra C2C Segment 6 (Singapore - Philippines) Submarine Cable Repair. This is to notify that Telstra will be conducting 2x Repeater R36 & R41A Replacement Work on C2C Segment 6 (Singapore - Philippines due to suspected fauly Laser Diodes to reinstate the End-to-End connectivity of Faulty and Degraded Fiber Pairs and optimize the maximum performance of all Fiber Pairs on this Segment between Singapore and Philippines. Unprotected circuits will be down throughout the repair window. Schedule of this work may change as they are dependent on many outside factors (weather / rough sea / permits/ hostile waters etc) which are beyond Telstra control. Our sincere apologies for any inconvenience caused.\r\n\r\nUpdate #1: Change of schedule due to availability of cable repair ship CS Teneo" + "summary": "Telstra C2C Segment 6 (Singapore - Philippines) Submarine Cable Repair. This is to notify that Telstra will be conducting 2x Repeater R36 & R41A Replacement Work on C2C Segment 6 (Singapore - Philippines due to suspected fauly Laser Diodes to reinstate the End-to-End connectivity of Faulty and Degraded Fiber Pairs and optimize the maximum performance of all Fiber Pairs on this Segment between Singapore and Philippines. Unprotected circuits will be down throughout the repair window. Schedule of this work may change as they are dependent on many outside factors (weather / rough sea / permits/ hostile waters etc) which are beyond Telstra control. Our sincere apologies for any inconvenience caused.\n\nUpdate #1: Change of schedule due to availability of cable repair ship CS Teneo" } ] diff --git a/tests/unit/data/telstra/telstra3.html b/tests/unit/data/telstra/telstra3.html index 6721ba47..c95f5246 100644 --- a/tests/unit/data/telstra/telstra3.html +++ b/tests/unit/data/telstra/telstra3.html @@ -1,200 +1,200 @@ - - - - -Maintenance - Telstra - - - - - - - - -
- - - - -
- - - - - -
3D"Telstra"
- - - - - - - - - - - -
Emergency Mai= -ntenance Notification
Service Impacti= -ng
Emergency Mai= -ntenance has been scheduled that will impact your service.
-
- - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
To: Some Customer
Attention: some engineer ,some user
 
Email :@some.engineer@team.telstra.com,some.user@somecustomer.com
 
Change Reference: PN123456
 
Maintenance Window: 17-Nov-2021 13:29:00(UTC) to = -17-Nov-2021 19:30:00(UTC)
Expected Impact: 1 hour outage during the chan= -ge window
 
Maintenance Details:
 
Telstra Emergency Maintenance Activity - 2345678= -
 
Telstra will perform an emergency maintenance ac= -tivity for Optic Fibre relocation/repair work - Australia
 
Service(s) Impacted:SNG SYD EPL 9876543
 
Click here If you have any que= -stions, comments or concerns regarding this maintenance activity or telepho= -ne Global 800: +800 8448 8888* or Direct: +852 3192 7420
 
Click here for immediate infor= -mation on planned maintenance or viewing your historical planned maintenanc= -e tickets details via our Telstra Connect Portal using your email ID as log= -in.
 
- Click here to email us about a= -ny updates to your contact details or requesting access to Telstra Connect = -Portal. -
-
- -
- - + + + + +Maintenance - Telstra + + + + + + + + +
+ + + + +
+ + + + + +
3D"Telstra"
+ + + + + + + + + + + +
Emergency Mai= +ntenance Notification
Service Impacti= +ng
Emergency Mai= +ntenance has been scheduled that will impact your service.
+
+ + + + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
To: Some Customer
Attention: some engineer ,some user
 
Email :@some.engineer@team.telstra.com,some.user@somecustomer.com
 
Change Reference: PN123456
 
Maintenance Window: 17-Nov-2021 13:29:00(UTC) to = +17-Nov-2021 19:30:00(UTC)
Expected Impact: 1 hour outage during the chan= +ge window
 
Maintenance Details:
 
Telstra Emergency Maintenance Activity - 2345678= +
 
Telstra will perform an emergency maintenance ac= +tivity for Optic Fibre relocation/repair work - Australia
 
Service(s) Impacted:SNG SYD EPL 9876543
 
Click here If you have any que= +stions, comments or concerns regarding this maintenance activity or telepho= +ne Global 800: +800 8448 8888* or Direct: +852 3192 7420
 
Click here for immediate infor= +mation on planned maintenance or viewing your historical planned maintenanc= +e tickets details via our Telstra Connect Portal using your email ID as log= +in.
 
+ Click here to email us about a= +ny updates to your contact details or requesting access to Telstra Connect = +Portal. +
+
+ +
+ + diff --git a/tests/unit/data/telstra/telstra4.html b/tests/unit/data/telstra/telstra4.html index 4079dd62..259ea814 100644 --- a/tests/unit/data/telstra/telstra4.html +++ b/tests/unit/data/telstra/telstra4.html @@ -1,206 +1,206 @@ - - - - -Maintenance - Telstra - - - - - - - - -
- - - - -
- - - - - -
3D"Telstra"
- - - - - - - - - - - -
Planned Maint= -enance Completion
Service Impacti= -ng
Planned Maint= -enance has been completed - Successful
-
- - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
To: Some Customer
Attention: some engineer ,some user
 
Email :@some.engineer@team.telstra.com,some.user@somecustomer.com
 
Change Reference: PN234567
 
Maintenance Window: 13-Nov-2021 15:30:00(UTC) to = -13-Nov-2021 23:00:00(UTC)
Expected Impact: 7-10 min outage within the ch= -ange window
 
Maintenance Details:
 
Taiwan Mobile Essential Maintenance Notification= - 9876543
 
Taiwan Mobile to carry out network maintenance o= -perations ro improve network performance and stability. Impact Time: 2021/1= -1/14 02:00 ~ 2021/11/14 02:30 Local
 
Service(s) Impacted:SNG TPE EPL 9999999
 
Click here If you have any que= -stions, comments or concerns regarding this maintenance activity or telepho= -ne Global 800: +800 8448 8888* or Direct: +852 3192 7420
 
Click here for immediate infor= -mation on planned maintenance or viewing your historical planned maintenanc= -e tickets details via our Telstra Connect Portal using your email ID as log= -in.
 
- Click here to email us about a= -ny updates to your contact details or requesting access to Telstra Connect = -Portal. -
-
- -
- - + + + + +Maintenance - Telstra + + + + + + + + +
+ + + + +
+ + + + + +
3D"Telstra"
+ + + + + + + + + + + +
Planned Maint= +enance Completion
Service Impacti= +ng
Planned Maint= +enance has been completed - Successful
+
+ + + + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
To: Some Customer
Attention: some engineer ,some user
 
Email :@some.engineer@team.telstra.com,some.user@somecustomer.com
 
Change Reference: PN234567
 
Maintenance Window: 13-Nov-2021 15:30:00(UTC) to = +13-Nov-2021 23:00:00(UTC)
Expected Impact: 7-10 min outage within the ch= +ange window
 
Maintenance Details:
 
Taiwan Mobile Essential Maintenance Notification= + 9876543
 
Taiwan Mobile to carry out network maintenance o= +perations ro improve network performance and stability. Impact Time: 2021/1= +1/14 02:00 ~ 2021/11/14 02:30 Local
 
Service(s) Impacted:SNG TPE EPL 9999999
 
Click here If you have any que= +stions, comments or concerns regarding this maintenance activity or telepho= +ne Global 800: +800 8448 8888* or Direct: +852 3192 7420
 
Click here for immediate infor= +mation on planned maintenance or viewing your historical planned maintenanc= +e tickets details via our Telstra Connect Portal using your email ID as log= +in.
 
+ Click here to email us about a= +ny updates to your contact details or requesting access to Telstra Connect = +Portal. +
+
+ +
+ + diff --git a/tests/unit/data/telstra/telstra5.html b/tests/unit/data/telstra/telstra5.html index 31e579b2..6d7eafc3 100644 --- a/tests/unit/data/telstra/telstra5.html +++ b/tests/unit/data/telstra/telstra5.html @@ -1,216 +1,216 @@ - - - - -Maintenance - Telstra - - - - - - - - -
- - - - -
- - - - - -
3D"Telstra"
- - - - - - - - - - - -
Planned Maint= -enance Amendment
Service Impacti= -ng
Planned Maint= -enance has been amended that will impact your service. -
Telstra wishes to apologise for the short notice and an= -y inconvenience caused.
-
- - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
To: Some Customer
Attention: some engineer ,some user
 
Email :@some.engineer.2@team.telstra.com,some.user@somecustomer.com
 
Change Reference: PN234567
 
Maintenance Window: 16-Nov-2021 02:00:00(UTC) to = -23-Nov-2021 12:00:00(UTC)
Expected Impact: Loss of service for the full = -duration of the change window
 
Maintenance Details:
 
Telstra EAC2 Segment 2B1 (Taiwan - Philippines) = -Submarine Cable Work
 
This is to notify that Telstra will be conductin= -g Repeater R23 Replacement Work on EAC2 Segment 2B1 (Taiwan - Philippines) = -due to 1x Single Fiber Pair #4 Fault OPS19. Unprotected circuits will be do= -wn throughout the repair window. Schedule of this work may change as they a= -re dependent on many outside factors (weather / rough sea / permits/ hostil= -e waters etc) which are beyond Telstra control. Our sincere apologies for a= -ny inconvenience caused. -** Update 1: Repair will be start on 21 Oct due to delay on Cableship arriv= -al to the fault ground ** -** Update 2: Repair will be start on 23 Oct, delay due to stevedore issues = -(Unloading and Loading works) ** -** Update 3: Repair was delayed to 6 Nov (tentative) as priority has been g= -iven to EAC Segment D Fault Repair ** -** Update 4: Repair has been moved due to high priority on repairs for Serv= -ice Impacting Cable Faults on EAC Segment C and D ** -** Update 5: Repair has been moved from 16 Nov to the new date stated ** -** Update 6: Repair schedule has been amended as 16 Nov to 23 Nov**
 
Service(s) Impacted:MNL TPE EPL 9999999
 
Click here If you have any que= -stions, comments or concerns regarding this maintenance activity or telepho= -ne Global 800: +800 8448 8888* or Direct: +852 3192 7420
 
Click here for immediate infor= -mation on planned maintenance or viewing your historical planned maintenanc= -e tickets details via our Telstra Connect Portal using your email ID as log= -in.
 
- Click here to email us about a= -ny updates to your contact details or requesting access to Telstra Connect = -Portal. -
-
- -
- - + + + + +Maintenance - Telstra + + + + + + + + +
+ + + + +
+ + + + + +
3D"Telstra"
+ + + + + + + + + + + +
Planned Maint= +enance Amendment
Service Impacti= +ng
Planned Maint= +enance has been amended that will impact your service. +
Telstra wishes to apologise for the short notice and an= +y inconvenience caused.
+
+ + + + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
To: Some Customer
Attention: some engineer ,some user
 
Email :@some.engineer.2@team.telstra.com,some.user@somecustomer.com
 
Change Reference: PN234567
 
Maintenance Window: 16-Nov-2021 02:00:00(UTC) to = +23-Nov-2021 12:00:00(UTC)
Expected Impact: Loss of service for the full = +duration of the change window
 
Maintenance Details:
 
Telstra EAC2 Segment 2B1 (Taiwan - Philippines) = +Submarine Cable Work
 
This is to notify that Telstra will be conductin= +g Repeater R23 Replacement Work on EAC2 Segment 2B1 (Taiwan - Philippines) = +due to 1x Single Fiber Pair #4 Fault OPS19. Unprotected circuits will be do= +wn throughout the repair window. Schedule of this work may change as they a= +re dependent on many outside factors (weather / rough sea / permits/ hostil= +e waters etc) which are beyond Telstra control. Our sincere apologies for a= +ny inconvenience caused. +** Update 1: Repair will be start on 21 Oct due to delay on Cableship arriv= +al to the fault ground ** +** Update 2: Repair will be start on 23 Oct, delay due to stevedore issues = +(Unloading and Loading works) ** +** Update 3: Repair was delayed to 6 Nov (tentative) as priority has been g= +iven to EAC Segment D Fault Repair ** +** Update 4: Repair has been moved due to high priority on repairs for Serv= +ice Impacting Cable Faults on EAC Segment C and D ** +** Update 5: Repair has been moved from 16 Nov to the new date stated ** +** Update 6: Repair schedule has been amended as 16 Nov to 23 Nov**
 
Service(s) Impacted:MNL TPE EPL 9999999
 
Click here If you have any que= +stions, comments or concerns regarding this maintenance activity or telepho= +ne Global 800: +800 8448 8888* or Direct: +852 3192 7420
 
Click here for immediate infor= +mation on planned maintenance or viewing your historical planned maintenanc= +e tickets details via our Telstra Connect Portal using your email ID as log= +in.
 
+ Click here to email us about a= +ny updates to your contact details or requesting access to Telstra Connect = +Portal. +
+
+ +
+ + diff --git a/tests/unit/data/telstra/telstra5_result.json b/tests/unit/data/telstra/telstra5_result.json index 5cd473aa..a7a14a02 100644 --- a/tests/unit/data/telstra/telstra5_result.json +++ b/tests/unit/data/telstra/telstra5_result.json @@ -11,7 +11,6 @@ "maintenance_id": "PN234567", "start": 1637028000, "status": "RE-SCHEDULED", - "summary": "Telstra EAC2 Segment 2B1 (Taiwan - Philippines) Submarine Cable Work. This is to notify that Telstra will be conducting Repeater R23 Replacement Work on EAC2 Segment 2B1 (Taiwan - Philippines) due to 1x Single Fiber Pair #4 Fault OPS19. Unprotected circuits will be down throughout the repair window. Schedule of this work may change as they are dependent on many outside factors (weather / rough sea / permits/ hostile waters etc) which are beyond Telstra control. Our sincere apologies for any inconvenience caused.\r\n** Update 1: Repair will be start on 21 Oct due to delay on Cableship arrival to the fault ground **\r\n** Update 2: Repair will be start on 23 Oct, delay due to stevedore issues (Unloading and Loading works) **\r\n** Update 3: Repair was delayed to 6 Nov (tentative) as priority has been given to EAC Segment D Fault Repair **\r\n** Update 4: Repair has been moved due to high priority on repairs for Service Impacting Cable Faults on EAC Segment C and D **\r\n** Update 5: Repair has been moved from 16 Nov to the new date stated **\r\n** Update 6: Repair schedule has been amended as 16 Nov to 23 Nov**" + "summary": "Telstra EAC2 Segment 2B1 (Taiwan - Philippines) Submarine Cable Work. This is to notify that Telstra will be conducting Repeater R23 Replacement Work on EAC2 Segment 2B1 (Taiwan - Philippines) due to 1x Single Fiber Pair #4 Fault OPS19. Unprotected circuits will be down throughout the repair window. Schedule of this work may change as they are dependent on many outside factors (weather / rough sea / permits/ hostile waters etc) which are beyond Telstra control. Our sincere apologies for any inconvenience caused.\n** Update 1: Repair will be start on 21 Oct due to delay on Cableship arrival to the fault ground **\n** Update 2: Repair will be start on 23 Oct, delay due to stevedore issues (Unloading and Loading works) **\n** Update 3: Repair was delayed to 6 Nov (tentative) as priority has been given to EAC Segment D Fault Repair **\n** Update 4: Repair has been moved due to high priority on repairs for Service Impacting Cable Faults on EAC Segment C and D **\n** Update 5: Repair has been moved from 16 Nov to the new date stated **\n** Update 6: Repair schedule has been amended as 16 Nov to 23 Nov**" } ] - diff --git a/tests/unit/data/telstra/telstra6.html b/tests/unit/data/telstra/telstra6.html index f7c3ae7f..b49d5a8e 100644 --- a/tests/unit/data/telstra/telstra6.html +++ b/tests/unit/data/telstra/telstra6.html @@ -1,201 +1,201 @@ - - - - -Maintenance - Telstra - - - - - - - - -
- - - - -
- - - - - -
3D"Telstra"
- - - - - - - - - - - -
Planned Maint= -enance Withdrawn
Service Impacti= -ng
Planned Maint= -enance has been withdrawn - .
-
- - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
To: Some Customer
Attention: some engineer ,some user
 
Email :@some.engineer@team.telstra.com,some.user@somecustomer.com
 
Change Reference: PN234567
 
Maintenance Window: 10-Nov-2021 22:00:00(UTC) to = -10-Nov-2021 23:00:00(UTC)
Expected Impact: 20 min outage within the chan= -ge window
 
Maintenance Details:
 
DACOM Crossing Essential Maintenance in EAC Kore= -a Backhaul (Secondary route) - 10/11/2021
 
Osan / Change the fiber jumper to improve the sp= -an loss at EOSAOLA-0101 =E2=80=93 Osan, Gyeonggi -** Cancellation : Maintenance postponed until further notice. New schedule = -to be notified under a new ref ticket **
 
Service(s) Impacted:SEL TOK EPL 90000000
 
Click here If you have any que= -stions, comments or concerns regarding this maintenance activity or telepho= -ne Global 800: +800 8448 8888* or Direct: +852 3192 7420
 
Click here for immediate infor= -mation on planned maintenance or viewing your historical planned maintenanc= -e tickets details via our Telstra Connect Portal using your email ID as log= -in.
 
- Click here to email us about a= -ny updates to your contact details or requesting access to Telstra Connect = -Portal. -
-
- -
- - + + + + +Maintenance - Telstra + + + + + + + + +
+ + + + +
+ + + + + +
3D"Telstra"
+ + + + + + + + + + + +
Planned Maint= +enance Withdrawn
Service Impacti= +ng
Planned Maint= +enance has been withdrawn - .
+
+ + + + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
To: Some Customer
Attention: some engineer ,some user
 
Email :@some.engineer@team.telstra.com,some.user@somecustomer.com
 
Change Reference: PN234567
 
Maintenance Window: 10-Nov-2021 22:00:00(UTC) to = +10-Nov-2021 23:00:00(UTC)
Expected Impact: 20 min outage within the chan= +ge window
 
Maintenance Details:
 
DACOM Crossing Essential Maintenance in EAC Kore= +a Backhaul (Secondary route) - 10/11/2021
 
Osan / Change the fiber jumper to improve the sp= +an loss at EOSAOLA-0101 =E2=80=93 Osan, Gyeonggi +** Cancellation : Maintenance postponed until further notice. New schedule = +to be notified under a new ref ticket **
 
Service(s) Impacted:SEL TOK EPL 90000000
 
Click here If you have any que= +stions, comments or concerns regarding this maintenance activity or telepho= +ne Global 800: +800 8448 8888* or Direct: +852 3192 7420
 
Click here for immediate infor= +mation on planned maintenance or viewing your historical planned maintenanc= +e tickets details via our Telstra Connect Portal using your email ID as log= +in.
 
+ Click here to email us about a= +ny updates to your contact details or requesting access to Telstra Connect = +Portal. +
+
+ +
+ + diff --git a/tests/unit/data/telstra/telstra6_result.json b/tests/unit/data/telstra/telstra6_result.json index 20a6448b..c9f7d522 100644 --- a/tests/unit/data/telstra/telstra6_result.json +++ b/tests/unit/data/telstra/telstra6_result.json @@ -11,6 +11,6 @@ "maintenance_id": "PN234567", "start": 1636581600, "status": "CANCELLED", - "summary": "DACOM Crossing Essential Maintenance in EAC Korea Backhaul (Secondary route) - 10/11/2021. Osan / Change the fiber jumper to improve the span loss at EOSAOLA-0101 – Osan, Gyeonggi\r\n** Cancellation : Maintenance postponed until further notice. New schedule to be notified under a new ref ticket **" + "summary": "DACOM Crossing Essential Maintenance in EAC Korea Backhaul (Secondary route) - 10/11/2021. Osan / Change the fiber jumper to improve the span loss at EOSAOLA-0101 – Osan, Gyeonggi\n** Cancellation : Maintenance postponed until further notice. New schedule to be notified under a new ref ticket **" } ] diff --git a/tests/unit/data/telstra/telstra7.html b/tests/unit/data/telstra/telstra7.html index cfb0bf55..9f96ca46 100644 --- a/tests/unit/data/telstra/telstra7.html +++ b/tests/unit/data/telstra/telstra7.html @@ -1,207 +1,207 @@ - - - - -Maintenance - Telstra - - - - - - - - -
- - - - -
- - - - - -
3D"Telstra"
- - - - - - - - - - - -
Planned Maint= -enance Cancellation
Service Impacti= -ng
Planned Maint= -enance has been cancelled - Please be advised this work was cancelled due t= -o an equipment issue the prevented the work from being completed .
-
- - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
To: Customer Name
Attention: jhamie villaroman ,amir,jason,chris,nicole ho,donna tu= -rner,rd notices,noc
 
Email :@jhamie.villaroman.2@team.telstra.com,amir@datamob.it,jason@datamob.it,= -chris@datamob.it,nicole.ho@team.telstra.com,donna.turner@team.telstra.com,r= -d-notices@example.com,noc@example.com
 
Change Reference: PN123456
 
Maintenance Window: 13-Dec-2021 12:00:00(UTC) to = -13-Dec-2021 13:29:00(UTC)
Expected Impact: 1 hour 29 minutes outage with= -in the change window
 
Maintenance Details:
 
Telstra Corporation Essential Change Notificatio= -n - CMART 3513026
 
Telstra Corporation will implement maintenance w= -ork in Australia due to planned hardware replacement work. -Your service(s) may experience a break to service during the change window. -***At this current time, your link will be down during this maintenance and= - current cable fault AAG Segment 1i (Hongkong -BU4). Please contact our ser= -vice desk [gsd@team.telstra.com] if necessary***
 
Service(s) Impacted:SNG SYD EPL 9875643
 
Click here If you have any que= -stions, comments or concerns regarding this maintenance activity or telepho= -ne Global 800: +800 8448 8888* or Direct: +852 3192 7420
 
Click here for immediate infor= -mation on planned maintenance or viewing your historical planned maintenanc= -e tickets details via our Telstra Connect Portal using your email ID as log= -in.
 
- Click here to email us about a= -ny updates to your contact details or requesting access to Telstra Connect = -Portal. -
-
- -
- - + + + + +Maintenance - Telstra + + + + + + + + +
+ + + + +
+ + + + + +
3D"Telstra"
+ + + + + + + + + + + +
Planned Maint= +enance Cancellation
Service Impacti= +ng
Planned Maint= +enance has been cancelled - Please be advised this work was cancelled due t= +o an equipment issue the prevented the work from being completed .
+
+ + + + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
To: Customer Name
Attention: jhamie villaroman ,amir,jason,chris,nicole ho,donna tu= +rner,rd notices,noc
 
Email :@jhamie.villaroman.2@team.telstra.com,amir@datamob.it,jason@datamob.it,= +chris@datamob.it,nicole.ho@team.telstra.com,donna.turner@team.telstra.com,r= +d-notices@example.com,noc@example.com
 
Change Reference: PN123456
 
Maintenance Window: 13-Dec-2021 12:00:00(UTC) to = +13-Dec-2021 13:29:00(UTC)
Expected Impact: 1 hour 29 minutes outage with= +in the change window
 
Maintenance Details:
 
Telstra Corporation Essential Change Notificatio= +n - CMART 3513026
 
Telstra Corporation will implement maintenance w= +ork in Australia due to planned hardware replacement work. +Your service(s) may experience a break to service during the change window. +***At this current time, your link will be down during this maintenance and= + current cable fault AAG Segment 1i (Hongkong -BU4). Please contact our ser= +vice desk [gsd@team.telstra.com] if necessary***
 
Service(s) Impacted:SNG SYD EPL 9875643
 
Click here If you have any que= +stions, comments or concerns regarding this maintenance activity or telepho= +ne Global 800: +800 8448 8888* or Direct: +852 3192 7420
 
Click here for immediate infor= +mation on planned maintenance or viewing your historical planned maintenanc= +e tickets details via our Telstra Connect Portal using your email ID as log= +in.
 
+ Click here to email us about a= +ny updates to your contact details or requesting access to Telstra Connect = +Portal. +
+
+ +
+ + diff --git a/tests/unit/data/telstra/telstra7_result.json b/tests/unit/data/telstra/telstra7_result.json index 2c7ceea6..bc3eff64 100644 --- a/tests/unit/data/telstra/telstra7_result.json +++ b/tests/unit/data/telstra/telstra7_result.json @@ -11,6 +11,6 @@ "maintenance_id": "PN123456", "start": 1639396800, "status": "CANCELLED", - "summary": "Telstra Corporation Essential Change Notification - CMART 3513026. Telstra Corporation will implement maintenance work in Australia due to planned hardware replacement work.\r\nYour service(s) may experience a break to service during the change window.\r\n***At this current time, your link will be down during this maintenance and current cable fault AAG Segment 1i (Hongkong -BU4). Please contact our service desk [gsd@team.telstra.com] if necessary***" + "summary": "Telstra Corporation Essential Change Notification - CMART 3513026. Telstra Corporation will implement maintenance work in Australia due to planned hardware replacement work.\nYour service(s) may experience a break to service during the change window.\n***At this current time, your link will be down during this maintenance and current cable fault AAG Segment 1i (Hongkong -BU4). Please contact our service desk [gsd@team.telstra.com] if necessary***" } ] diff --git a/tests/unit/data/verizon/verizon2.html b/tests/unit/data/verizon/verizon2.html index 80b5a146..b70adf4a 100644 --- a/tests/unit/data/verizon/verizon2.html +++ b/tests/unit/data/verizon/verizon2.html @@ -1,5 +1,5 @@ -

- [ EXTERNAL ]


ENGLISH

-

logo

Verizon Maintenance Notification

Dear Verizon Customer,

I’d like to take this opportunity to thank you for being a Verizon Customer, and to update you on maintenance work that will be carried out on the Verizon network. Verizon will be performing maintenance activities, utilizing proven methods, in a manner to ensure the best performance for your connection. The maintenance window is from Aug 15 2021 06:00 BST - Aug 15 2021 16:00 BST , however your expected circuit downtime within this window to be 5 Hour(s). Below you will find more detailed information as it relates to the impact to your environment.

If you have questions regarding this maintenance event, please contact Verizon’s
Global Event Management Center at email GEMC@VERIZON.COM.


I appreciate your cooperation and understanding in this matter. Verizon’s goal is to provide you with exceptional service every day, in every interaction. Thank you once again for your business, and your partnership.


Regards,
Kent Kildow
Director of Business Continuity & Event Management

NOTE: If your circuit remains down after the maintenance window has passed, please follow your defined Verizon Repair Center process for investigation.

Customer Contact ID:

12345678

Maintenance Date/Time (Local):

Aug 15 2021 06:00 BST - Aug 15 2021 16:00 BST

Maintenance Date/Time (GMT):

Aug 15 2021 05:00 GMT - Aug 15 2021 15:00 GMT

Maintenance Location:

N/A

Description of Maintenance:

We will be performing cable maintenance to relocate a damaged fiber optic section.

Planned Circuit Downtime:

5 Hour(s)

Verizon MASTARS Request number:

987654321-1

Verizon MASTARS Event id:

31987654321-1

Circuits Affected:

-
Company NameCircuit IDA EndZ EndDNS Short NameExpected Outage Window

ACME - EMEAC123456E456789LND49E01.8.0.1_RPMacme-1234567:00 BST - 13:00 BST

ACME - EMEAC234567E567891LND49E01.8.0.1_RPMacme-2345677:00 BST - 13:00 BST

ACME - EMEAC345678E678912LND49E01.8.0.1_RPMacme-3456787:00 BST - 13:00 BST

ACME - EMEAE456789E456789LND49E01.8.0.1_RPMacme-4567897:00 BST - 13:00 BST

------------------------------------------------------------------------------------------------------------

+

+ [ EXTERNAL ]


ENGLISH

+

logo

Verizon Maintenance Notification

Dear Verizon Customer,

I’d like to take this opportunity to thank you for being a Verizon Customer, and to update you on maintenance work that will be carried out on the Verizon network. Verizon will be performing maintenance activities, utilizing proven methods, in a manner to ensure the best performance for your connection. The maintenance window is from Aug 15 2021 06:00 BST - Aug 15 2021 16:00 BST , however your expected circuit downtime within this window to be 5 Hour(s). Below you will find more detailed information as it relates to the impact to your environment.

If you have questions regarding this maintenance event, please contact Verizon’s
Global Event Management Center at email GEMC@VERIZON.COM.


I appreciate your cooperation and understanding in this matter. Verizon’s goal is to provide you with exceptional service every day, in every interaction. Thank you once again for your business, and your partnership.


Regards,
Kent Kildow
Director of Business Continuity & Event Management

NOTE: If your circuit remains down after the maintenance window has passed, please follow your defined Verizon Repair Center process for investigation.

Customer Contact ID:

12345678

Maintenance Date/Time (Local):

Aug 15 2021 06:00 BST - Aug 15 2021 16:00 BST

Maintenance Date/Time (GMT):

Aug 15 2021 05:00 GMT - Aug 15 2021 15:00 GMT

Maintenance Location:

N/A

Description of Maintenance:

We will be performing cable maintenance to relocate a damaged fiber optic section.

Planned Circuit Downtime:

5 Hour(s)

Verizon MASTARS Request number:

987654321-1

Verizon MASTARS Event id:

31987654321-1

Circuits Affected:

+
Company NameCircuit IDA EndZ EndDNS Short NameExpected Outage Window

ACME - EMEAC123456E456789LND49E192.0.2.1_RPMacme-1234567:00 BST - 13:00 BST

ACME - EMEAC234567E567891LND49E192.0.2.1_RPMacme-2345677:00 BST - 13:00 BST

ACME - EMEAC345678E678912LND49E192.0.2.1_RPMacme-3456787:00 BST - 13:00 BST

ACME - EMEAE456789E456789LND49E192.0.2.1_RPMacme-4567897:00 BST - 13:00 BST

------------------------------------------------------------------------------------------------------------

In case your service remains down after scheduled maintenance, please call to our Service Desk.

Country

Freephone Number

Direct Dial

Calls from Austria, Belgium, Denmark, France, Finland, Germany, Greece, Hungary, Ireland, Italy, Luxembourg, Netherlands, Norway, Portugal, Spain, Sweden, Switzerland, United Kingdom

00800 1103 1121

+44 118 905 4017

Calls from USA

+1 866 567 2507

+44 118 905 4017

Any other countries

+44 118 905 4017

This information can also be found in the customer facing EUROPEAN TECHNICAL SERVICE DESK TELEPHONE NUMBERS USER GUIDE:

http://www.verizonenterprise.com/resources/european_service_desk_phone_numbers_user_guide_en_xg.pdf

The below links provide essential information to manage your services for a variety of topics.

View or Create your trouble ticket online: https://enterprisecenter.verizon.com

European Technical Service User Guide: http://www.verizonenterprise.com/support/emea-service-assurance-user-guides/

Your Country Support pages: http://www.verizonbusiness.com/support


\ No newline at end of file diff --git a/tests/unit/data/zayo/zayo2.html b/tests/unit/data/zayo/zayo2.html index 064786db..3922d7f8 100644 --- a/tests/unit/data/zayo/zayo2.html +++ b/tests/unit/data/zayo/zayo2.html @@ -1,252 +1,252 @@ -** Please note Cancellation of M= -aintenance Notification ** - -

Zayo Maintenance Notification -

This email serves as official notification that Zayo and/or one of = -its providers has cancelled the maintenance event listed below. -
- -

Maintenance Ticket #: TTN-0001234567 - -

Urgency: Planned - -

Date Notice Sent: 26-Feb-2021 - -

Customer: Generic Account, Inc. - - - -

Maintenance Window

1st Activity Date <= -/b>
27-Feb-2021 00:01 to 27-Feb-2021 05:00 ( Central )=20 -
27-Feb-2021 06:00 to 27-Feb-2021 11:00 ( GMT )=20 - -

Location of Maintenance: 905 E 5th St, Newton, IA - -

Reason for Maintenance: Zayo will implement network mainten= -ance to enhance service reliability. - -

Expected Impact: Service Affecting Activity: Any Maintenan= -ce Activity directly impacting the service(s) of customers. Service(s) are = -expected to go down as a result of these activities. - -

Circuit(s) Affected:
- - - - - - - - - - - - - - - - -
Circuit IdExpected ImpactA Location CLLIZ Location CLLILegacy Circuit Id
/XYZA/123456/ /ZYO /Hard Down - up to 1 hourABCDEFGHIJKLMNOP
- - -

Please contact the Zayo Maintenance Team with any questions regardi= -ng this maintenance event. Please reference the Maintenance Ticket number w= -hen calling. - -

Maintenance Team Contacts:

-
- -

Zayo Global Change Management Team/= -=C3=89quipe de Gestion d= -u Changement Global Zayo

- -

Zayo | Our Fiber Fuels Global Inn= -ovation

- -

Toll free/No s= -ans frais: 1.866.236.2824

- -

United Kingdom Toll Free/No sans -frais Royaume-Uni:<= -/i> 0800.169.1646

- -

Email/Cou= -rriel: mr@zayo.com<= -/u> 

- -

Website/Site Web: https://www.zayo.com

- -

Purpose | Network Map Escalation List LinkedIn <= -/span>Twitter Tranzact&n= -bsp; - -

&nbs= -p;

- -

This communication is the property of Zayo and may contain confidential= - or privileged information. If you have received this communication in erro= -r, please promptly notify the sender by reply e-mail and destroy all copies= - of the communication and any attachments.

- -

 

- -
- -

+** Please note Cancellation of M= +aintenance Notification ** + +

Zayo Maintenance Notification +

This email serves as official notification that Zayo and/or one of = +its providers has cancelled the maintenance event listed below. +
+ +

Maintenance Ticket #: TTN-0001234567 + +

Urgency: Planned + +

Date Notice Sent: 26-Feb-2021 + +

Customer: Generic Account, Inc. + + + +

Maintenance Window

1st Activity Date <= +/b>
27-Feb-2021 00:01 to 27-Feb-2021 05:00 ( Central )=20 +
27-Feb-2021 06:00 to 27-Feb-2021 11:00 ( GMT )=20 + +

Location of Maintenance: 905 E 5th St, Newton, IA + +

Reason for Maintenance: Zayo will implement network mainten= +ance to enhance service reliability. + +

Expected Impact: Service Affecting Activity: Any Maintenan= +ce Activity directly impacting the service(s) of customers. Service(s) are = +expected to go down as a result of these activities. + +

Circuit(s) Affected:
+ + + + + + + + + + + + + + + + +
Circuit IdExpected ImpactA Location CLLIZ Location CLLILegacy Circuit Id
/XYZA/123456/ /ZYO /Hard Down - up to 1 hourABCDEFGHIJKLMNOP
+ + +

Please contact the Zayo Maintenance Team with any questions regardi= +ng this maintenance event. Please reference the Maintenance Ticket number w= +hen calling. + +

Maintenance Team Contacts:

+
+ +

Zayo Global Change Management Team/= +=C3=89quipe de Gestion d= +u Changement Global Zayo

+ +

Zayo | Our Fiber Fuels Global Inn= +ovation

+ +

Toll free/No s= +ans frais: 1.866.236.2824

+ +

United Kingdom Toll Free/No sans +frais Royaume-Uni:<= +/i> 0800.169.1646

+ +

Email/Cou= +rriel: mr@zayo.com<= +/u> 

+ +

Website/Site Web: https://www.zayo.com

+ +

Purpose | Network Map Escalation List LinkedIn <= +/span>Twitter Tranzact&n= +bsp; + +

&nbs= +p;

+ +

This communication is the property of Zayo and may contain confidential= + or privileged information. If you have received this communication in erro= +r, please promptly notify the sender by reply e-mail and destroy all copies= + of the communication and any attachments.

+ +

 

+ +
+ +

diff --git a/tests/unit/data/zayo/zayo3.eml b/tests/unit/data/zayo/zayo3.eml index a1ba601b..d3b3dd5e 100644 --- a/tests/unit/data/zayo/zayo3.eml +++ b/tests/unit/data/zayo/zayo3.eml @@ -1,35 +1,35 @@ -Received: from BN8PR20MB2803.namprd20.prod.outlook.com (2603:10b6:408:8b::18) +Received: from BN8PR20MB2803.namprd20.prod.outlook.com (2001:DB8::1) by BLAPR20MB4241.namprd20.prod.outlook.com with HTTPS; Mon, 11 Oct 2021 15:38:42 +0000 Received: from BN6PR1201CA0013.namprd12.prod.outlook.com - (2603:10b6:405:4c::23) by BN8PR20MB2803.namprd20.prod.outlook.com - (2603:10b6:408:8b::18) with Microsoft SMTP Server (version=TLS1_2, + (2001:DB8::1) by BN8PR20MB2803.namprd20.prod.outlook.com + (2001:DB8::1) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.4587.25; Mon, 11 Oct 2021 15:38:41 +0000 Received: from BN8NAM12FT041.eop-nam12.prod.protection.outlook.com - (2603:10b6:405:4c:cafe::af) by BN6PR1201CA0013.outlook.office365.com - (2603:10b6:405:4c::23) with Microsoft SMTP Server (version=TLS1_2, + (2001:DB8::1) by BN6PR1201CA0013.outlook.office365.com + (2001:DB8::1) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.4587.25 via Frontend Transport; Mon, 11 Oct 2021 15:38:41 +0000 -Authentication-Results: spf=softfail (sender IP is 148.163.150.74) +Authentication-Results: spf=softfail (sender IP is 192.0.2.1) smtp.mailfrom=xffiuvac7hsg0.6-79qkeai.na152.bnc.salesforce.com; mlb.com; dkim=fail (body hash did not verify) header.d=zayo.com;mlb.com; dmarc=fail action=none header.from=zayo.com;compauth=pass reason=116 Received-SPF: SoftFail (protection.outlook.com: domain of transitioning xffiuvac7hsg0.6-79qkeai.na152.bnc.salesforce.com discourages use of - 148.163.150.74 as permitted sender) -Received: from mx0a-0029e101.pphosted.com (148.163.150.74) by - BN8NAM12FT041.mail.protection.outlook.com (10.13.182.172) with Microsoft SMTP + 192.0.2.1 as permitted sender) +Received: from mx0a-0029e101.pphosted.com (192.0.2.1) by + BN8NAM12FT041.mail.protection.outlook.com (192.0.2.1) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.4608.4 via Frontend Transport; Mon, 11 Oct 2021 15:38:41 +0000 -Received: from pps.filterd (m0279330.ppops.net [127.0.0.1]) - by mx0a-0029e101.pphosted.com (8.16.1.2/8.16.1.2) with SMTP id 19BBCGkn006547; +Received: from pps.filterd (m0279330.ppops.net [192.0.2.1]) + by mx0a-0029e101.pphosted.com (192.0.2.1/192.0.2.1) with SMTP id 19BBCGkn006547; Mon, 11 Oct 2021 11:38:39 -0400 Authentication-Results-Original: ppops.net; spf=pass smtp.mailfrom=mr=zayo.com__0-anlic2nf6o8z44@xffiuvac7hsg0.6-79qkeai.na152.bnc.salesforce.com; dkim=pass header.s=sf112018 header.d=zayo.com; dmarc=pass header.from=zayo.com -Received: from smtp09-ia4-sp3.mta.salesforce.com (smtp09-ia4-sp3.mta.salesforce.com [13.110.74.200]) +Received: from smtp09-ia4-sp3.mta.salesforce.com (smtp09-ia4-sp3.mta.salesforce.com [192.0.2.1]) by mx0a-0029e101.pphosted.com with ESMTP id 3bmm6k0f5c-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Mon, 11 Oct 2021 11:38:38 -0400 @@ -39,9 +39,9 @@ DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zayo.com; s=sf112018; b=finuHCuQjqf8cJGe34Nua83alm2JwY6I3QQIzg0eQAdgahCDG7bVRLQfDn4sDghgV RvRsSknVomDeXSyVjmpxQ0OuYXMsmtoAKK+0TQjqmTPrbwwJKNt7IDrET0wg+5t4k9 DrZFjBhHorl6lkA4AAyM5Shzffl4aErzJ+lNqA20= -Received: from [10.180.203.122] ([10.180.203.122:55056] helo=na152-app2-27-ia4.ops.sfdc.net) +Received: from [192.0.2.1] ([192.0.2.1:55056] helo=na152-app2-27-ia4.ops.sfdc.net) by mx2-ia4-sp3.mta.salesforce.com (envelope-from ) - (ecelerity 4.2.38.62368 r(Core:release/4.2.38.0)) with ESMTPS (cipher=ECDHE-RSA-AES256-GCM-SHA384 + (ecelerity 192.0.2.1 r(Core:release/192.0.2.1)) with ESMTPS (cipher=ECDHE-RSA-AES256-GCM-SHA384 subject="/C=US/ST=California/L=San Francisco/O=salesforce.com, inc./OU=0:app;1:ia4;2:ia4-sp3;3:na152;4:prod/CN=na152-app2-27-ia4.ops.sfdc.net") id 63/69-62315-D7A54616; Mon, 11 Oct 2021 15:38:37 +0000 Date: Mon, 11 Oct 2021 15:38:36 +0000 (GMT) @@ -71,7 +71,7 @@ X-Proofpoint-ORIG-GUID: qd6tQ04RfcVzldtyuEueQzzN7JClcv3u X-Proofpoint-GUID: qd6tQ04RfcVzldtyuEueQzzN7JClcv3u MIME-Version: 1.0 X-Proofpoint-Virus-Version: vendor=baseguard - engine=ICAP:2.0.182.1,Aquarius:18.0.790,Hydra:6.0.425,FMLib:17.0.607.475 + engine=ICAP:192.0.2.1,Aquarius:18.0.790,Hydra:6.0.425,FMLib:17.0.607.475 definitions=2021-10-11_05,2021-10-11_01,2020-04-07_01 X-Proofpoint-Spam-Reason: safe Return-Path: @@ -96,7 +96,7 @@ X-MS-Exchange-Organization-SCL: -1 X-MS-Oob-TLC-OOBClassifiers: OLM:1091; X-Microsoft-Antispam: BCL:1; X-Forefront-Antispam-Report: - CIP:148.163.150.74;CTRY:US;LANG:en;SCL:-1;SRV:;IPV:CAL;SFV:NSPM;H:mx0a-0029e101.pphosted.com;PTR:mx0a-0029e101.pphosted.com;CAT:NONE;SFS:;DIR:INB; + CIP:192.0.2.1;CTRY:US;LANG:en;SCL:-1;SRV:;IPV:CAL;SFV:NSPM;H:mx0a-0029e101.pphosted.com;PTR:mx0a-0029e101.pphosted.com;CAT:NONE;SFS:;DIR:INB; X-Auto-Response-Suppress: DR, OOF, AutoReply X-MS-Exchange-CrossTenant-OriginalArrivalTime: 11 Oct 2021 15:38:41.1670 (UTC) diff --git a/tests/unit/data/zayo/zayo4.eml b/tests/unit/data/zayo/zayo4.eml index 12ee91ae..4f9b7131 100644 --- a/tests/unit/data/zayo/zayo4.eml +++ b/tests/unit/data/zayo/zayo4.eml @@ -1,588 +1,588 @@ -Delivered-To: nautobot.email@example.com -Received: by 2002:a05:7000:1f21:0:0:0:0 with SMTP id hs33csp621030mab; - Mon, 8 Nov 2021 13:35:30 -0800 (PST) -X-Received: by 2002:a67:fa93:: with SMTP id f19mr107693276vsq.48.1636407330058; - Mon, 08 Nov 2021 13:35:30 -0800 (PST) -ARC-Seal: i=3; a=rsa-sha256; t=1636407330; cv=pass; - d=google.com; s=arc-20160816; - b=fw/0uPrGPZLnkt84PRZnVIf2uoLAPLa+nPDXvfJvmnfS1kW0gioJpBLlVov9H8R2Yv - J7K4v8S0WJs+4/WMjRLUHXPLW4iswPJLLbRsEc9Qgk6OHVZdj5WVv22RP/YMvW+0Cgk5 - B2tvKJJpAvbZudHqu9gNYnSM0cgNZp+Src4F/dSekj+Dd4ffa1lPWHaf38ULUILbSYoA - 6LC0ZW15ecVdwxuahc+YIyMxrOEg0gvuplTl+j2tlYabzne+kzYT4FBj7fmp1DkeQy59 - ZJDFk489hASIfBIZJ48LjYQvcTzW2SQ0Eu8TVM5LZb7Fm2hO/t54j3IDFPRuCIB26La8 - Un4g== -ARC-Message-Signature: i=3; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=list-unsubscribe:list-archive:list-help:list-post:list-id - :mailing-list:precedence:mime-version:subject:message-id:to:from - :date:sender:dkim-signature; - bh=eOq9HtEyMsG/m4iJvBBDdBTruiqs1xPpoNrPX7yhVn4=; - b=n8vzf+8o2aUxInB5en002sgLipi5gx4aOTVt6X4Z+exnFm3C/FyPw4ketZKq+cXLJ8 - Zr+1jXk59UPcCpWztPn6VieddGc36nJnNS30F69P5pVBjmM2XxOhUrXe3RMFcGLuKuwk - VjJrZLujAvhfUTIDKUYEMQUaNS+S5gSwWFwrEvWR+4KUcSQlCt/Asew1na7gZacRHFya - qWZPwapeG3guo1YzvV8nj9utd1It+1NKJHVuzL4akldKETdxvVqxHLKams2Fxk0JFg20 - XEMeOuXTgd540kVt+hwrmLtlWbZC0SHdvx9ZpJ3PpUwFyuWrXJhf6o0RcwR5dElHwK6a - kZxA== -ARC-Authentication-Results: i=3; mx.google.com; - dkim=pass header.i=@example.com header.s=example header.b=Nj9D3SAm; - arc=pass (i=2 spf=pass spfdomain=pu28gb8wt30u.6-79qkeai.na152.bnc.salesforce.com dkim=pass dkdomain=zayo.com dmarc=pass fromdomain=zayo.com); - spf=pass (google.com: domain of maintenance-notices+bncbcyp3io6yejbbh5qu2gamgqe4nfhh4y@example.com designates 209.85.220.97 as permitted sender) smtp.mailfrom=maintenance-notices+bncBCYP3IO6YEJBBH5QU2GAMGQE4NFHH4Y@example.com; - dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=zayo.com -Return-Path: -Received: from mail-sor-f97.google.com (mail-sor-f97.google.com. [209.85.220.97]) - by mx.google.com with SMTPS id z15sor4875510uar.22.2021.11.08.13.35.29 - for - (Google Transport Security); - Mon, 08 Nov 2021 13:35:30 -0800 (PST) -Received-SPF: pass (google.com: domain of maintenance-notices+bncbcyp3io6yejbbh5qu2gamgqe4nfhh4y@example.com designates 209.85.220.97 as permitted sender) client-ip=209.85.220.97; -Authentication-Results: mx.google.com; - dkim=pass header.i=@example.com header.s=example header.b=Nj9D3SAm; - arc=pass (i=2 spf=pass spfdomain=pu28gb8wt30u.6-79qkeai.na152.bnc.salesforce.com dkim=pass dkdomain=zayo.com dmarc=pass fromdomain=zayo.com); - spf=pass (google.com: domain of maintenance-notices+bncbcyp3io6yejbbh5qu2gamgqe4nfhh4y@example.com designates 209.85.220.97 as permitted sender) smtp.mailfrom=maintenance-notices+bncBCYP3IO6YEJBBH5QU2GAMGQE4NFHH4Y@example.com; - dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=zayo.com -X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; - d=1e100.net; s=20210112; - h=x-gm-message-state:dkim-signature:sender:date:from:to:message-id - :subject:mime-version:x-original-sender - :x-original-authentication-results:precedence:mailing-list:list-id - :list-post:list-help:list-archive:list-unsubscribe; - bh=eOq9HtEyMsG/m4iJvBBDdBTruiqs1xPpoNrPX7yhVn4=; - b=s/8GrpdTD2FIC5SBe//NwuIB8jXwlINWSsn+uNSK8yFIZlErugP6ewbfHv1Chuivxk - ooMdTQ2BrSuIvZiDiowCHM1PirZSJRdShMOpx/zvL3hhI7u4gMZLyB6e0f18PYOIc3yp - Oxk2A0f10+zBl/uMBij0ANWmZz2AoxjCXlj+SWFZ/CJvmb9KUjU4twID7t9oDZXJ0pZw - oXyyV1sTmbTlY/1WxAVmnsh2d99I1jliMvn2Bi6cj+7t4RmSLmDspChx73LFW30Yel8v - VujDLea6+DCqL/aLvV+eoxLN0m4GjcjwySBfrn8AuuOUfAD2sGmjMP7RNBoe+8838je/ - rojg== -X-Gm-Message-State: AOAM533i3onjei8p7tWugD11b7O7DBGfVEX2zJnmg7nWEMgBdMeXNnqr - m96zkjWMqoK9PgCelRylEtggsVOU6bKm7vFP7izkPFOB5nuyu1ep -X-Google-Smtp-Source: ABdhPJw79C4wGoLDZsSmrOjx1l9ZXAgQPHgg3GqUuN425sGeyYn5WupZTCHI0Z1px0r+0oI6CC49ilVDJgQ1 -X-Received: by 2002:ab0:2983:: with SMTP id u3mr2935647uap.35.1636407329790; - Mon, 08 Nov 2021 13:35:29 -0800 (PST) -Return-Path: -Received: from netskope.com ([8.36.116.139]) - by smtp-relay.gmail.com with ESMTPS id h30sm2903430vko.5.2021.11.08.13.35.29 - for - (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); - Mon, 08 Nov 2021 13:35:29 -0800 (PST) -X-Relaying-Domain: example.com -Received: by mail-qt1-f198.google.com with SMTP id b21-20020a05622a021500b002acb563cd9bsf9476141qtx.22 - for ; Mon, 08 Nov 2021 13:35:28 -0800 (PST) -ARC-Seal: i=2; a=rsa-sha256; t=1636407327; cv=pass; - d=google.com; s=arc-20160816; - b=HMrC+7RVcrvZm4vYmIuP+8ONxrApwKWbdotkJhhFGJtkHxu5W5CIMMHEWNP82g4m/K - FXdYWP/OBOCtGrdFurRAewjgGHl7EKwbS11hW3Jh51vGw3nQvZqqf4BioSCzussjWVaK - U6Klfd5KJepTIeayiPopGFlQEYtpU0jeDGbq0umQcVjbTTqJvEGJRdmMMYaRINwnuDo8 - Q3eu9VzHo8g3dpFJV3qDP6F+SsZdhItUnDthMdZWLF6o0VHqJuI/9X0zPuqAXRlQEmnU - g2aFFZDQHvlF5ykp2BWB7SXq3SLtjNa2sQtfVE3H7FxQ2KAjbpQzTI6ppcUfcQcjq5a7 - u/SA== -ARC-Message-Signature: i=2; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=list-unsubscribe:list-archive:list-help:list-post:list-id - :mailing-list:precedence:mime-version:subject:message-id:to:from - :date:sender:dkim-signature; - bh=eOq9HtEyMsG/m4iJvBBDdBTruiqs1xPpoNrPX7yhVn4=; - b=Xi4lcF7BO/nVEpx+0P4N0WSiMk7nBuvEVKz3KnsHsGu1DRfE7p8yN15aQhHqoJ2slU - o9Pza+DfN0oVWgg9jVaPl9urx9DQ/R3hR2e8E+sHYPj1FivPm7PYrlQDHMHmT9PK/Hb/ - ouZJBMXhNhgo0MYITkzphWnU6GjnSGuLUn/hbWVPzRiJt9XQK64WwulQhcdl3WYYECQK - YwFLzroqS0yElzLOwNTUF51XyR9plYKElpae05Qlb77wJkCcRjXMRI3HcE75aDUI8sic - qrtpmw0CfOOIUEQJVnnT3rxLw0SAw9foWBEbH1mXeVQwwkriCEBp4H+qQYohlcBimIiB - +/Qg== -ARC-Authentication-Results: i=2; mx.google.com; - dkim=pass header.i=@zayo.com header.s=SF112018Alt header.b="WGGU1s/a"; - spf=pass (google.com: domain of mr=zayo.com__3xgl6y7t64eu7x36@pu28gb8wt30u.6-79qkeai.na152.bnc.salesforce.com designates 13.110.74.206 as permitted sender) smtp.mailfrom="mr=zayo.com__3xgl6y7t64eu7x36@pu28gb8wt30u.6-79qkeai.na152.bnc.salesforce.com"; - dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com -DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; - d=example.com; s=example; - h=sender:date:from:to:message-id:subject:mime-version - :x-original-sender:x-original-authentication-results:precedence - :mailing-list:list-id:list-post:list-help:list-archive - :list-unsubscribe; - bh=eOq9HtEyMsG/m4iJvBBDdBTruiqs1xPpoNrPX7yhVn4=; - b=Nj9D3SAmJ2wRnLQzdNbtePYHKshRl5h1UYXbhPHjZa7onvTuXpyCnjsf5QkF4fBlqP - Po2v5SDGgDXFqgy3pzfFabDnX93YpocM46cjBtR8U17TiyAHXQz68JaBSkvfSjX3G4Nm - Se4/iruc+MkNdnQnxmGsPXuQHnD+tIb8vPKsY= -Sender: maintenance-notices@example.com -X-Received: by 2002:a05:620a:754:: with SMTP id i20mr1896425qki.312.1636407327762; - Mon, 08 Nov 2021 13:35:27 -0800 (PST) -X-Received: by 2002:a05:620a:754:: with SMTP id i20mr1896410qki.312.1636407327587; - Mon, 08 Nov 2021 13:35:27 -0800 (PST) -X-BeenThere: maintenance-notices@example.com -Received: by 2002:a37:444c:: with SMTP id r73ls9440208qka.10.gmail; Mon, 08 - Nov 2021 13:35:27 -0800 (PST) -X-Received: by 2002:a05:620a:2893:: with SMTP id j19mr1955267qkp.21.1636407326935; - Mon, 08 Nov 2021 13:35:26 -0800 (PST) -ARC-Seal: i=1; a=rsa-sha256; t=1636407326; cv=none; - d=google.com; s=arc-20160816; - b=s9YXjl1rRtTBeGodPhCLx1oz0Fucko1dKkKSX4quXfSkbkEfx2v9t5SlV5bXaKAqgX - 7jIKUd+o+QPorQZA2/qtrFWslhAQYTEzx+OKj7kA+Je9V4M1j1pjNhqPwWbXN+frxtgn - odjCBJlVn5YqsNuMj6txE6XCJuujMf68s/Odfq2dRFhgR7z3LG/ex3ahafZxBfu9Zy0C - BvO/c7Wy/bZq37P+BPPjTNq41VwtpyzHUPNsVwqmms/FBYfv0Pra2HQ+RCZfrqDx2Xks - M6bTCa5ojEFpJR47Fd6VACHRqLA2Jffm931+NJMeFo0BCDSguvySvKNBQlfVj01HRG7X - /m8w== -ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=mime-version:subject:message-id:to:from:date:dkim-signature; - bh=q/Pnc7ZiQZaeju6b4qWM67R0swn+D3Qz8p6zhQC08cE=; - b=D6rb8PMC4dTThGEeCRf49W2shrwGirQizBrHtuxWe55HMlnbYi/+Vs04l0g82M1/4E - 7f6BzbrHs8g/wuQP5kDBlULn6LI2t/8gO4c7idZ6rp1BnjjUDWgQU5W+KnOKOhCcV/xV - K/cFAJW4ZnDXSAa1T0e8GnS7oQRdjVwjC75y9hRxWRMJ8Dv3guRfYYtJhXcEnnD/bfFi - 8/Wb9ZiTSdyvOR1Ga+OZWa1U16K/ro9Ssa//MvF1LqmdVBbJL/n9xRmbpQScJgThPeXS - PkX/ERz2euc8V3MDtC4CDLtTSEOpgxTaDxye5ai1Lo22tEia5MpgwPqXmBIxWb9ZATzj - UEdA== -ARC-Authentication-Results: i=1; mx.google.com; - dkim=pass header.i=@zayo.com header.s=SF112018Alt header.b="WGGU1s/a"; - spf=pass (google.com: domain of mr=zayo.com__3xgl6y7t64eu7x36@pu28gb8wt30u.6-79qkeai.na152.bnc.salesforce.com designates 13.110.74.206 as permitted sender) smtp.mailfrom="mr=zayo.com__3xgl6y7t64eu7x36@pu28gb8wt30u.6-79qkeai.na152.bnc.salesforce.com"; - dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com -Received: from smtp15-ia4-sp3.mta.salesforce.com (smtp15-ia4-sp3.mta.salesforce.com. [13.110.74.206]) - by mx.google.com with ESMTPS id y6si22182759qkp.64.2021.11.08.13.35.26 - for - (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); - Mon, 08 Nov 2021 13:35:26 -0800 (PST) -Received-SPF: pass (google.com: domain of mr=zayo.com__3xgl6y7t64eu7x36@pu28gb8wt30u.6-79qkeai.na152.bnc.salesforce.com designates 13.110.74.206 as permitted sender) client-ip=13.110.74.206; -Received: from [10.180.203.170] ([10.180.203.170:59650] helo=na152-app1-2-ia4.ops.sfdc.net) - by mx4-ia4-sp3.mta.salesforce.com (envelope-from ) - (ecelerity 4.2.38.62368 r(Core:release/4.2.38.0)) with ESMTPS (cipher=ECDHE-RSA-AES256-GCM-SHA384 - subject="/C=US/ST=California/L=San Francisco/O=salesforce.com, inc./OU=0:app;1:ia4;2:ia4-sp3;3:na152;4:prod/CN=na152-app1-2-ia4.ops.sfdc.net") - id E9/1F-42744-E1899816; Mon, 08 Nov 2021 21:35:26 +0000 -Date: Mon, 8 Nov 2021 21:35:26 +0000 (GMT) -From: MR Zayo -To: "maintenance-notices@example.com" -Message-ID: -Subject: [maintenance-notices] ***Some Customer Inc***ZAYO TTN-0002345678 Demand - MAINTENANCE NOTIFICATION*** -MIME-Version: 1.0 -Content-Type: multipart/mixed; - boundary="----=_Part_11016_1305198674.1636407326627" -X-Priority: 3 -X-SFDC-LK: 00D6000000079Qk -X-SFDC-User: 00560000001etLU -X-Sender: postmaster@salesforce.com -X-mail_abuse_inquiries: http://www.salesforce.com/company/abuse.jsp -X-SFDC-TLS-NoRelay: 1 -X-SFDC-Binding: 1WrIRBV94myi25uB -X-SFDC-EmailCategory: apiSingleMail -X-SFDC-Interface: internal -X-Original-Sender: mr@zayo.com -X-Original-Authentication-Results: mx.google.com; dkim=pass - header.i=@zayo.com header.s=SF112018Alt header.b="WGGU1s/a"; spf=pass - (google.com: domain of mr=zayo.com__3xgl6y7t64eu7x36@pu28gb8wt30u.6-79qkeai.na152.bnc.salesforce.com - designates 13.110.74.206 as permitted sender) smtp.mailfrom="mr=zayo.com__3xgl6y7t64eu7x36@pu28gb8wt30u.6-79qkeai.na152.bnc.salesforce.com"; - dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com -Precedence: list -Mailing-list: list maintenance-notices@example.com; contact maintenance-notices+owners@example.com -List-ID: -X-Google-Group-Id: 536184160288 -List-Post: , -List-Help: , - -List-Archive: -List-Unsubscribe: , - -x-netskope-inspected: true - -------=_Part_11016_1305198674.1636407326627 -Content-Type: multipart/alternative; - boundary="----=_Part_11015_382650316.1636407326627" - -------=_Part_11015_382650316.1636407326627 -Content-Type: text/plain; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - -Zayo Maintenance Notification=20 - - -This email serves as official notification that Zayo and/or one of its prov= -iders will be performing maintenance on its network as described below. Thi= -s maintenance may affect services you have with us. - - - -Maintenance Ticket #: TTN-0002345678 - - -Urgency: Demand - - -Date Notice Sent: 08-Nov-2021 - - -Customer: Some Customer Inc - - - - -Maintenance Window=20 - -1st Activity Date=20 -11-Nov-2021 00:01 to 11-Nov-2021 06:00 ( Eastern )=20 - - 11-Nov-2021 05:01 to 11-Nov-2021 11:00 ( GMT )=20 - -Backup Date=20 -12-Nov-2021 00:01 to 12-Nov-2021 06:00 ( Eastern )=20 - - 12-Nov-2021 05:01 to 12-Nov-2021 11:00 ( GMT )=20 - - - -Location of Maintenance: Vero Beach, FL - - -Reason for Maintenance: Service provider will perform demand maintenance to= - relocate a fiber cable in Vero Beach, FL in order to proactively avoid unp= -lanned outages due to railroad mandated track expansion construction. -GPS: -Location 1: 27.835306, -80.492250 -Location 2: 27.564528, -80.370944 -Location 3: 27.438167, -80.321833 - - -Expected Impact: Service Affecting Activity: Any Maintenance Activity direc= -tly impacting the service(s) of customers. Service(s) are expected to go do= -wn as a result of these activities. - - -Circuit(s) Affected:=20 - - -Circuit Id -Expected Impact -A Location Address - -Z Location Address -Legacy Circuit Id - -/OGYX/123456/ /ZYO / -Hard Down - up to 5 hours -56 Marietta St NW Atlanta, GA. USA -50 NE 9th St Miami, FL. USA - - - - -Please contact the Zayo Maintenance Team with any questions regarding this = -maintenance event. Please reference the Maintenance Ticket number when call= -ing. - - -Maintenance Team Contacts:=20 - - - - -Zayo=C2=A0Global Change Management Team/=C3=89quipe de Gestion du Changemen= -t Global=C2=A0Zayo - -Zayo | Our Fiber Fuels Global Innovation - -Toll free/No=C2=A0sans=C2=A0frais:=C2=A01.866.236.2824 - -United Kingdom Toll Free/No=C2=A0sans -frais Royaume-Uni:=C2=A00800.169.1646 - -Email/Courriel:=C2=A0mr@zayo.com=C2=A0 - -Website/Site Web:=C2=A0https://www.zayo.com - -Purpose=C2=A0|=C2=A0Network Map=C2=A0|=C2=A0Escalation List=C2=A0|=C2=A0Lin= -kedIn=C2=A0|=C2=A0Twitter=C2=A0|=C2=A0Tranzact=C2=A0 - -=C2=A0 - -This communication is the property of Zayo and may contain confidential or = -privileged information. If you have received this communication in error, p= -lease promptly notify the sender by reply e-mail and destroy all copies of = -the communication and any attachments. - -=C2=A0 - ---=20 -You received this message because you are subscribed to the Google Groups "= -Maintenance Notices" group. -To unsubscribe from this group and stop receiving emails from it, send an e= -mail to maintenance-notices+unsubscribe@example.com. -To view this discussion on the web visit https://groups.google.com/a/exampl= -e.com/d/msgid/maintenance-notices/nlUsi0000000000000000000000000000000000000000000= -00R29VYZ00E10tb5A6QCubwKYAh0b2iQ%40sfdc.net. - -------=_Part_11015_382650316.1636407326627 -Content-Type: text/html; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - - -Zayo Maintenance Notification=20 - -

This email serves as official notification that Zayo and/or one of = -its providers will be performing maintenance on its network as described be= -low. This maintenance may affect services you have with us. -
- -

Maintenance Ticket #: TTN-0002345678 - -

Urgency: Demand - -

Date Notice Sent: 08-Nov-2021 - -

Customer: Some Customer Inc - - - -

Maintenance Window

1st Activity Date <= -/b>
11-Nov-2021 00:01 to 11-Nov-2021 06:00 ( Eastern )=20 -
11-Nov-2021 05:01 to 11-Nov-2021 11:00 ( GMT )

Backup Date = -
12-Nov-2021 00:01 to 12-Nov-2021 06:00 ( Eastern )=20 -
12-Nov-2021 05:01 to 12-Nov-2021 11:00 ( GMT )=20 - - -

Location of Maintenance: Vero Beach, FL - -

Reason for Maintenance: Service provider will perform deman= -d maintenance to relocate a fiber cable in Vero Beach, FL in order to proac= -tively avoid unplanned outages due to railroad mandated track expansion con= -struction. -GPS: -Location 1: 27.835306, -80.492250 -Location 2: 27.564528, -80.370944 -Location 3: 27.438167, -80.321833 - -

Expected Impact: Service Affecting Activity: Any Maintenan= -ce Activity directly impacting the service(s) of customers. Service(s) are = -expected to go down as a result of these activities. - -

Circuit(s) Affected:
- - - - - - - - - - - - - - - - -
Circuit IdExpected ImpactA Location AddressZ Location AddressLegacy Circuit Id
/OGYX/123456/ /ZYO /Hard Down - up to 5 hours56 Marietta St NW Atlanta, GA. USA50 NE 9th St Miami, FL. USA
- - -

Please contact the Zayo Maintenance Team with any questions regardi= -ng this maintenance event. Please reference the Maintenance Ticket number w= -hen calling. - -

Maintenance Team Contacts:

-
- -

Zayo Global Change Management Team/= -=C3=89quipe de Gestion d= -u Changement Global Zayo

- -

Zayo | Our Fiber Fuels Global Inn= -ovation

- -

Toll free/No s= -ans frais: 1.866.236.2824

- -

United Kingdom Toll Free/No sans -frais Royaume-Uni:<= -/i> 0800.169.1646

- -

Email/Cou= -rriel: mr@zayo.com<= -/u> 

- -

Website/Site Web: https://www.zayo.com

- -

Purpose | Network Map Escalation List LinkedIn <= -/span>Twitter Tranzact&n= -bsp; - -

&nbs= -p;

- -

This communication is the property of Zayo and may contain confidential= - or privileged information. If you have received this communication in erro= -r, please promptly notify the sender by reply e-mail and destroy all copies= - of the communication and any attachments.

- -

 

- -
- -

- ---
-You received this message because you are subscribed to the Google Groups &= -quot;Maintenance Notices" group.
-To unsubscribe from this group and stop receiving emails from it, send an e= -mail to maintenance-notices+= -unsubscribe@example.com.
-To view this discussion on the web visit https://groups.google.com/a/example.com/d/msgid/rd-no= -tices/nlUsi000000000000000000000000000000000000000000000R29VYZ00E10tb5A6QCu= -bwKYAh0b2iQ%40sfdc.net.
- -------=_Part_11015_382650316.1636407326627-- - -------=_Part_11016_1305198674.1636407326627-- +Delivered-To: nautobot.email@example.com +Received: by 2001:DB8::1 with SMTP id hs33csp621030mab; + Mon, 8 Nov 2021 13:35:30 -0800 (PST) +X-Received: by 2001:DB8::1 with SMTP id f19mr107693276vsq.48.1636407330058; + Mon, 08 Nov 2021 13:35:30 -0800 (PST) +ARC-Seal: i=3; a=rsa-sha256; t=1636407330; cv=pass; + d=google.com; s=arc-20160816; + b=fw/0uPrGPZLnkt84PRZnVIf2uoLAPLa+nPDXvfJvmnfS1kW0gioJpBLlVov9H8R2Yv + J7K4v8S0WJs+4/WMjRLUHXPLW4iswPJLLbRsEc9Qgk6OHVZdj5WVv22RP/YMvW+0Cgk5 + B2tvKJJpAvbZudHqu9gNYnSM0cgNZp+Src4F/dSekj+Dd4ffa1lPWHaf38ULUILbSYoA + 6LC0ZW15ecVdwxuahc+YIyMxrOEg0gvuplTl+j2tlYabzne+kzYT4FBj7fmp1DkeQy59 + ZJDFk489hASIfBIZJ48LjYQvcTzW2SQ0Eu8TVM5LZb7Fm2hO/t54j3IDFPRuCIB26La8 + Un4g== +ARC-Message-Signature: i=3; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=list-unsubscribe:list-archive:list-help:list-post:list-id + :mailing-list:precedence:mime-version:subject:message-id:to:from + :date:sender:dkim-signature; + bh=eOq9HtEyMsG/m4iJvBBDdBTruiqs1xPpoNrPX7yhVn4=; + b=n8vzf+8o2aUxInB5en002sgLipi5gx4aOTVt6X4Z+exnFm3C/FyPw4ketZKq+cXLJ8 + Zr+1jXk59UPcCpWztPn6VieddGc36nJnNS30F69P5pVBjmM2XxOhUrXe3RMFcGLuKuwk + VjJrZLujAvhfUTIDKUYEMQUaNS+S5gSwWFwrEvWR+4KUcSQlCt/Asew1na7gZacRHFya + qWZPwapeG3guo1YzvV8nj9utd1It+1NKJHVuzL4akldKETdxvVqxHLKams2Fxk0JFg20 + XEMeOuXTgd540kVt+hwrmLtlWbZC0SHdvx9ZpJ3PpUwFyuWrXJhf6o0RcwR5dElHwK6a + kZxA== +ARC-Authentication-Results: i=3; mx.google.com; + dkim=pass header.i=@example.com header.s=example header.b=Nj9D3SAm; + arc=pass (i=2 spf=pass spfdomain=pu28gb8wt30u.6-79qkeai.na152.bnc.salesforce.com dkim=pass dkdomain=zayo.com dmarc=pass fromdomain=zayo.com); + spf=pass (google.com: domain of maintenance-notices+bncbcyp3io6yejbbh5qu2gamgqe4nfhh4y@example.com designates 192.0.2.1 as permitted sender) smtp.mailfrom=maintenance-notices+bncBCYP3IO6YEJBBH5QU2GAMGQE4NFHH4Y@example.com; + dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=zayo.com +Return-Path: +Received: from mail-sor-f97.google.com (mail-sor-f97.google.com. [192.0.2.1]) + by mx.google.com with SMTPS id z15sor4875510uar.22.20192.0.2.1.1.29 + for + (Google Transport Security); + Mon, 08 Nov 2021 13:35:30 -0800 (PST) +Received-SPF: pass (google.com: domain of maintenance-notices+bncbcyp3io6yejbbh5qu2gamgqe4nfhh4y@example.com designates 192.0.2.1 as permitted sender) client-ip=192.0.2.1; +Authentication-Results: mx.google.com; + dkim=pass header.i=@example.com header.s=example header.b=Nj9D3SAm; + arc=pass (i=2 spf=pass spfdomain=pu28gb8wt30u.6-79qkeai.na152.bnc.salesforce.com dkim=pass dkdomain=zayo.com dmarc=pass fromdomain=zayo.com); + spf=pass (google.com: domain of maintenance-notices+bncbcyp3io6yejbbh5qu2gamgqe4nfhh4y@example.com designates 192.0.2.1 as permitted sender) smtp.mailfrom=maintenance-notices+bncBCYP3IO6YEJBBH5QU2GAMGQE4NFHH4Y@example.com; + dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=zayo.com +X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=1e100.net; s=20210112; + h=x-gm-message-state:dkim-signature:sender:date:from:to:message-id + :subject:mime-version:x-original-sender + :x-original-authentication-results:precedence:mailing-list:list-id + :list-post:list-help:list-archive:list-unsubscribe; + bh=eOq9HtEyMsG/m4iJvBBDdBTruiqs1xPpoNrPX7yhVn4=; + b=s/8GrpdTD2FIC5SBe//NwuIB8jXwlINWSsn+uNSK8yFIZlErugP6ewbfHv1Chuivxk + ooMdTQ2BrSuIvZiDiowCHM1PirZSJRdShMOpx/zvL3hhI7u4gMZLyB6e0f18PYOIc3yp + Oxk2A0f10+zBl/uMBij0ANWmZz2AoxjCXlj+SWFZ/CJvmb9KUjU4twID7t9oDZXJ0pZw + oXyyV1sTmbTlY/1WxAVmnsh2d99I1jliMvn2Bi6cj+7t4RmSLmDspChx73LFW30Yel8v + VujDLea6+DCqL/aLvV+eoxLN0m4GjcjwySBfrn8AuuOUfAD2sGmjMP7RNBoe+8838je/ + rojg== +X-Gm-Message-State: AOAM533i3onjei8p7tWugD11b7O7DBGfVEX2zJnmg7nWEMgBdMeXNnqr + m96zkjWMqoK9PgCelRylEtggsVOU6bKm7vFP7izkPFOB5nuyu1ep +X-Google-Smtp-Source: ABdhPJw79C4wGoLDZsSmrOjx1l9ZXAgQPHgg3GqUuN425sGeyYn5WupZTCHI0Z1px0r+0oI6CC49ilVDJgQ1 +X-Received: by 2001:DB8::1 with SMTP id u3mr2935647uap.35.1636407329790; + Mon, 08 Nov 2021 13:35:29 -0800 (PST) +Return-Path: +Received: from netskope.com ([192.0.2.1]) + by smtp-relay.gmail.com with ESMTPS id h30sm2903430vko.5.20192.0.2.1.1.29 + for + (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); + Mon, 08 Nov 2021 13:35:29 -0800 (PST) +X-Relaying-Domain: example.com +Received: by mail-qt1-f198.google.com with SMTP id b21-20020a05622a021500b002acb563cd9bsf9476141qtx.22 + for ; Mon, 08 Nov 2021 13:35:28 -0800 (PST) +ARC-Seal: i=2; a=rsa-sha256; t=1636407327; cv=pass; + d=google.com; s=arc-20160816; + b=HMrC+7RVcrvZm4vYmIuP+8ONxrApwKWbdotkJhhFGJtkHxu5W5CIMMHEWNP82g4m/K + FXdYWP/OBOCtGrdFurRAewjgGHl7EKwbS11hW3Jh51vGw3nQvZqqf4BioSCzussjWVaK + U6Klfd5KJepTIeayiPopGFlQEYtpU0jeDGbq0umQcVjbTTqJvEGJRdmMMYaRINwnuDo8 + Q3eu9VzHo8g3dpFJV3qDP6F+SsZdhItUnDthMdZWLF6o0VHqJuI/9X0zPuqAXRlQEmnU + g2aFFZDQHvlF5ykp2BWB7SXq3SLtjNa2sQtfVE3H7FxQ2KAjbpQzTI6ppcUfcQcjq5a7 + u/SA== +ARC-Message-Signature: i=2; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=list-unsubscribe:list-archive:list-help:list-post:list-id + :mailing-list:precedence:mime-version:subject:message-id:to:from + :date:sender:dkim-signature; + bh=eOq9HtEyMsG/m4iJvBBDdBTruiqs1xPpoNrPX7yhVn4=; + b=Xi4lcF7BO/nVEpx+0P4N0WSiMk7nBuvEVKz3KnsHsGu1DRfE7p8yN15aQhHqoJ2slU + o9Pza+DfN0oVWgg9jVaPl9urx9DQ/R3hR2e8E+sHYPj1FivPm7PYrlQDHMHmT9PK/Hb/ + ouZJBMXhNhgo0MYITkzphWnU6GjnSGuLUn/hbWVPzRiJt9XQK64WwulQhcdl3WYYECQK + YwFLzroqS0yElzLOwNTUF51XyR9plYKElpae05Qlb77wJkCcRjXMRI3HcE75aDUI8sic + qrtpmw0CfOOIUEQJVnnT3rxLw0SAw9foWBEbH1mXeVQwwkriCEBp4H+qQYohlcBimIiB + +/Qg== +ARC-Authentication-Results: i=2; mx.google.com; + dkim=pass header.i=@zayo.com header.s=SF112018Alt header.b="WGGU1s/a"; + spf=pass (google.com: domain of mr=zayo.com__3xgl6y7t64eu7x36@pu28gb8wt30u.6-79qkeai.na152.bnc.salesforce.com designates 192.0.2.1 as permitted sender) smtp.mailfrom="mr=zayo.com__3xgl6y7t64eu7x36@pu28gb8wt30u.6-79qkeai.na152.bnc.salesforce.com"; + dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=example.com; s=example; + h=sender:date:from:to:message-id:subject:mime-version + :x-original-sender:x-original-authentication-results:precedence + :mailing-list:list-id:list-post:list-help:list-archive + :list-unsubscribe; + bh=eOq9HtEyMsG/m4iJvBBDdBTruiqs1xPpoNrPX7yhVn4=; + b=Nj9D3SAmJ2wRnLQzdNbtePYHKshRl5h1UYXbhPHjZa7onvTuXpyCnjsf5QkF4fBlqP + Po2v5SDGgDXFqgy3pzfFabDnX93YpocM46cjBtR8U17TiyAHXQz68JaBSkvfSjX3G4Nm + Se4/iruc+MkNdnQnxmGsPXuQHnD+tIb8vPKsY= +Sender: maintenance-notices@example.com +X-Received: by 2001:DB8::1 with SMTP id i20mr1896425qki.312.1636407327762; + Mon, 08 Nov 2021 13:35:27 -0800 (PST) +X-Received: by 2001:DB8::1 with SMTP id i20mr1896410qki.312.1636407327587; + Mon, 08 Nov 2021 13:35:27 -0800 (PST) +X-BeenThere: maintenance-notices@example.com +Received: by 2001:DB8::1 with SMTP id r73ls9440208qka.10.gmail; Mon, 08 + Nov 2021 13:35:27 -0800 (PST) +X-Received: by 2001:DB8::1 with SMTP id j19mr1955267qkp.21.1636407326935; + Mon, 08 Nov 2021 13:35:26 -0800 (PST) +ARC-Seal: i=1; a=rsa-sha256; t=1636407326; cv=none; + d=google.com; s=arc-20160816; + b=s9YXjl1rRtTBeGodPhCLx1oz0Fucko1dKkKSX4quXfSkbkEfx2v9t5SlV5bXaKAqgX + 7jIKUd+o+QPorQZA2/qtrFWslhAQYTEzx+OKj7kA+Je9V4M1j1pjNhqPwWbXN+frxtgn + odjCBJlVn5YqsNuMj6txE6XCJuujMf68s/Odfq2dRFhgR7z3LG/ex3ahafZxBfu9Zy0C + BvO/c7Wy/bZq37P+BPPjTNq41VwtpyzHUPNsVwqmms/FBYfv0Pra2HQ+RCZfrqDx2Xks + M6bTCa5ojEFpJR47Fd6VACHRqLA2Jffm931+NJMeFo0BCDSguvySvKNBQlfVj01HRG7X + /m8w== +ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=mime-version:subject:message-id:to:from:date:dkim-signature; + bh=q/Pnc7ZiQZaeju6b4qWM67R0swn+D3Qz8p6zhQC08cE=; + b=D6rb8PMC4dTThGEeCRf49W2shrwGirQizBrHtuxWe55HMlnbYi/+Vs04l0g82M1/4E + 7f6BzbrHs8g/wuQP5kDBlULn6LI2t/8gO4c7idZ6rp1BnjjUDWgQU5W+KnOKOhCcV/xV + K/cFAJW4ZnDXSAa1T0e8GnS7oQRdjVwjC75y9hRxWRMJ8Dv3guRfYYtJhXcEnnD/bfFi + 8/Wb9ZiTSdyvOR1Ga+OZWa1U16K/ro9Ssa//MvF1LqmdVBbJL/n9xRmbpQScJgThPeXS + PkX/ERz2euc8V3MDtC4CDLtTSEOpgxTaDxye5ai1Lo22tEia5MpgwPqXmBIxWb9ZATzj + UEdA== +ARC-Authentication-Results: i=1; mx.google.com; + dkim=pass header.i=@zayo.com header.s=SF112018Alt header.b="WGGU1s/a"; + spf=pass (google.com: domain of mr=zayo.com__3xgl6y7t64eu7x36@pu28gb8wt30u.6-79qkeai.na152.bnc.salesforce.com designates 192.0.2.1 as permitted sender) smtp.mailfrom="mr=zayo.com__3xgl6y7t64eu7x36@pu28gb8wt30u.6-79qkeai.na152.bnc.salesforce.com"; + dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com +Received: from smtp15-ia4-sp3.mta.salesforce.com (smtp15-ia4-sp3.mta.salesforce.com. [192.0.2.1]) + by mx.google.com with ESMTPS id y6si22182759qkp.64.20192.0.2.1.1.26 + for + (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); + Mon, 08 Nov 2021 13:35:26 -0800 (PST) +Received-SPF: pass (google.com: domain of mr=zayo.com__3xgl6y7t64eu7x36@pu28gb8wt30u.6-79qkeai.na152.bnc.salesforce.com designates 192.0.2.1 as permitted sender) client-ip=192.0.2.1; +Received: from [192.0.2.1] ([192.0.2.1:59650] helo=na152-app1-2-ia4.ops.sfdc.net) + by mx4-ia4-sp3.mta.salesforce.com (envelope-from ) + (ecelerity 192.0.2.1 r(Core:release/192.0.2.1)) with ESMTPS (cipher=ECDHE-RSA-AES256-GCM-SHA384 + subject="/C=US/ST=California/L=San Francisco/O=salesforce.com, inc./OU=0:app;1:ia4;2:ia4-sp3;3:na152;4:prod/CN=na152-app1-2-ia4.ops.sfdc.net") + id E9/1F-42744-E1899816; Mon, 08 Nov 2021 21:35:26 +0000 +Date: Mon, 8 Nov 2021 21:35:26 +0000 (GMT) +From: MR Zayo +To: "maintenance-notices@example.com" +Message-ID: +Subject: [maintenance-notices] ***Some Customer Inc***ZAYO TTN-0002345678 Demand + MAINTENANCE NOTIFICATION*** +MIME-Version: 1.0 +Content-Type: multipart/mixed; + boundary="----=_Part_11016_1305198674.1636407326627" +X-Priority: 3 +X-SFDC-LK: 00D6000000079Qk +X-SFDC-User: 00560000001etLU +X-Sender: postmaster@salesforce.com +X-mail_abuse_inquiries: http://www.salesforce.com/company/abuse.jsp +X-SFDC-TLS-NoRelay: 1 +X-SFDC-Binding: 1WrIRBV94myi25uB +X-SFDC-EmailCategory: apiSingleMail +X-SFDC-Interface: internal +X-Original-Sender: mr@zayo.com +X-Original-Authentication-Results: mx.google.com; dkim=pass + header.i=@zayo.com header.s=SF112018Alt header.b="WGGU1s/a"; spf=pass + (google.com: domain of mr=zayo.com__3xgl6y7t64eu7x36@pu28gb8wt30u.6-79qkeai.na152.bnc.salesforce.com + designates 192.0.2.1 as permitted sender) smtp.mailfrom="mr=zayo.com__3xgl6y7t64eu7x36@pu28gb8wt30u.6-79qkeai.na152.bnc.salesforce.com"; + dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com +Precedence: list +Mailing-list: list maintenance-notices@example.com; contact maintenance-notices+owners@example.com +List-ID: +X-Google-Group-Id: 536184160288 +List-Post: , +List-Help: , + +List-Archive: +List-Unsubscribe: , + +x-netskope-inspected: true + +------=_Part_11016_1305198674.1636407326627 +Content-Type: multipart/alternative; + boundary="----=_Part_11015_382650316.1636407326627" + +------=_Part_11015_382650316.1636407326627 +Content-Type: text/plain; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + +Zayo Maintenance Notification=20 + + +This email serves as official notification that Zayo and/or one of its prov= +iders will be performing maintenance on its network as described below. Thi= +s maintenance may affect services you have with us. + + + +Maintenance Ticket #: TTN-0002345678 + + +Urgency: Demand + + +Date Notice Sent: 08-Nov-2021 + + +Customer: Some Customer Inc + + + + +Maintenance Window=20 + +1st Activity Date=20 +11-Nov-2021 00:01 to 11-Nov-2021 06:00 ( Eastern )=20 + + 11-Nov-2021 05:01 to 11-Nov-2021 11:00 ( GMT )=20 + +Backup Date=20 +12-Nov-2021 00:01 to 12-Nov-2021 06:00 ( Eastern )=20 + + 12-Nov-2021 05:01 to 12-Nov-2021 11:00 ( GMT )=20 + + + +Location of Maintenance: Vero Beach, FL + + +Reason for Maintenance: Service provider will perform demand maintenance to= + relocate a fiber cable in Vero Beach, FL in order to proactively avoid unp= +lanned outages due to railroad mandated track expansion construction. +GPS: +Location 1: 27.835306, -80.492250 +Location 2: 27.564528, -80.370944 +Location 3: 27.438167, -80.321833 + + +Expected Impact: Service Affecting Activity: Any Maintenance Activity direc= +tly impacting the service(s) of customers. Service(s) are expected to go do= +wn as a result of these activities. + + +Circuit(s) Affected:=20 + + +Circuit Id +Expected Impact +A Location Address + +Z Location Address +Legacy Circuit Id + +/OGYX/123456/ /ZYO / +Hard Down - up to 5 hours +56 Marietta St NW Atlanta, GA. USA +50 NE 9th St Miami, FL. USA + + + + +Please contact the Zayo Maintenance Team with any questions regarding this = +maintenance event. Please reference the Maintenance Ticket number when call= +ing. + + +Maintenance Team Contacts:=20 + + + + +Zayo=C2=A0Global Change Management Team/=C3=89quipe de Gestion du Changemen= +t Global=C2=A0Zayo + +Zayo | Our Fiber Fuels Global Innovation + +Toll free/No=C2=A0sans=C2=A0frais:=C2=A01.866.236.2824 + +United Kingdom Toll Free/No=C2=A0sans +frais Royaume-Uni:=C2=A00800.169.1646 + +Email/Courriel:=C2=A0mr@zayo.com=C2=A0 + +Website/Site Web:=C2=A0https://www.zayo.com + +Purpose=C2=A0|=C2=A0Network Map=C2=A0|=C2=A0Escalation List=C2=A0|=C2=A0Lin= +kedIn=C2=A0|=C2=A0Twitter=C2=A0|=C2=A0Tranzact=C2=A0 + +=C2=A0 + +This communication is the property of Zayo and may contain confidential or = +privileged information. If you have received this communication in error, p= +lease promptly notify the sender by reply e-mail and destroy all copies of = +the communication and any attachments. + +=C2=A0 + +--=20 +You received this message because you are subscribed to the Google Groups "= +Maintenance Notices" group. +To unsubscribe from this group and stop receiving emails from it, send an e= +mail to maintenance-notices+unsubscribe@example.com. +To view this discussion on the web visit https://groups.google.com/a/exampl= +e.com/d/msgid/maintenance-notices/nlUsi0000000000000000000000000000000000000000000= +00R29VYZ00E10tb5A6QCubwKYAh0b2iQ%40sfdc.net. + +------=_Part_11015_382650316.1636407326627 +Content-Type: text/html; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + + +Zayo Maintenance Notification=20 + +

This email serves as official notification that Zayo and/or one of = +its providers will be performing maintenance on its network as described be= +low. This maintenance may affect services you have with us. +
+ +

Maintenance Ticket #: TTN-0002345678 + +

Urgency: Demand + +

Date Notice Sent: 08-Nov-2021 + +

Customer: Some Customer Inc + + + +

Maintenance Window

1st Activity Date <= +/b>
11-Nov-2021 00:01 to 11-Nov-2021 06:00 ( Eastern )=20 +
11-Nov-2021 05:01 to 11-Nov-2021 11:00 ( GMT )

Backup Date = +
12-Nov-2021 00:01 to 12-Nov-2021 06:00 ( Eastern )=20 +
12-Nov-2021 05:01 to 12-Nov-2021 11:00 ( GMT )=20 + + +

Location of Maintenance: Vero Beach, FL + +

Reason for Maintenance: Service provider will perform deman= +d maintenance to relocate a fiber cable in Vero Beach, FL in order to proac= +tively avoid unplanned outages due to railroad mandated track expansion con= +struction. +GPS: +Location 1: 27.835306, -80.492250 +Location 2: 27.564528, -80.370944 +Location 3: 27.438167, -80.321833 + +

Expected Impact: Service Affecting Activity: Any Maintenan= +ce Activity directly impacting the service(s) of customers. Service(s) are = +expected to go down as a result of these activities. + +

Circuit(s) Affected:
+ + + + + + + + + + + + + + + + +
Circuit IdExpected ImpactA Location AddressZ Location AddressLegacy Circuit Id
/OGYX/123456/ /ZYO /Hard Down - up to 5 hours56 Marietta St NW Atlanta, GA. USA50 NE 9th St Miami, FL. USA
+ + +

Please contact the Zayo Maintenance Team with any questions regardi= +ng this maintenance event. Please reference the Maintenance Ticket number w= +hen calling. + +

Maintenance Team Contacts:

+
+ +

Zayo Global Change Management Team/= +=C3=89quipe de Gestion d= +u Changement Global Zayo

+ +

Zayo | Our Fiber Fuels Global Inn= +ovation

+ +

Toll free/No s= +ans frais: 1.866.236.2824

+ +

United Kingdom Toll Free/No sans +frais Royaume-Uni:<= +/i> 0800.169.1646

+ +

Email/Cou= +rriel: mr@zayo.com<= +/u> 

+ +

Website/Site Web: https://www.zayo.com

+ +

Purpose | Network Map Escalation List LinkedIn <= +/span>Twitter Tranzact&n= +bsp; + +

&nbs= +p;

+ +

This communication is the property of Zayo and may contain confidential= + or privileged information. If you have received this communication in erro= +r, please promptly notify the sender by reply e-mail and destroy all copies= + of the communication and any attachments.

+ +

 

+ +
+ +

+ +--
+You received this message because you are subscribed to the Google Groups &= +quot;Maintenance Notices" group.
+To unsubscribe from this group and stop receiving emails from it, send an e= +mail to maintenance-notices+= +unsubscribe@example.com.
+To view this discussion on the web visit https://groups.google.com/a/example.com/d/msgid/rd-no= +tices/nlUsi000000000000000000000000000000000000000000000R29VYZ00E10tb5A6QCu= +bwKYAh0b2iQ%40sfdc.net.
+ +------=_Part_11015_382650316.1636407326627-- + +------=_Part_11016_1305198674.1636407326627-- diff --git a/tests/unit/data/zayo/zayo4_html_parser_result.json b/tests/unit/data/zayo/zayo4_html_parser_result.json index d26cd86c..889be870 100644 --- a/tests/unit/data/zayo/zayo4_html_parser_result.json +++ b/tests/unit/data/zayo/zayo4_html_parser_result.json @@ -12,6 +12,6 @@ "stamp": 1636329600, "start": 1636606860, "status": "CONFIRMED", - "summary": "Service provider will perform demand maintenance to relocate a fiber cable in Vero Beach, FL in order to proactively avoid unplanned outages due to railroad mandated track expansion construction.\r\nGPS:\r\nLocation 1: 27.835306, -80.492250\r\nLocation 2: 27.564528, -80.370944\r\nLocation 3: 27.438167, -80.321833" + "summary": "Service provider will perform demand maintenance to relocate a fiber cable in Vero Beach, FL in order to proactively avoid unplanned outages due to railroad mandated track expansion construction.\nGPS:\nLocation 1: 27.835306, -80.492250\nLocation 2: 27.564528, -80.370944\nLocation 3: 27.438167, -80.321833" } ] diff --git a/tests/unit/data/zayo/zayo4_result.json b/tests/unit/data/zayo/zayo4_result.json index d26cd86c..889be870 100644 --- a/tests/unit/data/zayo/zayo4_result.json +++ b/tests/unit/data/zayo/zayo4_result.json @@ -12,6 +12,6 @@ "stamp": 1636329600, "start": 1636606860, "status": "CONFIRMED", - "summary": "Service provider will perform demand maintenance to relocate a fiber cable in Vero Beach, FL in order to proactively avoid unplanned outages due to railroad mandated track expansion construction.\r\nGPS:\r\nLocation 1: 27.835306, -80.492250\r\nLocation 2: 27.564528, -80.370944\r\nLocation 3: 27.438167, -80.321833" + "summary": "Service provider will perform demand maintenance to relocate a fiber cable in Vero Beach, FL in order to proactively avoid unplanned outages due to railroad mandated track expansion construction.\nGPS:\nLocation 1: 27.835306, -80.492250\nLocation 2: 27.564528, -80.370944\nLocation 3: 27.438167, -80.321833" } ] diff --git a/tests/unit/data/zayo/zayo5.eml b/tests/unit/data/zayo/zayo5.eml index 3d162c5a..00260611 100644 --- a/tests/unit/data/zayo/zayo5.eml +++ b/tests/unit/data/zayo/zayo5.eml @@ -1,570 +1,570 @@ -Delivered-To: nautobot.email@example.com -Received: by 2002:a05:7000:1f21:0:0:0:0 with SMTP id hs33csp4178565mab; - Tue, 2 Nov 2021 22:54:02 -0700 (PDT) -X-Received: by 2002:ab0:604f:: with SMTP id o15mr44945525ual.26.1635918842859; - Tue, 02 Nov 2021 22:54:02 -0700 (PDT) -ARC-Seal: i=3; a=rsa-sha256; t=1635918842; cv=pass; - d=google.com; s=arc-20160816; - b=i6yClJ/wcXMxg2gKOaME6M+8yI4n3kFTpr2vOJh3H3lQ5U2HtGi0GtbdJvsmZFsOQG - mFXgxsO5emq/+KS+nBidRZZiNXxut9jlWG8NDygbEYG83fe/H7c/oYbol3KMqH5wwc9h - EaEDPyAu0zT41WhXrsIXlhoKjMo/HJqOl9eZzJRqVptw+KT94eLmYv2d6F1wGQ9MtUjJ - YZBm95kOgLHXI0LVoubp4UELct+UdxYqSQ4c+KtBdOr0M0N0ajyR+2b3/bWsnN0q+9nm - L+WFrtH1jWVSWO/v292Pd8G0+mY3BU+B0uQX9d6CILto8JYIuCgugu+67mwczK4jmaXV - fijA== -ARC-Message-Signature: i=3; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=list-unsubscribe:list-archive:list-help:list-post:list-id - :mailing-list:precedence:mime-version:subject:message-id:to:from - :date:sender:dkim-signature; - bh=UBBatfNWq2VpXhP1zWomq8WAFToh0RQZIVThuS4+Na0=; - b=p4jMR+thxVPuI/Rj6nkYF0SRz+qFZg1w7krHmidJjIEhSg75Ex0+Vu9GTW9oogfuJI - O75s1zM3BiuU/6WQuyPITp2V896MHxDN3/1jf9L/4XuZ8lONrrGloLolKqzhbEIxUsMX - WHbF7l5pyt7oaDQsMi5WUBqUOwsBQb0mMwUaid2IlKy02i/+xWI7P2YgLT3/JCZGbyZc - UfY36FHQ3Gjg5xtDUnBGEcE8arz7roymFP8Fag0/OcLbXigsEx4rb0Ts90iyw3Nn1l94 - d0cTqs5anFnSLLpoK4w4JaV1kNXFTI1sfHP5PE8e2iV84YK7+j8uhuJPqToACvLtc56x - fJVA== -ARC-Authentication-Results: i=3; mx.google.com; - dkim=pass header.i=@example.com header.s=example header.b=Ii2o7Pgw; - arc=pass (i=2 spf=pass spfdomain=nggz1qayjso6w4.6-79qkeai.na152.bnc.salesforce.com dkim=pass dkdomain=zayo.com dmarc=pass fromdomain=zayo.com); - spf=pass (google.com: domain of maintenance-notices+bncbcyp3io6yejbb56hrcgamgqeagka7pi@example.com designates 209.85.220.97 as permitted sender) smtp.mailfrom=maintenance-notices+bncBCYP3IO6YEJBB56HRCGAMGQEAGKA7PI@example.com; - dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=zayo.com -Return-Path: -Received: from mail-sor-f97.google.com (mail-sor-f97.google.com. [209.85.220.97]) - by mx.google.com with SMTPS id v9sor240954vkn.62.2021.11.02.22.54.02 - for - (Google Transport Security); - Tue, 02 Nov 2021 22:54:02 -0700 (PDT) -Received-SPF: pass (google.com: domain of maintenance-notices+bncbcyp3io6yejbb56hrcgamgqeagka7pi@example.com designates 209.85.220.97 as permitted sender) client-ip=209.85.220.97; -Authentication-Results: mx.google.com; - dkim=pass header.i=@example.com header.s=example header.b=Ii2o7Pgw; - arc=pass (i=2 spf=pass spfdomain=nggz1qayjso6w4.6-79qkeai.na152.bnc.salesforce.com dkim=pass dkdomain=zayo.com dmarc=pass fromdomain=zayo.com); - spf=pass (google.com: domain of maintenance-notices+bncbcyp3io6yejbb56hrcgamgqeagka7pi@example.com designates 209.85.220.97 as permitted sender) smtp.mailfrom=maintenance-notices+bncBCYP3IO6YEJBB56HRCGAMGQEAGKA7PI@example.com; - dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=zayo.com -X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; - d=1e100.net; s=20210112; - h=x-gm-message-state:dkim-signature:sender:date:from:to:message-id - :subject:mime-version:x-original-sender - :x-original-authentication-results:precedence:mailing-list:list-id - :list-post:list-help:list-archive:list-unsubscribe; - bh=UBBatfNWq2VpXhP1zWomq8WAFToh0RQZIVThuS4+Na0=; - b=vs/6HffzzHsXWinkiYMVSh99CMOGmbufSRcQ12DS6Lnjri77JJz1P5x7w27oRtWYUn - uoRy8LHzWaaRL+Jj9E4bSfP/ixlmgvTZZuetZ42hiDrNoGdI/OGE87+5JooRTiBg1lkO - UhpBcbnMl1rS2a5fJKBvl7iO4MswDTHXHj4g7r3WWeGsqeIEKLhlLkYs3oH5hzywcwJq - 0EBj6XL2mqc8xMjwpjPmBNhuS8f6Uts5XENo9HnD70B5231EdvnpdQfak8awD1ncGXYK - kt3QLFrDwxlZL97OQkybnCZ4QkdZvo9fsSo4igqzNh+qmr0Yh31ogfWafLHXU1e7OfZt - IvjA== -X-Gm-Message-State: AOAM531yO1P5PrVZJBjwnosCFVB44S2QVZiNauJduw5vH4fvNc6YRYNp - Zkt8wbFemQPGexgmEn5V5upw4qjCvyHvCTWTAZ5c0POOP1blabti -X-Google-Smtp-Source: ABdhPJwxXF+wxcXH02RDgRw1sVcomz4aKBSGgKTGXSyQ807rlHB7RJTw7jY2M5hgj5tZXBv1e6ZHDoNk+1DK -X-Received: by 2002:a05:6122:c8f:: with SMTP id ba15mr1538274vkb.14.1635918842111; - Tue, 02 Nov 2021 22:54:02 -0700 (PDT) -Return-Path: -Received: from netskope.com ([8.36.116.152]) - by smtp-relay.gmail.com with ESMTPS id o14sm226191vkc.13.2021.11.02.22.54.01 - for - (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); - Tue, 02 Nov 2021 22:54:02 -0700 (PDT) -X-Relaying-Domain: example.com -Received: by mail-qk1-f200.google.com with SMTP id bi16-20020a05620a319000b00462d999de94sf1367500qkb.18 - for ; Tue, 02 Nov 2021 22:54:00 -0700 (PDT) -ARC-Seal: i=2; a=rsa-sha256; t=1635918839; cv=pass; - d=google.com; s=arc-20160816; - b=B60yu7FSvoymGndz//cR+EiNorAHE84Ztv123RWi5LXkwqnloG7SGcivFp/u2ujdjG - h3AKZ7HQNuMwP3Uq59Uqg+tnHoL4ZSn1w/HV9rzYBOi2WsLY1Eojhz25Ew0hEDkdtvge - aUD2hc95nEUblWTw+rWnJ3frc+1ZkNjsALigXqWZDlQJ6wqU9KMSeEu3DHuHpytij8X+ - WmBN4qmr7yu0AudieoCtK4Fl4JLLsIdhsRTN1tM6me+gfCi8Acr0lHiXWIWG11Mh2ZlX - WK9kQLp3e7EZiyCokbOHvUuUq0pttKBQIPHQukV5HjPP+WZMCy6i9jdXjUFZNrYWwcci - UstA== -ARC-Message-Signature: i=2; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=list-unsubscribe:list-archive:list-help:list-post:list-id - :mailing-list:precedence:mime-version:subject:message-id:to:from - :date:sender:dkim-signature; - bh=UBBatfNWq2VpXhP1zWomq8WAFToh0RQZIVThuS4+Na0=; - b=Sd1LftLcN5TUAqfKvp7wusiaBJwaGpX/5sFpj4nF90VkfvSHlx9u/4MDWdGNL63w0d - 4XZkWx8lIiVVcjRjSb8Q1zOTqqbMEdNBUZRuHlETSIi6gTE/enML5oVUP//MY6dZ+9Gp - RmvD5WTaRT1lp2iSxeRA4lJN9vmEsrGXPMBwaXe2eUFvLuc6MW/3NhORNGHw4hfj31qz - 34AfrLeaeyKE7YRli4h7g+tyJY18EcYyAaWYKi6OSfhxDRgI8m2BCotaeeCkvToLPUws - hj6I7XaxmWrWCny48Rh9EW6rEf+ZzRVG2316fSaVY8lSZCsKuvHObpLgo+vZl25DvI3g - 6B+Q== -ARC-Authentication-Results: i=2; mx.google.com; - dkim=pass header.i=@zayo.com header.s=SF112018Alt header.b=pX42Nhcg; - spf=pass (google.com: domain of mr=zayo.com__0-86gzgi0xbjnhkm@nggz1qayjso6w4.6-79qkeai.na152.bnc.salesforce.com designates 13.110.74.206 as permitted sender) smtp.mailfrom="mr=zayo.com__0-86gzgi0xbjnhkm@nggz1qayjso6w4.6-79qkeai.na152.bnc.salesforce.com"; - dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com -DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; - d=example.com; s=example; - h=sender:date:from:to:message-id:subject:mime-version - :x-original-sender:x-original-authentication-results:precedence - :mailing-list:list-id:list-post:list-help:list-archive - :list-unsubscribe; - bh=UBBatfNWq2VpXhP1zWomq8WAFToh0RQZIVThuS4+Na0=; - b=Ii2o7Pgws5yTo/x2m6UrRG7T4v6XVgmnrXB0ig4k5IKRbRhjGvjMPvJU5HlkEZjhzy - 7UcvBRPfMs+u3rKxL7sOO3pcPz498X3LFLyDqC+X9bJYaGatIqvEuc00b6qTpMXyIEbV - GZimN0p049McrKG4RAn5c9dqh5AUA7MahyWxM= -Sender: maintenance-notices@example.com -X-Received: by 2002:a05:622a:104:: with SMTP id u4mr42396981qtw.143.1635918839836; - Tue, 02 Nov 2021 22:53:59 -0700 (PDT) -X-Received: by 2002:a05:622a:104:: with SMTP id u4mr42396974qtw.143.1635918839691; - Tue, 02 Nov 2021 22:53:59 -0700 (PDT) -X-BeenThere: maintenance-notices@example.com -Received: by 2002:a05:620a:2724:: with SMTP id b36ls698205qkp.7.gmail; Tue, 02 - Nov 2021 22:53:59 -0700 (PDT) -X-Received: by 2002:a05:620a:2903:: with SMTP id m3mr18741393qkp.452.1635918839026; - Tue, 02 Nov 2021 22:53:59 -0700 (PDT) -ARC-Seal: i=1; a=rsa-sha256; t=1635918839; cv=none; - d=google.com; s=arc-20160816; - b=TxeP1R8wGY77iEOW5OA//H6lr5ZzRQJXOMZuq1qppNNT9CffP+8KNxqVx4SCNEzZWO - E5gtYaQIBt3dFSwmeeTdeJJ4UIvAdoZpzRYduaJ/jV/ivqgeXg/L4/kXQhtffy/qfUTZ - I3ATmvVEvG7AEcx1oiYgAqK48GFG09H2zg9bXJX2t1e33lGYBTI4HcI6ZvXen30IjPEF - A5xCT+7cXSJfYDQXl2VFpOrgyKrNQ6M9ScegQbnidJEC/pK3jtWgV+blh9YUlU/Rpba1 - pi0o0RApfa9GckPvzLKuKZ9gDgo1naIqmRb5MSNblDIugQcM8PVJaQdkUdguw1ae4cum - d5ug== -ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=mime-version:subject:message-id:to:from:date:dkim-signature; - bh=yCKe9cilxNvAlyj5pFFJvbT6MLuyClQJoODwhPlLEB0=; - b=FWdIFnzFpoc1wyLXoHDUk12q6YW7NeN3pk/vM+/tQSWEM982z4kHe0sZlIMbV/xLT7 - dTjsws0eUNVKbHoZZX3vJqYrkNf7p0S3sbXeu+R+3M7rZhCnVS0iL5ROWk6ck7HRVBMd - nzf3XruBGfWSPWAEmI/A+MPa9YnvaCrUHYvELIrxjOfGxOd+1wqG2oiA9G+n1nu/YPJx - Kzf+vs28ewit0kxKXkCdZNMMXi9zvnjibpr8XQLTs/7JYGicPAj5HFvvz1992kdd7KZo - KRkiwIwkZbGtVKkNBFJnugjcpY/fb1/Bs4tBBWvYCBhanEwjCBsW72wpihj3MDseIgCT - 77eQ== -ARC-Authentication-Results: i=1; mx.google.com; - dkim=pass header.i=@zayo.com header.s=SF112018Alt header.b=pX42Nhcg; - spf=pass (google.com: domain of mr=zayo.com__0-86gzgi0xbjnhkm@nggz1qayjso6w4.6-79qkeai.na152.bnc.salesforce.com designates 13.110.74.206 as permitted sender) smtp.mailfrom="mr=zayo.com__0-86gzgi0xbjnhkm@nggz1qayjso6w4.6-79qkeai.na152.bnc.salesforce.com"; - dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com -Received: from smtp15-ia4-sp3.mta.salesforce.com (smtp15-ia4-sp3.mta.salesforce.com. [13.110.74.206]) - by mx.google.com with ESMTPS id w12si1633156qtc.52.2021.11.02.22.53.58 - for - (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); - Tue, 02 Nov 2021 22:53:59 -0700 (PDT) -Received-SPF: pass (google.com: domain of mr=zayo.com__0-86gzgi0xbjnhkm@nggz1qayjso6w4.6-79qkeai.na152.bnc.salesforce.com designates 13.110.74.206 as permitted sender) client-ip=13.110.74.206; -Received: from [10.180.203.152] ([10.180.203.152:50146] helo=na152-app2-29-ia4.ops.sfdc.net) - by mx2-ia4-sp3.mta.salesforce.com (envelope-from ) - (ecelerity 4.2.38.62368 r(Core:release/4.2.38.0)) with ESMTPS (cipher=ECDHE-RSA-AES256-GCM-SHA384 - subject="/C=US/ST=California/L=San Francisco/O=salesforce.com, inc./OU=0:app;1:ia4;2:ia4-sp3;3:na152;4:prod/CN=na152-app2-29-ia4.ops.sfdc.net") - id B2/DE-06158-6F322816; Wed, 03 Nov 2021 05:53:58 +0000 -Date: Wed, 3 Nov 2021 05:53:58 +0000 (GMT) -From: MR Zayo -To: "maintenance-notices@example.com" -Message-ID: -Subject: [maintenance-notices] START MAINTENANCE NOTIFICATION***Some Customer Inc***ZAYO - TTN-0003456789 Courtesy*** -MIME-Version: 1.0 -Content-Type: multipart/mixed; - boundary="----=_Part_23970_1306639044.1635918838585" -X-Priority: 3 -X-SFDC-LK: 00D6000000079Qk -X-SFDC-User: 00560000003fpx3 -X-Sender: postmaster@salesforce.com -X-mail_abuse_inquiries: http://www.salesforce.com/company/abuse.jsp -X-SFDC-TLS-NoRelay: 1 -X-SFDC-Binding: 1WrIRBV94myi25uB -X-SFDC-EmailCategory: apiSingleMail -X-SFDC-Interface: internal -X-Original-Sender: mr@zayo.com -X-Original-Authentication-Results: mx.google.com; dkim=pass - header.i=@zayo.com header.s=SF112018Alt header.b=pX42Nhcg; spf=pass - (google.com: domain of mr=zayo.com__0-86gzgi0xbjnhkm@nggz1qayjso6w4.6-79qkeai.na152.bnc.salesforce.com - designates 13.110.74.206 as permitted sender) smtp.mailfrom="mr=zayo.com__0-86gzgi0xbjnhkm@nggz1qayjso6w4.6-79qkeai.na152.bnc.salesforce.com"; - dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com -Precedence: list -Mailing-list: list maintenance-notices@example.com; contact maintenance-notices+owners@example.com -List-ID: -X-Google-Group-Id: 536184160288 -List-Post: , -List-Help: , - -List-Archive: -List-Unsubscribe: , - -x-netskope-inspected: true - -------=_Part_23970_1306639044.1635918838585 -Content-Type: multipart/alternative; - boundary="----=_Part_23969_1713254167.1635918838584" - -------=_Part_23969_1713254167.1635918838584 -Content-Type: text/plain; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - -Dear Zayo Customer, - - -Please be advised that the below scheduled maintenance activity will be com= -mencing momentarily. - - -Maintenance Ticket #: TTN-0003456789 - - - - -Maintenance Window=20 - -1st Activity Date=20 -01-Nov-2021 00:01 to 01-Nov-2021 05:00 ( Mountain )=20 - - 01-Nov-2021 06:01 to 01-Nov-2021 11:00 ( GMT )=20 - -2nd Activity Date=20 -02-Nov-2021 00:01 to 02-Nov-2021 05:00 ( Mountain )=20 - - 02-Nov-2021 06:01 to 02-Nov-2021 11:00 ( GMT )=20 - -3rd Activity Date=20 -03-Nov-2021 00:01 to 03-Nov-2021 05:00 ( Mountain )=20 - - 03-Nov-2021 06:01 to 03-Nov-2021 11:00 ( GMT )=20 - - - -Location of Maintenance: 11011 E Peakview Ave, Englewood, CO - - -Reason for Maintenance: Routine Fiber splice - NO Impact is Expected to you= -r services. This notification is to advise you that we will be entering a s= -plice case that houses live traffic. - - -Circuit(s) Affected:=20 - - -Circuit Id -Expected Impact -A Location Address - -Z Location Address -Legacy Circuit Id - -/OGYX/123456/ /ZYO / -No Expected Impact -624 S Grand Ave Los Angeles, CA. USA -639 E 18th Ave Denver, CO. USA - -/OGYX/234567/ /ZYO / -No Expected Impact -11 Great Oaks Blvd San Jose, CA. USA -350 E Cermak Rd Chicago, IL. USA - - - - -If you have any questions or need any additional information, please contac= -t the MR group at mr@zayo.com or call 866-236-2824. - - -Regards, - - - - -Zayo=C2=A0Global Change Management Team/=C3=89quipe de Gestion du Changemen= -t Global=C2=A0Zayo - -Zayo | Our Fiber Fuels Global Innovation - -Toll free/No=C2=A0sans=C2=A0frais:=C2=A01.866.236.2824 - -United Kingdom Toll Free/No=C2=A0sans -frais Royaume-Uni:=C2=A00800.169.1646 - -Email/Courriel:=C2=A0mr@zayo.com=C2=A0 - -Website/Site Web:=C2=A0https://www.zayo.com - -Purpose=C2=A0|=C2=A0Network Map=C2=A0|=C2=A0Escalation List=C2=A0|=C2=A0Lin= -kedIn=C2=A0|=C2=A0Twitter=C2=A0|=C2=A0Tranzact=C2=A0 - -=C2=A0 - -This communication is the property of Zayo and may contain confidential or = -privileged information. If you have received this communication in error, p= -lease promptly notify the sender by reply e-mail and destroy all copies of = -the communication and any attachments. - -=C2=A0 - ---=20 -You received this message because you are subscribed to the Google Groups "= -Maintenance Notices" group. -To unsubscribe from this group and stop receiving emails from it, send an e= -mail to maintenance-notices+unsubscribe@example.com. -To view this discussion on the web visit https://groups.google.com/a/exampl= -e.com/d/msgid/maintenance-notices/JvKMs0000000000000000000000000000000000000000000= -00R1ZF1D00G_QXdBhZTt2-s07csO3pnA%40sfdc.net. - -------=_Part_23969_1713254167.1635918838584 -Content-Type: text/html; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - -Dear Zayo Customer, - -

Please be advised that the below scheduled maintenance activity wil= -l be commencing momentarily. - -

Maintenance Ticket #: TTN-0003456789 - - - -

Maintenance Window

1st Activity Date <= -/b>
01-Nov-2021 00:01 to 01-Nov-2021 05:00 ( Mountain )=20 -
01-Nov-2021 06:01 to 01-Nov-2021 11:00 ( GMT )

2nd Activity Date
02-Nov-2021 00:01 to 02-Nov-2021 05:00 ( Mountain = -)=20 -
02-Nov-2021 06:01 to 02-Nov-2021 11:00 ( GMT )

3rd Activity Date
03-Nov-2021 00:01 to 03-Nov-2021 05:00 ( Mountain = -)=20 -
03-Nov-2021 06:01 to 03-Nov-2021 11:00 ( GMT )=20 - - -

Location of Maintenance: 11011 E Peakview Ave, Englewood, C= -O - -

Reason for Maintenance: Routine Fiber splice - NO Impact is= - Expected to your services. This notification is to advise you that we will= - be entering a splice case that houses live traffic. - -

Circuit(s) Affected:
- - - - - - - - - - - - - - - - - - - - - - - -
Circuit IdExpected ImpactA Location AddressZ Location AddressLegacy Circuit Id
/OGYX/123456/ /ZYO /No Expected Impact624 S Grand Ave Los Angeles, CA. USA639 E 18th Ave Denver, CO. USA
/OGYX/234567/ /ZYO /No Expected Impact11 Great Oaks Blvd San Jose, CA. USA350 E Cermak Rd Chicago, IL. USA
- - -

If you have any questions or need any additional information, pleas= -e contact the MR group at mr@zayo.com or call 866-236-2824. - -

Regards,

-
- -

Zayo Global Change Management Team/= -=C3=89quipe de Gestion d= -u Changement Global Zayo

- -

Zayo | Our Fiber Fuels Global Inn= -ovation

- -

Toll free/No s= -ans frais: 1.866.236.2824

- -

United Kingdom Toll Free/No sans -frais Royaume-Uni:<= -/i> 0800.169.1646

- -

Email/Cou= -rriel: mr@zayo.com<= -/u> 

- -

Website/Site Web: https://www.zayo.com

- -

Purpose | Network Map Escalation List LinkedIn <= -/span>Twitter Tranzact&n= -bsp; - -

&nbs= -p;

- -

This communication is the property of Zayo and may contain confidential= - or privileged information. If you have received this communication in erro= -r, please promptly notify the sender by reply e-mail and destroy all copies= - of the communication and any attachments.

- -

 

- -
- -

- ---
-You received this message because you are subscribed to the Google Groups &= -quot;Maintenance Notices" group.
-To unsubscribe from this group and stop receiving emails from it, send an e= -mail to maintenance-notices+= -unsubscribe@example.com.
-To view this discussion on the web visit https://groups.google.com/a/example.com/d/msgid/rd-no= -tices/JvKMs000000000000000000000000000000000000000000000R1ZF1D00G_QXdBhZTt2= --s07csO3pnA%40sfdc.net.
- -------=_Part_23969_1713254167.1635918838584-- - -------=_Part_23970_1306639044.1635918838585-- +Delivered-To: nautobot.email@example.com +Received: by 2001:DB8::1 with SMTP id hs33csp4178565mab; + Tue, 2 Nov 2021 22:54:02 -0700 (PDT) +X-Received: by 2001:DB8::1 with SMTP id o15mr44945525ual.26.1635918842859; + Tue, 02 Nov 2021 22:54:02 -0700 (PDT) +ARC-Seal: i=3; a=rsa-sha256; t=1635918842; cv=pass; + d=google.com; s=arc-20160816; + b=i6yClJ/wcXMxg2gKOaME6M+8yI4n3kFTpr2vOJh3H3lQ5U2HtGi0GtbdJvsmZFsOQG + mFXgxsO5emq/+KS+nBidRZZiNXxut9jlWG8NDygbEYG83fe/H7c/oYbol3KMqH5wwc9h + EaEDPyAu0zT41WhXrsIXlhoKjMo/HJqOl9eZzJRqVptw+KT94eLmYv2d6F1wGQ9MtUjJ + YZBm95kOgLHXI0LVoubp4UELct+UdxYqSQ4c+KtBdOr0M0N0ajyR+2b3/bWsnN0q+9nm + L+WFrtH1jWVSWO/v292Pd8G0+mY3BU+B0uQX9d6CILto8JYIuCgugu+67mwczK4jmaXV + fijA== +ARC-Message-Signature: i=3; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=list-unsubscribe:list-archive:list-help:list-post:list-id + :mailing-list:precedence:mime-version:subject:message-id:to:from + :date:sender:dkim-signature; + bh=UBBatfNWq2VpXhP1zWomq8WAFToh0RQZIVThuS4+Na0=; + b=p4jMR+thxVPuI/Rj6nkYF0SRz+qFZg1w7krHmidJjIEhSg75Ex0+Vu9GTW9oogfuJI + O75s1zM3BiuU/6WQuyPITp2V896MHxDN3/1jf9L/4XuZ8lONrrGloLolKqzhbEIxUsMX + WHbF7l5pyt7oaDQsMi5WUBqUOwsBQb0mMwUaid2IlKy02i/+xWI7P2YgLT3/JCZGbyZc + UfY36FHQ3Gjg5xtDUnBGEcE8arz7roymFP8Fag0/OcLbXigsEx4rb0Ts90iyw3Nn1l94 + d0cTqs5anFnSLLpoK4w4JaV1kNXFTI1sfHP5PE8e2iV84YK7+j8uhuJPqToACvLtc56x + fJVA== +ARC-Authentication-Results: i=3; mx.google.com; + dkim=pass header.i=@example.com header.s=example header.b=Ii2o7Pgw; + arc=pass (i=2 spf=pass spfdomain=nggz1qayjso6w4.6-79qkeai.na152.bnc.salesforce.com dkim=pass dkdomain=zayo.com dmarc=pass fromdomain=zayo.com); + spf=pass (google.com: domain of maintenance-notices+bncbcyp3io6yejbb56hrcgamgqeagka7pi@example.com designates 192.0.2.1 as permitted sender) smtp.mailfrom=maintenance-notices+bncBCYP3IO6YEJBB56HRCGAMGQEAGKA7PI@example.com; + dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=zayo.com +Return-Path: +Received: from mail-sor-f97.google.com (mail-sor-f97.google.com. [192.0.2.1]) + by mx.google.com with SMTPS id v9sor240954vkn.62.20192.0.2.1.1.02 + for + (Google Transport Security); + Tue, 02 Nov 2021 22:54:02 -0700 (PDT) +Received-SPF: pass (google.com: domain of maintenance-notices+bncbcyp3io6yejbb56hrcgamgqeagka7pi@example.com designates 192.0.2.1 as permitted sender) client-ip=192.0.2.1; +Authentication-Results: mx.google.com; + dkim=pass header.i=@example.com header.s=example header.b=Ii2o7Pgw; + arc=pass (i=2 spf=pass spfdomain=nggz1qayjso6w4.6-79qkeai.na152.bnc.salesforce.com dkim=pass dkdomain=zayo.com dmarc=pass fromdomain=zayo.com); + spf=pass (google.com: domain of maintenance-notices+bncbcyp3io6yejbb56hrcgamgqeagka7pi@example.com designates 192.0.2.1 as permitted sender) smtp.mailfrom=maintenance-notices+bncBCYP3IO6YEJBB56HRCGAMGQEAGKA7PI@example.com; + dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=zayo.com +X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=1e100.net; s=20210112; + h=x-gm-message-state:dkim-signature:sender:date:from:to:message-id + :subject:mime-version:x-original-sender + :x-original-authentication-results:precedence:mailing-list:list-id + :list-post:list-help:list-archive:list-unsubscribe; + bh=UBBatfNWq2VpXhP1zWomq8WAFToh0RQZIVThuS4+Na0=; + b=vs/6HffzzHsXWinkiYMVSh99CMOGmbufSRcQ12DS6Lnjri77JJz1P5x7w27oRtWYUn + uoRy8LHzWaaRL+Jj9E4bSfP/ixlmgvTZZuetZ42hiDrNoGdI/OGE87+5JooRTiBg1lkO + UhpBcbnMl1rS2a5fJKBvl7iO4MswDTHXHj4g7r3WWeGsqeIEKLhlLkYs3oH5hzywcwJq + 0EBj6XL2mqc8xMjwpjPmBNhuS8f6Uts5XENo9HnD70B5231EdvnpdQfak8awD1ncGXYK + kt3QLFrDwxlZL97OQkybnCZ4QkdZvo9fsSo4igqzNh+qmr0Yh31ogfWafLHXU1e7OfZt + IvjA== +X-Gm-Message-State: AOAM531yO1P5PrVZJBjwnosCFVB44S2QVZiNauJduw5vH4fvNc6YRYNp + Zkt8wbFemQPGexgmEn5V5upw4qjCvyHvCTWTAZ5c0POOP1blabti +X-Google-Smtp-Source: ABdhPJwxXF+wxcXH02RDgRw1sVcomz4aKBSGgKTGXSyQ807rlHB7RJTw7jY2M5hgj5tZXBv1e6ZHDoNk+1DK +X-Received: by 2001:DB8::1 with SMTP id ba15mr1538274vkb.14.1635918842111; + Tue, 02 Nov 2021 22:54:02 -0700 (PDT) +Return-Path: +Received: from netskope.com ([192.0.2.1]) + by smtp-relay.gmail.com with ESMTPS id o14sm226191vkc.13.20192.0.2.1.1.01 + for + (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); + Tue, 02 Nov 2021 22:54:02 -0700 (PDT) +X-Relaying-Domain: example.com +Received: by mail-qk1-f200.google.com with SMTP id bi16-20020a05620a319000b00462d999de94sf1367500qkb.18 + for ; Tue, 02 Nov 2021 22:54:00 -0700 (PDT) +ARC-Seal: i=2; a=rsa-sha256; t=1635918839; cv=pass; + d=google.com; s=arc-20160816; + b=B60yu7FSvoymGndz//cR+EiNorAHE84Ztv123RWi5LXkwqnloG7SGcivFp/u2ujdjG + h3AKZ7HQNuMwP3Uq59Uqg+tnHoL4ZSn1w/HV9rzYBOi2WsLY1Eojhz25Ew0hEDkdtvge + aUD2hc95nEUblWTw+rWnJ3frc+1ZkNjsALigXqWZDlQJ6wqU9KMSeEu3DHuHpytij8X+ + WmBN4qmr7yu0AudieoCtK4Fl4JLLsIdhsRTN1tM6me+gfCi8Acr0lHiXWIWG11Mh2ZlX + WK9kQLp3e7EZiyCokbOHvUuUq0pttKBQIPHQukV5HjPP+WZMCy6i9jdXjUFZNrYWwcci + UstA== +ARC-Message-Signature: i=2; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=list-unsubscribe:list-archive:list-help:list-post:list-id + :mailing-list:precedence:mime-version:subject:message-id:to:from + :date:sender:dkim-signature; + bh=UBBatfNWq2VpXhP1zWomq8WAFToh0RQZIVThuS4+Na0=; + b=Sd1LftLcN5TUAqfKvp7wusiaBJwaGpX/5sFpj4nF90VkfvSHlx9u/4MDWdGNL63w0d + 4XZkWx8lIiVVcjRjSb8Q1zOTqqbMEdNBUZRuHlETSIi6gTE/enML5oVUP//MY6dZ+9Gp + RmvD5WTaRT1lp2iSxeRA4lJN9vmEsrGXPMBwaXe2eUFvLuc6MW/3NhORNGHw4hfj31qz + 34AfrLeaeyKE7YRli4h7g+tyJY18EcYyAaWYKi6OSfhxDRgI8m2BCotaeeCkvToLPUws + hj6I7XaxmWrWCny48Rh9EW6rEf+ZzRVG2316fSaVY8lSZCsKuvHObpLgo+vZl25DvI3g + 6B+Q== +ARC-Authentication-Results: i=2; mx.google.com; + dkim=pass header.i=@zayo.com header.s=SF112018Alt header.b=pX42Nhcg; + spf=pass (google.com: domain of mr=zayo.com__0-86gzgi0xbjnhkm@nggz1qayjso6w4.6-79qkeai.na152.bnc.salesforce.com designates 192.0.2.1 as permitted sender) smtp.mailfrom="mr=zayo.com__0-86gzgi0xbjnhkm@nggz1qayjso6w4.6-79qkeai.na152.bnc.salesforce.com"; + dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=example.com; s=example; + h=sender:date:from:to:message-id:subject:mime-version + :x-original-sender:x-original-authentication-results:precedence + :mailing-list:list-id:list-post:list-help:list-archive + :list-unsubscribe; + bh=UBBatfNWq2VpXhP1zWomq8WAFToh0RQZIVThuS4+Na0=; + b=Ii2o7Pgws5yTo/x2m6UrRG7T4v6XVgmnrXB0ig4k5IKRbRhjGvjMPvJU5HlkEZjhzy + 7UcvBRPfMs+u3rKxL7sOO3pcPz498X3LFLyDqC+X9bJYaGatIqvEuc00b6qTpMXyIEbV + GZimN0p049McrKG4RAn5c9dqh5AUA7MahyWxM= +Sender: maintenance-notices@example.com +X-Received: by 2001:DB8::1 with SMTP id u4mr42396981qtw.143.1635918839836; + Tue, 02 Nov 2021 22:53:59 -0700 (PDT) +X-Received: by 2001:DB8::1 with SMTP id u4mr42396974qtw.143.1635918839691; + Tue, 02 Nov 2021 22:53:59 -0700 (PDT) +X-BeenThere: maintenance-notices@example.com +Received: by 2001:DB8::1 with SMTP id b36ls698205qkp.7.gmail; Tue, 02 + Nov 2021 22:53:59 -0700 (PDT) +X-Received: by 2001:DB8::1 with SMTP id m3mr18741393qkp.452.1635918839026; + Tue, 02 Nov 2021 22:53:59 -0700 (PDT) +ARC-Seal: i=1; a=rsa-sha256; t=1635918839; cv=none; + d=google.com; s=arc-20160816; + b=TxeP1R8wGY77iEOW5OA//H6lr5ZzRQJXOMZuq1qppNNT9CffP+8KNxqVx4SCNEzZWO + E5gtYaQIBt3dFSwmeeTdeJJ4UIvAdoZpzRYduaJ/jV/ivqgeXg/L4/kXQhtffy/qfUTZ + I3ATmvVEvG7AEcx1oiYgAqK48GFG09H2zg9bXJX2t1e33lGYBTI4HcI6ZvXen30IjPEF + A5xCT+7cXSJfYDQXl2VFpOrgyKrNQ6M9ScegQbnidJEC/pK3jtWgV+blh9YUlU/Rpba1 + pi0o0RApfa9GckPvzLKuKZ9gDgo1naIqmRb5MSNblDIugQcM8PVJaQdkUdguw1ae4cum + d5ug== +ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=mime-version:subject:message-id:to:from:date:dkim-signature; + bh=yCKe9cilxNvAlyj5pFFJvbT6MLuyClQJoODwhPlLEB0=; + b=FWdIFnzFpoc1wyLXoHDUk12q6YW7NeN3pk/vM+/tQSWEM982z4kHe0sZlIMbV/xLT7 + dTjsws0eUNVKbHoZZX3vJqYrkNf7p0S3sbXeu+R+3M7rZhCnVS0iL5ROWk6ck7HRVBMd + nzf3XruBGfWSPWAEmI/A+MPa9YnvaCrUHYvELIrxjOfGxOd+1wqG2oiA9G+n1nu/YPJx + Kzf+vs28ewit0kxKXkCdZNMMXi9zvnjibpr8XQLTs/7JYGicPAj5HFvvz1992kdd7KZo + KRkiwIwkZbGtVKkNBFJnugjcpY/fb1/Bs4tBBWvYCBhanEwjCBsW72wpihj3MDseIgCT + 77eQ== +ARC-Authentication-Results: i=1; mx.google.com; + dkim=pass header.i=@zayo.com header.s=SF112018Alt header.b=pX42Nhcg; + spf=pass (google.com: domain of mr=zayo.com__0-86gzgi0xbjnhkm@nggz1qayjso6w4.6-79qkeai.na152.bnc.salesforce.com designates 192.0.2.1 as permitted sender) smtp.mailfrom="mr=zayo.com__0-86gzgi0xbjnhkm@nggz1qayjso6w4.6-79qkeai.na152.bnc.salesforce.com"; + dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com +Received: from smtp15-ia4-sp3.mta.salesforce.com (smtp15-ia4-sp3.mta.salesforce.com. [192.0.2.1]) + by mx.google.com with ESMTPS id w12si1633156qtc.52.20192.0.2.1.1.58 + for + (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); + Tue, 02 Nov 2021 22:53:59 -0700 (PDT) +Received-SPF: pass (google.com: domain of mr=zayo.com__0-86gzgi0xbjnhkm@nggz1qayjso6w4.6-79qkeai.na152.bnc.salesforce.com designates 192.0.2.1 as permitted sender) client-ip=192.0.2.1; +Received: from [192.0.2.1] ([192.0.2.1:50146] helo=na152-app2-29-ia4.ops.sfdc.net) + by mx2-ia4-sp3.mta.salesforce.com (envelope-from ) + (ecelerity 192.0.2.1 r(Core:release/192.0.2.1)) with ESMTPS (cipher=ECDHE-RSA-AES256-GCM-SHA384 + subject="/C=US/ST=California/L=San Francisco/O=salesforce.com, inc./OU=0:app;1:ia4;2:ia4-sp3;3:na152;4:prod/CN=na152-app2-29-ia4.ops.sfdc.net") + id B2/DE-06158-6F322816; Wed, 03 Nov 2021 05:53:58 +0000 +Date: Wed, 3 Nov 2021 05:53:58 +0000 (GMT) +From: MR Zayo +To: "maintenance-notices@example.com" +Message-ID: +Subject: [maintenance-notices] START MAINTENANCE NOTIFICATION***Some Customer Inc***ZAYO + TTN-0003456789 Courtesy*** +MIME-Version: 1.0 +Content-Type: multipart/mixed; + boundary="----=_Part_23970_1306639044.1635918838585" +X-Priority: 3 +X-SFDC-LK: 00D6000000079Qk +X-SFDC-User: 00560000003fpx3 +X-Sender: postmaster@salesforce.com +X-mail_abuse_inquiries: http://www.salesforce.com/company/abuse.jsp +X-SFDC-TLS-NoRelay: 1 +X-SFDC-Binding: 1WrIRBV94myi25uB +X-SFDC-EmailCategory: apiSingleMail +X-SFDC-Interface: internal +X-Original-Sender: mr@zayo.com +X-Original-Authentication-Results: mx.google.com; dkim=pass + header.i=@zayo.com header.s=SF112018Alt header.b=pX42Nhcg; spf=pass + (google.com: domain of mr=zayo.com__0-86gzgi0xbjnhkm@nggz1qayjso6w4.6-79qkeai.na152.bnc.salesforce.com + designates 192.0.2.1 as permitted sender) smtp.mailfrom="mr=zayo.com__0-86gzgi0xbjnhkm@nggz1qayjso6w4.6-79qkeai.na152.bnc.salesforce.com"; + dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com +Precedence: list +Mailing-list: list maintenance-notices@example.com; contact maintenance-notices+owners@example.com +List-ID: +X-Google-Group-Id: 536184160288 +List-Post: , +List-Help: , + +List-Archive: +List-Unsubscribe: , + +x-netskope-inspected: true + +------=_Part_23970_1306639044.1635918838585 +Content-Type: multipart/alternative; + boundary="----=_Part_23969_1713254167.1635918838584" + +------=_Part_23969_1713254167.1635918838584 +Content-Type: text/plain; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + +Dear Zayo Customer, + + +Please be advised that the below scheduled maintenance activity will be com= +mencing momentarily. + + +Maintenance Ticket #: TTN-0003456789 + + + + +Maintenance Window=20 + +1st Activity Date=20 +01-Nov-2021 00:01 to 01-Nov-2021 05:00 ( Mountain )=20 + + 01-Nov-2021 06:01 to 01-Nov-2021 11:00 ( GMT )=20 + +2nd Activity Date=20 +02-Nov-2021 00:01 to 02-Nov-2021 05:00 ( Mountain )=20 + + 02-Nov-2021 06:01 to 02-Nov-2021 11:00 ( GMT )=20 + +3rd Activity Date=20 +03-Nov-2021 00:01 to 03-Nov-2021 05:00 ( Mountain )=20 + + 03-Nov-2021 06:01 to 03-Nov-2021 11:00 ( GMT )=20 + + + +Location of Maintenance: 11011 E Peakview Ave, Englewood, CO + + +Reason for Maintenance: Routine Fiber splice - NO Impact is Expected to you= +r services. This notification is to advise you that we will be entering a s= +plice case that houses live traffic. + + +Circuit(s) Affected:=20 + + +Circuit Id +Expected Impact +A Location Address + +Z Location Address +Legacy Circuit Id + +/OGYX/123456/ /ZYO / +No Expected Impact +624 S Grand Ave Los Angeles, CA. USA +639 E 18th Ave Denver, CO. USA + +/OGYX/234567/ /ZYO / +No Expected Impact +11 Great Oaks Blvd San Jose, CA. USA +350 E Cermak Rd Chicago, IL. USA + + + + +If you have any questions or need any additional information, please contac= +t the MR group at mr@zayo.com or call 866-236-2824. + + +Regards, + + + + +Zayo=C2=A0Global Change Management Team/=C3=89quipe de Gestion du Changemen= +t Global=C2=A0Zayo + +Zayo | Our Fiber Fuels Global Innovation + +Toll free/No=C2=A0sans=C2=A0frais:=C2=A01.866.236.2824 + +United Kingdom Toll Free/No=C2=A0sans +frais Royaume-Uni:=C2=A00800.169.1646 + +Email/Courriel:=C2=A0mr@zayo.com=C2=A0 + +Website/Site Web:=C2=A0https://www.zayo.com + +Purpose=C2=A0|=C2=A0Network Map=C2=A0|=C2=A0Escalation List=C2=A0|=C2=A0Lin= +kedIn=C2=A0|=C2=A0Twitter=C2=A0|=C2=A0Tranzact=C2=A0 + +=C2=A0 + +This communication is the property of Zayo and may contain confidential or = +privileged information. If you have received this communication in error, p= +lease promptly notify the sender by reply e-mail and destroy all copies of = +the communication and any attachments. + +=C2=A0 + +--=20 +You received this message because you are subscribed to the Google Groups "= +Maintenance Notices" group. +To unsubscribe from this group and stop receiving emails from it, send an e= +mail to maintenance-notices+unsubscribe@example.com. +To view this discussion on the web visit https://groups.google.com/a/exampl= +e.com/d/msgid/maintenance-notices/JvKMs0000000000000000000000000000000000000000000= +00R1ZF1D00G_QXdBhZTt2-s07csO3pnA%40sfdc.net. + +------=_Part_23969_1713254167.1635918838584 +Content-Type: text/html; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + +Dear Zayo Customer, + +

Please be advised that the below scheduled maintenance activity wil= +l be commencing momentarily. + +

Maintenance Ticket #: TTN-0003456789 + + + +

Maintenance Window

1st Activity Date <= +/b>
01-Nov-2021 00:01 to 01-Nov-2021 05:00 ( Mountain )=20 +
01-Nov-2021 06:01 to 01-Nov-2021 11:00 ( GMT )

2nd Activity Date
02-Nov-2021 00:01 to 02-Nov-2021 05:00 ( Mountain = +)=20 +
02-Nov-2021 06:01 to 02-Nov-2021 11:00 ( GMT )

3rd Activity Date
03-Nov-2021 00:01 to 03-Nov-2021 05:00 ( Mountain = +)=20 +
03-Nov-2021 06:01 to 03-Nov-2021 11:00 ( GMT )=20 + + +

Location of Maintenance: 11011 E Peakview Ave, Englewood, C= +O + +

Reason for Maintenance: Routine Fiber splice - NO Impact is= + Expected to your services. This notification is to advise you that we will= + be entering a splice case that houses live traffic. + +

Circuit(s) Affected:
+ + + + + + + + + + + + + + + + + + + + + + + +
Circuit IdExpected ImpactA Location AddressZ Location AddressLegacy Circuit Id
/OGYX/123456/ /ZYO /No Expected Impact624 S Grand Ave Los Angeles, CA. USA639 E 18th Ave Denver, CO. USA
/OGYX/234567/ /ZYO /No Expected Impact11 Great Oaks Blvd San Jose, CA. USA350 E Cermak Rd Chicago, IL. USA
+ + +

If you have any questions or need any additional information, pleas= +e contact the MR group at mr@zayo.com or call 866-236-2824. + +

Regards,

+
+ +

Zayo Global Change Management Team/= +=C3=89quipe de Gestion d= +u Changement Global Zayo

+ +

Zayo | Our Fiber Fuels Global Inn= +ovation

+ +

Toll free/No s= +ans frais: 1.866.236.2824

+ +

United Kingdom Toll Free/No sans +frais Royaume-Uni:<= +/i> 0800.169.1646

+ +

Email/Cou= +rriel: mr@zayo.com<= +/u> 

+ +

Website/Site Web: https://www.zayo.com

+ +

Purpose | Network Map Escalation List LinkedIn <= +/span>Twitter Tranzact&n= +bsp; + +

&nbs= +p;

+ +

This communication is the property of Zayo and may contain confidential= + or privileged information. If you have received this communication in erro= +r, please promptly notify the sender by reply e-mail and destroy all copies= + of the communication and any attachments.

+ +

 

+ +
+ +

+ +--
+You received this message because you are subscribed to the Google Groups &= +quot;Maintenance Notices" group.
+To unsubscribe from this group and stop receiving emails from it, send an e= +mail to maintenance-notices+= +unsubscribe@example.com.
+To view this discussion on the web visit https://groups.google.com/a/example.com/d/msgid/rd-no= +tices/JvKMs000000000000000000000000000000000000000000000R1ZF1D00G_QXdBhZTt2= +-s07csO3pnA%40sfdc.net.
+ +------=_Part_23969_1713254167.1635918838584-- + +------=_Part_23970_1306639044.1635918838585-- diff --git a/tests/unit/data/zayo/zayo6.eml b/tests/unit/data/zayo/zayo6.eml index 898a40fb..5d769d57 100644 --- a/tests/unit/data/zayo/zayo6.eml +++ b/tests/unit/data/zayo/zayo6.eml @@ -1,582 +1,582 @@ -Delivered-To: nautobot.email@example.com -Received: by 2002:a05:7000:1f21:0:0:0:0 with SMTP id hs33csp4405276mab; - Wed, 3 Nov 2021 03:51:11 -0700 (PDT) -X-Received: by 2002:a63:470b:: with SMTP id u11mr32279100pga.441.1635936671318; - Wed, 03 Nov 2021 03:51:11 -0700 (PDT) -ARC-Seal: i=3; a=rsa-sha256; t=1635936671; cv=pass; - d=google.com; s=arc-20160816; - b=l/1Y2adXK2zDtJmh5WD5ai8qrvj0Ol/LdAkY72m+Tr+0J/SaDst+21NSYQE66MA+hc - 7WG/iHE5V7b5AsLd/N55TYu11zzL81VEf820e2Cd8vGfFXc1esEREvETXwuxYKPxZgXv - ha4ULIafTfBjVIHkfvvSkmZQIZQjpv48XwPsXdpnfpRrSIki1Wg+w81CEhOx1eMW9JVC - ykhgpPC+wLUR5cEjc4p5/sQw/thErU4frO3u7TOjfIY21zgmCQ03tBwV1mGEwxXQe5if - eeCFk2FERT9xcf2EsNG5B1/O2Ht+QlfJEInlPTjBSHpus6zdabGfkjEr940WasaehwWr - Lw2A== -ARC-Message-Signature: i=3; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=list-unsubscribe:list-archive:list-help:list-post:list-id - :mailing-list:precedence:mime-version:subject:message-id:to:from - :date:sender:dkim-signature; - bh=bUFUI9zftvJ/qkxadbwBcxSzYABAGJ4AWewj0RCLZWc=; - b=NG1Jvb1ia493HVvY7fTzOs2/Ub8+uCuLOywbNbTcOXLaHcUjozcu5Td72Awmc0iOSA - Fv+f8M2pH5EsNAJbm5H1Pj/xRFZjCdlR04cHIKSB8Yd5B1tMU04qmtEDL0Ly0QRTvZeJ - U8COmI02hQ8ma0IfiMdz+VPkhLWv7Wa73NWYyHexv5+hPoI1RgwMC7dFx13QbUQGGLwn - yR89uAriMg8l+E0DEisCbHICP8g2lYHbOHGbaT3KhYn7/WmdAPaJd8jqINzX3VE2yaHx - x0o60M3wIFNk/mtKW/tzmQ/dCkO7/l9ViK5n2IhLkavSEWmqoDHhQB/WZFY3reAz9P9p - 1Glg== -ARC-Authentication-Results: i=3; mx.google.com; - dkim=pass header.i=@example.com header.s=example header.b="T634/s0T"; - arc=pass (i=2 spf=pass spfdomain=esmsujtsgbjba.6-79qkeai.na152.bnc.salesforce.com dkim=pass dkdomain=zayo.com dmarc=pass fromdomain=zayo.com); - spf=pass (google.com: domain of maintenance-notices+bncbcyp3io6yejbbhotrggamgqeqhj7pri@example.com designates 209.85.220.97 as permitted sender) smtp.mailfrom=maintenance-notices+bncBCYP3IO6YEJBBHOTRGGAMGQEQHJ7PRI@example.com; - dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=zayo.com -Return-Path: -Received: from mail-sor-f97.google.com (mail-sor-f97.google.com. [209.85.220.97]) - by mx.google.com with SMTPS id s6sor1032420pfk.85.2021.11.03.03.51.11 - for - (Google Transport Security); - Wed, 03 Nov 2021 03:51:11 -0700 (PDT) -Received-SPF: pass (google.com: domain of maintenance-notices+bncbcyp3io6yejbbhotrggamgqeqhj7pri@example.com designates 209.85.220.97 as permitted sender) client-ip=209.85.220.97; -Authentication-Results: mx.google.com; - dkim=pass header.i=@example.com header.s=example header.b="T634/s0T"; - arc=pass (i=2 spf=pass spfdomain=esmsujtsgbjba.6-79qkeai.na152.bnc.salesforce.com dkim=pass dkdomain=zayo.com dmarc=pass fromdomain=zayo.com); - spf=pass (google.com: domain of maintenance-notices+bncbcyp3io6yejbbhotrggamgqeqhj7pri@example.com designates 209.85.220.97 as permitted sender) smtp.mailfrom=maintenance-notices+bncBCYP3IO6YEJBBHOTRGGAMGQEQHJ7PRI@example.com; - dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=zayo.com -X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; - d=1e100.net; s=20210112; - h=x-gm-message-state:dkim-signature:sender:date:from:to:message-id - :subject:mime-version:x-original-sender - :x-original-authentication-results:precedence:mailing-list:list-id - :list-post:list-help:list-archive:list-unsubscribe; - bh=bUFUI9zftvJ/qkxadbwBcxSzYABAGJ4AWewj0RCLZWc=; - b=YuCimHnJzzWUNXPzhTRoNzV8R1q7x/2C3+EU4OAwvsxXao7xqJ+EHrCNuayW2jrM7J - VRHppcJ3sGEX/TjBEXCYk3y39tynYEqAFS9LQasYzJAISOowQZ5TtpVSLKTtckH15uq1 - Q8S3fQars/DFZL+ZO4yrrKXFFwDr/97P3AV5Y5lCk9JDGz+UAJI/RuzYYMGsPu5FsU3Y - j0twINiwQApynq2DimvNKbMcunl//cOaP+LwJvhsOBHRFhnMzFW1MV7A8ZkpH/d5V7FS - 8DhGdXisXeS0t55y78tbjEzDaJgCQabitlwJQRur3J4G4ZYG5DQEzgp7YoRaVJV8KBdD - MHWg== -X-Gm-Message-State: AOAM530ZBsozJksFwUsv5wHr0sPLT+t4w2/aKyTa6IiCd+W5be6zNBdu - BYnLjVVM8/tF5eXXDiUgR9t2A6Ih0mIlWnjeK2Cl9bD+TpDsWnTP -X-Google-Smtp-Source: ABdhPJxAc+ZAZModcVl742c0bXN/2/E4ZMNFZZ8xLzFHheQKwaKnGS6kfvjs3g2xaM06PRDllaN1ExEhylzT -X-Received: by 2002:a05:6a00:230e:b0:44c:4f2d:9b00 with SMTP id h14-20020a056a00230e00b0044c4f2d9b00mr43775784pfh.24.1635936671009; - Wed, 03 Nov 2021 03:51:11 -0700 (PDT) -Return-Path: -Received: from netskope.com ([8.36.116.152]) - by smtp-relay.gmail.com with ESMTPS id mh13sm415101pjb.3.2021.11.03.03.51.10 - for - (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); - Wed, 03 Nov 2021 03:51:10 -0700 (PDT) -X-Relaying-Domain: example.com -Received: by mail-qk1-f199.google.com with SMTP id az10-20020a05620a170a00b00462e059180esf1983676qkb.19 - for ; Wed, 03 Nov 2021 03:51:10 -0700 (PDT) -ARC-Seal: i=2; a=rsa-sha256; t=1635936669; cv=pass; - d=google.com; s=arc-20160816; - b=plphL9A2eSff+KGqsvCJjl2QQvLB3+7kCFiRw8a4P1g3KP7DRN9XMEe+ScLLpPs6B2 - T2BlV7ek7oDEkr85tFMH5IIUmgdaqs3WqQyujgUFXR7eaMsHzJjlBXXf5LyC/bamoSex - XToTb5Si8o23KQigvNo7vKA4r/20JAD0fDgyATqCOfk7VU6Bsgv40B28wzp4J/GHgFma - Ivc7Vri/sWJFvr7Yfl81WJ0NZ4JZP0BC0r2UeZWIoxO2zX/8yna2YqhM5cfKCxYY49v9 - o3zMJsET/QigzhzLOUoD8cFc7uXcUcGQJGOwhENnKKNJt6DGPqrdqZuqhVVrLkAy0+ho - gQzA== -ARC-Message-Signature: i=2; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=list-unsubscribe:list-archive:list-help:list-post:list-id - :mailing-list:precedence:mime-version:subject:message-id:to:from - :date:sender:dkim-signature; - bh=bUFUI9zftvJ/qkxadbwBcxSzYABAGJ4AWewj0RCLZWc=; - b=YW5uWxw2RtfRCSbSu90QEcUyfR9wzKO/ZOZ5+dQWcLMpMo8FnhOuBVkz/uEz415SEv - Z2KBYYqh/LpNnAcN+L8p+uXx3Z7UUPV3YugX1CiaxN/DFQtz1yBj8L5UpmcX+YYfS5kl - /MqaLhYPQ3b1Ormp6FzSsEKS5aUoLEtLk+qboKfzVGz8ITXUvivei9mrjY07t9XNL8CY - J78afolUKTRo3Jo/nooeQcSKAm9FsQM9LZMt18Y3GfJFLsDQJ9taVPTeti63wMKbjMqc - oUeFVJZk4pO4hHnEAoapB/FB8M5EwgYDu9nrJWVPkXD+q2oAWKlAb3tXf4mHC/OOxHq2 - F8aA== -ARC-Authentication-Results: i=2; mx.google.com; - dkim=pass header.i=@zayo.com header.s=SF112018Alt header.b=v8rSORlJ; - spf=pass (google.com: domain of mr=zayo.com__0-f4ae71z9pyg7x7@esmsujtsgbjba.6-79qkeai.na152.bnc.salesforce.com designates 13.110.74.198 as permitted sender) smtp.mailfrom="mr=zayo.com__0-f4ae71z9pyg7x7@esmsujtsgbjba.6-79qkeai.na152.bnc.salesforce.com"; - dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com -DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; - d=example.com; s=example; - h=sender:date:from:to:message-id:subject:mime-version - :x-original-sender:x-original-authentication-results:precedence - :mailing-list:list-id:list-post:list-help:list-archive - :list-unsubscribe; - bh=bUFUI9zftvJ/qkxadbwBcxSzYABAGJ4AWewj0RCLZWc=; - b=T634/s0T3yrtgwvobSZ5mBnN5R2DMrLQYOWtA4Pe09NbNh+uG30Sr5MI6SnY8TdxxJ - RuD1FisJcg+tIJqMYJqv0MDSo++qLLiLu00m/IKNTY1zytS0dfVr9EpGvvxi9wvUv/cZ - ruxNSMewmGBdtG14Odk4WalvqeTDv56mhs/Zs= -Sender: maintenance-notices@example.com -X-Received: by 2002:a05:620a:27c3:: with SMTP id i3mr2186597qkp.442.1635936669732; - Wed, 03 Nov 2021 03:51:09 -0700 (PDT) -X-Received: by 2002:a05:620a:27c3:: with SMTP id i3mr2186586qkp.442.1635936669571; - Wed, 03 Nov 2021 03:51:09 -0700 (PDT) -X-BeenThere: maintenance-notices@example.com -Received: by 2002:ac8:5ad0:: with SMTP id d16ls1078299qtd.9.gmail; Wed, 03 Nov - 2021 03:51:09 -0700 (PDT) -X-Received: by 2002:a05:622a:2:: with SMTP id x2mr3247943qtw.409.1635936668957; - Wed, 03 Nov 2021 03:51:08 -0700 (PDT) -ARC-Seal: i=1; a=rsa-sha256; t=1635936668; cv=none; - d=google.com; s=arc-20160816; - b=qv/2Uz6bj9/okkOsWe+sF4sUAVeBmyTCFLpARhy7NGD8gsVgoVDIaAmW8tY4ZUiclU - aUjyP9OmFBS5FnG29y60ZSUqLldiqV+Fs8U2mn0Rb+keRZRD8da0V1e1XDwMsYZZV0AE - dEcNX96mkN0YXTRLMGH9QeKsJqLUI8/3ooMLWe4EkwcgZ7uGs1BiRCOlrEesPhDfPTGZ - LJqAE4gFm7+2CRadNfottUkilGoNAdhpBZE4IcAocgmOdgbUhT3/wPz+ZtpL58kvHAX5 - Wlgw1iiSCCryQ+4AF6SSBnKbk18HJkX69XbJCEiStshUgokS+1hvdDsI8TZMINmTNBWV - 9wzQ== -ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=mime-version:subject:message-id:to:from:date:dkim-signature; - bh=bgf+IqaUX3TRCjQoVi3JJ7QlhEqISfbL3q7YZADzuSA=; - b=0RzyiGXiN0eEU6cbav/vIqQAaxeEzU+PNHOaqdJJk8dgK0GnpHndHaYQd6A+ZpAKso - RWCacVwzU2AI1c4pPKOhRZKFvlOhIItPqaVe9TSuSgTi8bubpESDlcxO9rzduXoLHCUN - un2kHRAVcEABquv0pYXOsf9poA5Bo9RJ8QNN5LNSJ2CTcwTIYorkowDQ4kOYzxNZH1bg - hFOiNzVIOFNzZfHc4l3oS8zSjRyJK+ttb5G9+mCc4m3JMmZnlBAL3XOi88ATQJeBUrvt - Y3UQi2aIldVHd8OK63QuykzxvqU93wilKMQLIAXwZjgLK6DSuvaFcFHixYpxqOcqLFng - veDg== -ARC-Authentication-Results: i=1; mx.google.com; - dkim=pass header.i=@zayo.com header.s=SF112018Alt header.b=v8rSORlJ; - spf=pass (google.com: domain of mr=zayo.com__0-f4ae71z9pyg7x7@esmsujtsgbjba.6-79qkeai.na152.bnc.salesforce.com designates 13.110.74.198 as permitted sender) smtp.mailfrom="mr=zayo.com__0-f4ae71z9pyg7x7@esmsujtsgbjba.6-79qkeai.na152.bnc.salesforce.com"; - dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com -Received: from smtp07-ia4-sp3.mta.salesforce.com (smtp07-ia4-sp3.mta.salesforce.com. [13.110.74.198]) - by mx.google.com with ESMTPS id m4si2335410qtw.401.2021.11.03.03.51.08 - for - (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); - Wed, 03 Nov 2021 03:51:08 -0700 (PDT) -Received-SPF: pass (google.com: domain of mr=zayo.com__0-f4ae71z9pyg7x7@esmsujtsgbjba.6-79qkeai.na152.bnc.salesforce.com designates 13.110.74.198 as permitted sender) client-ip=13.110.74.198; -Received: from [10.180.203.115] ([10.180.203.115:40278] helo=na152-app2-40-ia4.ops.sfdc.net) - by mx1-ia4-sp3.mta.salesforce.com (envelope-from ) - (ecelerity 4.2.38.62368 r(Core:release/4.2.38.0)) with ESMTPS (cipher=ECDHE-RSA-AES256-GCM-SHA384 - subject="/C=US/ST=California/L=San Francisco/O=salesforce.com, inc./OU=0:app;1:ia4;2:ia4-sp3;3:na152;4:prod/CN=na152-app2-40-ia4.ops.sfdc.net") - id 91/A8-06133-C9962816; Wed, 03 Nov 2021 10:51:08 +0000 -Date: Wed, 3 Nov 2021 10:51:08 +0000 (GMT) -From: MR Zayo -To: "maintenance-notices@example.com" -Message-ID: -Subject: [maintenance-notices] COMPLETED MAINTENANCE NOTIFICATION***Some Customer - Inc***ZAYO TTN-0004567890 Courtesy*** -MIME-Version: 1.0 -Content-Type: multipart/mixed; - boundary="----=_Part_19559_1696384994.1635936668672" -X-Priority: 3 -X-SFDC-LK: 00D6000000079Qk -X-SFDC-User: 00560000003fpx3 -X-Sender: postmaster@salesforce.com -X-mail_abuse_inquiries: http://www.salesforce.com/company/abuse.jsp -X-SFDC-TLS-NoRelay: 1 -X-SFDC-Binding: 1WrIRBV94myi25uB -X-SFDC-EmailCategory: apiSingleMail -X-SFDC-Interface: internal -X-Original-Sender: mr@zayo.com -X-Original-Authentication-Results: mx.google.com; dkim=pass - header.i=@zayo.com header.s=SF112018Alt header.b=v8rSORlJ; spf=pass - (google.com: domain of mr=zayo.com__0-f4ae71z9pyg7x7@esmsujtsgbjba.6-79qkeai.na152.bnc.salesforce.com - designates 13.110.74.198 as permitted sender) smtp.mailfrom="mr=zayo.com__0-f4ae71z9pyg7x7@esmsujtsgbjba.6-79qkeai.na152.bnc.salesforce.com"; - dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com -Precedence: list -Mailing-list: list maintenance-notices@example.com; contact maintenance-notices+owners@example.com -List-ID: -X-Google-Group-Id: 536184160288 -List-Post: , -List-Help: , - -List-Archive: -List-Unsubscribe: , - -x-netskope-inspected: true - -------=_Part_19559_1696384994.1635936668672 -Content-Type: multipart/alternative; - boundary="----=_Part_19558_243007928.1635936668672" - -------=_Part_19558_243007928.1635936668672 -Content-Type: text/plain; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - -Dear Zayo Customer, - - -Please be advised that the scheduled maintenance window has been completed = -in its entirety for this event. - -If your services are still being impacted please take a moment to review th= -e service and bounce any interfaces that may have been impacted. In the eve= -nt that this does not fully restore your service please contact the Zayo NC= -C at 866-236-2824 or at zayoncc@zayo.com. - - -Maintenance Ticket #: TTN-0004567890 - - - - -Maintenance Window=20 - -1st Activity Date=20 -01-Nov-2021 00:01 to 01-Nov-2021 05:00 ( Mountain )=20 - - 01-Nov-2021 06:01 to 01-Nov-2021 11:00 ( GMT )=20 - -2nd Activity Date=20 -02-Nov-2021 00:01 to 02-Nov-2021 05:00 ( Mountain )=20 - - 02-Nov-2021 06:01 to 02-Nov-2021 11:00 ( GMT )=20 - -3rd Activity Date=20 -03-Nov-2021 00:01 to 03-Nov-2021 05:00 ( Mountain )=20 - - 03-Nov-2021 06:01 to 03-Nov-2021 11:00 ( GMT )=20 - - - -Location of Maintenance: 11011 E Peakview Ave, Englewood, CO - - -Reason for Maintenance: Routine Fiber splice - NO Impact is Expected to you= -r services. This notification is to advise you that we will be entering a s= -plice case that houses live traffic. - - -Circuit(s) Affected:=20 - - -Circuit Id -Expected Impact -A Location Address - -Z Location Address -Legacy Circuit Id - -/OGYX/123418/ /ZYO / -No Expected Impact -624 S Grand Ave Los Angeles, CA. USA -639 E 18th Ave Denver, CO. USA - -/OGYX/123408/ /ZYO / -No Expected Impact -11 Great Oaks Blvd San Jose, CA. USA -350 E Cermak Rd Chicago, IL. USA - - - - -If you have any questions or need any additional information related to thi= -s maintenance event, please contact the MR group at mr@zayo.com or call 866= --236-2824. - - -Regards, - - - - -Zayo=C2=A0Global Change Management Team/=C3=89quipe de Gestion du Changemen= -t Global=C2=A0Zayo - -Zayo | Our Fiber Fuels Global Innovation - -Toll free/No=C2=A0sans=C2=A0frais:=C2=A01.866.236.2824 - -United Kingdom Toll Free/No=C2=A0sans -frais Royaume-Uni:=C2=A00800.169.1646 - -Email/Courriel:=C2=A0mr@zayo.com=C2=A0 - -Website/Site Web:=C2=A0https://www.zayo.com - -Purpose=C2=A0|=C2=A0Network Map=C2=A0|=C2=A0Escalation List=C2=A0|=C2=A0Lin= -kedIn=C2=A0|=C2=A0Twitter=C2=A0|=C2=A0Tranzact=C2=A0 - -=C2=A0 - -This communication is the property of Zayo and may contain confidential or = -privileged information. If you have received this communication in error, p= -lease promptly notify the sender by reply e-mail and destroy all copies of = -the communication and any attachments. - -=C2=A0 - ---=20 -You received this message because you are subscribed to the Google Groups "= -Maintenance Notices" group. -To unsubscribe from this group and stop receiving emails from it, send an e= -mail to maintenance-notices+unsubscribe@example.com. -To view this discussion on the web visit https://groups.google.com/a/exampl= -e.com/d/msgid/maintenance-notices/ev1IT0000000000000000000000000000000000000000000= -00R1ZSSJ00w2nwuH24QlKuzlBcdHydZw%40sfdc.net. - -------=_Part_19558_243007928.1635936668672 -Content-Type: text/html; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - -Dear Zayo Customer, - -

Please be advised that the scheduled maintenance window has been co= -mpleted in its entirety for this event. -

If your services are still being impacted pl= -ease take a moment to review the service and bounce any interfaces that may= - have been impacted. In the event that this does not fully restore your se= -rvice please contact the Zayo NCC at 866-236-2824 or at zayoncc@zayo.com= -. - -

Maintenance Ticket #: TTN-0004567890 - - - -

Maintenance Window

1st Activity Date <= -/b>
01-Nov-2021 00:01 to 01-Nov-2021 05:00 ( Mountain )=20 -
01-Nov-2021 06:01 to 01-Nov-2021 11:00 ( GMT )

2nd Activity Date
02-Nov-2021 00:01 to 02-Nov-2021 05:00 ( Mountain = -)=20 -
02-Nov-2021 06:01 to 02-Nov-2021 11:00 ( GMT )

3rd Activity Date
03-Nov-2021 00:01 to 03-Nov-2021 05:00 ( Mountain = -)=20 -
03-Nov-2021 06:01 to 03-Nov-2021 11:00 ( GMT )=20 - - -

Location of Maintenance: 11011 E Peakview Ave, Englewood, C= -O - -

Reason for Maintenance: Routine Fiber splice - NO Impact is= - Expected to your services. This notification is to advise you that we will= - be entering a splice case that houses live traffic. - -

Circuit(s) Affected:
- - - - - - - - - - - - - - - - - - - - - - - -
Circuit IdExpected ImpactA Location AddressZ Location AddressLegacy Circuit Id
/OGYX/123418/ /ZYO /No Expected Impact624 S Grand Ave Los Angeles, CA. USA639 E 18th Ave Denver, CO. USA
/OGYX/123408/ /ZYO /No Expected Impact11 Great Oaks Blvd San Jose, CA. USA350 E Cermak Rd Chicago, IL. USA
- - -

If you have any questions or need any additional information relate= -d to this maintenance event, please contact the MR group at mr@zayo.com or = -call 866-236-2824. - -

Regards,

-
- -

Zayo Global Change Management Team/= -=C3=89quipe de Gestion d= -u Changement Global Zayo

- -

Zayo | Our Fiber Fuels Global Inn= -ovation

- -

Toll free/No s= -ans frais: 1.866.236.2824

- -

United Kingdom Toll Free/No sans -frais Royaume-Uni:<= -/i> 0800.169.1646

- -

Email/Cou= -rriel: mr@zayo.com<= -/u> 

- -

Website/Site Web: https://www.zayo.com

- -

Purpose | Network Map Escalation List LinkedIn <= -/span>Twitter Tranzact&n= -bsp; - -

&nbs= -p;

- -

This communication is the property of Zayo and may contain confidential= - or privileged information. If you have received this communication in erro= -r, please promptly notify the sender by reply e-mail and destroy all copies= - of the communication and any attachments.

- -

 

- -
- -

- ---
-You received this message because you are subscribed to the Google Groups &= -quot;Maintenance Notices" group.
-To unsubscribe from this group and stop receiving emails from it, send an e= -mail to maintenance-notices+= -unsubscribe@example.com.
-To view this discussion on the web visit https://groups.google.com/a/example.com/d/msgid/rd-no= -tices/ev1IT000000000000000000000000000000000000000000000R1ZSSJ00w2nwuH24QlK= -uzlBcdHydZw%40sfdc.net.
- -------=_Part_19558_243007928.1635936668672-- - -------=_Part_19559_1696384994.1635936668672-- +Delivered-To: nautobot.email@example.com +Received: by 2001:DB8::1 with SMTP id hs33csp4405276mab; + Wed, 3 Nov 2021 03:51:11 -0700 (PDT) +X-Received: by 2001:DB8::1 with SMTP id u11mr32279100pga.441.1635936671318; + Wed, 03 Nov 2021 03:51:11 -0700 (PDT) +ARC-Seal: i=3; a=rsa-sha256; t=1635936671; cv=pass; + d=google.com; s=arc-20160816; + b=l/1Y2adXK2zDtJmh5WD5ai8qrvj0Ol/LdAkY72m+Tr+0J/SaDst+21NSYQE66MA+hc + 7WG/iHE5V7b5AsLd/N55TYu11zzL81VEf820e2Cd8vGfFXc1esEREvETXwuxYKPxZgXv + ha4ULIafTfBjVIHkfvvSkmZQIZQjpv48XwPsXdpnfpRrSIki1Wg+w81CEhOx1eMW9JVC + ykhgpPC+wLUR5cEjc4p5/sQw/thErU4frO3u7TOjfIY21zgmCQ03tBwV1mGEwxXQe5if + eeCFk2FERT9xcf2EsNG5B1/O2Ht+QlfJEInlPTjBSHpus6zdabGfkjEr940WasaehwWr + Lw2A== +ARC-Message-Signature: i=3; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=list-unsubscribe:list-archive:list-help:list-post:list-id + :mailing-list:precedence:mime-version:subject:message-id:to:from + :date:sender:dkim-signature; + bh=bUFUI9zftvJ/qkxadbwBcxSzYABAGJ4AWewj0RCLZWc=; + b=NG1Jvb1ia493HVvY7fTzOs2/Ub8+uCuLOywbNbTcOXLaHcUjozcu5Td72Awmc0iOSA + Fv+f8M2pH5EsNAJbm5H1Pj/xRFZjCdlR04cHIKSB8Yd5B1tMU04qmtEDL0Ly0QRTvZeJ + U8COmI02hQ8ma0IfiMdz+VPkhLWv7Wa73NWYyHexv5+hPoI1RgwMC7dFx13QbUQGGLwn + yR89uAriMg8l+E0DEisCbHICP8g2lYHbOHGbaT3KhYn7/WmdAPaJd8jqINzX3VE2yaHx + x0o60M3wIFNk/mtKW/tzmQ/dCkO7/l9ViK5n2IhLkavSEWmqoDHhQB/WZFY3reAz9P9p + 1Glg== +ARC-Authentication-Results: i=3; mx.google.com; + dkim=pass header.i=@example.com header.s=example header.b="T634/s0T"; + arc=pass (i=2 spf=pass spfdomain=esmsujtsgbjba.6-79qkeai.na152.bnc.salesforce.com dkim=pass dkdomain=zayo.com dmarc=pass fromdomain=zayo.com); + spf=pass (google.com: domain of maintenance-notices+bncbcyp3io6yejbbhotrggamgqeqhj7pri@example.com designates 192.0.2.1 as permitted sender) smtp.mailfrom=maintenance-notices+bncBCYP3IO6YEJBBHOTRGGAMGQEQHJ7PRI@example.com; + dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=zayo.com +Return-Path: +Received: from mail-sor-f97.google.com (mail-sor-f97.google.com. [192.0.2.1]) + by mx.google.com with SMTPS id s6sor1032420pfk.85.20192.0.2.1.1.11 + for + (Google Transport Security); + Wed, 03 Nov 2021 03:51:11 -0700 (PDT) +Received-SPF: pass (google.com: domain of maintenance-notices+bncbcyp3io6yejbbhotrggamgqeqhj7pri@example.com designates 192.0.2.1 as permitted sender) client-ip=192.0.2.1; +Authentication-Results: mx.google.com; + dkim=pass header.i=@example.com header.s=example header.b="T634/s0T"; + arc=pass (i=2 spf=pass spfdomain=esmsujtsgbjba.6-79qkeai.na152.bnc.salesforce.com dkim=pass dkdomain=zayo.com dmarc=pass fromdomain=zayo.com); + spf=pass (google.com: domain of maintenance-notices+bncbcyp3io6yejbbhotrggamgqeqhj7pri@example.com designates 192.0.2.1 as permitted sender) smtp.mailfrom=maintenance-notices+bncBCYP3IO6YEJBBHOTRGGAMGQEQHJ7PRI@example.com; + dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=zayo.com +X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=1e100.net; s=20210112; + h=x-gm-message-state:dkim-signature:sender:date:from:to:message-id + :subject:mime-version:x-original-sender + :x-original-authentication-results:precedence:mailing-list:list-id + :list-post:list-help:list-archive:list-unsubscribe; + bh=bUFUI9zftvJ/qkxadbwBcxSzYABAGJ4AWewj0RCLZWc=; + b=YuCimHnJzzWUNXPzhTRoNzV8R1q7x/2C3+EU4OAwvsxXao7xqJ+EHrCNuayW2jrM7J + VRHppcJ3sGEX/TjBEXCYk3y39tynYEqAFS9LQasYzJAISOowQZ5TtpVSLKTtckH15uq1 + Q8S3fQars/DFZL+ZO4yrrKXFFwDr/97P3AV5Y5lCk9JDGz+UAJI/RuzYYMGsPu5FsU3Y + j0twINiwQApynq2DimvNKbMcunl//cOaP+LwJvhsOBHRFhnMzFW1MV7A8ZkpH/d5V7FS + 8DhGdXisXeS0t55y78tbjEzDaJgCQabitlwJQRur3J4G4ZYG5DQEzgp7YoRaVJV8KBdD + MHWg== +X-Gm-Message-State: AOAM530ZBsozJksFwUsv5wHr0sPLT+t4w2/aKyTa6IiCd+W5be6zNBdu + BYnLjVVM8/tF5eXXDiUgR9t2A6Ih0mIlWnjeK2Cl9bD+TpDsWnTP +X-Google-Smtp-Source: ABdhPJxAc+ZAZModcVl742c0bXN/2/E4ZMNFZZ8xLzFHheQKwaKnGS6kfvjs3g2xaM06PRDllaN1ExEhylzT +X-Received: by 2001:DB8::1 with SMTP id h14-20020a056a00230e00b0044c4f2d9b00mr43775784pfh.24.1635936671009; + Wed, 03 Nov 2021 03:51:11 -0700 (PDT) +Return-Path: +Received: from netskope.com ([192.0.2.1]) + by smtp-relay.gmail.com with ESMTPS id mh13sm415101pjb.3.20192.0.2.1.1.10 + for + (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); + Wed, 03 Nov 2021 03:51:10 -0700 (PDT) +X-Relaying-Domain: example.com +Received: by mail-qk1-f199.google.com with SMTP id az10-20020a05620a170a00b00462e059180esf1983676qkb.19 + for ; Wed, 03 Nov 2021 03:51:10 -0700 (PDT) +ARC-Seal: i=2; a=rsa-sha256; t=1635936669; cv=pass; + d=google.com; s=arc-20160816; + b=plphL9A2eSff+KGqsvCJjl2QQvLB3+7kCFiRw8a4P1g3KP7DRN9XMEe+ScLLpPs6B2 + T2BlV7ek7oDEkr85tFMH5IIUmgdaqs3WqQyujgUFXR7eaMsHzJjlBXXf5LyC/bamoSex + XToTb5Si8o23KQigvNo7vKA4r/20JAD0fDgyATqCOfk7VU6Bsgv40B28wzp4J/GHgFma + Ivc7Vri/sWJFvr7Yfl81WJ0NZ4JZP0BC0r2UeZWIoxO2zX/8yna2YqhM5cfKCxYY49v9 + o3zMJsET/QigzhzLOUoD8cFc7uXcUcGQJGOwhENnKKNJt6DGPqrdqZuqhVVrLkAy0+ho + gQzA== +ARC-Message-Signature: i=2; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=list-unsubscribe:list-archive:list-help:list-post:list-id + :mailing-list:precedence:mime-version:subject:message-id:to:from + :date:sender:dkim-signature; + bh=bUFUI9zftvJ/qkxadbwBcxSzYABAGJ4AWewj0RCLZWc=; + b=YW5uWxw2RtfRCSbSu90QEcUyfR9wzKO/ZOZ5+dQWcLMpMo8FnhOuBVkz/uEz415SEv + Z2KBYYqh/LpNnAcN+L8p+uXx3Z7UUPV3YugX1CiaxN/DFQtz1yBj8L5UpmcX+YYfS5kl + /MqaLhYPQ3b1Ormp6FzSsEKS5aUoLEtLk+qboKfzVGz8ITXUvivei9mrjY07t9XNL8CY + J78afolUKTRo3Jo/nooeQcSKAm9FsQM9LZMt18Y3GfJFLsDQJ9taVPTeti63wMKbjMqc + oUeFVJZk4pO4hHnEAoapB/FB8M5EwgYDu9nrJWVPkXD+q2oAWKlAb3tXf4mHC/OOxHq2 + F8aA== +ARC-Authentication-Results: i=2; mx.google.com; + dkim=pass header.i=@zayo.com header.s=SF112018Alt header.b=v8rSORlJ; + spf=pass (google.com: domain of mr=zayo.com__0-f4ae71z9pyg7x7@esmsujtsgbjba.6-79qkeai.na152.bnc.salesforce.com designates 192.0.2.1 as permitted sender) smtp.mailfrom="mr=zayo.com__0-f4ae71z9pyg7x7@esmsujtsgbjba.6-79qkeai.na152.bnc.salesforce.com"; + dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=example.com; s=example; + h=sender:date:from:to:message-id:subject:mime-version + :x-original-sender:x-original-authentication-results:precedence + :mailing-list:list-id:list-post:list-help:list-archive + :list-unsubscribe; + bh=bUFUI9zftvJ/qkxadbwBcxSzYABAGJ4AWewj0RCLZWc=; + b=T634/s0T3yrtgwvobSZ5mBnN5R2DMrLQYOWtA4Pe09NbNh+uG30Sr5MI6SnY8TdxxJ + RuD1FisJcg+tIJqMYJqv0MDSo++qLLiLu00m/IKNTY1zytS0dfVr9EpGvvxi9wvUv/cZ + ruxNSMewmGBdtG14Odk4WalvqeTDv56mhs/Zs= +Sender: maintenance-notices@example.com +X-Received: by 2001:DB8::1 with SMTP id i3mr2186597qkp.442.1635936669732; + Wed, 03 Nov 2021 03:51:09 -0700 (PDT) +X-Received: by 2001:DB8::1 with SMTP id i3mr2186586qkp.442.1635936669571; + Wed, 03 Nov 2021 03:51:09 -0700 (PDT) +X-BeenThere: maintenance-notices@example.com +Received: by 2001:DB8::1 with SMTP id d16ls1078299qtd.9.gmail; Wed, 03 Nov + 2021 03:51:09 -0700 (PDT) +X-Received: by 2001:DB8::1 with SMTP id x2mr3247943qtw.409.1635936668957; + Wed, 03 Nov 2021 03:51:08 -0700 (PDT) +ARC-Seal: i=1; a=rsa-sha256; t=1635936668; cv=none; + d=google.com; s=arc-20160816; + b=qv/2Uz6bj9/okkOsWe+sF4sUAVeBmyTCFLpARhy7NGD8gsVgoVDIaAmW8tY4ZUiclU + aUjyP9OmFBS5FnG29y60ZSUqLldiqV+Fs8U2mn0Rb+keRZRD8da0V1e1XDwMsYZZV0AE + dEcNX96mkN0YXTRLMGH9QeKsJqLUI8/3ooMLWe4EkwcgZ7uGs1BiRCOlrEesPhDfPTGZ + LJqAE4gFm7+2CRadNfottUkilGoNAdhpBZE4IcAocgmOdgbUhT3/wPz+ZtpL58kvHAX5 + Wlgw1iiSCCryQ+4AF6SSBnKbk18HJkX69XbJCEiStshUgokS+1hvdDsI8TZMINmTNBWV + 9wzQ== +ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=mime-version:subject:message-id:to:from:date:dkim-signature; + bh=bgf+IqaUX3TRCjQoVi3JJ7QlhEqISfbL3q7YZADzuSA=; + b=0RzyiGXiN0eEU6cbav/vIqQAaxeEzU+PNHOaqdJJk8dgK0GnpHndHaYQd6A+ZpAKso + RWCacVwzU2AI1c4pPKOhRZKFvlOhIItPqaVe9TSuSgTi8bubpESDlcxO9rzduXoLHCUN + un2kHRAVcEABquv0pYXOsf9poA5Bo9RJ8QNN5LNSJ2CTcwTIYorkowDQ4kOYzxNZH1bg + hFOiNzVIOFNzZfHc4l3oS8zSjRyJK+ttb5G9+mCc4m3JMmZnlBAL3XOi88ATQJeBUrvt + Y3UQi2aIldVHd8OK63QuykzxvqU93wilKMQLIAXwZjgLK6DSuvaFcFHixYpxqOcqLFng + veDg== +ARC-Authentication-Results: i=1; mx.google.com; + dkim=pass header.i=@zayo.com header.s=SF112018Alt header.b=v8rSORlJ; + spf=pass (google.com: domain of mr=zayo.com__0-f4ae71z9pyg7x7@esmsujtsgbjba.6-79qkeai.na152.bnc.salesforce.com designates 192.0.2.1 as permitted sender) smtp.mailfrom="mr=zayo.com__0-f4ae71z9pyg7x7@esmsujtsgbjba.6-79qkeai.na152.bnc.salesforce.com"; + dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com +Received: from smtp07-ia4-sp3.mta.salesforce.com (smtp07-ia4-sp3.mta.salesforce.com. [192.0.2.1]) + by mx.google.com with ESMTPS id m4si2335410qtw.401.20192.0.2.1.1.08 + for + (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); + Wed, 03 Nov 2021 03:51:08 -0700 (PDT) +Received-SPF: pass (google.com: domain of mr=zayo.com__0-f4ae71z9pyg7x7@esmsujtsgbjba.6-79qkeai.na152.bnc.salesforce.com designates 192.0.2.1 as permitted sender) client-ip=192.0.2.1; +Received: from [192.0.2.1] ([192.0.2.1:40278] helo=na152-app2-40-ia4.ops.sfdc.net) + by mx1-ia4-sp3.mta.salesforce.com (envelope-from ) + (ecelerity 192.0.2.1 r(Core:release/192.0.2.1)) with ESMTPS (cipher=ECDHE-RSA-AES256-GCM-SHA384 + subject="/C=US/ST=California/L=San Francisco/O=salesforce.com, inc./OU=0:app;1:ia4;2:ia4-sp3;3:na152;4:prod/CN=na152-app2-40-ia4.ops.sfdc.net") + id 91/A8-06133-C9962816; Wed, 03 Nov 2021 10:51:08 +0000 +Date: Wed, 3 Nov 2021 10:51:08 +0000 (GMT) +From: MR Zayo +To: "maintenance-notices@example.com" +Message-ID: +Subject: [maintenance-notices] COMPLETED MAINTENANCE NOTIFICATION***Some Customer + Inc***ZAYO TTN-0004567890 Courtesy*** +MIME-Version: 1.0 +Content-Type: multipart/mixed; + boundary="----=_Part_19559_1696384994.1635936668672" +X-Priority: 3 +X-SFDC-LK: 00D6000000079Qk +X-SFDC-User: 00560000003fpx3 +X-Sender: postmaster@salesforce.com +X-mail_abuse_inquiries: http://www.salesforce.com/company/abuse.jsp +X-SFDC-TLS-NoRelay: 1 +X-SFDC-Binding: 1WrIRBV94myi25uB +X-SFDC-EmailCategory: apiSingleMail +X-SFDC-Interface: internal +X-Original-Sender: mr@zayo.com +X-Original-Authentication-Results: mx.google.com; dkim=pass + header.i=@zayo.com header.s=SF112018Alt header.b=v8rSORlJ; spf=pass + (google.com: domain of mr=zayo.com__0-f4ae71z9pyg7x7@esmsujtsgbjba.6-79qkeai.na152.bnc.salesforce.com + designates 192.0.2.1 as permitted sender) smtp.mailfrom="mr=zayo.com__0-f4ae71z9pyg7x7@esmsujtsgbjba.6-79qkeai.na152.bnc.salesforce.com"; + dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com +Precedence: list +Mailing-list: list maintenance-notices@example.com; contact maintenance-notices+owners@example.com +List-ID: +X-Google-Group-Id: 536184160288 +List-Post: , +List-Help: , + +List-Archive: +List-Unsubscribe: , + +x-netskope-inspected: true + +------=_Part_19559_1696384994.1635936668672 +Content-Type: multipart/alternative; + boundary="----=_Part_19558_243007928.1635936668672" + +------=_Part_19558_243007928.1635936668672 +Content-Type: text/plain; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + +Dear Zayo Customer, + + +Please be advised that the scheduled maintenance window has been completed = +in its entirety for this event. + +If your services are still being impacted please take a moment to review th= +e service and bounce any interfaces that may have been impacted. In the eve= +nt that this does not fully restore your service please contact the Zayo NC= +C at 866-236-2824 or at zayoncc@zayo.com. + + +Maintenance Ticket #: TTN-0004567890 + + + + +Maintenance Window=20 + +1st Activity Date=20 +01-Nov-2021 00:01 to 01-Nov-2021 05:00 ( Mountain )=20 + + 01-Nov-2021 06:01 to 01-Nov-2021 11:00 ( GMT )=20 + +2nd Activity Date=20 +02-Nov-2021 00:01 to 02-Nov-2021 05:00 ( Mountain )=20 + + 02-Nov-2021 06:01 to 02-Nov-2021 11:00 ( GMT )=20 + +3rd Activity Date=20 +03-Nov-2021 00:01 to 03-Nov-2021 05:00 ( Mountain )=20 + + 03-Nov-2021 06:01 to 03-Nov-2021 11:00 ( GMT )=20 + + + +Location of Maintenance: 11011 E Peakview Ave, Englewood, CO + + +Reason for Maintenance: Routine Fiber splice - NO Impact is Expected to you= +r services. This notification is to advise you that we will be entering a s= +plice case that houses live traffic. + + +Circuit(s) Affected:=20 + + +Circuit Id +Expected Impact +A Location Address + +Z Location Address +Legacy Circuit Id + +/OGYX/123418/ /ZYO / +No Expected Impact +624 S Grand Ave Los Angeles, CA. USA +639 E 18th Ave Denver, CO. USA + +/OGYX/123408/ /ZYO / +No Expected Impact +11 Great Oaks Blvd San Jose, CA. USA +350 E Cermak Rd Chicago, IL. USA + + + + +If you have any questions or need any additional information related to thi= +s maintenance event, please contact the MR group at mr@zayo.com or call 866= +-236-2824. + + +Regards, + + + + +Zayo=C2=A0Global Change Management Team/=C3=89quipe de Gestion du Changemen= +t Global=C2=A0Zayo + +Zayo | Our Fiber Fuels Global Innovation + +Toll free/No=C2=A0sans=C2=A0frais:=C2=A01.866.236.2824 + +United Kingdom Toll Free/No=C2=A0sans +frais Royaume-Uni:=C2=A00800.169.1646 + +Email/Courriel:=C2=A0mr@zayo.com=C2=A0 + +Website/Site Web:=C2=A0https://www.zayo.com + +Purpose=C2=A0|=C2=A0Network Map=C2=A0|=C2=A0Escalation List=C2=A0|=C2=A0Lin= +kedIn=C2=A0|=C2=A0Twitter=C2=A0|=C2=A0Tranzact=C2=A0 + +=C2=A0 + +This communication is the property of Zayo and may contain confidential or = +privileged information. If you have received this communication in error, p= +lease promptly notify the sender by reply e-mail and destroy all copies of = +the communication and any attachments. + +=C2=A0 + +--=20 +You received this message because you are subscribed to the Google Groups "= +Maintenance Notices" group. +To unsubscribe from this group and stop receiving emails from it, send an e= +mail to maintenance-notices+unsubscribe@example.com. +To view this discussion on the web visit https://groups.google.com/a/exampl= +e.com/d/msgid/maintenance-notices/ev1IT0000000000000000000000000000000000000000000= +00R1ZSSJ00w2nwuH24QlKuzlBcdHydZw%40sfdc.net. + +------=_Part_19558_243007928.1635936668672 +Content-Type: text/html; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + +Dear Zayo Customer, + +

Please be advised that the scheduled maintenance window has been co= +mpleted in its entirety for this event. +

If your services are still being impacted pl= +ease take a moment to review the service and bounce any interfaces that may= + have been impacted. In the event that this does not fully restore your se= +rvice please contact the Zayo NCC at 866-236-2824 or at zayoncc@zayo.com= +. + +

Maintenance Ticket #: TTN-0004567890 + + + +

Maintenance Window

1st Activity Date <= +/b>
01-Nov-2021 00:01 to 01-Nov-2021 05:00 ( Mountain )=20 +
01-Nov-2021 06:01 to 01-Nov-2021 11:00 ( GMT )

2nd Activity Date
02-Nov-2021 00:01 to 02-Nov-2021 05:00 ( Mountain = +)=20 +
02-Nov-2021 06:01 to 02-Nov-2021 11:00 ( GMT )

3rd Activity Date
03-Nov-2021 00:01 to 03-Nov-2021 05:00 ( Mountain = +)=20 +
03-Nov-2021 06:01 to 03-Nov-2021 11:00 ( GMT )=20 + + +

Location of Maintenance: 11011 E Peakview Ave, Englewood, C= +O + +

Reason for Maintenance: Routine Fiber splice - NO Impact is= + Expected to your services. This notification is to advise you that we will= + be entering a splice case that houses live traffic. + +

Circuit(s) Affected:
+ + + + + + + + + + + + + + + + + + + + + + + +
Circuit IdExpected ImpactA Location AddressZ Location AddressLegacy Circuit Id
/OGYX/123418/ /ZYO /No Expected Impact624 S Grand Ave Los Angeles, CA. USA639 E 18th Ave Denver, CO. USA
/OGYX/123408/ /ZYO /No Expected Impact11 Great Oaks Blvd San Jose, CA. USA350 E Cermak Rd Chicago, IL. USA
+ + +

If you have any questions or need any additional information relate= +d to this maintenance event, please contact the MR group at mr@zayo.com or = +call 866-236-2824. + +

Regards,

+
+ +

Zayo Global Change Management Team/= +=C3=89quipe de Gestion d= +u Changement Global Zayo

+ +

Zayo | Our Fiber Fuels Global Inn= +ovation

+ +

Toll free/No s= +ans frais: 1.866.236.2824

+ +

United Kingdom Toll Free/No sans +frais Royaume-Uni:<= +/i> 0800.169.1646

+ +

Email/Cou= +rriel: mr@zayo.com<= +/u> 

+ +

Website/Site Web: https://www.zayo.com

+ +

Purpose | Network Map Escalation List LinkedIn <= +/span>Twitter Tranzact&n= +bsp; + +

&nbs= +p;

+ +

This communication is the property of Zayo and may contain confidential= + or privileged information. If you have received this communication in erro= +r, please promptly notify the sender by reply e-mail and destroy all copies= + of the communication and any attachments.

+ +

 

+ +
+ +

+ +--
+You received this message because you are subscribed to the Google Groups &= +quot;Maintenance Notices" group.
+To unsubscribe from this group and stop receiving emails from it, send an e= +mail to maintenance-notices+= +unsubscribe@example.com.
+To view this discussion on the web visit https://groups.google.com/a/example.com/d/msgid/rd-no= +tices/ev1IT000000000000000000000000000000000000000000000R1ZSSJ00w2nwuH24QlK= +uzlBcdHydZw%40sfdc.net.
+ +------=_Part_19558_243007928.1635936668672-- + +------=_Part_19559_1696384994.1635936668672-- diff --git a/tests/unit/data/zayo/zayo7.eml b/tests/unit/data/zayo/zayo7.eml index 08c9e9d2..0d713b54 100644 --- a/tests/unit/data/zayo/zayo7.eml +++ b/tests/unit/data/zayo/zayo7.eml @@ -1,567 +1,567 @@ -Delivered-To: nautobot.email@example.com -Received: by 2002:a05:7000:1f21:0:0:0:0 with SMTP id hs33csp7496624mab; - Tue, 16 Nov 2021 05:07:16 -0800 (PST) -X-Received: by 2002:a9d:343:: with SMTP id 61mr5945318otv.382.1637068035715; - Tue, 16 Nov 2021 05:07:15 -0800 (PST) -ARC-Seal: i=3; a=rsa-sha256; t=1637068035; cv=pass; - d=google.com; s=arc-20160816; - b=IB/8zXU0mGvMEPiGevys762Th4QW/WWOSMFGa/uZu3Mz9ZQaOH+b98tv7CNF4NHZtF - ufTzSRlbnjLJ7lr1gfImSCPvndVNPxqL7TjJSNxxoWoEbKoTClThBwEoaBs4sVzhJS4P - UKKcta4U7KnRtVKN2ykjEULsovnFXIy3Q1aWcUhwoGC3omJZd6R5r6Y3xu/44IRpN3K/ - dkmA5NJhgXB0rZIMfGpEWxDQS6ziWgbmT6lv/nUwMXjTaYxOQ78jx1tAp5P/AyhwoC/5 - tSKR2v5sL1QdR4TiwrspSuYARpyZ+tbI87xaNHcSdIVn5P/x8GCzoIGUnejQoYOWHnUF - cFYw== -ARC-Message-Signature: i=3; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=list-unsubscribe:list-archive:list-help:list-post:list-id - :mailing-list:precedence:mime-version:subject:message-id:to:from - :date:sender:dkim-signature; - bh=WI7hatx2cY/zCiwLLfmT9tsATL4tdmlbsXu2SR2IL8s=; - b=C8RA6H3tFL1i61hRjo6HgYMp57PRDYnQTndRYrTMWGFUweDT41qj2sqGclu0fJCsGV - fi4bCjy7GeV3wN6/wVCfgPNvupiZBV0y9hAe60Wa6eMTeNm9Bqrb2dbTWU5HFIP7H60x - Ou1okXBKnCqwHEOlwlebZEyDflePbZhJ3jjvw866jRrh4bX1e9z2ER3AI8j7wb22hcQS - /x1zrHXddk6AEaWAR1o3jiCvRG55GqpyfHLeszQEaGPxoELC5ryQ2djKGR1sOZSiKjlY - AZ+QrxnHfZj8KeOBrc0pt86aFhZLJZ0q8yc6G2m+vK3dIrPz4iBKPenXj6TIdsxsba9U - J1aQ== -ARC-Authentication-Results: i=3; mx.google.com; - dkim=pass header.i=@example.com header.s=example header.b=oZnliWXn; - arc=pass (i=2 spf=pass spfdomain=a9wj63terdu8.6-79qkeai.na152.bnc.salesforce.com dkim=pass dkdomain=zayo.com dmarc=pass fromdomain=zayo.com); - spf=pass (google.com: domain of maint-notices+bncbcyp3io6yejbbag2z2gamgqenrxxxiq@example.com designates 209.85.220.97 as permitted sender) smtp.mailfrom=maint-notices+bncBCYP3IO6YEJBBAG2Z2GAMGQENRXXXIQ@example.com; - dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=zayo.com -Return-Path: -Received: from mail-sor-f97.google.com (mail-sor-f97.google.com. [209.85.220.97]) - by mx.google.com with SMTPS id h8sor6057870vsf.11.2021.11.16.05.07.15 - for - (Google Transport Security); - Tue, 16 Nov 2021 05:07:15 -0800 (PST) -Received-SPF: pass (google.com: domain of maint-notices+bncbcyp3io6yejbbag2z2gamgqenrxxxiq@example.com designates 209.85.220.97 as permitted sender) client-ip=209.85.220.97; -Authentication-Results: mx.google.com; - dkim=pass header.i=@example.com header.s=example header.b=oZnliWXn; - arc=pass (i=2 spf=pass spfdomain=a9wj63terdu8.6-79qkeai.na152.bnc.salesforce.com dkim=pass dkdomain=zayo.com dmarc=pass fromdomain=zayo.com); - spf=pass (google.com: domain of maint-notices+bncbcyp3io6yejbbag2z2gamgqenrxxxiq@example.com designates 209.85.220.97 as permitted sender) smtp.mailfrom=maint-notices+bncBCYP3IO6YEJBBAG2Z2GAMGQENRXXXIQ@example.com; - dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=zayo.com -X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; - d=1e100.net; s=20210112; - h=x-gm-message-state:dkim-signature:sender:date:from:to:message-id - :subject:mime-version:x-original-sender - :x-original-authentication-results:precedence:mailing-list:list-id - :list-post:list-help:list-archive:list-unsubscribe; - bh=WI7hatx2cY/zCiwLLfmT9tsATL4tdmlbsXu2SR2IL8s=; - b=GozK90s56Y3hVOd9yPN8oFZa1jSz4rOFLhWgqLoiSo0cI6lCXkp72r/uXZjlfdYX7/ - Dj5HlhIS7DAI4lVQnJnPoljayzge8TYHnBjzw9ofMbkcjY7c8QrOpAGTC/UrNe9ooBbU - H/QLHlzRTDwWvGHNMDb3TCM5aP0xGwAi96/YEYryWDiYYLgrSc084NbYqx2tezdrAd8W - zcH9o5qZUnzFl+i1KC3lbilzhaxmMD6i6cjOKDoGO8JVkNanD++YWafcRL9YtLp9YN1s - D3FpFn2aNiFxXKxxkiIuatPmI1HLBKMf12RIACs5rCByLc6hkMxB/kL0II4a2DYXwF6b - 7dfw== -X-Gm-Message-State: AOAM533fV8DxbMi88GwyXb8A6DqzYlFzXeyw9gzJ73BccuSjvakJAOkc - 6qR6AkOt0z33Ea1QWjvVIsxrnbneKvLMRUqhPpREB9GKfAsDlc6V -X-Google-Smtp-Source: ABdhPJxZLh2l9VwninnUEB05SPvOl0XpI3tntFkJRhFvneu65zx1x+a6dplC5URzMushL9aOgjEYQb9Nvf7+ -X-Received: by 2002:a05:6102:3ed4:: with SMTP id n20mr55971226vsv.57.1637068035229; - Tue, 16 Nov 2021 05:07:15 -0800 (PST) -Return-Path: -Received: from netskope.com ([8.36.116.139]) - by smtp-relay.gmail.com with ESMTPS id x123sm4927428vka.12.2021.11.16.05.07.14 - for - (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); - Tue, 16 Nov 2021 05:07:15 -0800 (PST) -X-Relaying-Domain: example.com -Received: by mail-qk1-f199.google.com with SMTP id o19-20020a05620a22d300b0046754380e8asf13531940qki.13 - for ; Tue, 16 Nov 2021 05:07:14 -0800 (PST) -ARC-Seal: i=2; a=rsa-sha256; t=1637068033; cv=pass; - d=google.com; s=arc-20160816; - b=VwANNKk53QJSEQJyVTUFdSemKLAYMDumadGoj/JwiJgQJMgvvwmAvLO5t2vyPCRSzg - +M++oHhLRWsQ0Ofo180KPtTqcxPolo5WtmZb5WIXdWStiYRHYME5+eQqjJVVtyLhwquB - RiwzXReIp7J4ExHsjGuhfq2Sbs0tFRweX0S2hf5eHQu14AQXrss4NjaFenQ9JYJOwEwN - fhRezDm7U1n/VV6qh4C5fziDmd5zNKwCF0fJJNr9Dgo0m7QJrjXeE6LA1A/Y87DQ0aE3 - KH6o/tillafLZPPXp3T0TuOkdb2tYPgfpjl2wZDn0iy5VH6OMXVmfuPm/XtfovnEY5VD - +CiQ== -ARC-Message-Signature: i=2; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=list-unsubscribe:list-archive:list-help:list-post:list-id - :mailing-list:precedence:mime-version:subject:message-id:to:from - :date:sender:dkim-signature; - bh=WI7hatx2cY/zCiwLLfmT9tsATL4tdmlbsXu2SR2IL8s=; - b=fJIz47nRfg/wLMPBPqbNTcctBCrmmqjczYQs7ID409Hag7o6io+T5S7bKGC4cgmJeU - 4g+PEVovOikB00gxUYOX9akyeNp5uOVCLO4vR1qU2aIGx4Be3aSBQ8HRaKO4LCxA7kGO - D8eHPcnY9OB31cvfMOkdWBuCk0+rJtu4A9ET5zbdnRFDEzSH0rUwQT0fZkNbcTIoxSsk - Kkhpui3eTpL5q9N8tUPb0GSOtsRW51V3yWdmw48qTA+IB6I6CWMcsK03OXYoU4Peo2t0 - 7zOFvNTkaNJIPVDDVah1MFSYyZ9VwlppCDhTq4WSEKbzh/vTH7LWNahnzTxpFX56HAtO - rsFw== -ARC-Authentication-Results: i=2; mx.google.com; - dkim=pass header.i=@zayo.com header.s=sf112018 header.b=cJQYD4No; - spf=pass (google.com: domain of mr=zayo.com__2tt0k2qfvnpvywkz@a9wj63terdu8.6-79qkeai.na152.bnc.salesforce.com designates 13.110.74.206 as permitted sender) smtp.mailfrom="mr=zayo.com__2tt0k2qfvnpvywkz@a9wj63terdu8.6-79qkeai.na152.bnc.salesforce.com"; - dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com -DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; - d=example.com; s=example; - h=sender:date:from:to:message-id:subject:mime-version - :x-original-sender:x-original-authentication-results:precedence - :mailing-list:list-id:list-post:list-help:list-archive - :list-unsubscribe; - bh=WI7hatx2cY/zCiwLLfmT9tsATL4tdmlbsXu2SR2IL8s=; - b=oZnliWXnf3DrGuLqxUBXb2UKHVF3N2Q0jIpgIP5p8svgURWuwVaSACYTaRFo0zCmwG - Qh6I0MjDEY2YRD1FluWHqx8YYK5dsGXyCbUIyp2C4ZUScov9lAnJ+feje4yQ0cn7BJSG - Vbrkk/7e55yAp0YtDzKvJ0iOadVrzq4OuA9/w= -Sender: maint-notices@example.com -X-Received: by 2002:a05:622a:28b:: with SMTP id z11mr7382381qtw.242.1637068033308; - Tue, 16 Nov 2021 05:07:13 -0800 (PST) -X-Received: by 2002:a05:622a:28b:: with SMTP id z11mr7382332qtw.242.1637068032974; - Tue, 16 Nov 2021 05:07:12 -0800 (PST) -X-BeenThere: maint-notices@example.com -Received: by 2002:a05:620a:294b:: with SMTP id n11ls9420290qkp.3.gmail; Tue, - 16 Nov 2021 05:07:12 -0800 (PST) -X-Received: by 2002:a37:98d:: with SMTP id 135mr6125755qkj.166.1637068032336; - Tue, 16 Nov 2021 05:07:12 -0800 (PST) -ARC-Seal: i=1; a=rsa-sha256; t=1637068032; cv=none; - d=google.com; s=arc-20160816; - b=N6/9T3XZJXe8H0bOqPrlPxEVduOshcVhO30pZ6D7R054LZMMd3eRtjQY2dfTVSmF17 - G0KMx5b9/vcmWrdfZmxWDN7yrHUfkHJvA9IBNf3UQhULgwwcFRrO3gnX/THHYY5HPC0N - xvC7yA0BaEs90UQTHUXIvfm0CRxVB0x2bCwcIe2okhwM/AXLthLWu1FQ9ZXBlzjHyT/r - Gq6R+2VwcTuDhIhYbpAP7DshVJbw/mgiRozxcq06pB2H0z/V/PwZMFndXk3YjVyYUhxx - N81T/m+GzJW4kn5iiEzUd33Y0I6I+ZM6lhfQdBm25H/DeVsF9C/lrZEY/kYz13i7Q77b - fVKA== -ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=mime-version:subject:message-id:to:from:date:dkim-signature; - bh=mG0dcEC2Pb90PeX1dDqfwdOjCjYOnK0F6TdfBb6kd7k=; - b=OFwQMT1ox8ED3fIeAVUVSfTzJoIRlzvSk1Vpfqw/U26D3UhNi/ogoSnXirDuOLeXzC - ULZrYlSvZt/leMC1T72XFStsT2t8YzL0UZZ4q6eAODBDU+m9J3t9B3EGJxnfWmJtZLed - QmKElNS8+gZmGl4hENaRkXLilFU77hTg8vVxil97aXlvJP5CzdPwSITvhriThOWWy+eV - YAIBpdjGpG4U/E5QW/KEzvAF0M2R9tlK1XajVhn0qIePIvtmjdfdmTdWHvudx7Mvgh0/ - lk9jkwb8cIuwaAuXRiIiJNcuKLL98j6YavpsEV1nUkog2UpD7vaIPS+CfOGeWEEhJcAt - vE3g== -ARC-Authentication-Results: i=1; mx.google.com; - dkim=pass header.i=@zayo.com header.s=sf112018 header.b=cJQYD4No; - spf=pass (google.com: domain of mr=zayo.com__2tt0k2qfvnpvywkz@a9wj63terdu8.6-79qkeai.na152.bnc.salesforce.com designates 13.110.74.206 as permitted sender) smtp.mailfrom="mr=zayo.com__2tt0k2qfvnpvywkz@a9wj63terdu8.6-79qkeai.na152.bnc.salesforce.com"; - dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com -Received: from smtp15-ia4-sp3.mta.salesforce.com (smtp15-ia4-sp3.mta.salesforce.com. [13.110.74.206]) - by mx.google.com with ESMTPS id x7si27045370qko.306.2021.11.16.05.07.12 - for - (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); - Tue, 16 Nov 2021 05:07:12 -0800 (PST) -Received-SPF: pass (google.com: domain of mr=zayo.com__2tt0k2qfvnpvywkz@a9wj63terdu8.6-79qkeai.na152.bnc.salesforce.com designates 13.110.74.206 as permitted sender) client-ip=13.110.74.206; -Received: from [10.180.203.172] ([10.180.203.172:45648] helo=na152-app1-45-ia4.ops.sfdc.net) - by mx2-ia4-sp3.mta.salesforce.com (envelope-from ) - (ecelerity 4.2.38.62368 r(Core:release/4.2.38.0)) with ESMTPS (cipher=ECDHE-RSA-AES256-GCM-SHA384 - subject="/C=US/ST=California/L=San Francisco/O=salesforce.com, inc./OU=0:app;1:ia4;2:ia4-sp3;3:na152;4:prod/CN=na152-app1-45-ia4.ops.sfdc.net") - id CD/F9-06366-00DA3916; Tue, 16 Nov 2021 13:07:12 +0000 -Date: Tue, 16 Nov 2021 13:07:12 +0000 (GMT) -From: MR Zayo -To: "maint-notices@example.com" -Message-ID: -Subject: [maint-notices] END OF WINDOW NOTIFICATION***Example Inc.***ZAYO - TTN-0005432100 Planned*** -MIME-Version: 1.0 -Content-Type: multipart/mixed; - boundary="----=_Part_1041_614738999.1637068032082" -X-Priority: 3 -X-SFDC-LK: 00D6000000079Qk -X-SFDC-User: 00560000001fmpl -X-Sender: postmaster@salesforce.com -X-mail_abuse_inquiries: http://www.salesforce.com/company/abuse.jsp -X-SFDC-TLS-NoRelay: 1 -X-SFDC-Binding: 1WrIRBV94myi25uB -X-SFDC-EmailCategory: apiSingleMail -X-SFDC-Interface: internal -X-Original-Sender: mr@zayo.com -X-Original-Authentication-Results: mx.google.com; dkim=pass - header.i=@zayo.com header.s=sf112018 header.b=cJQYD4No; spf=pass - (google.com: domain of mr=zayo.com__2tt0k2qfvnpvywkz@a9wj63terdu8.6-79qkeai.na152.bnc.salesforce.com - designates 13.110.74.206 as permitted sender) smtp.mailfrom="mr=zayo.com__2tt0k2qfvnpvywkz@a9wj63terdu8.6-79qkeai.na152.bnc.salesforce.com"; - dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com -Precedence: list -Mailing-list: list maint-notices@example.com; contact maint-notices+owners@example.com -List-ID: -X-Google-Group-Id: 536184160288 -List-Post: , -List-Help: , - -List-Archive: -List-Unsubscribe: , - -x-netskope-inspected: true - -------=_Part_1041_614738999.1637068032082 -Content-Type: multipart/alternative; - boundary="----=_Part_1040_551133997.1637068032082" - -------=_Part_1040_551133997.1637068032082 -Content-Type: text/plain; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - -Dear Zayo Customer,=20 - - -Please be advised that the scheduled maintenance window has closed for this= - event.=20 - -If your services are still being impacted please take a moment to review th= -e service and bounce any interfaces that may have been impacted. In the eve= -nt that this does not fully restore your service please contact the Zayo NC= -C at 1-866-236-2824 or at zayoncc@zayo.com. - - -Maintenance Ticket #: TTN-0005432100 - - - - -Maintenance Window=20 - -1st Activity Date=20 -14-Nov-2021 00:01 to 14-Nov-2021 05:00 ( Pacific )=20 - - 14-Nov-2021 08:01 to 14-Nov-2021 13:00 ( GMT )=20 - -2nd Activity Date=20 -15-Nov-2021 00:01 to 15-Nov-2021 05:00 ( Pacific )=20 - - 15-Nov-2021 08:01 to 15-Nov-2021 13:00 ( GMT )=20 - -3rd Activity Date=20 -16-Nov-2021 00:01 to 16-Nov-2021 05:00 ( Pacific )=20 - - 16-Nov-2021 08:01 to 16-Nov-2021 13:00 ( GMT )=20 - - - -Location of Maintenance: Intersection of Imperial Hwy & Nash St in El Segun= -do, CA - - -Reason for Maintenance: Zayo will implement maintenance to repair damaged f= -iber splice case, to prevent unplanned outages - - -Circuit(s) Affected:=20 - - -Circuit Id -Expected Impact -A Location Address - -Z Location Address -Legacy Circuit Id - -/IPYX/100722/ /ZYO / -Hard Down - up to 5 hours -1933 S Bundy Dr Los Angeles, CA. USA -600 W 7th St Los Angeles, CA. USA - - - - -If you have any questions or need any additional information, please contac= -t the MR group at mr@zayo.com or call 1-866-236-2824. - - -Regards, - - - - -Zayo=C2=A0Global Change Management Team/=C3=89quipe de Gestion du Changemen= -t Global=C2=A0Zayo - -Zayo | Our Fiber Fuels Global Innovation - -Toll free/No=C2=A0sans=C2=A0frais:=C2=A01.866.236.2824 - -United Kingdom Toll Free/No=C2=A0sans -frais Royaume-Uni:=C2=A00800.169.1646 - -Email/Courriel:=C2=A0mr@zayo.com=C2=A0 - -Website/Site Web:=C2=A0https://www.zayo.com - -Purpose=C2=A0|=C2=A0Network Map=C2=A0|=C2=A0Escalation List=C2=A0|=C2=A0Lin= -kedIn=C2=A0|=C2=A0Twitter=C2=A0|=C2=A0Tranzact=C2=A0 - -=C2=A0 - -This communication is the property of Zayo and may contain confidential or = -privileged information. If you have received this communication in error, p= -lease promptly notify the sender by reply e-mail and destroy all copies of = -the communication and any attachments. - -=C2=A0 - ---=20 -You received this message because you are subscribed to the Google Groups "= -Maintenance Notices" group. -To unsubscribe from this group and stop receiving emails from it, send an e= -mail to maint-notices+unsubscribe@example.com. -To view this discussion on the web visit https://groups.google.com/a/exampl= -e.com/d/msgid/maint-notices/tXhiD0000000000000000000000000000000000000000000= -00R2O1RM00YzkHXEK_RoinH1-Hiehd3w%40sfdc.net. - -------=_Part_1040_551133997.1637068032082 -Content-Type: text/html; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - -Dear Zayo Customer,=20 - -

Please be advised that the scheduled maintenance window has closed = -for this event.=20 -

If your services are still being impacted pl= -ease take a moment to review the service and bounce any interfaces that may= - have been impacted. In the event that this does not fully restore your se= -rvice please contact the Zayo NCC at 1-866-236-2824 or at zayoncc@zayo.c= -om. - -

Maintenance Ticket #: TTN-0005432100 - - - -

Maintenance Window

1st Activity Date <= -/b>
14-Nov-2021 00:01 to 14-Nov-2021 05:00 ( Pacific )=20 -
14-Nov-2021 08:01 to 14-Nov-2021 13:00 ( GMT )

2nd Activity Date
15-Nov-2021 00:01 to 15-Nov-2021 05:00 ( Pacific )= -=20 -
15-Nov-2021 08:01 to 15-Nov-2021 13:00 ( GMT )

3rd Activity Date
16-Nov-2021 00:01 to 16-Nov-2021 05:00 ( Pacific )= -=20 -
16-Nov-2021 08:01 to 16-Nov-2021 13:00 ( GMT )=20 - - -

Location of Maintenance: Intersection of Imperial Hwy & Nas= -h St in El Segundo, CA - -

Reason for Maintenance: Zayo will implement maintenance to = -repair damaged fiber splice case, to prevent unplanned outages - -

Circuit(s) Affected:
- - - - - - - - - - - - - - - - -
Circuit IdExpected ImpactA Location AddressZ Location AddressLegacy Circuit Id
/IPYX/100722/ /ZYO /Hard Down - up to 5 hours1933 S Bundy Dr Los Angeles, CA. USA600 W 7th St Los Angeles, CA. USA
- - -

If you have any questions or need any additional information, pleas= -e contact the MR group at mr@zayo.com or call 1-866-236-2824. - -

Regards,

-
- -

Zayo Global Change Management Team/= -=C3=89quipe de Gestion d= -u Changement Global Zayo

- -

Zayo | Our Fiber Fuels Global Inn= -ovation

- -

Toll free/No s= -ans frais: 1.866.236.2824

- -

United Kingdom Toll Free/No sans -frais Royaume-Uni:<= -/i> 0800.169.1646

- -

Email/Cou= -rriel: mr@zayo.com<= -/u> 

- -

Website/Site Web: https://www.zayo.com

- -

Purpose | Network Map Escalation List LinkedIn <= -/span>Twitter Tranzact&n= -bsp; - -

&nbs= -p;

- -

This communication is the property of Zayo and may contain confidential= - or privileged information. If you have received this communication in erro= -r, please promptly notify the sender by reply e-mail and destroy all copies= - of the communication and any attachments.

- -

 

- -
- -

- ---
-You received this message because you are subscribed to the Google Groups &= -quot;Maintenance Notices" group.
-To unsubscribe from this group and stop receiving emails from it, send an e= -mail to maint-notices+= -unsubscribe@example.com.
-To view this discussion on the web visit https://groups.google.com/a/example.com/d/msgid/maint-no= -tices/tXhiD000000000000000000000000000000000000000000000R2O1RM00YzkHXEK_Roi= -nH1-Hiehd3w%40sfdc.net.
- -------=_Part_1040_551133997.1637068032082-- - -------=_Part_1041_614738999.1637068032082-- +Delivered-To: nautobot.email@example.com +Received: by 2001:DB8::1 with SMTP id hs33csp7496624mab; + Tue, 16 Nov 2021 05:07:16 -0800 (PST) +X-Received: by 2001:DB8::1 with SMTP id 61mr5945318otv.382.1637068035715; + Tue, 16 Nov 2021 05:07:15 -0800 (PST) +ARC-Seal: i=3; a=rsa-sha256; t=1637068035; cv=pass; + d=google.com; s=arc-20160816; + b=IB/8zXU0mGvMEPiGevys762Th4QW/WWOSMFGa/uZu3Mz9ZQaOH+b98tv7CNF4NHZtF + ufTzSRlbnjLJ7lr1gfImSCPvndVNPxqL7TjJSNxxoWoEbKoTClThBwEoaBs4sVzhJS4P + UKKcta4U7KnRtVKN2ykjEULsovnFXIy3Q1aWcUhwoGC3omJZd6R5r6Y3xu/44IRpN3K/ + dkmA5NJhgXB0rZIMfGpEWxDQS6ziWgbmT6lv/nUwMXjTaYxOQ78jx1tAp5P/AyhwoC/5 + tSKR2v5sL1QdR4TiwrspSuYARpyZ+tbI87xaNHcSdIVn5P/x8GCzoIGUnejQoYOWHnUF + cFYw== +ARC-Message-Signature: i=3; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=list-unsubscribe:list-archive:list-help:list-post:list-id + :mailing-list:precedence:mime-version:subject:message-id:to:from + :date:sender:dkim-signature; + bh=WI7hatx2cY/zCiwLLfmT9tsATL4tdmlbsXu2SR2IL8s=; + b=C8RA6H3tFL1i61hRjo6HgYMp57PRDYnQTndRYrTMWGFUweDT41qj2sqGclu0fJCsGV + fi4bCjy7GeV3wN6/wVCfgPNvupiZBV0y9hAe60Wa6eMTeNm9Bqrb2dbTWU5HFIP7H60x + Ou1okXBKnCqwHEOlwlebZEyDflePbZhJ3jjvw866jRrh4bX1e9z2ER3AI8j7wb22hcQS + /x1zrHXddk6AEaWAR1o3jiCvRG55GqpyfHLeszQEaGPxoELC5ryQ2djKGR1sOZSiKjlY + AZ+QrxnHfZj8KeOBrc0pt86aFhZLJZ0q8yc6G2m+vK3dIrPz4iBKPenXj6TIdsxsba9U + J1aQ== +ARC-Authentication-Results: i=3; mx.google.com; + dkim=pass header.i=@example.com header.s=example header.b=oZnliWXn; + arc=pass (i=2 spf=pass spfdomain=a9wj63terdu8.6-79qkeai.na152.bnc.salesforce.com dkim=pass dkdomain=zayo.com dmarc=pass fromdomain=zayo.com); + spf=pass (google.com: domain of maint-notices+bncbcyp3io6yejbbag2z2gamgqenrxxxiq@example.com designates 192.0.2.1 as permitted sender) smtp.mailfrom=maint-notices+bncBCYP3IO6YEJBBAG2Z2GAMGQENRXXXIQ@example.com; + dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=zayo.com +Return-Path: +Received: from mail-sor-f97.google.com (mail-sor-f97.google.com. [192.0.2.1]) + by mx.google.com with SMTPS id h8sor6057870vsf.11.20192.0.2.1.1.15 + for + (Google Transport Security); + Tue, 16 Nov 2021 05:07:15 -0800 (PST) +Received-SPF: pass (google.com: domain of maint-notices+bncbcyp3io6yejbbag2z2gamgqenrxxxiq@example.com designates 192.0.2.1 as permitted sender) client-ip=192.0.2.1; +Authentication-Results: mx.google.com; + dkim=pass header.i=@example.com header.s=example header.b=oZnliWXn; + arc=pass (i=2 spf=pass spfdomain=a9wj63terdu8.6-79qkeai.na152.bnc.salesforce.com dkim=pass dkdomain=zayo.com dmarc=pass fromdomain=zayo.com); + spf=pass (google.com: domain of maint-notices+bncbcyp3io6yejbbag2z2gamgqenrxxxiq@example.com designates 192.0.2.1 as permitted sender) smtp.mailfrom=maint-notices+bncBCYP3IO6YEJBBAG2Z2GAMGQENRXXXIQ@example.com; + dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=zayo.com +X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=1e100.net; s=20210112; + h=x-gm-message-state:dkim-signature:sender:date:from:to:message-id + :subject:mime-version:x-original-sender + :x-original-authentication-results:precedence:mailing-list:list-id + :list-post:list-help:list-archive:list-unsubscribe; + bh=WI7hatx2cY/zCiwLLfmT9tsATL4tdmlbsXu2SR2IL8s=; + b=GozK90s56Y3hVOd9yPN8oFZa1jSz4rOFLhWgqLoiSo0cI6lCXkp72r/uXZjlfdYX7/ + Dj5HlhIS7DAI4lVQnJnPoljayzge8TYHnBjzw9ofMbkcjY7c8QrOpAGTC/UrNe9ooBbU + H/QLHlzRTDwWvGHNMDb3TCM5aP0xGwAi96/YEYryWDiYYLgrSc084NbYqx2tezdrAd8W + zcH9o5qZUnzFl+i1KC3lbilzhaxmMD6i6cjOKDoGO8JVkNanD++YWafcRL9YtLp9YN1s + D3FpFn2aNiFxXKxxkiIuatPmI1HLBKMf12RIACs5rCByLc6hkMxB/kL0II4a2DYXwF6b + 7dfw== +X-Gm-Message-State: AOAM533fV8DxbMi88GwyXb8A6DqzYlFzXeyw9gzJ73BccuSjvakJAOkc + 6qR6AkOt0z33Ea1QWjvVIsxrnbneKvLMRUqhPpREB9GKfAsDlc6V +X-Google-Smtp-Source: ABdhPJxZLh2l9VwninnUEB05SPvOl0XpI3tntFkJRhFvneu65zx1x+a6dplC5URzMushL9aOgjEYQb9Nvf7+ +X-Received: by 2001:DB8::1 with SMTP id n20mr55971226vsv.57.1637068035229; + Tue, 16 Nov 2021 05:07:15 -0800 (PST) +Return-Path: +Received: from netskope.com ([192.0.2.1]) + by smtp-relay.gmail.com with ESMTPS id x123sm4927428vka.12.20192.0.2.1.1.14 + for + (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); + Tue, 16 Nov 2021 05:07:15 -0800 (PST) +X-Relaying-Domain: example.com +Received: by mail-qk1-f199.google.com with SMTP id o19-20020a05620a22d300b0046754380e8asf13531940qki.13 + for ; Tue, 16 Nov 2021 05:07:14 -0800 (PST) +ARC-Seal: i=2; a=rsa-sha256; t=1637068033; cv=pass; + d=google.com; s=arc-20160816; + b=VwANNKk53QJSEQJyVTUFdSemKLAYMDumadGoj/JwiJgQJMgvvwmAvLO5t2vyPCRSzg + +M++oHhLRWsQ0Ofo180KPtTqcxPolo5WtmZb5WIXdWStiYRHYME5+eQqjJVVtyLhwquB + RiwzXReIp7J4ExHsjGuhfq2Sbs0tFRweX0S2hf5eHQu14AQXrss4NjaFenQ9JYJOwEwN + fhRezDm7U1n/VV6qh4C5fziDmd5zNKwCF0fJJNr9Dgo0m7QJrjXeE6LA1A/Y87DQ0aE3 + KH6o/tillafLZPPXp3T0TuOkdb2tYPgfpjl2wZDn0iy5VH6OMXVmfuPm/XtfovnEY5VD + +CiQ== +ARC-Message-Signature: i=2; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=list-unsubscribe:list-archive:list-help:list-post:list-id + :mailing-list:precedence:mime-version:subject:message-id:to:from + :date:sender:dkim-signature; + bh=WI7hatx2cY/zCiwLLfmT9tsATL4tdmlbsXu2SR2IL8s=; + b=fJIz47nRfg/wLMPBPqbNTcctBCrmmqjczYQs7ID409Hag7o6io+T5S7bKGC4cgmJeU + 4g+PEVovOikB00gxUYOX9akyeNp5uOVCLO4vR1qU2aIGx4Be3aSBQ8HRaKO4LCxA7kGO + D8eHPcnY9OB31cvfMOkdWBuCk0+rJtu4A9ET5zbdnRFDEzSH0rUwQT0fZkNbcTIoxSsk + Kkhpui3eTpL5q9N8tUPb0GSOtsRW51V3yWdmw48qTA+IB6I6CWMcsK03OXYoU4Peo2t0 + 7zOFvNTkaNJIPVDDVah1MFSYyZ9VwlppCDhTq4WSEKbzh/vTH7LWNahnzTxpFX56HAtO + rsFw== +ARC-Authentication-Results: i=2; mx.google.com; + dkim=pass header.i=@zayo.com header.s=sf112018 header.b=cJQYD4No; + spf=pass (google.com: domain of mr=zayo.com__2tt0k2qfvnpvywkz@a9wj63terdu8.6-79qkeai.na152.bnc.salesforce.com designates 192.0.2.1 as permitted sender) smtp.mailfrom="mr=zayo.com__2tt0k2qfvnpvywkz@a9wj63terdu8.6-79qkeai.na152.bnc.salesforce.com"; + dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=example.com; s=example; + h=sender:date:from:to:message-id:subject:mime-version + :x-original-sender:x-original-authentication-results:precedence + :mailing-list:list-id:list-post:list-help:list-archive + :list-unsubscribe; + bh=WI7hatx2cY/zCiwLLfmT9tsATL4tdmlbsXu2SR2IL8s=; + b=oZnliWXnf3DrGuLqxUBXb2UKHVF3N2Q0jIpgIP5p8svgURWuwVaSACYTaRFo0zCmwG + Qh6I0MjDEY2YRD1FluWHqx8YYK5dsGXyCbUIyp2C4ZUScov9lAnJ+feje4yQ0cn7BJSG + Vbrkk/7e55yAp0YtDzKvJ0iOadVrzq4OuA9/w= +Sender: maint-notices@example.com +X-Received: by 2001:DB8::1 with SMTP id z11mr7382381qtw.242.1637068033308; + Tue, 16 Nov 2021 05:07:13 -0800 (PST) +X-Received: by 2001:DB8::1 with SMTP id z11mr7382332qtw.242.1637068032974; + Tue, 16 Nov 2021 05:07:12 -0800 (PST) +X-BeenThere: maint-notices@example.com +Received: by 2001:DB8::1 with SMTP id n11ls9420290qkp.3.gmail; Tue, + 16 Nov 2021 05:07:12 -0800 (PST) +X-Received: by 2001:DB8::1 with SMTP id 135mr6125755qkj.166.1637068032336; + Tue, 16 Nov 2021 05:07:12 -0800 (PST) +ARC-Seal: i=1; a=rsa-sha256; t=1637068032; cv=none; + d=google.com; s=arc-20160816; + b=N6/9T3XZJXe8H0bOqPrlPxEVduOshcVhO30pZ6D7R054LZMMd3eRtjQY2dfTVSmF17 + G0KMx5b9/vcmWrdfZmxWDN7yrHUfkHJvA9IBNf3UQhULgwwcFRrO3gnX/THHYY5HPC0N + xvC7yA0BaEs90UQTHUXIvfm0CRxVB0x2bCwcIe2okhwM/AXLthLWu1FQ9ZXBlzjHyT/r + Gq6R+2VwcTuDhIhYbpAP7DshVJbw/mgiRozxcq06pB2H0z/V/PwZMFndXk3YjVyYUhxx + N81T/m+GzJW4kn5iiEzUd33Y0I6I+ZM6lhfQdBm25H/DeVsF9C/lrZEY/kYz13i7Q77b + fVKA== +ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=mime-version:subject:message-id:to:from:date:dkim-signature; + bh=mG0dcEC2Pb90PeX1dDqfwdOjCjYOnK0F6TdfBb6kd7k=; + b=OFwQMT1ox8ED3fIeAVUVSfTzJoIRlzvSk1Vpfqw/U26D3UhNi/ogoSnXirDuOLeXzC + ULZrYlSvZt/leMC1T72XFStsT2t8YzL0UZZ4q6eAODBDU+m9J3t9B3EGJxnfWmJtZLed + QmKElNS8+gZmGl4hENaRkXLilFU77hTg8vVxil97aXlvJP5CzdPwSITvhriThOWWy+eV + YAIBpdjGpG4U/E5QW/KEzvAF0M2R9tlK1XajVhn0qIePIvtmjdfdmTdWHvudx7Mvgh0/ + lk9jkwb8cIuwaAuXRiIiJNcuKLL98j6YavpsEV1nUkog2UpD7vaIPS+CfOGeWEEhJcAt + vE3g== +ARC-Authentication-Results: i=1; mx.google.com; + dkim=pass header.i=@zayo.com header.s=sf112018 header.b=cJQYD4No; + spf=pass (google.com: domain of mr=zayo.com__2tt0k2qfvnpvywkz@a9wj63terdu8.6-79qkeai.na152.bnc.salesforce.com designates 192.0.2.1 as permitted sender) smtp.mailfrom="mr=zayo.com__2tt0k2qfvnpvywkz@a9wj63terdu8.6-79qkeai.na152.bnc.salesforce.com"; + dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com +Received: from smtp15-ia4-sp3.mta.salesforce.com (smtp15-ia4-sp3.mta.salesforce.com. [192.0.2.1]) + by mx.google.com with ESMTPS id x7si27045370qko.306.20192.0.2.1.1.12 + for + (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); + Tue, 16 Nov 2021 05:07:12 -0800 (PST) +Received-SPF: pass (google.com: domain of mr=zayo.com__2tt0k2qfvnpvywkz@a9wj63terdu8.6-79qkeai.na152.bnc.salesforce.com designates 192.0.2.1 as permitted sender) client-ip=192.0.2.1; +Received: from [192.0.2.1] ([192.0.2.1:45648] helo=na152-app1-45-ia4.ops.sfdc.net) + by mx2-ia4-sp3.mta.salesforce.com (envelope-from ) + (ecelerity 192.0.2.1 r(Core:release/192.0.2.1)) with ESMTPS (cipher=ECDHE-RSA-AES256-GCM-SHA384 + subject="/C=US/ST=California/L=San Francisco/O=salesforce.com, inc./OU=0:app;1:ia4;2:ia4-sp3;3:na152;4:prod/CN=na152-app1-45-ia4.ops.sfdc.net") + id CD/F9-06366-00DA3916; Tue, 16 Nov 2021 13:07:12 +0000 +Date: Tue, 16 Nov 2021 13:07:12 +0000 (GMT) +From: MR Zayo +To: "maint-notices@example.com" +Message-ID: +Subject: [maint-notices] END OF WINDOW NOTIFICATION***Example Inc.***ZAYO + TTN-0005432100 Planned*** +MIME-Version: 1.0 +Content-Type: multipart/mixed; + boundary="----=_Part_1041_614738999.1637068032082" +X-Priority: 3 +X-SFDC-LK: 00D6000000079Qk +X-SFDC-User: 00560000001fmpl +X-Sender: postmaster@salesforce.com +X-mail_abuse_inquiries: http://www.salesforce.com/company/abuse.jsp +X-SFDC-TLS-NoRelay: 1 +X-SFDC-Binding: 1WrIRBV94myi25uB +X-SFDC-EmailCategory: apiSingleMail +X-SFDC-Interface: internal +X-Original-Sender: mr@zayo.com +X-Original-Authentication-Results: mx.google.com; dkim=pass + header.i=@zayo.com header.s=sf112018 header.b=cJQYD4No; spf=pass + (google.com: domain of mr=zayo.com__2tt0k2qfvnpvywkz@a9wj63terdu8.6-79qkeai.na152.bnc.salesforce.com + designates 192.0.2.1 as permitted sender) smtp.mailfrom="mr=zayo.com__2tt0k2qfvnpvywkz@a9wj63terdu8.6-79qkeai.na152.bnc.salesforce.com"; + dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com +Precedence: list +Mailing-list: list maint-notices@example.com; contact maint-notices+owners@example.com +List-ID: +X-Google-Group-Id: 536184160288 +List-Post: , +List-Help: , + +List-Archive: +List-Unsubscribe: , + +x-netskope-inspected: true + +------=_Part_1041_614738999.1637068032082 +Content-Type: multipart/alternative; + boundary="----=_Part_1040_551133997.1637068032082" + +------=_Part_1040_551133997.1637068032082 +Content-Type: text/plain; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + +Dear Zayo Customer,=20 + + +Please be advised that the scheduled maintenance window has closed for this= + event.=20 + +If your services are still being impacted please take a moment to review th= +e service and bounce any interfaces that may have been impacted. In the eve= +nt that this does not fully restore your service please contact the Zayo NC= +C at 1-866-236-2824 or at zayoncc@zayo.com. + + +Maintenance Ticket #: TTN-0005432100 + + + + +Maintenance Window=20 + +1st Activity Date=20 +14-Nov-2021 00:01 to 14-Nov-2021 05:00 ( Pacific )=20 + + 14-Nov-2021 08:01 to 14-Nov-2021 13:00 ( GMT )=20 + +2nd Activity Date=20 +15-Nov-2021 00:01 to 15-Nov-2021 05:00 ( Pacific )=20 + + 15-Nov-2021 08:01 to 15-Nov-2021 13:00 ( GMT )=20 + +3rd Activity Date=20 +16-Nov-2021 00:01 to 16-Nov-2021 05:00 ( Pacific )=20 + + 16-Nov-2021 08:01 to 16-Nov-2021 13:00 ( GMT )=20 + + + +Location of Maintenance: Intersection of Imperial Hwy & Nash St in El Segun= +do, CA + + +Reason for Maintenance: Zayo will implement maintenance to repair damaged f= +iber splice case, to prevent unplanned outages + + +Circuit(s) Affected:=20 + + +Circuit Id +Expected Impact +A Location Address + +Z Location Address +Legacy Circuit Id + +/IPYX/100722/ /ZYO / +Hard Down - up to 5 hours +1933 S Bundy Dr Los Angeles, CA. USA +600 W 7th St Los Angeles, CA. USA + + + + +If you have any questions or need any additional information, please contac= +t the MR group at mr@zayo.com or call 1-866-236-2824. + + +Regards, + + + + +Zayo=C2=A0Global Change Management Team/=C3=89quipe de Gestion du Changemen= +t Global=C2=A0Zayo + +Zayo | Our Fiber Fuels Global Innovation + +Toll free/No=C2=A0sans=C2=A0frais:=C2=A01.866.236.2824 + +United Kingdom Toll Free/No=C2=A0sans +frais Royaume-Uni:=C2=A00800.169.1646 + +Email/Courriel:=C2=A0mr@zayo.com=C2=A0 + +Website/Site Web:=C2=A0https://www.zayo.com + +Purpose=C2=A0|=C2=A0Network Map=C2=A0|=C2=A0Escalation List=C2=A0|=C2=A0Lin= +kedIn=C2=A0|=C2=A0Twitter=C2=A0|=C2=A0Tranzact=C2=A0 + +=C2=A0 + +This communication is the property of Zayo and may contain confidential or = +privileged information. If you have received this communication in error, p= +lease promptly notify the sender by reply e-mail and destroy all copies of = +the communication and any attachments. + +=C2=A0 + +--=20 +You received this message because you are subscribed to the Google Groups "= +Maintenance Notices" group. +To unsubscribe from this group and stop receiving emails from it, send an e= +mail to maint-notices+unsubscribe@example.com. +To view this discussion on the web visit https://groups.google.com/a/exampl= +e.com/d/msgid/maint-notices/tXhiD0000000000000000000000000000000000000000000= +00R2O1RM00YzkHXEK_RoinH1-Hiehd3w%40sfdc.net. + +------=_Part_1040_551133997.1637068032082 +Content-Type: text/html; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + +Dear Zayo Customer,=20 + +

Please be advised that the scheduled maintenance window has closed = +for this event.=20 +

If your services are still being impacted pl= +ease take a moment to review the service and bounce any interfaces that may= + have been impacted. In the event that this does not fully restore your se= +rvice please contact the Zayo NCC at 1-866-236-2824 or at zayoncc@zayo.c= +om. + +

Maintenance Ticket #: TTN-0005432100 + + + +

Maintenance Window

1st Activity Date <= +/b>
14-Nov-2021 00:01 to 14-Nov-2021 05:00 ( Pacific )=20 +
14-Nov-2021 08:01 to 14-Nov-2021 13:00 ( GMT )

2nd Activity Date
15-Nov-2021 00:01 to 15-Nov-2021 05:00 ( Pacific )= +=20 +
15-Nov-2021 08:01 to 15-Nov-2021 13:00 ( GMT )

3rd Activity Date
16-Nov-2021 00:01 to 16-Nov-2021 05:00 ( Pacific )= +=20 +
16-Nov-2021 08:01 to 16-Nov-2021 13:00 ( GMT )=20 + + +

Location of Maintenance: Intersection of Imperial Hwy & Nas= +h St in El Segundo, CA + +

Reason for Maintenance: Zayo will implement maintenance to = +repair damaged fiber splice case, to prevent unplanned outages + +

Circuit(s) Affected:
+ + + + + + + + + + + + + + + + +
Circuit IdExpected ImpactA Location AddressZ Location AddressLegacy Circuit Id
/IPYX/100722/ /ZYO /Hard Down - up to 5 hours1933 S Bundy Dr Los Angeles, CA. USA600 W 7th St Los Angeles, CA. USA
+ + +

If you have any questions or need any additional information, pleas= +e contact the MR group at mr@zayo.com or call 1-866-236-2824. + +

Regards,

+
+ +

Zayo Global Change Management Team/= +=C3=89quipe de Gestion d= +u Changement Global Zayo

+ +

Zayo | Our Fiber Fuels Global Inn= +ovation

+ +

Toll free/No s= +ans frais: 1.866.236.2824

+ +

United Kingdom Toll Free/No sans +frais Royaume-Uni:<= +/i> 0800.169.1646

+ +

Email/Cou= +rriel: mr@zayo.com<= +/u> 

+ +

Website/Site Web: https://www.zayo.com

+ +

Purpose | Network Map Escalation List LinkedIn <= +/span>Twitter Tranzact&n= +bsp; + +

&nbs= +p;

+ +

This communication is the property of Zayo and may contain confidential= + or privileged information. If you have received this communication in erro= +r, please promptly notify the sender by reply e-mail and destroy all copies= + of the communication and any attachments.

+ +

 

+ +
+ +

+ +--
+You received this message because you are subscribed to the Google Groups &= +quot;Maintenance Notices" group.
+To unsubscribe from this group and stop receiving emails from it, send an e= +mail to maint-notices+= +unsubscribe@example.com.
+To view this discussion on the web visit https://groups.google.com/a/example.com/d/msgid/maint-no= +tices/tXhiD000000000000000000000000000000000000000000000R2O1RM00YzkHXEK_Roi= +nH1-Hiehd3w%40sfdc.net.
+ +------=_Part_1040_551133997.1637068032082-- + +------=_Part_1041_614738999.1637068032082-- diff --git a/tests/unit/data/zayo/zayo8.eml b/tests/unit/data/zayo/zayo8.eml index 1025d279..aca90176 100644 --- a/tests/unit/data/zayo/zayo8.eml +++ b/tests/unit/data/zayo/zayo8.eml @@ -1,599 +1,599 @@ -Delivered-To: nautobot.email@example.com -Received: by 2002:a05:7000:8c98:0:0:0:0 with SMTP id ja24csp175543mab; - Wed, 15 Dec 2021 09:55:52 -0800 (PST) -X-Received: by 2002:a37:a590:: with SMTP id o138mr9453040qke.174.1639590952220; - Wed, 15 Dec 2021 09:55:52 -0800 (PST) -ARC-Seal: i=3; a=rsa-sha256; t=1639590952; cv=pass; - d=google.com; s=arc-20160816; - b=hrMEsepR+6zON/Sb8A2hsoX5ERoCGGu/Ea1BQknvcz83ULsVozARTutuGJ4H3LMvMo - Kkg78ni2+qnFA2K8zYG7o7DWnuDruXWZBHdEu08HPqnt5TzHQSWonK/pgr1HlgLS9Gwl - /ww0Wp310E76A3Ceo/RPeYg8dK8wBcY/ZToj3eCf53v37yH5n/yEMzZNUiEfLJq/qYHi - mZdjnsUsC4VeQseGn5+LC58OL0o5iNVnuOKpHZu9tMcC6QKua0sTX0ma4cO6GM919vEx - 46hywM+xqAG5jSf7sx3XapltdH337+lQ+dlIVbXTHA23fRCpqYYios6OMYvaTCbZE+IW - prVw== -ARC-Message-Signature: i=3; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=list-unsubscribe:list-archive:list-help:list-post:list-id - :mailing-list:precedence:mime-version:subject:message-id:to:from - :date:sender:dkim-signature; - bh=EsaUguMqEmNO6jsjTZLhllzRn70aXLgPhX1LTHb3szs=; - b=KGIpzX5VYEwiFALcYj7d39n0653rIrsxc9FmBWuT+vWOLFidoxHdgF5QqUfwbccdoD - vQbyJgUos0XlQmu8ZJ1R5ALlBZRwZRFqGxuyRMjyyCxfGgcjOvGu2Dgogvu2C3mYGN/c - ZizkE5pMm4m2PLtPvU8Q+lUUk9PoyJ4LMcSJT3/YAMTatGZyXWuaRj3aQ8Q/ryiE7Uf3 - uWG/LALzbEHov3nVjCkC9UbkoWJQvKWZtE3RC1lCX9h9+AIxrEU7vzFoLfBmKuiOArTq - tQlk8KgN+6Um7/EZyNlKlScSZb9I88+YGbdjOa8ruqUl/qh3CiVv67jC15CMuwWnP8Oa - 78pw== -ARC-Authentication-Results: i=3; mx.google.com; - dkim=pass header.i=@example.com header.s=example header.b="RQ/SNOat"; - arc=pass (i=2 spf=pass spfdomain=gkwgc1jp3j48nv.6-79qkeai.na152.bnc.salesforce.com dkim=pass dkdomain=zayo.com dmarc=pass fromdomain=zayo.com); - spf=pass (google.com: domain of maint-notices+bncbcyp3io6yejbbjoy5cgqmgqeaidx5ui@example.com designates 209.85.220.97 as permitted sender) smtp.mailfrom=maint-notices+bncBCYP3IO6YEJBBJOY5CGQMGQEAIDX5UI@example.com; - dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=zayo.com -Return-Path: -Received: from mail-sor-f97.google.com (mail-sor-f97.google.com. [209.85.220.97]) - by mx.google.com with SMTPS id v19sor2882262qtk.22.2021.12.15.09.55.52 - for - (Google Transport Security); - Wed, 15 Dec 2021 09:55:52 -0800 (PST) -Received-SPF: pass (google.com: domain of maint-notices+bncbcyp3io6yejbbjoy5cgqmgqeaidx5ui@example.com designates 209.85.220.97 as permitted sender) client-ip=209.85.220.97; -Authentication-Results: mx.google.com; - dkim=pass header.i=@example.com header.s=example header.b="RQ/SNOat"; - arc=pass (i=2 spf=pass spfdomain=gkwgc1jp3j48nv.6-79qkeai.na152.bnc.salesforce.com dkim=pass dkdomain=zayo.com dmarc=pass fromdomain=zayo.com); - spf=pass (google.com: domain of maint-notices+bncbcyp3io6yejbbjoy5cgqmgqeaidx5ui@example.com designates 209.85.220.97 as permitted sender) smtp.mailfrom=maint-notices+bncBCYP3IO6YEJBBJOY5CGQMGQEAIDX5UI@example.com; - dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=zayo.com -X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; - d=1e100.net; s=20210112; - h=x-gm-message-state:dkim-signature:sender:date:from:to:message-id - :subject:mime-version:x-original-sender - :x-original-authentication-results:precedence:mailing-list:list-id - :list-post:list-help:list-archive:list-unsubscribe; - bh=EsaUguMqEmNO6jsjTZLhllzRn70aXLgPhX1LTHb3szs=; - b=U35kqRteL2dyMHhmJacK3lRtBN2rBv95J1/Oi50dLrKmWd2m+ZHDN1KlZr0HU4/BV8 - CjZCemq9Hj5BuvoTBKd/viX+2g4GXlBT2h/Myqh4NEnJhuIUMbpQVK3bKuvxiq2xPYiI - Crpo6Olq3FoLwC3nZM7HSWU4fvNQEl7TtAr+Eu1W2Heoz4IooDCLEFbH8G7pCERTl52C - qJKvx7wSdExujlb2Csk4a+grWJ0HvxjDu+ox1KpNdKzaRDv3Uw88/gRnkgh2mJeGGGwh - DH2S3QvSakZZ8YuXV4ifXkV1zxfM3X8J92kxF/mCruG7nOpmvYDNzKAY+zlveQf43ZVs - 3yyw== -X-Gm-Message-State: AOAM530OhsLiV4+N/8cyLABd8IVTmNajrnClhl3dh1eaNdl22oybfd84 - Xmy20+FiS42QbZFEiUSZzPwAd89mpXqn2H9BszkrbGDtdKyi3Ibr -X-Google-Smtp-Source: ABdhPJzIP+Tcum86b+hYiqifjsHFDpgUANUt/fvQy3xTZZ2462wLPl040DZx4DUyCYDvF9rLnCf5k0+jh5NR -X-Received: by 2002:a05:622a:120b:: with SMTP id y11mr13317843qtx.544.1639590951871; - Wed, 15 Dec 2021 09:55:51 -0800 (PST) -Return-Path: -Received: from netskope.com ([163.116.131.7]) - by smtp-relay.gmail.com with ESMTPS id bs19sm1471710qkb.5.2021.12.15.09.55.51 - for - (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); - Wed, 15 Dec 2021 09:55:51 -0800 (PST) -X-Relaying-Domain: example.com -Received: by mail-qk1-f200.google.com with SMTP id az44-20020a05620a172c00b0046a828b4684sf19504504qkb.22 - for ; Wed, 15 Dec 2021 09:55:50 -0800 (PST) -ARC-Seal: i=2; a=rsa-sha256; t=1639590950; cv=pass; - d=google.com; s=arc-20160816; - b=oEYVVvyqeZEocJQFI211if2zYMDYP7NJfEEaZkWj7/MkctPubG5KuxBzru6RpiXUvJ - ezBV4gC68pK+yi9ZBz/H57l47fEcoupJYJVOB0wnWSxYZ5dv4WV5Il/X0eTNByNou2KO - 9X3RU4dIl1PPgaXz/W5yngJJq2dc8ku0N13pFxhkrSAi231oYZPj7/sYOtmEsETg3rZv - YGbeLnmTr26xSzB4ciUJp9i1cPgfn8BpkWdgVMZIMzqTqlQyhs39ohf+DcVyWYyGsy5P - 2KHGKj3kpXO7SLmYGIMgIPQ4/at9uCFIsg7BEk4nGJXNAAPza14v4G2ypToPWiyn6wYr - CjiQ== -ARC-Message-Signature: i=2; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=list-unsubscribe:list-archive:list-help:list-post:list-id - :mailing-list:precedence:mime-version:subject:message-id:to:from - :date:sender:dkim-signature; - bh=EsaUguMqEmNO6jsjTZLhllzRn70aXLgPhX1LTHb3szs=; - b=a+4AdEV6r6dsPFYKK+1XQbIifwrAtywDFHebsE6fEqMyMBnU/s8Srwhh2BKlTcetm0 - b0Mrx2j1JANUmzcHFBjG1gyQEuJo4Zfo57l4s4bL7AS7BxQ0ysI7H9F61Xe+KH0O6671 - IzOTWpCA271zL0oUsB6qTOzY6l+2Ollbe5EzBMVnYkShzz32EYkB0AH+wMnpai2/bNsb - aWmSYOivX8gWohpP35VsUJzYhbXM+gchjkEe31DtkICR8ngosbDH1gQxTRoEDc7WaBN6 - +NyabbmUUZgg8wwhXQLAFHTxnD5CSmQ9IKbhZybSd5qD3TpkaQwjnvexrf7EqixpGpOB - ZWrg== -ARC-Authentication-Results: i=2; mx.google.com; - dkim=pass header.i=@zayo.com header.s=SF112018Alt header.b=CabAzYrd; - spf=pass (google.com: domain of mr=zayo.com__0-5kf7a5jav5y3ll@gkwgc1jp3j48nv.6-79qkeai.na152.bnc.salesforce.com designates 13.110.74.206 as permitted sender) smtp.mailfrom="mr=zayo.com__0-5kf7a5jav5y3ll@gkwgc1jp3j48nv.6-79qkeai.na152.bnc.salesforce.com"; - dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com -DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; - d=example.com; s=example; - h=sender:date:from:to:message-id:subject:mime-version - :x-original-sender:x-original-authentication-results:precedence - :mailing-list:list-id:list-post:list-help:list-archive - :list-unsubscribe; - bh=EsaUguMqEmNO6jsjTZLhllzRn70aXLgPhX1LTHb3szs=; - b=RQ/SNOatNnKuDq/tvqH0xL78cnIeEtI0iNn2xm3HZN5BElxthAmLv3ZDlC1Xrly89i - OEpcQXlfQhM1js8x2vj0Iub8pN/nm+OMsnpknKknIqS7bFcCyLag8xetpjWlf6eyy9SA - xZyzgLQkXzCucJd7AaNYga1L2wXAoWQ5og3dY= -Sender: maint-notices@example.com -X-Received: by 2002:ac8:7009:: with SMTP id x9mr13099594qtm.420.1639590950056; - Wed, 15 Dec 2021 09:55:50 -0800 (PST) -X-Received: by 2002:ac8:7009:: with SMTP id x9mr13099582qtm.420.1639590949877; - Wed, 15 Dec 2021 09:55:49 -0800 (PST) -X-BeenThere: maint-notices@example.com -Received: by 2002:a05:620a:1221:: with SMTP id v1ls1629089qkj.10.gmail; Wed, - 15 Dec 2021 09:55:49 -0800 (PST) -X-Received: by 2002:a05:620a:24ca:: with SMTP id m10mr9238909qkn.635.1639590949194; - Wed, 15 Dec 2021 09:55:49 -0800 (PST) -ARC-Seal: i=1; a=rsa-sha256; t=1639590949; cv=none; - d=google.com; s=arc-20160816; - b=jsxQeTSLo84+LRXwRqkN43jDoiCfDD2WtUhB22JsyEwZElP2cmR/Y1tiyIkS1pZ8X4 - egJZYiM5jBC6bEo5zmbtpJ6XAAiPMD6aE226jRiV0UxmkayFVoGnqUCVpxdFt8taxCH1 - yJIx2FFPSJPCh+CQ46Pqh+2r4UEaGHiHbJ90PCmzJI+PW0l9uIZHC3OaWOZBle3lyLJD - qwQdTNqXgAyfVCFyesI+k0cHBjwmmpKqB7Dq1ow0/o5FWWnner5UcdsawkXPfoAyzFYe - OxeFfRr8v/7zLWzRkFF62A+gxBAmxoepONnjaHOuLu3LK7REMx86Di6/kZwuhTU0Xfke - /PVw== -ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; - h=mime-version:subject:message-id:to:from:date:dkim-signature; - bh=eWOdmKsULrJsBhon6OVLVL19FTKQGBJdsoJm7XAIBzc=; - b=EZM1DK57cQtRoIfOKN84XFpO2QhIWoJ48NboD0nxQpdhR6g0xrXsN6cl+wBZH6PMGI - yDRV7B7xvo3l3gApfPC96cSxTCq1TA9fF9RphZTr1OmUBIRTFOvRkBeA7PxbMzSkLcM2 - YYn2KUkshVVT+WZ/MUMVTCvLfHSMDxcUkHxm4RjQLuRexqZ8sPy7J4iyY1zLCjwW//68 - 9wJ9xgEjXXtGdB8rF6cxDaaTqYX0bKXqnQZA08fc/ZVaG2Loc4k5UDIulJHE3U9U3N7T - JywUbmgu/NxDZDsCqfuZToM/4W4Dfle5OzQf1VJRKlISSS3JJyrCv6KiVWaOpqklErKk - h78w== -ARC-Authentication-Results: i=1; mx.google.com; - dkim=pass header.i=@zayo.com header.s=SF112018Alt header.b=CabAzYrd; - spf=pass (google.com: domain of mr=zayo.com__0-5kf7a5jav5y3ll@gkwgc1jp3j48nv.6-79qkeai.na152.bnc.salesforce.com designates 13.110.74.206 as permitted sender) smtp.mailfrom="mr=zayo.com__0-5kf7a5jav5y3ll@gkwgc1jp3j48nv.6-79qkeai.na152.bnc.salesforce.com"; - dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com -Received: from smtp15-ia4-sp3.mta.salesforce.com (smtp15-ia4-sp3.mta.salesforce.com. [13.110.74.206]) - by mx.google.com with ESMTPS id m4si1438845qkp.423.2021.12.15.09.55.49 - for - (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); - Wed, 15 Dec 2021 09:55:49 -0800 (PST) -Received-SPF: pass (google.com: domain of mr=zayo.com__0-5kf7a5jav5y3ll@gkwgc1jp3j48nv.6-79qkeai.na152.bnc.salesforce.com designates 13.110.74.206 as permitted sender) client-ip=13.110.74.206; -Received: from [10.180.203.108] ([10.180.203.108:41420] helo=na152-app2-8-ia4.ops.sfdc.net) - by mx1-ia4-sp3.mta.salesforce.com (envelope-from ) - (ecelerity 4.2.38.62368 r(Core:release/4.2.38.0)) with ESMTPS (cipher=ECDHE-RSA-AES256-GCM-SHA384 - subject="/C=US/ST=California/L=San Francisco/O=salesforce.com, inc./OU=0:app;1:ia4;2:ia4-sp3;3:na152;4:prod/CN=na152-app2-8-ia4.ops.sfdc.net") - id 5A/FE-05444-42C2AB16; Wed, 15 Dec 2021 17:55:48 +0000 -Date: Wed, 15 Dec 2021 17:55:48 +0000 (GMT) -From: MR Zayo -To: "maint-notices@example.com" -Message-ID: -Subject: [maint-notices] RESCHEDULE NOTIFICATION***Customer,inc***ZAYO - TTN-0001234567 Planned*** -MIME-Version: 1.0 -Content-Type: multipart/mixed; - boundary="----=_Part_11347_523549970.1639590948797" -X-Priority: 3 -X-SFDC-LK: 00D6000000079Qk -X-SFDC-User: 005600000057Fhs -X-Sender: postmaster@salesforce.com -X-mail_abuse_inquiries: http://www.salesforce.com/company/abuse.jsp -X-SFDC-TLS-NoRelay: 1 -X-SFDC-Binding: 1WrIRBV94myi25uB -X-SFDC-EmailCategory: apiSingleMail -X-SFDC-Interface: internal -X-Original-Sender: mr@zayo.com -X-Original-Authentication-Results: mx.google.com; dkim=pass - header.i=@zayo.com header.s=SF112018Alt header.b=CabAzYrd; spf=pass - (google.com: domain of mr=zayo.com__0-5kf7a5jav5y3ll@gkwgc1jp3j48nv.6-79qkeai.na152.bnc.salesforce.com - designates 13.110.74.206 as permitted sender) smtp.mailfrom="mr=zayo.com__0-5kf7a5jav5y3ll@gkwgc1jp3j48nv.6-79qkeai.na152.bnc.salesforce.com"; - dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com -Precedence: list -Mailing-list: list maint-notices@example.com; contact maint-notices+owners@example.com -List-ID: -X-Google-Group-Id: 536184160288 -List-Post: , -List-Help: , - -List-Archive: -List-Unsubscribe: , - -x-netskope-inspected: true - -------=_Part_11347_523549970.1639590948797 -Content-Type: multipart/alternative; - boundary="----=_Part_11346_1620921427.1639590948797" - -------=_Part_11346_1620921427.1639590948797 -Content-Type: text/plain; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - -** Please note revised Primary dates below ** - - -Reschedule Notification - -Zayo or one of its providers has rescheduled the maintenance listed below. = -Please make a note of revised dates and times. - - - -Maintenance Ticket #: TTN-0001234567 - - -Urgency: Planned - - -Date Notice Sent: 15-Dec-2021 - - -Customer: Customer,inc - - - - -Maintenance Window=20 - -1st Activity Date=20 -06-Jan-2022 00:01 to 06-Jan-2022 06:00 ( Eastern )=20 - - 06-Jan-2022 05:01 to 06-Jan-2022 11:00 ( GMT )=20 - -2nd Activity Date=20 -07-Jan-2022 00:01 to 07-Jan-2022 06:00 ( Eastern )=20 - - 07-Jan-2022 05:01 to 07-Jan-2022 11:00 ( GMT )=20 - -3rd Activity Date=20 -08-Jan-2022 00:01 to 08-Jan-2022 06:00 ( Eastern )=20 - - 08-Jan-2022 05:01 to 08-Jan-2022 11:00 ( GMT )=20 - - - -Location of Maintenance: Some Street, Salmon Arm, BC - - -Reason for Maintenance: Zayo Third-Party Provider will implement maintenanc= -e to perform temporary fiber relocation in order to proactively avoid outag= -es."Please Note" This is a reschedule of TTN-0002345678 -As this maintenance is not under the control of Zayo it may not be possible= - to reschedule it, due to resources having been coordinated with the railwa= -y system (Lat: 50.12345- Lon: -119.12345)The maintenance consists of 2 nigh= -ts; however, customers will only receive notification for the night their s= -ervices will be impacted - - -Expected Impact: Service Affecting Activity: Any Maintenance Activity direc= -tly impacting the service(s) of customers. Service(s) are expected to go do= -wn as a result of these activities. - - -Circuit(s) Affected:=20 - - -Circuit Id -Expected Impact -A Location Address - -Z Location Address -Legacy Circuit Id - -/OQYX/234567/ /ZYO / -Hard Down - up to 1 hour -350 E Some Rd Chicago, IL. USA -2020 Nth Ave Seattle, WA. USA - - - - -Please contact the Zayo Maintenance Team with any questions regarding this = -maintenance event. Please reference the Maintenance Ticket number when call= -ing. - - -Maintenance Team Contacts:=20 - - - - -Zayo=C2=A0Global Change Management Team/=C3=89quipe de Gestion du Changemen= -t Global=C2=A0Zayo - -Zayo | Our Fiber Fuels Global Innovation - -Toll free/No=C2=A0sans=C2=A0frais:=C2=A01.866.236.2824 - -United Kingdom Toll Free/No=C2=A0sans -frais Royaume-Uni:=C2=A00800.169.1646 - -Email/Courriel:=C2=A0mr@zayo.com=C2=A0 - -Website/Site Web:=C2=A0https://www.zayo.com - -Purpose=C2=A0|=C2=A0Network Map=C2=A0|=C2=A0Escalation List=C2=A0|=C2=A0Lin= -kedIn=C2=A0|=C2=A0Twitter=C2=A0|=C2=A0Tranzact=C2=A0 - -=C2=A0 - -This communication is the property of Zayo and may contain confidential or = -privileged information. If you have received this communication in error, p= -lease promptly notify the sender by reply e-mail and destroy all copies of = -the communication and any attachments. - -=C2=A0 - ---=20 -You received this message because you are subscribed to the Google Groups "= -Maintenance Notices" group. -To unsubscribe from this group and stop receiving emails from it, send an e= -mail to maint-notices+unsubscribe@example.com. -To view this discussion on the web visit https://groups.google.com/a/exampl= -e.com/d/msgid/maint-notices/MbSVz0000000000000000000000000000000000000000000= -00R464GQ00_GIDD_n0TA-lkO7LslKi6A%40sfdc.net. - -------=_Part_11346_1620921427.1639590948797 -Content-Type: text/html; charset="UTF-8" -Content-Transfer-Encoding: quoted-printable - -** Please note revised Primary d= -ates below ** - -

Reschedule Notification -

Zayo or one of its providers has rescheduled the maintenance listed= - below. Please make a note of revised dates and times. -
- -

Maintenance Ticket #: TTN-0001234567 - -

Urgency: Planned - -

Date Notice Sent: 15-Dec-2021 - -

Customer: Customer,inc - - - -

Maintenance Window

1st Activity Date <= -/b>
06-Jan-2022 00:01 to 06-Jan-2022 06:00 ( Eastern )=20 -
06-Jan-2022 05:01 to 06-Jan-2022 11:00 ( GMT )

2nd Activity Date
07-Jan-2022 00:01 to 07-Jan-2022 06:00 ( Eastern )= -=20 -
07-Jan-2022 05:01 to 07-Jan-2022 11:00 ( GMT )

3rd Activity Date
08-Jan-2022 00:01 to 08-Jan-2022 06:00 ( Eastern )= -=20 -
08-Jan-2022 05:01 to 08-Jan-2022 11:00 ( GMT )=20 - - -

Location of Maintenance: Some Street, Salmon Arm, BC - -

Reason for Maintenance: Zayo Third-Party Provider will impl= -ement maintenance to perform temporary fiber relocation in order to proacti= -vely avoid outages."Please Note" This is a reschedule of TTN-0002345678 -As this maintenance is not under the control of Zayo it may not be possibl= -e to reschedule it, due to resources having been coordinated with the railw= -ay system (Lat: 50.12345- Lon: -119.12345)The maintenance consists of 2 nig= -hts; however, customers will only receive notification for the night their = -services will be impacted - -

Expected Impact: Service Affecting Activity: Any Maintenan= -ce Activity directly impacting the service(s) of customers. Service(s) are = -expected to go down as a result of these activities. - -

Circuit(s) Affected:
- - - - - - - - - - - - - - - - -
Circuit IdExpected ImpactA Location AddressZ Location AddressLegacy Circuit Id
/OQYX/234567/ /ZYO /Hard Down - up to 1 hour350 E Some Rd Chicago, IL. USA2020 Nth Ave Seattle, WA. USA
- - -

Please contact the Zayo Maintenance Team with any questions regardi= -ng this maintenance event. Please reference the Maintenance Ticket number w= -hen calling. - -

Maintenance Team Contacts:

-
- -

Zayo Global Change Management Team/= -=C3=89quipe de Gestion d= -u Changement Global Zayo

- -

Zayo | Our Fiber Fuels Global Inn= -ovation

- -

Toll free/No s= -ans frais: 1.866.236.2824

- -

United Kingdom Toll Free/No sans -frais Royaume-Uni:<= -/i> 0800.169.1646

- -

Email/Cou= -rriel: mr@zayo.com<= -/u> 

- -

Website/Site Web: https://www.zayo.com

- -

Purpose | Network Map Escalation List LinkedIn <= -/span>Twitter Tranzact&n= -bsp; - -

&nbs= -p;

- -

This communication is the property of Zayo and may contain confidential= - or privileged information. If you have received this communication in erro= -r, please promptly notify the sender by reply e-mail and destroy all copies= - of the communication and any attachments.

- -

 

- -
- -

- ---
-You received this message because you are subscribed to the Google Groups &= -quot;Maintenance Notices" group.
-To unsubscribe from this group and stop receiving emails from it, send an e= -mail to maint-notices+= -unsubscribe@example.com.
-To view this discussion on the web visit https://groups.google.com/a/example.com/d/msgid/maint-no= -tices/MbSVz000000000000000000000000000000000000000000000R464GQ00_GIDD_n0TA-= -lkO7LslKi6A%40sfdc.net.
- -------=_Part_11346_1620921427.1639590948797-- - -------=_Part_11347_523549970.1639590948797-- +Delivered-To: nautobot.email@example.com +Received: by 2001:DB8::1 with SMTP id ja24csp175543mab; + Wed, 15 Dec 2021 09:55:52 -0800 (PST) +X-Received: by 2001:DB8::1 with SMTP id o138mr9453040qke.174.1639590952220; + Wed, 15 Dec 2021 09:55:52 -0800 (PST) +ARC-Seal: i=3; a=rsa-sha256; t=1639590952; cv=pass; + d=google.com; s=arc-20160816; + b=hrMEsepR+6zON/Sb8A2hsoX5ERoCGGu/Ea1BQknvcz83ULsVozARTutuGJ4H3LMvMo + Kkg78ni2+qnFA2K8zYG7o7DWnuDruXWZBHdEu08HPqnt5TzHQSWonK/pgr1HlgLS9Gwl + /ww0Wp310E76A3Ceo/RPeYg8dK8wBcY/ZToj3eCf53v37yH5n/yEMzZNUiEfLJq/qYHi + mZdjnsUsC4VeQseGn5+LC58OL0o5iNVnuOKpHZu9tMcC6QKua0sTX0ma4cO6GM919vEx + 46hywM+xqAG5jSf7sx3XapltdH337+lQ+dlIVbXTHA23fRCpqYYios6OMYvaTCbZE+IW + prVw== +ARC-Message-Signature: i=3; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=list-unsubscribe:list-archive:list-help:list-post:list-id + :mailing-list:precedence:mime-version:subject:message-id:to:from + :date:sender:dkim-signature; + bh=EsaUguMqEmNO6jsjTZLhllzRn70aXLgPhX1LTHb3szs=; + b=KGIpzX5VYEwiFALcYj7d39n0653rIrsxc9FmBWuT+vWOLFidoxHdgF5QqUfwbccdoD + vQbyJgUos0XlQmu8ZJ1R5ALlBZRwZRFqGxuyRMjyyCxfGgcjOvGu2Dgogvu2C3mYGN/c + ZizkE5pMm4m2PLtPvU8Q+lUUk9PoyJ4LMcSJT3/YAMTatGZyXWuaRj3aQ8Q/ryiE7Uf3 + uWG/LALzbEHov3nVjCkC9UbkoWJQvKWZtE3RC1lCX9h9+AIxrEU7vzFoLfBmKuiOArTq + tQlk8KgN+6Um7/EZyNlKlScSZb9I88+YGbdjOa8ruqUl/qh3CiVv67jC15CMuwWnP8Oa + 78pw== +ARC-Authentication-Results: i=3; mx.google.com; + dkim=pass header.i=@example.com header.s=example header.b="RQ/SNOat"; + arc=pass (i=2 spf=pass spfdomain=gkwgc1jp3j48nv.6-79qkeai.na152.bnc.salesforce.com dkim=pass dkdomain=zayo.com dmarc=pass fromdomain=zayo.com); + spf=pass (google.com: domain of maint-notices+bncbcyp3io6yejbbjoy5cgqmgqeaidx5ui@example.com designates 192.0.2.1 as permitted sender) smtp.mailfrom=maint-notices+bncBCYP3IO6YEJBBJOY5CGQMGQEAIDX5UI@example.com; + dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=zayo.com +Return-Path: +Received: from mail-sor-f97.google.com (mail-sor-f97.google.com. [192.0.2.1]) + by mx.google.com with SMTPS id v19sor2882262qtk.22.20192.0.2.1.1.52 + for + (Google Transport Security); + Wed, 15 Dec 2021 09:55:52 -0800 (PST) +Received-SPF: pass (google.com: domain of maint-notices+bncbcyp3io6yejbbjoy5cgqmgqeaidx5ui@example.com designates 192.0.2.1 as permitted sender) client-ip=192.0.2.1; +Authentication-Results: mx.google.com; + dkim=pass header.i=@example.com header.s=example header.b="RQ/SNOat"; + arc=pass (i=2 spf=pass spfdomain=gkwgc1jp3j48nv.6-79qkeai.na152.bnc.salesforce.com dkim=pass dkdomain=zayo.com dmarc=pass fromdomain=zayo.com); + spf=pass (google.com: domain of maint-notices+bncbcyp3io6yejbbjoy5cgqmgqeaidx5ui@example.com designates 192.0.2.1 as permitted sender) smtp.mailfrom=maint-notices+bncBCYP3IO6YEJBBJOY5CGQMGQEAIDX5UI@example.com; + dmarc=fail (p=NONE sp=NONE dis=NONE arc=pass) header.from=zayo.com +X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=1e100.net; s=20210112; + h=x-gm-message-state:dkim-signature:sender:date:from:to:message-id + :subject:mime-version:x-original-sender + :x-original-authentication-results:precedence:mailing-list:list-id + :list-post:list-help:list-archive:list-unsubscribe; + bh=EsaUguMqEmNO6jsjTZLhllzRn70aXLgPhX1LTHb3szs=; + b=U35kqRteL2dyMHhmJacK3lRtBN2rBv95J1/Oi50dLrKmWd2m+ZHDN1KlZr0HU4/BV8 + CjZCemq9Hj5BuvoTBKd/viX+2g4GXlBT2h/Myqh4NEnJhuIUMbpQVK3bKuvxiq2xPYiI + Crpo6Olq3FoLwC3nZM7HSWU4fvNQEl7TtAr+Eu1W2Heoz4IooDCLEFbH8G7pCERTl52C + qJKvx7wSdExujlb2Csk4a+grWJ0HvxjDu+ox1KpNdKzaRDv3Uw88/gRnkgh2mJeGGGwh + DH2S3QvSakZZ8YuXV4ifXkV1zxfM3X8J92kxF/mCruG7nOpmvYDNzKAY+zlveQf43ZVs + 3yyw== +X-Gm-Message-State: AOAM530OhsLiV4+N/8cyLABd8IVTmNajrnClhl3dh1eaNdl22oybfd84 + Xmy20+FiS42QbZFEiUSZzPwAd89mpXqn2H9BszkrbGDtdKyi3Ibr +X-Google-Smtp-Source: ABdhPJzIP+Tcum86b+hYiqifjsHFDpgUANUt/fvQy3xTZZ2462wLPl040DZx4DUyCYDvF9rLnCf5k0+jh5NR +X-Received: by 2001:DB8::1 with SMTP id y11mr13317843qtx.544.1639590951871; + Wed, 15 Dec 2021 09:55:51 -0800 (PST) +Return-Path: +Received: from netskope.com ([192.0.2.1]) + by smtp-relay.gmail.com with ESMTPS id bs19sm1471710qkb.5.20192.0.2.1.1.51 + for + (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); + Wed, 15 Dec 2021 09:55:51 -0800 (PST) +X-Relaying-Domain: example.com +Received: by mail-qk1-f200.google.com with SMTP id az44-20020a05620a172c00b0046a828b4684sf19504504qkb.22 + for ; Wed, 15 Dec 2021 09:55:50 -0800 (PST) +ARC-Seal: i=2; a=rsa-sha256; t=1639590950; cv=pass; + d=google.com; s=arc-20160816; + b=oEYVVvyqeZEocJQFI211if2zYMDYP7NJfEEaZkWj7/MkctPubG5KuxBzru6RpiXUvJ + ezBV4gC68pK+yi9ZBz/H57l47fEcoupJYJVOB0wnWSxYZ5dv4WV5Il/X0eTNByNou2KO + 9X3RU4dIl1PPgaXz/W5yngJJq2dc8ku0N13pFxhkrSAi231oYZPj7/sYOtmEsETg3rZv + YGbeLnmTr26xSzB4ciUJp9i1cPgfn8BpkWdgVMZIMzqTqlQyhs39ohf+DcVyWYyGsy5P + 2KHGKj3kpXO7SLmYGIMgIPQ4/at9uCFIsg7BEk4nGJXNAAPza14v4G2ypToPWiyn6wYr + CjiQ== +ARC-Message-Signature: i=2; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=list-unsubscribe:list-archive:list-help:list-post:list-id + :mailing-list:precedence:mime-version:subject:message-id:to:from + :date:sender:dkim-signature; + bh=EsaUguMqEmNO6jsjTZLhllzRn70aXLgPhX1LTHb3szs=; + b=a+4AdEV6r6dsPFYKK+1XQbIifwrAtywDFHebsE6fEqMyMBnU/s8Srwhh2BKlTcetm0 + b0Mrx2j1JANUmzcHFBjG1gyQEuJo4Zfo57l4s4bL7AS7BxQ0ysI7H9F61Xe+KH0O6671 + IzOTWpCA271zL0oUsB6qTOzY6l+2Ollbe5EzBMVnYkShzz32EYkB0AH+wMnpai2/bNsb + aWmSYOivX8gWohpP35VsUJzYhbXM+gchjkEe31DtkICR8ngosbDH1gQxTRoEDc7WaBN6 + +NyabbmUUZgg8wwhXQLAFHTxnD5CSmQ9IKbhZybSd5qD3TpkaQwjnvexrf7EqixpGpOB + ZWrg== +ARC-Authentication-Results: i=2; mx.google.com; + dkim=pass header.i=@zayo.com header.s=SF112018Alt header.b=CabAzYrd; + spf=pass (google.com: domain of mr=zayo.com__0-5kf7a5jav5y3ll@gkwgc1jp3j48nv.6-79qkeai.na152.bnc.salesforce.com designates 192.0.2.1 as permitted sender) smtp.mailfrom="mr=zayo.com__0-5kf7a5jav5y3ll@gkwgc1jp3j48nv.6-79qkeai.na152.bnc.salesforce.com"; + dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=example.com; s=example; + h=sender:date:from:to:message-id:subject:mime-version + :x-original-sender:x-original-authentication-results:precedence + :mailing-list:list-id:list-post:list-help:list-archive + :list-unsubscribe; + bh=EsaUguMqEmNO6jsjTZLhllzRn70aXLgPhX1LTHb3szs=; + b=RQ/SNOatNnKuDq/tvqH0xL78cnIeEtI0iNn2xm3HZN5BElxthAmLv3ZDlC1Xrly89i + OEpcQXlfQhM1js8x2vj0Iub8pN/nm+OMsnpknKknIqS7bFcCyLag8xetpjWlf6eyy9SA + xZyzgLQkXzCucJd7AaNYga1L2wXAoWQ5og3dY= +Sender: maint-notices@example.com +X-Received: by 2001:DB8::1 with SMTP id x9mr13099594qtm.420.1639590950056; + Wed, 15 Dec 2021 09:55:50 -0800 (PST) +X-Received: by 2001:DB8::1 with SMTP id x9mr13099582qtm.420.1639590949877; + Wed, 15 Dec 2021 09:55:49 -0800 (PST) +X-BeenThere: maint-notices@example.com +Received: by 2001:DB8::1 with SMTP id v1ls1629089qkj.10.gmail; Wed, + 15 Dec 2021 09:55:49 -0800 (PST) +X-Received: by 2001:DB8::1 with SMTP id m10mr9238909qkn.635.1639590949194; + Wed, 15 Dec 2021 09:55:49 -0800 (PST) +ARC-Seal: i=1; a=rsa-sha256; t=1639590949; cv=none; + d=google.com; s=arc-20160816; + b=jsxQeTSLo84+LRXwRqkN43jDoiCfDD2WtUhB22JsyEwZElP2cmR/Y1tiyIkS1pZ8X4 + egJZYiM5jBC6bEo5zmbtpJ6XAAiPMD6aE226jRiV0UxmkayFVoGnqUCVpxdFt8taxCH1 + yJIx2FFPSJPCh+CQ46Pqh+2r4UEaGHiHbJ90PCmzJI+PW0l9uIZHC3OaWOZBle3lyLJD + qwQdTNqXgAyfVCFyesI+k0cHBjwmmpKqB7Dq1ow0/o5FWWnner5UcdsawkXPfoAyzFYe + OxeFfRr8v/7zLWzRkFF62A+gxBAmxoepONnjaHOuLu3LK7REMx86Di6/kZwuhTU0Xfke + /PVw== +ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; + h=mime-version:subject:message-id:to:from:date:dkim-signature; + bh=eWOdmKsULrJsBhon6OVLVL19FTKQGBJdsoJm7XAIBzc=; + b=EZM1DK57cQtRoIfOKN84XFpO2QhIWoJ48NboD0nxQpdhR6g0xrXsN6cl+wBZH6PMGI + yDRV7B7xvo3l3gApfPC96cSxTCq1TA9fF9RphZTr1OmUBIRTFOvRkBeA7PxbMzSkLcM2 + YYn2KUkshVVT+WZ/MUMVTCvLfHSMDxcUkHxm4RjQLuRexqZ8sPy7J4iyY1zLCjwW//68 + 9wJ9xgEjXXtGdB8rF6cxDaaTqYX0bKXqnQZA08fc/ZVaG2Loc4k5UDIulJHE3U9U3N7T + JywUbmgu/NxDZDsCqfuZToM/4W4Dfle5OzQf1VJRKlISSS3JJyrCv6KiVWaOpqklErKk + h78w== +ARC-Authentication-Results: i=1; mx.google.com; + dkim=pass header.i=@zayo.com header.s=SF112018Alt header.b=CabAzYrd; + spf=pass (google.com: domain of mr=zayo.com__0-5kf7a5jav5y3ll@gkwgc1jp3j48nv.6-79qkeai.na152.bnc.salesforce.com designates 192.0.2.1 as permitted sender) smtp.mailfrom="mr=zayo.com__0-5kf7a5jav5y3ll@gkwgc1jp3j48nv.6-79qkeai.na152.bnc.salesforce.com"; + dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com +Received: from smtp15-ia4-sp3.mta.salesforce.com (smtp15-ia4-sp3.mta.salesforce.com. [192.0.2.1]) + by mx.google.com with ESMTPS id m4si1438845qkp.423.20192.0.2.1.1.49 + for + (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); + Wed, 15 Dec 2021 09:55:49 -0800 (PST) +Received-SPF: pass (google.com: domain of mr=zayo.com__0-5kf7a5jav5y3ll@gkwgc1jp3j48nv.6-79qkeai.na152.bnc.salesforce.com designates 192.0.2.1 as permitted sender) client-ip=192.0.2.1; +Received: from [192.0.2.1] ([192.0.2.1:41420] helo=na152-app2-8-ia4.ops.sfdc.net) + by mx1-ia4-sp3.mta.salesforce.com (envelope-from ) + (ecelerity 192.0.2.1 r(Core:release/192.0.2.1)) with ESMTPS (cipher=ECDHE-RSA-AES256-GCM-SHA384 + subject="/C=US/ST=California/L=San Francisco/O=salesforce.com, inc./OU=0:app;1:ia4;2:ia4-sp3;3:na152;4:prod/CN=na152-app2-8-ia4.ops.sfdc.net") + id 5A/FE-05444-42C2AB16; Wed, 15 Dec 2021 17:55:48 +0000 +Date: Wed, 15 Dec 2021 17:55:48 +0000 (GMT) +From: MR Zayo +To: "maint-notices@example.com" +Message-ID: +Subject: [maint-notices] RESCHEDULE NOTIFICATION***Customer,inc***ZAYO + TTN-0001234567 Planned*** +MIME-Version: 1.0 +Content-Type: multipart/mixed; + boundary="----=_Part_11347_523549970.1639590948797" +X-Priority: 3 +X-SFDC-LK: 00D6000000079Qk +X-SFDC-User: 005600000057Fhs +X-Sender: postmaster@salesforce.com +X-mail_abuse_inquiries: http://www.salesforce.com/company/abuse.jsp +X-SFDC-TLS-NoRelay: 1 +X-SFDC-Binding: 1WrIRBV94myi25uB +X-SFDC-EmailCategory: apiSingleMail +X-SFDC-Interface: internal +X-Original-Sender: mr@zayo.com +X-Original-Authentication-Results: mx.google.com; dkim=pass + header.i=@zayo.com header.s=SF112018Alt header.b=CabAzYrd; spf=pass + (google.com: domain of mr=zayo.com__0-5kf7a5jav5y3ll@gkwgc1jp3j48nv.6-79qkeai.na152.bnc.salesforce.com + designates 192.0.2.1 as permitted sender) smtp.mailfrom="mr=zayo.com__0-5kf7a5jav5y3ll@gkwgc1jp3j48nv.6-79qkeai.na152.bnc.salesforce.com"; + dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=zayo.com +Precedence: list +Mailing-list: list maint-notices@example.com; contact maint-notices+owners@example.com +List-ID: +X-Google-Group-Id: 536184160288 +List-Post: , +List-Help: , + +List-Archive: +List-Unsubscribe: , + +x-netskope-inspected: true + +------=_Part_11347_523549970.1639590948797 +Content-Type: multipart/alternative; + boundary="----=_Part_11346_1620921427.1639590948797" + +------=_Part_11346_1620921427.1639590948797 +Content-Type: text/plain; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + +** Please note revised Primary dates below ** + + +Reschedule Notification + +Zayo or one of its providers has rescheduled the maintenance listed below. = +Please make a note of revised dates and times. + + + +Maintenance Ticket #: TTN-0001234567 + + +Urgency: Planned + + +Date Notice Sent: 15-Dec-2021 + + +Customer: Customer,inc + + + + +Maintenance Window=20 + +1st Activity Date=20 +06-Jan-2022 00:01 to 06-Jan-2022 06:00 ( Eastern )=20 + + 06-Jan-2022 05:01 to 06-Jan-2022 11:00 ( GMT )=20 + +2nd Activity Date=20 +07-Jan-2022 00:01 to 07-Jan-2022 06:00 ( Eastern )=20 + + 07-Jan-2022 05:01 to 07-Jan-2022 11:00 ( GMT )=20 + +3rd Activity Date=20 +08-Jan-2022 00:01 to 08-Jan-2022 06:00 ( Eastern )=20 + + 08-Jan-2022 05:01 to 08-Jan-2022 11:00 ( GMT )=20 + + + +Location of Maintenance: Some Street, Salmon Arm, BC + + +Reason for Maintenance: Zayo Third-Party Provider will implement maintenanc= +e to perform temporary fiber relocation in order to proactively avoid outag= +es."Please Note" This is a reschedule of TTN-0002345678 +As this maintenance is not under the control of Zayo it may not be possible= + to reschedule it, due to resources having been coordinated with the railwa= +y system (Lat: 50.12345- Lon: -119.12345)The maintenance consists of 2 nigh= +ts; however, customers will only receive notification for the night their s= +ervices will be impacted + + +Expected Impact: Service Affecting Activity: Any Maintenance Activity direc= +tly impacting the service(s) of customers. Service(s) are expected to go do= +wn as a result of these activities. + + +Circuit(s) Affected:=20 + + +Circuit Id +Expected Impact +A Location Address + +Z Location Address +Legacy Circuit Id + +/OQYX/234567/ /ZYO / +Hard Down - up to 1 hour +350 E Some Rd Chicago, IL. USA +2020 Nth Ave Seattle, WA. USA + + + + +Please contact the Zayo Maintenance Team with any questions regarding this = +maintenance event. Please reference the Maintenance Ticket number when call= +ing. + + +Maintenance Team Contacts:=20 + + + + +Zayo=C2=A0Global Change Management Team/=C3=89quipe de Gestion du Changemen= +t Global=C2=A0Zayo + +Zayo | Our Fiber Fuels Global Innovation + +Toll free/No=C2=A0sans=C2=A0frais:=C2=A01.866.236.2824 + +United Kingdom Toll Free/No=C2=A0sans +frais Royaume-Uni:=C2=A00800.169.1646 + +Email/Courriel:=C2=A0mr@zayo.com=C2=A0 + +Website/Site Web:=C2=A0https://www.zayo.com + +Purpose=C2=A0|=C2=A0Network Map=C2=A0|=C2=A0Escalation List=C2=A0|=C2=A0Lin= +kedIn=C2=A0|=C2=A0Twitter=C2=A0|=C2=A0Tranzact=C2=A0 + +=C2=A0 + +This communication is the property of Zayo and may contain confidential or = +privileged information. If you have received this communication in error, p= +lease promptly notify the sender by reply e-mail and destroy all copies of = +the communication and any attachments. + +=C2=A0 + +--=20 +You received this message because you are subscribed to the Google Groups "= +Maintenance Notices" group. +To unsubscribe from this group and stop receiving emails from it, send an e= +mail to maint-notices+unsubscribe@example.com. +To view this discussion on the web visit https://groups.google.com/a/exampl= +e.com/d/msgid/maint-notices/MbSVz0000000000000000000000000000000000000000000= +00R464GQ00_GIDD_n0TA-lkO7LslKi6A%40sfdc.net. + +------=_Part_11346_1620921427.1639590948797 +Content-Type: text/html; charset="UTF-8" +Content-Transfer-Encoding: quoted-printable + +** Please note revised Primary d= +ates below ** + +

Reschedule Notification +

Zayo or one of its providers has rescheduled the maintenance listed= + below. Please make a note of revised dates and times. +
+ +

Maintenance Ticket #: TTN-0001234567 + +

Urgency: Planned + +

Date Notice Sent: 15-Dec-2021 + +

Customer: Customer,inc + + + +

Maintenance Window

1st Activity Date <= +/b>
06-Jan-2022 00:01 to 06-Jan-2022 06:00 ( Eastern )=20 +
06-Jan-2022 05:01 to 06-Jan-2022 11:00 ( GMT )

2nd Activity Date
07-Jan-2022 00:01 to 07-Jan-2022 06:00 ( Eastern )= +=20 +
07-Jan-2022 05:01 to 07-Jan-2022 11:00 ( GMT )

3rd Activity Date
08-Jan-2022 00:01 to 08-Jan-2022 06:00 ( Eastern )= +=20 +
08-Jan-2022 05:01 to 08-Jan-2022 11:00 ( GMT )=20 + + +

Location of Maintenance: Some Street, Salmon Arm, BC + +

Reason for Maintenance: Zayo Third-Party Provider will impl= +ement maintenance to perform temporary fiber relocation in order to proacti= +vely avoid outages."Please Note" This is a reschedule of TTN-0002345678 +As this maintenance is not under the control of Zayo it may not be possibl= +e to reschedule it, due to resources having been coordinated with the railw= +ay system (Lat: 50.12345- Lon: -119.12345)The maintenance consists of 2 nig= +hts; however, customers will only receive notification for the night their = +services will be impacted + +

Expected Impact: Service Affecting Activity: Any Maintenan= +ce Activity directly impacting the service(s) of customers. Service(s) are = +expected to go down as a result of these activities. + +

Circuit(s) Affected:
+ + + + + + + + + + + + + + + + +
Circuit IdExpected ImpactA Location AddressZ Location AddressLegacy Circuit Id
/OQYX/234567/ /ZYO /Hard Down - up to 1 hour350 E Some Rd Chicago, IL. USA2020 Nth Ave Seattle, WA. USA
+ + +

Please contact the Zayo Maintenance Team with any questions regardi= +ng this maintenance event. Please reference the Maintenance Ticket number w= +hen calling. + +

Maintenance Team Contacts:

+
+ +

Zayo Global Change Management Team/= +=C3=89quipe de Gestion d= +u Changement Global Zayo

+ +

Zayo | Our Fiber Fuels Global Inn= +ovation

+ +

Toll free/No s= +ans frais: 1.866.236.2824

+ +

United Kingdom Toll Free/No sans +frais Royaume-Uni:<= +/i> 0800.169.1646

+ +

Email/Cou= +rriel: mr@zayo.com<= +/u> 

+ +

Website/Site Web: https://www.zayo.com

+ +

Purpose | Network Map Escalation List LinkedIn <= +/span>Twitter Tranzact&n= +bsp; + +

&nbs= +p;

+ +

This communication is the property of Zayo and may contain confidential= + or privileged information. If you have received this communication in erro= +r, please promptly notify the sender by reply e-mail and destroy all copies= + of the communication and any attachments.

+ +

 

+ +
+ +

+ +--
+You received this message because you are subscribed to the Google Groups &= +quot;Maintenance Notices" group.
+To unsubscribe from this group and stop receiving emails from it, send an e= +mail to maint-notices+= +unsubscribe@example.com.
+To view this discussion on the web visit https://groups.google.com/a/example.com/d/msgid/maint-no= +tices/MbSVz000000000000000000000000000000000000000000000R464GQ00_GIDD_n0TA-= +lkO7LslKi6A%40sfdc.net.
+ +------=_Part_11346_1620921427.1639590948797-- + +------=_Part_11347_523549970.1639590948797-- diff --git a/tests/unit/data/zayo/zayo8_html_parser_result.json b/tests/unit/data/zayo/zayo8_html_parser_result.json index ae36bebd..fa92f9e3 100644 --- a/tests/unit/data/zayo/zayo8_html_parser_result.json +++ b/tests/unit/data/zayo/zayo8_html_parser_result.json @@ -12,6 +12,6 @@ "stamp": 1639526400, "start": 1641445260, "status": "RE-SCHEDULED", - "summary": "Zayo Third-Party Provider will implement maintenance to perform temporary fiber relocation in order to proactively avoid outages.\"Please Note\" This is a reschedule of TTN-0002345678\r\nAs this maintenance is not under the control of Zayo it may not be possible to reschedule it, due to resources having been coordinated with the railway system (Lat: 50.12345- Lon: -119.12345)The maintenance consists of 2 nights; however, customers will only receive notification for the night their services will be impacted" + "summary": "Zayo Third-Party Provider will implement maintenance to perform temporary fiber relocation in order to proactively avoid outages.\"Please Note\" This is a reschedule of TTN-0002345678\nAs this maintenance is not under the control of Zayo it may not be possible to reschedule it, due to resources having been coordinated with the railway system (Lat: 50.12345- Lon: -119.12345)The maintenance consists of 2 nights; however, customers will only receive notification for the night their services will be impacted" } ] diff --git a/tests/unit/data/zayo/zayo8_result.json b/tests/unit/data/zayo/zayo8_result.json index cec6ed48..bef1ac48 100644 --- a/tests/unit/data/zayo/zayo8_result.json +++ b/tests/unit/data/zayo/zayo8_result.json @@ -15,7 +15,7 @@ "stamp": 1639526400, "start": 1641445260, "status": "RE-SCHEDULED", - "summary": "Zayo Third-Party Provider will implement maintenance to perform temporary fiber relocation in order to proactively avoid outages.\"Please Note\" This is a reschedule of TTN-0002345678\r\nAs this maintenance is not under the control of Zayo it may not be possible to reschedule it, due to resources having been coordinated with the railway system (Lat: 50.12345- Lon: -119.12345)The maintenance consists of 2 nights; however, customers will only receive notification for the night their services will be impacted", + "summary": "Zayo Third-Party Provider will implement maintenance to perform temporary fiber relocation in order to proactively avoid outages.\"Please Note\" This is a reschedule of TTN-0002345678\nAs this maintenance is not under the control of Zayo it may not be possible to reschedule it, due to resources having been coordinated with the railway system (Lat: 50.12345- Lon: -119.12345)The maintenance consists of 2 nights; however, customers will only receive notification for the night their services will be impacted", "uid": "0" } ]