sisimai 4.14.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of sisimai might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/.gitignore +12 -0
- data/.rspec +2 -0
- data/.rubocop.yml +165 -0
- data/.travis.yml +21 -0
- data/ANALYTICAL-PRECISION +54 -0
- data/Changes +5 -0
- data/Developers.mk +129 -0
- data/Gemfile +9 -0
- data/LICENSE +26 -0
- data/Makefile +56 -0
- data/README.md +300 -0
- data/Rakefile +7 -0
- data/Repository.mk +69 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lib/sisimai.rb +60 -0
- data/lib/sisimai/address.rb +218 -0
- data/lib/sisimai/arf.rb +343 -0
- data/lib/sisimai/data.rb +413 -0
- data/lib/sisimai/data/json.rb +36 -0
- data/lib/sisimai/data/yaml.rb +32 -0
- data/lib/sisimai/datetime.rb +518 -0
- data/lib/sisimai/mail.rb +82 -0
- data/lib/sisimai/mail/maildir.rb +85 -0
- data/lib/sisimai/mail/mbox.rb +69 -0
- data/lib/sisimai/mail/stdin.rb +52 -0
- data/lib/sisimai/mda.rb +152 -0
- data/lib/sisimai/message.rb +510 -0
- data/lib/sisimai/mime.rb +127 -0
- data/lib/sisimai/msp.rb +54 -0
- data/lib/sisimai/msp/de/einsundeins.rb +174 -0
- data/lib/sisimai/msp/de/gmx.rb +197 -0
- data/lib/sisimai/msp/jp/biglobe.rb +179 -0
- data/lib/sisimai/msp/jp/ezweb.rb +292 -0
- data/lib/sisimai/msp/jp/kddi.rb +195 -0
- data/lib/sisimai/msp/ru/mailru.rb +306 -0
- data/lib/sisimai/msp/ru/yandex.rb +241 -0
- data/lib/sisimai/msp/uk/messagelabs.rb +250 -0
- data/lib/sisimai/msp/us/amazonses.rb +248 -0
- data/lib/sisimai/msp/us/aol.rb +234 -0
- data/lib/sisimai/msp/us/bigfoot.rb +243 -0
- data/lib/sisimai/msp/us/facebook.rb +306 -0
- data/lib/sisimai/msp/us/google.rb +357 -0
- data/lib/sisimai/msp/us/outlook.rb +243 -0
- data/lib/sisimai/msp/us/receivingses.rb +247 -0
- data/lib/sisimai/msp/us/sendgrid.rb +257 -0
- data/lib/sisimai/msp/us/verizon.rb +311 -0
- data/lib/sisimai/msp/us/yahoo.rb +178 -0
- data/lib/sisimai/msp/us/zoho.rb +198 -0
- data/lib/sisimai/mta.rb +55 -0
- data/lib/sisimai/mta/activehunter.rb +155 -0
- data/lib/sisimai/mta/apachejames.rb +194 -0
- data/lib/sisimai/mta/courier.rb +307 -0
- data/lib/sisimai/mta/domino.rb +209 -0
- data/lib/sisimai/mta/exchange.rb +314 -0
- data/lib/sisimai/mta/exim.rb +549 -0
- data/lib/sisimai/mta/imailserver.rb +227 -0
- data/lib/sisimai/mta/interscanmss.rb +167 -0
- data/lib/sisimai/mta/mailfoundry.rb +173 -0
- data/lib/sisimai/mta/mailmarshalsmtp.rb +206 -0
- data/lib/sisimai/mta/mcafee.rb +201 -0
- data/lib/sisimai/mta/messagingserver.rb +241 -0
- data/lib/sisimai/mta/mfilter.rb +190 -0
- data/lib/sisimai/mta/mxlogic.rb +283 -0
- data/lib/sisimai/mta/notes.rb +206 -0
- data/lib/sisimai/mta/opensmtpd.rb +225 -0
- data/lib/sisimai/mta/postfix.rb +306 -0
- data/lib/sisimai/mta/qmail.rb +335 -0
- data/lib/sisimai/mta/sendmail.rb +317 -0
- data/lib/sisimai/mta/surfcontrol.rb +193 -0
- data/lib/sisimai/mta/userdefined.rb +148 -0
- data/lib/sisimai/mta/v5sendmail.rb +232 -0
- data/lib/sisimai/mta/x1.rb +156 -0
- data/lib/sisimai/mta/x2.rb +157 -0
- data/lib/sisimai/mta/x3.rb +171 -0
- data/lib/sisimai/mta/x4.rb +365 -0
- data/lib/sisimai/mta/x5.rb +208 -0
- data/lib/sisimai/order.rb +217 -0
- data/lib/sisimai/reason.rb +235 -0
- data/lib/sisimai/reason/blocked.rb +105 -0
- data/lib/sisimai/reason/contenterror.rb +53 -0
- data/lib/sisimai/reason/exceedlimit.rb +60 -0
- data/lib/sisimai/reason/expired.rb +53 -0
- data/lib/sisimai/reason/filtered.rb +98 -0
- data/lib/sisimai/reason/hasmoved.rb +45 -0
- data/lib/sisimai/reason/hostunknown.rb +74 -0
- data/lib/sisimai/reason/mailboxfull.rb +118 -0
- data/lib/sisimai/reason/mailererror.rb +55 -0
- data/lib/sisimai/reason/mesgtoobig.rb +77 -0
- data/lib/sisimai/reason/networkerror.rb +57 -0
- data/lib/sisimai/reason/norelaying.rb +71 -0
- data/lib/sisimai/reason/notaccept.rb +63 -0
- data/lib/sisimai/reason/onhold.rb +45 -0
- data/lib/sisimai/reason/rejected.rb +101 -0
- data/lib/sisimai/reason/securityerror.rb +72 -0
- data/lib/sisimai/reason/spamdetected.rb +172 -0
- data/lib/sisimai/reason/suspend.rb +58 -0
- data/lib/sisimai/reason/systemerror.rb +69 -0
- data/lib/sisimai/reason/systemfull.rb +45 -0
- data/lib/sisimai/reason/toomanyconn.rb +73 -0
- data/lib/sisimai/reason/userunknown.rb +194 -0
- data/lib/sisimai/rfc2606.rb +24 -0
- data/lib/sisimai/rfc3464.rb +497 -0
- data/lib/sisimai/rfc3834.rb +150 -0
- data/lib/sisimai/rfc5322.rb +204 -0
- data/lib/sisimai/rhost.rb +47 -0
- data/lib/sisimai/rhost/googleapps.rb +237 -0
- data/lib/sisimai/smtp.rb +58 -0
- data/lib/sisimai/smtp/reply.rb +81 -0
- data/lib/sisimai/smtp/status.rb +755 -0
- data/lib/sisimai/string.rb +65 -0
- data/lib/sisimai/time.rb +11 -0
- data/lib/sisimai/version.rb +4 -0
- data/set-of-emails/README.md +35 -0
- data/set-of-emails/mailbox/mbox-0 +2467 -0
- data/set-of-emails/mailbox/mbox-1 +71 -0
- data/set-of-emails/maildir/bsd/README.md +261 -0
- data/set-of-emails/maildir/bsd/activehunter-01.eml +54 -0
- data/set-of-emails/maildir/bsd/activehunter-02.eml +53 -0
- data/set-of-emails/maildir/bsd/apachejames-01.eml +46 -0
- data/set-of-emails/maildir/bsd/arf-01.eml +66 -0
- data/set-of-emails/maildir/bsd/arf-02.eml +68 -0
- data/set-of-emails/maildir/bsd/arf-03.eml +56 -0
- data/set-of-emails/maildir/bsd/arf-04.eml +89 -0
- data/set-of-emails/maildir/bsd/arf-05.eml +82 -0
- data/set-of-emails/maildir/bsd/arf-06.eml +166 -0
- data/set-of-emails/maildir/bsd/arf-07.eml +59 -0
- data/set-of-emails/maildir/bsd/arf-08.eml +103 -0
- data/set-of-emails/maildir/bsd/arf-09.eml +104 -0
- data/set-of-emails/maildir/bsd/arf-10.eml +56 -0
- data/set-of-emails/maildir/bsd/arf-11.eml +37 -0
- data/set-of-emails/maildir/bsd/arf-12.eml +40 -0
- data/set-of-emails/maildir/bsd/arf-13.eml +76 -0
- data/set-of-emails/maildir/bsd/arf-14.eml +333 -0
- data/set-of-emails/maildir/bsd/arf-15.eml +66 -0
- data/set-of-emails/maildir/bsd/courier-01.eml +79 -0
- data/set-of-emails/maildir/bsd/courier-02.eml +83 -0
- data/set-of-emails/maildir/bsd/courier-03.eml +85 -0
- data/set-of-emails/maildir/bsd/courier-04.eml +87 -0
- data/set-of-emails/maildir/bsd/de-einsundeins-01.eml +38 -0
- data/set-of-emails/maildir/bsd/de-gmx-01.eml +52 -0
- data/set-of-emails/maildir/bsd/de-gmx-02.eml +51 -0
- data/set-of-emails/maildir/bsd/de-gmx-03.eml +56 -0
- data/set-of-emails/maildir/bsd/de-gmx-04.eml +51 -0
- data/set-of-emails/maildir/bsd/domino-01.eml +33 -0
- data/set-of-emails/maildir/bsd/domino-02.eml +83 -0
- data/set-of-emails/maildir/bsd/exchange-01.eml +31 -0
- data/set-of-emails/maildir/bsd/exchange-02.eml +67 -0
- data/set-of-emails/maildir/bsd/exchange-03.eml +52 -0
- data/set-of-emails/maildir/bsd/exchange-04.eml +28 -0
- data/set-of-emails/maildir/bsd/exchange-05.eml +56 -0
- data/set-of-emails/maildir/bsd/exchange-06.eml +151 -0
- data/set-of-emails/maildir/bsd/exim-01.eml +46 -0
- data/set-of-emails/maildir/bsd/exim-02.eml +41 -0
- data/set-of-emails/maildir/bsd/exim-03.eml +42 -0
- data/set-of-emails/maildir/bsd/exim-04.eml +46 -0
- data/set-of-emails/maildir/bsd/exim-05.eml +49 -0
- data/set-of-emails/maildir/bsd/exim-06.eml +44 -0
- data/set-of-emails/maildir/bsd/exim-07.eml +28 -0
- data/set-of-emails/maildir/bsd/exim-08.eml +42 -0
- data/set-of-emails/maildir/bsd/exim-09.eml +169 -0
- data/set-of-emails/maildir/bsd/exim-10.eml +718 -0
- data/set-of-emails/maildir/bsd/exim-11.eml +718 -0
- data/set-of-emails/maildir/bsd/exim-12.eml +75 -0
- data/set-of-emails/maildir/bsd/exim-13.eml +145 -0
- data/set-of-emails/maildir/bsd/exim-14.eml +32 -0
- data/set-of-emails/maildir/bsd/exim-15.eml +49 -0
- data/set-of-emails/maildir/bsd/exim-16.eml +98 -0
- data/set-of-emails/maildir/bsd/exim-17.eml +50 -0
- data/set-of-emails/maildir/bsd/exim-18.eml +96 -0
- data/set-of-emails/maildir/bsd/exim-19.eml +52 -0
- data/set-of-emails/maildir/bsd/exim-20.eml +159 -0
- data/set-of-emails/maildir/bsd/exim-21.eml +150 -0
- data/set-of-emails/maildir/bsd/exim-22.eml +50 -0
- data/set-of-emails/maildir/bsd/exim-23.eml +57 -0
- data/set-of-emails/maildir/bsd/exim-24.eml +107 -0
- data/set-of-emails/maildir/bsd/exim-25.eml +18 -0
- data/set-of-emails/maildir/bsd/exim-26.eml +111 -0
- data/set-of-emails/maildir/bsd/exim-27.eml +120 -0
- data/set-of-emails/maildir/bsd/exim-28.eml +148 -0
- data/set-of-emails/maildir/bsd/google-apps-01.eml +66 -0
- data/set-of-emails/maildir/bsd/imailserver-01.eml +27 -0
- data/set-of-emails/maildir/bsd/imailserver-02.eml +36 -0
- data/set-of-emails/maildir/bsd/imailserver-03.eml +28 -0
- data/set-of-emails/maildir/bsd/imailserver-04.eml +15 -0
- data/set-of-emails/maildir/bsd/imailserver-05.eml +92 -0
- data/set-of-emails/maildir/bsd/imailserver-06.eml +29 -0
- data/set-of-emails/maildir/bsd/interscanmss-01.eml +49 -0
- data/set-of-emails/maildir/bsd/interscanmss-02.eml +259 -0
- data/set-of-emails/maildir/bsd/jp-biglobe-01.eml +43 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-01.eml +36 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-02.eml +65 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-03.eml +35 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-04.eml +38 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-05.eml +38 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-06.eml +33 -0
- data/set-of-emails/maildir/bsd/jp-kddi-01.eml +49 -0
- data/set-of-emails/maildir/bsd/jp-kddi-02.eml +54 -0
- data/set-of-emails/maildir/bsd/jp-kddi-03.eml +54 -0
- data/set-of-emails/maildir/bsd/mailfoundry-01.eml +50 -0
- data/set-of-emails/maildir/bsd/mailfoundry-02.eml +49 -0
- data/set-of-emails/maildir/bsd/mailmarshalsmtp-01.eml +43 -0
- data/set-of-emails/maildir/bsd/mcafee-01.eml +63 -0
- data/set-of-emails/maildir/bsd/mcafee-02.eml +65 -0
- data/set-of-emails/maildir/bsd/mcafee-03.eml +59 -0
- data/set-of-emails/maildir/bsd/messagingserver-01.eml +102 -0
- data/set-of-emails/maildir/bsd/messagingserver-02.eml +72 -0
- data/set-of-emails/maildir/bsd/messagingserver-03.eml +70 -0
- data/set-of-emails/maildir/bsd/messagingserver-04.eml +102 -0
- data/set-of-emails/maildir/bsd/messagingserver-05.eml +98 -0
- data/set-of-emails/maildir/bsd/messagingserver-06.eml +101 -0
- data/set-of-emails/maildir/bsd/messagingserver-07.eml +129 -0
- data/set-of-emails/maildir/bsd/mfilter-01.eml +49 -0
- data/set-of-emails/maildir/bsd/mfilter-02.eml +48 -0
- data/set-of-emails/maildir/bsd/mfilter-03.eml +43 -0
- data/set-of-emails/maildir/bsd/mxlogic-01.eml +47 -0
- data/set-of-emails/maildir/bsd/mxlogic-02.eml +44 -0
- data/set-of-emails/maildir/bsd/mxlogic-03.eml +46 -0
- data/set-of-emails/maildir/bsd/notes-01.eml +42 -0
- data/set-of-emails/maildir/bsd/notes-02.eml +42 -0
- data/set-of-emails/maildir/bsd/notes-03.eml +38 -0
- data/set-of-emails/maildir/bsd/notes-04.eml +181 -0
- data/set-of-emails/maildir/bsd/opensmtpd-01.eml +33 -0
- data/set-of-emails/maildir/bsd/opensmtpd-02.eml +33 -0
- data/set-of-emails/maildir/bsd/opensmtpd-03.eml +36 -0
- data/set-of-emails/maildir/bsd/opensmtpd-04.eml +40 -0
- data/set-of-emails/maildir/bsd/opensmtpd-05.eml +36 -0
- data/set-of-emails/maildir/bsd/postfix-01.eml +60 -0
- data/set-of-emails/maildir/bsd/postfix-02.eml +78 -0
- data/set-of-emails/maildir/bsd/postfix-03.eml +71 -0
- data/set-of-emails/maildir/bsd/postfix-04.eml +89 -0
- data/set-of-emails/maildir/bsd/postfix-05.eml +78 -0
- data/set-of-emails/maildir/bsd/postfix-06.eml +72 -0
- data/set-of-emails/maildir/bsd/postfix-07.eml +74 -0
- data/set-of-emails/maildir/bsd/postfix-08.eml +78 -0
- data/set-of-emails/maildir/bsd/postfix-09.eml +76 -0
- data/set-of-emails/maildir/bsd/postfix-10.eml +73 -0
- data/set-of-emails/maildir/bsd/postfix-11.eml +86 -0
- data/set-of-emails/maildir/bsd/postfix-12.eml +71 -0
- data/set-of-emails/maildir/bsd/postfix-13.eml +81 -0
- data/set-of-emails/maildir/bsd/postfix-14.eml +68 -0
- data/set-of-emails/maildir/bsd/postfix-15.eml +69 -0
- data/set-of-emails/maildir/bsd/postfix-16.eml +73 -0
- data/set-of-emails/maildir/bsd/postfix-17.eml +68 -0
- data/set-of-emails/maildir/bsd/postfix-18.eml +121 -0
- data/set-of-emails/maildir/bsd/postfix-19.eml +105 -0
- data/set-of-emails/maildir/bsd/postfix-20.eml +231 -0
- data/set-of-emails/maildir/bsd/postfix-21.eml +60 -0
- data/set-of-emails/maildir/bsd/qmail-01.eml +40 -0
- data/set-of-emails/maildir/bsd/qmail-02.eml +35 -0
- data/set-of-emails/maildir/bsd/qmail-03.eml +22 -0
- data/set-of-emails/maildir/bsd/qmail-04.eml +31 -0
- data/set-of-emails/maildir/bsd/qmail-05.eml +31 -0
- data/set-of-emails/maildir/bsd/qmail-06.eml +39 -0
- data/set-of-emails/maildir/bsd/qmail-07.eml +22 -0
- data/set-of-emails/maildir/bsd/qmail-08.eml +23 -0
- data/set-of-emails/maildir/bsd/qmail-09.eml +103 -0
- data/set-of-emails/maildir/bsd/rfc3464-01.eml +60 -0
- data/set-of-emails/maildir/bsd/rfc3464-02.eml +43 -0
- data/set-of-emails/maildir/bsd/rfc3464-03.eml +40 -0
- data/set-of-emails/maildir/bsd/rfc3464-04.eml +50 -0
- data/set-of-emails/maildir/bsd/rfc3464-05.eml +63 -0
- data/set-of-emails/maildir/bsd/rfc3464-06.eml +48 -0
- data/set-of-emails/maildir/bsd/rfc3464-07.eml +88 -0
- data/set-of-emails/maildir/bsd/rfc3464-08.eml +70 -0
- data/set-of-emails/maildir/bsd/rfc3464-09.eml +93 -0
- data/set-of-emails/maildir/bsd/rfc3464-10.eml +467 -0
- data/set-of-emails/maildir/bsd/rfc3464-11.eml +1171 -0
- data/set-of-emails/maildir/bsd/rfc3464-12.eml +101 -0
- data/set-of-emails/maildir/bsd/rfc3464-13.eml +131 -0
- data/set-of-emails/maildir/bsd/rfc3464-14.eml +121 -0
- data/set-of-emails/maildir/bsd/rfc3464-15.eml +144 -0
- data/set-of-emails/maildir/bsd/rfc3464-16.eml +36 -0
- data/set-of-emails/maildir/bsd/rfc3464-17.eml +109 -0
- data/set-of-emails/maildir/bsd/rfc3464-18.eml +149 -0
- data/set-of-emails/maildir/bsd/rfc3464-19.eml +65 -0
- data/set-of-emails/maildir/bsd/rfc3464-20.eml +145 -0
- data/set-of-emails/maildir/bsd/rfc3464-21.eml +146 -0
- data/set-of-emails/maildir/bsd/rfc3464-22.eml +105 -0
- data/set-of-emails/maildir/bsd/rfc3464-23.eml +21 -0
- data/set-of-emails/maildir/bsd/rfc3464-24.eml +27 -0
- data/set-of-emails/maildir/bsd/rfc3464-25.eml +33 -0
- data/set-of-emails/maildir/bsd/rfc3464-26.eml +98 -0
- data/set-of-emails/maildir/bsd/rfc3464-27.eml +180 -0
- data/set-of-emails/maildir/bsd/rfc3834-01.eml +37 -0
- data/set-of-emails/maildir/bsd/rfc3834-02.eml +51 -0
- data/set-of-emails/maildir/bsd/rfc3834-03.eml +33 -0
- data/set-of-emails/maildir/bsd/ru-mailru-01.eml +54 -0
- data/set-of-emails/maildir/bsd/ru-mailru-02.eml +54 -0
- data/set-of-emails/maildir/bsd/ru-mailru-03.eml +62 -0
- data/set-of-emails/maildir/bsd/ru-mailru-04.eml +54 -0
- data/set-of-emails/maildir/bsd/ru-yandex-01.eml +102 -0
- data/set-of-emails/maildir/bsd/ru-yandex-02.eml +113 -0
- data/set-of-emails/maildir/bsd/ru-yandex-03.eml +101 -0
- data/set-of-emails/maildir/bsd/sendmail-01.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-02.eml +82 -0
- data/set-of-emails/maildir/bsd/sendmail-03.eml +76 -0
- data/set-of-emails/maildir/bsd/sendmail-04.eml +63 -0
- data/set-of-emails/maildir/bsd/sendmail-05.eml +64 -0
- data/set-of-emails/maildir/bsd/sendmail-06.eml +67 -0
- data/set-of-emails/maildir/bsd/sendmail-07.eml +65 -0
- data/set-of-emails/maildir/bsd/sendmail-08.eml +62 -0
- data/set-of-emails/maildir/bsd/sendmail-09.eml +60 -0
- data/set-of-emails/maildir/bsd/sendmail-10.eml +82 -0
- data/set-of-emails/maildir/bsd/sendmail-11.eml +60 -0
- data/set-of-emails/maildir/bsd/sendmail-12.eml +62 -0
- data/set-of-emails/maildir/bsd/sendmail-13.eml +66 -0
- data/set-of-emails/maildir/bsd/sendmail-14.eml +64 -0
- data/set-of-emails/maildir/bsd/sendmail-15.eml +60 -0
- data/set-of-emails/maildir/bsd/sendmail-16.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-17.eml +68 -0
- data/set-of-emails/maildir/bsd/sendmail-18.eml +64 -0
- data/set-of-emails/maildir/bsd/sendmail-19.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-20.eml +120 -0
- data/set-of-emails/maildir/bsd/sendmail-21.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-22.eml +73 -0
- data/set-of-emails/maildir/bsd/sendmail-23.eml +137 -0
- data/set-of-emails/maildir/bsd/sendmail-24.eml +66 -0
- data/set-of-emails/maildir/bsd/sendmail-25.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-26.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-27.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-28.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-29.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-30.eml +68 -0
- data/set-of-emails/maildir/bsd/sendmail-31.eml +80 -0
- data/set-of-emails/maildir/bsd/sendmail-32.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-33.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-34.eml +75 -0
- data/set-of-emails/maildir/bsd/sendmail-35.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-36.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-37.eml +71 -0
- data/set-of-emails/maildir/bsd/surfcontrol-01.eml +79 -0
- data/set-of-emails/maildir/bsd/surfcontrol-02.eml +70 -0
- data/set-of-emails/maildir/bsd/surfcontrol-03.eml +70 -0
- data/set-of-emails/maildir/bsd/uk-messagelabs-01.eml +76 -0
- data/set-of-emails/maildir/bsd/us-amazonses-01.eml +59 -0
- data/set-of-emails/maildir/bsd/us-amazonses-02.eml +177 -0
- data/set-of-emails/maildir/bsd/us-amazonses-03.eml +55 -0
- data/set-of-emails/maildir/bsd/us-amazonses-04.eml +55 -0
- data/set-of-emails/maildir/bsd/us-aol-01.eml +1258 -0
- data/set-of-emails/maildir/bsd/us-aol-02.eml +1257 -0
- data/set-of-emails/maildir/bsd/us-aol-03.eml +1264 -0
- data/set-of-emails/maildir/bsd/us-aol-04.eml +1260 -0
- data/set-of-emails/maildir/bsd/us-bigfoot-01.eml +64 -0
- data/set-of-emails/maildir/bsd/us-facebook-01.eml +40 -0
- data/set-of-emails/maildir/bsd/us-facebook-02.eml +42 -0
- data/set-of-emails/maildir/bsd/us-google-01.eml +70 -0
- data/set-of-emails/maildir/bsd/us-google-02.eml +50 -0
- data/set-of-emails/maildir/bsd/us-google-03.eml +51 -0
- data/set-of-emails/maildir/bsd/us-google-04.eml +82 -0
- data/set-of-emails/maildir/bsd/us-google-05.eml +50 -0
- data/set-of-emails/maildir/bsd/us-google-06.eml +56 -0
- data/set-of-emails/maildir/bsd/us-google-07.eml +42 -0
- data/set-of-emails/maildir/bsd/us-google-08.eml +59 -0
- data/set-of-emails/maildir/bsd/us-google-09.eml +76 -0
- data/set-of-emails/maildir/bsd/us-google-10.eml +69 -0
- data/set-of-emails/maildir/bsd/us-google-11.eml +68 -0
- data/set-of-emails/maildir/bsd/us-google-12.eml +76 -0
- data/set-of-emails/maildir/bsd/us-google-13.eml +79 -0
- data/set-of-emails/maildir/bsd/us-google-14.eml +304 -0
- data/set-of-emails/maildir/bsd/us-outlook-01.eml +72 -0
- data/set-of-emails/maildir/bsd/us-outlook-02.eml +72 -0
- data/set-of-emails/maildir/bsd/us-outlook-03.eml +72 -0
- data/set-of-emails/maildir/bsd/us-outlook-04.eml +79 -0
- data/set-of-emails/maildir/bsd/us-outlook-05.eml +85 -0
- data/set-of-emails/maildir/bsd/us-outlook-06.eml +75 -0
- data/set-of-emails/maildir/bsd/us-outlook-07.eml +70 -0
- data/set-of-emails/maildir/bsd/us-receivingses-01.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-02.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-03.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-04.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-05.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-06.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-07.eml +74 -0
- data/set-of-emails/maildir/bsd/us-sendgrid-01.eml +95 -0
- data/set-of-emails/maildir/bsd/us-sendgrid-02.eml +98 -0
- data/set-of-emails/maildir/bsd/us-sendgrid-03.eml +100 -0
- data/set-of-emails/maildir/bsd/us-verizon-01.eml +31 -0
- data/set-of-emails/maildir/bsd/us-yahoo-01.eml +78 -0
- data/set-of-emails/maildir/bsd/us-yahoo-02.eml +79 -0
- data/set-of-emails/maildir/bsd/us-yahoo-03.eml +93 -0
- data/set-of-emails/maildir/bsd/us-yahoo-04.eml +94 -0
- data/set-of-emails/maildir/bsd/us-yahoo-05.eml +94 -0
- data/set-of-emails/maildir/bsd/us-zoho-01.eml +40 -0
- data/set-of-emails/maildir/bsd/us-zoho-02.eml +38 -0
- data/set-of-emails/maildir/bsd/us-zoho-03.eml +37 -0
- data/set-of-emails/maildir/bsd/us-zoho-04.eml +47 -0
- data/set-of-emails/maildir/bsd/us-zoho-05.eml +37 -0
- data/set-of-emails/maildir/bsd/v5sendmail-01.eml +24 -0
- data/set-of-emails/maildir/bsd/v5sendmail-02.eml +26 -0
- data/set-of-emails/maildir/bsd/v5sendmail-03.eml +29 -0
- data/set-of-emails/maildir/bsd/v5sendmail-04.eml +29 -0
- data/set-of-emails/maildir/bsd/v5sendmail-05.eml +42 -0
- data/set-of-emails/maildir/bsd/v5sendmail-06.eml +28 -0
- data/set-of-emails/maildir/bsd/v5sendmail-07.eml +35 -0
- data/set-of-emails/maildir/bsd/x1-01.eml +61 -0
- data/set-of-emails/maildir/bsd/x1-02.eml +62 -0
- data/set-of-emails/maildir/bsd/x2-01.eml +41 -0
- data/set-of-emails/maildir/bsd/x2-02.eml +46 -0
- data/set-of-emails/maildir/bsd/x2-03.eml +34 -0
- data/set-of-emails/maildir/bsd/x2-04.eml +0 -0
- data/set-of-emails/maildir/bsd/x2-05.eml +98 -0
- data/set-of-emails/maildir/bsd/x3-01.eml +61 -0
- data/set-of-emails/maildir/bsd/x3-02.eml +64 -0
- data/set-of-emails/maildir/bsd/x3-03.eml +59 -0
- data/set-of-emails/maildir/bsd/x3-04.eml +106 -0
- data/set-of-emails/maildir/bsd/x4-01.eml +92 -0
- data/set-of-emails/maildir/bsd/x4-02.eml +112 -0
- data/set-of-emails/maildir/bsd/x4-03.eml +245 -0
- data/set-of-emails/maildir/bsd/x4-04.eml +81 -0
- data/set-of-emails/maildir/bsd/x4-05.eml +121 -0
- data/set-of-emails/maildir/bsd/x4-06.eml +32 -0
- data/set-of-emails/maildir/bsd/x4-07.eml +153 -0
- data/set-of-emails/maildir/bsd/x5-01.eml +155 -0
- data/set-of-emails/maildir/dos/activehunter-01.eml +54 -0
- data/set-of-emails/maildir/dos/apachejames-01.eml +46 -0
- data/set-of-emails/maildir/dos/arf-01.eml +66 -0
- data/set-of-emails/maildir/dos/courier-01.eml +79 -0
- data/set-of-emails/maildir/dos/de-einsundeins-01.eml +38 -0
- data/set-of-emails/maildir/dos/de-gmx-01.eml +52 -0
- data/set-of-emails/maildir/dos/domino-01.eml +33 -0
- data/set-of-emails/maildir/dos/exchange-01.eml +31 -0
- data/set-of-emails/maildir/dos/exim-01.eml +46 -0
- data/set-of-emails/maildir/dos/google-apps-01.eml +66 -0
- data/set-of-emails/maildir/dos/imailserver-01.eml +27 -0
- data/set-of-emails/maildir/dos/interscanmss-01.eml +49 -0
- data/set-of-emails/maildir/dos/jp-biglobe-01.eml +43 -0
- data/set-of-emails/maildir/dos/jp-ezweb-01.eml +36 -0
- data/set-of-emails/maildir/dos/jp-kddi-01.eml +49 -0
- data/set-of-emails/maildir/dos/mailfoundry-01.eml +50 -0
- data/set-of-emails/maildir/dos/mailmarshalsmtp-01.eml +43 -0
- data/set-of-emails/maildir/dos/mcafee-01.eml +63 -0
- data/set-of-emails/maildir/dos/messagingserver-01.eml +102 -0
- data/set-of-emails/maildir/dos/mfilter-01.eml +49 -0
- data/set-of-emails/maildir/dos/mxlogic-01.eml +47 -0
- data/set-of-emails/maildir/dos/notes-01.eml +42 -0
- data/set-of-emails/maildir/dos/opensmtpd-01.eml +33 -0
- data/set-of-emails/maildir/dos/postfix-01.eml +60 -0
- data/set-of-emails/maildir/dos/qmail-01.eml +40 -0
- data/set-of-emails/maildir/dos/rfc3464-01.eml +59 -0
- data/set-of-emails/maildir/dos/rfc3834-01.eml +37 -0
- data/set-of-emails/maildir/dos/ru-mailru-01.eml +54 -0
- data/set-of-emails/maildir/dos/ru-yandex-01.eml +102 -0
- data/set-of-emails/maildir/dos/sendmail-01.eml +69 -0
- data/set-of-emails/maildir/dos/surfcontrol-01.eml +79 -0
- data/set-of-emails/maildir/dos/uk-messagelabs-01.eml +76 -0
- data/set-of-emails/maildir/dos/us-amazonses-01.eml +59 -0
- data/set-of-emails/maildir/dos/us-aol-01.eml +1258 -0
- data/set-of-emails/maildir/dos/us-bigfoot-01.eml +64 -0
- data/set-of-emails/maildir/dos/us-facebook-01.eml +40 -0
- data/set-of-emails/maildir/dos/us-google-01.eml +70 -0
- data/set-of-emails/maildir/dos/us-outlook-01.eml +72 -0
- data/set-of-emails/maildir/dos/us-receivingses-01.eml +74 -0
- data/set-of-emails/maildir/dos/us-sendgrid-01.eml +95 -0
- data/set-of-emails/maildir/dos/us-verizon-01.eml +31 -0
- data/set-of-emails/maildir/dos/us-yahoo-01.eml +78 -0
- data/set-of-emails/maildir/dos/us-zoho-01.eml +40 -0
- data/set-of-emails/maildir/dos/v5sendmail-01.eml +24 -0
- data/set-of-emails/maildir/dos/x1-01.eml +61 -0
- data/set-of-emails/maildir/dos/x2-01.eml +41 -0
- data/set-of-emails/maildir/dos/x3-01.eml +61 -0
- data/set-of-emails/maildir/dos/x4-01.eml +90 -0
- data/set-of-emails/maildir/dos/x5-01.eml +155 -0
- data/set-of-emails/maildir/err/make-test-01.eml +70 -0
- data/set-of-emails/maildir/err/make-test-02.eml +70 -0
- data/set-of-emails/maildir/err/make-test-03.eml +64 -0
- data/set-of-emails/maildir/err/make-test-04.eml +64 -0
- data/set-of-emails/maildir/err/make-test-05.eml +66 -0
- data/set-of-emails/maildir/err/make-test-06.eml +118 -0
- data/set-of-emails/maildir/err/make-test-07.eml +26 -0
- data/set-of-emails/maildir/err/make-test-08.eml +67 -0
- data/set-of-emails/maildir/err/make-test-09.eml +55 -0
- data/set-of-emails/maildir/err/make-test-10.eml +69 -0
- data/set-of-emails/maildir/err/make-test-11.eml +64 -0
- data/set-of-emails/maildir/err/make-test-12.eml +66 -0
- data/set-of-emails/maildir/err/make-test-13.eml +67 -0
- data/set-of-emails/maildir/err/make-test-14.eml +66 -0
- data/set-of-emails/maildir/err/make-test-15.eml +70 -0
- data/set-of-emails/maildir/err/make-test-16.eml +68 -0
- data/set-of-emails/maildir/err/make-test-17.eml +68 -0
- data/set-of-emails/maildir/err/make-test-18.eml +68 -0
- data/set-of-emails/maildir/err/make-test-19.eml +69 -0
- data/set-of-emails/maildir/err/make-test-20.eml +67 -0
- data/set-of-emails/maildir/err/make-test-21.eml +69 -0
- data/set-of-emails/maildir/err/make-test-22.eml +66 -0
- data/set-of-emails/maildir/err/make-test-23.eml +70 -0
- data/set-of-emails/maildir/err/make-test-24.eml +69 -0
- data/set-of-emails/maildir/err/make-test-25.eml +67 -0
- data/set-of-emails/maildir/err/make-test-26.eml +69 -0
- data/set-of-emails/maildir/err/make-test-27.eml +69 -0
- data/set-of-emails/maildir/err/make-test-28.eml +66 -0
- data/set-of-emails/maildir/err/make-test-29.eml +68 -0
- data/set-of-emails/maildir/err/make-test-30.eml +68 -0
- data/set-of-emails/maildir/err/make-test-31.eml +80 -0
- data/set-of-emails/maildir/err/make-test-32.eml +66 -0
- data/set-of-emails/maildir/err/make-test-33.eml +68 -0
- data/set-of-emails/maildir/err/make-test-34.eml +56 -0
- data/set-of-emails/maildir/err/make-test-35.eml +59 -0
- data/set-of-emails/maildir/err/make-test-36.eml +53 -0
- data/set-of-emails/maildir/err/make-test-37.eml +62 -0
- data/set-of-emails/maildir/mac/activehunter-01.eml +1 -2
- data/set-of-emails/maildir/mac/apachejames-01.eml +1 -4
- data/set-of-emails/maildir/mac/arf-01.eml +1 -3
- data/set-of-emails/maildir/mac/courier-01.eml +1 -6
- data/set-of-emails/maildir/mac/de-einsundeins-01.eml +1 -1
- data/set-of-emails/maildir/mac/de-gmx-01.eml +1 -1
- data/set-of-emails/maildir/mac/domino-01.eml +1 -0
- data/set-of-emails/maildir/mac/exchange-01.eml +1 -0
- data/set-of-emails/maildir/mac/exim-01.eml +1 -1
- data/set-of-emails/maildir/mac/google-apps-01.eml +1 -4
- data/set-of-emails/maildir/mac/imailserver-01.eml +1 -0
- data/set-of-emails/maildir/mac/interscanmss-01.eml +1 -2
- data/set-of-emails/maildir/mac/jp-biglobe-01.eml +1 -2
- data/set-of-emails/maildir/mac/jp-ezweb-01.eml +1 -1
- data/set-of-emails/maildir/mac/jp-kddi-01.eml +1 -2
- data/set-of-emails/maildir/mac/mailfoundry-01.eml +1 -2
- data/set-of-emails/maildir/mac/mailmarshalsmtp-01.eml +1 -2
- data/set-of-emails/maildir/mac/mcafee-01.eml +1 -4
- data/set-of-emails/maildir/mac/messagingserver-01.eml +1 -4
- data/set-of-emails/maildir/mac/mfilter-01.eml +1 -3
- data/set-of-emails/maildir/mac/mxlogic-01.eml +1 -1
- data/set-of-emails/maildir/mac/notes-01.eml +1 -2
- data/set-of-emails/maildir/mac/opensmtpd-01.eml +1 -0
- data/set-of-emails/maildir/mac/postfix-01.eml +1 -3
- data/set-of-emails/maildir/mac/qmail-01.eml +1 -1
- data/set-of-emails/maildir/mac/rfc3464-01.eml +1 -4
- data/set-of-emails/maildir/mac/rfc3834-01.eml +1 -0
- data/set-of-emails/maildir/mac/ru-mailru-01.eml +1 -1
- data/set-of-emails/maildir/mac/ru-yandex-01.eml +1 -4
- data/set-of-emails/maildir/mac/sendmail-01.eml +1 -4
- data/set-of-emails/maildir/mac/surfcontrol-01.eml +1 -5
- data/set-of-emails/maildir/mac/uk-messagelabs-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-amazonses-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-aol-01.eml +1 -15
- data/set-of-emails/maildir/mac/us-bigfoot-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-facebook-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-google-01.eml +1 -1
- data/set-of-emails/maildir/mac/us-outlook-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-receivingses-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-sendgrid-01.eml +1 -3
- data/set-of-emails/maildir/mac/us-verizon-01.eml +1 -2
- data/set-of-emails/maildir/mac/us-yahoo-01.eml +1 -1
- data/set-of-emails/maildir/mac/us-zoho-01.eml +1 -2
- data/set-of-emails/maildir/mac/v5sendmail-01.eml +1 -0
- data/set-of-emails/maildir/mac/x1-01.eml +1 -4
- data/set-of-emails/maildir/mac/x2-01.eml +1 -1
- data/set-of-emails/maildir/mac/x3-01.eml +1 -3
- data/set-of-emails/maildir/mac/x4-01.eml +1 -2
- data/set-of-emails/maildir/mac/x5-01.eml +1 -8
- data/set-of-emails/maildir/not/is-not-bounce-01.eml +25 -0
- data/set-of-emails/to-be-debugged-because/reason-is-onhold/onhold-0001.eml +85 -0
- data/set-of-emails/to-be-debugged-because/reason-is-undefined/undefined-0002.eml +27 -0
- data/set-of-emails/to-be-debugged-because/reason-is-undefined/undefined-0003.eml +78 -0
- data/set-of-emails/to-be-debugged-because/sisimai-cannot-parse-yet/cannot-parse-this-email-0002.eml +25 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-01.eml +79 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-02.eml +72 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-03.eml +68 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/no-message-id-from-pr-150.eml +75 -0
- data/set-of-emails/to-be-parsed-for-test/README.md +20 -0
- data/sisimai.gemspec +25 -0
- metadata +647 -0
@@ -0,0 +1,1257 @@
|
|
1
|
+
Return-Path: <Postmaster@AOL.com>
|
2
|
+
Received: from mx14.bounceio.net (mx14.bounceio.net [192.237.151.14])
|
3
|
+
by partner-maa01.mx.aol.com (Partner Internet Inbound) with ESMTP id 35F893800008D
|
4
|
+
for <shironeko@aol.example.jp>; Fri, 21 Nov 2014 18:33:59 -0500 (EST)
|
5
|
+
Received: by mx14.bounceio.net id hdv5ue0rhk4c for <shironeko@aol.example.jp>; Fri, 21 Nov 2014 23:33:59 +0000 (envelope-from <Postmaster@AOL.com>)
|
6
|
+
From: Postmaster <Postmaster@AOL.com>
|
7
|
+
To: shironeko@aol.example.jp
|
8
|
+
Message-ID: <e4a6222cdb5b34375400904f03d8e6a5_1416612838700@aol.example.jp.bounceio.net>
|
9
|
+
Subject: Undeliverable: Nyaaaaan
|
10
|
+
MIME-Version: 1.0
|
11
|
+
Content-Type: multipart/report;
|
12
|
+
boundary="----=_Part_853825_1979294533.1416612838700";
|
13
|
+
report-type=delivery-status
|
14
|
+
X-BounceIO-Id: A5428C2C-1532-4EBE-8CE6-4E50F04F1277.1_0
|
15
|
+
Date: Fri, 21 Nov 2014 23:33:59 +0000
|
16
|
+
X-AOL-VSS-INFO: 5600.1067/98281
|
17
|
+
X-AOL-VSS-CODE: clean
|
18
|
+
x-aol-sid: 3039ac1ade94546fcbe7583c
|
19
|
+
X-AOL-IP: 192.237.151.14
|
20
|
+
X-AOL-SCOLL-EIL: 1
|
21
|
+
|
22
|
+
------=_Part_853825_1979294533.1416612838700
|
23
|
+
Content-Type: text/html; charset=UTF-8
|
24
|
+
Content-Transfer-Encoding: quoted-printable
|
25
|
+
|
26
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org=
|
27
|
+
/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
28
|
+
<html xmlns=3D"http://www.w3.org/1999/xhtml">
|
29
|
+
<head>=20
|
30
|
+
<meta content=3D"text/html; charset=3Dutf-8" http-equiv=3D"Content-Type" =
|
31
|
+
/>=20
|
32
|
+
<meta content=3D"width=3Ddevice-width" name=3D"viewport" />=20
|
33
|
+
<style type=3D"text/css" data-premailer=3D"ignore">@media screen {
|
34
|
+
@font-face {
|
35
|
+
font-family: 'Open Sans';
|
36
|
+
font-style: normal;
|
37
|
+
font-weight: 400;
|
38
|
+
src: local('Open Sans'), local('OpenSans'), url(http://themes.googleuser=
|
39
|
+
content.com/static/fonts/opensans/v6/cJZKeOuBrn4kERxqtaUH3bO3LdcAZYWl9Si6vv=
|
40
|
+
xL-qU.woff) format('woff');
|
41
|
+
}
|
42
|
+
}
|
43
|
+
</style>=20
|
44
|
+
</head>=20
|
45
|
+
<body style=3D"-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;=
|
46
|
+
color: #f8842e; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, san=
|
47
|
+
s-serif; font-size: 14px; font-weight: normal; line-height: 19px; margin: 0=
|
48
|
+
; min-width: 100%; padding: 0; text-align: left; width: 100% !important">=
|
49
|
+
=20
|
50
|
+
<style type=3D"text/css">
|
51
|
+
body {
|
52
|
+
width: 100% !important; min-width: 100%; -webkit-text-size-adjust: 100%; -m=
|
53
|
+
s-text-size-adjust: 100%; margin: 0; padding: 0;
|
54
|
+
}
|
55
|
+
.ExternalClass {
|
56
|
+
width: 100%;
|
57
|
+
}
|
58
|
+
.ExternalClass {
|
59
|
+
line-height: 100%;
|
60
|
+
}
|
61
|
+
#backgroundTable {
|
62
|
+
margin: 0; padding: 0; width: 100% !important; line-height: 100% !important=
|
63
|
+
;
|
64
|
+
}
|
65
|
+
img {
|
66
|
+
outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; widt=
|
67
|
+
h: auto; max-width: 100%; float: left; clear: both; display: block;
|
68
|
+
}
|
69
|
+
body {
|
70
|
+
color: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans=
|
71
|
+
-serif; font-weight: normal; padding: 0; margin: 0; text-align: left; line-=
|
72
|
+
height: 1.3;
|
73
|
+
}
|
74
|
+
body {
|
75
|
+
font-size: 14px; line-height: 19px;
|
76
|
+
}
|
77
|
+
a:hover {
|
78
|
+
color: #2795b6 !important;
|
79
|
+
}
|
80
|
+
a:active {
|
81
|
+
color: #2795b6 !important;
|
82
|
+
}
|
83
|
+
a:visited {
|
84
|
+
color: #2ba6cb !important;
|
85
|
+
}
|
86
|
+
h1 a:active {
|
87
|
+
color: #2ba6cb !important;
|
88
|
+
}
|
89
|
+
h2 a:active {
|
90
|
+
color: #2ba6cb !important;
|
91
|
+
}
|
92
|
+
h3 a:active {
|
93
|
+
color: #2ba6cb !important;
|
94
|
+
}
|
95
|
+
h4 a:active {
|
96
|
+
color: #2ba6cb !important;
|
97
|
+
}
|
98
|
+
h5 a:active {
|
99
|
+
color: #2ba6cb !important;
|
100
|
+
}
|
101
|
+
h6 a:active {
|
102
|
+
color: #2ba6cb !important;
|
103
|
+
}
|
104
|
+
h1 a:visited {
|
105
|
+
color: #2ba6cb !important;
|
106
|
+
}
|
107
|
+
h2 a:visited {
|
108
|
+
color: #2ba6cb !important;
|
109
|
+
}
|
110
|
+
h3 a:visited {
|
111
|
+
color: #2ba6cb !important;
|
112
|
+
}
|
113
|
+
h4 a:visited {
|
114
|
+
color: #2ba6cb !important;
|
115
|
+
}
|
116
|
+
h5 a:visited {
|
117
|
+
color: #2ba6cb !important;
|
118
|
+
}
|
119
|
+
h6 a:visited {
|
120
|
+
color: #2ba6cb !important;
|
121
|
+
}
|
122
|
+
table.button:hover td {
|
123
|
+
background: #2795b6 !important;
|
124
|
+
}
|
125
|
+
table.button:visited td {
|
126
|
+
background: #2795b6 !important;
|
127
|
+
}
|
128
|
+
table.button:active td {
|
129
|
+
background: #2795b6 !important;
|
130
|
+
}
|
131
|
+
table.button:hover td a {
|
132
|
+
color: #fff !important;
|
133
|
+
}
|
134
|
+
table.button:visited td a {
|
135
|
+
color: #fff !important;
|
136
|
+
}
|
137
|
+
table.button:active td a {
|
138
|
+
color: #fff !important;
|
139
|
+
}
|
140
|
+
table.button:hover td {
|
141
|
+
background: #2795b6 !important;
|
142
|
+
}
|
143
|
+
table.tiny-button:hover td {
|
144
|
+
background: #2795b6 !important;
|
145
|
+
}
|
146
|
+
table.small-button:hover td {
|
147
|
+
background: #2795b6 !important;
|
148
|
+
}
|
149
|
+
table.medium-button:hover td {
|
150
|
+
background: #2795b6 !important;
|
151
|
+
}
|
152
|
+
table.large-button:hover td {
|
153
|
+
background: #2795b6 !important;
|
154
|
+
}
|
155
|
+
table.button:hover td a {
|
156
|
+
color: #ffffff !important;
|
157
|
+
}
|
158
|
+
table.button:active td a {
|
159
|
+
color: #ffffff !important;
|
160
|
+
}
|
161
|
+
table.button td a:visited {
|
162
|
+
color: #ffffff !important;
|
163
|
+
}
|
164
|
+
table.tiny-button:hover td a {
|
165
|
+
color: #ffffff !important;
|
166
|
+
}
|
167
|
+
table.tiny-button:active td a {
|
168
|
+
color: #ffffff !important;
|
169
|
+
}
|
170
|
+
table.tiny-button td a:visited {
|
171
|
+
color: #ffffff !important;
|
172
|
+
}
|
173
|
+
table.small-button:hover td a {
|
174
|
+
color: #ffffff !important;
|
175
|
+
}
|
176
|
+
table.small-button:active td a {
|
177
|
+
color: #ffffff !important;
|
178
|
+
}
|
179
|
+
table.small-button td a:visited {
|
180
|
+
color: #ffffff !important;
|
181
|
+
}
|
182
|
+
table.medium-button:hover td a {
|
183
|
+
color: #ffffff !important;
|
184
|
+
}
|
185
|
+
table.medium-button:active td a {
|
186
|
+
color: #ffffff !important;
|
187
|
+
}
|
188
|
+
table.medium-button td a:visited {
|
189
|
+
color: #ffffff !important;
|
190
|
+
}
|
191
|
+
table.large-button:hover td a {
|
192
|
+
color: #ffffff !important;
|
193
|
+
}
|
194
|
+
table.large-button:active td a {
|
195
|
+
color: #ffffff !important;
|
196
|
+
}
|
197
|
+
table.large-button td a:visited {
|
198
|
+
color: #ffffff !important;
|
199
|
+
}
|
200
|
+
table.secondary:hover td {
|
201
|
+
background: #d0d0d0 !important; color: #555;
|
202
|
+
}
|
203
|
+
table.secondary:hover td a {
|
204
|
+
color: #555 !important;
|
205
|
+
}
|
206
|
+
table.secondary td a:visited {
|
207
|
+
color: #555 !important;
|
208
|
+
}
|
209
|
+
table.secondary:active td a {
|
210
|
+
color: #555 !important;
|
211
|
+
}
|
212
|
+
table.success:hover td {
|
213
|
+
background: #457a1a !important;
|
214
|
+
}
|
215
|
+
table.alert:hover td {
|
216
|
+
background: #970b0e !important;
|
217
|
+
}
|
218
|
+
body.outlook p {
|
219
|
+
display: inline !important;
|
220
|
+
}
|
221
|
+
body {
|
222
|
+
color: #f8842e;
|
223
|
+
}
|
224
|
+
table.tiny-button:hover td {
|
225
|
+
background: #f8842e !important;
|
226
|
+
}
|
227
|
+
@media only screen and (max-width: 600px) {
|
228
|
+
table[class=3D"body"] img {
|
229
|
+
width: auto !important; height: auto !important;
|
230
|
+
}
|
231
|
+
table[class=3D"body"] center {
|
232
|
+
min-width: 0 !important;
|
233
|
+
}
|
234
|
+
table[class=3D"body"] .container {
|
235
|
+
width: 95% !important;
|
236
|
+
}
|
237
|
+
table[class=3D"body"] .row {
|
238
|
+
width: 100% !important; display: block !important;
|
239
|
+
}
|
240
|
+
table[class=3D"body"] .wrapper {
|
241
|
+
display: block !important; padding-right: 0 !important;
|
242
|
+
}
|
243
|
+
table[class=3D"body"] .columns {
|
244
|
+
table-layout: fixed !important; float: none !important; width: 100% !im=
|
245
|
+
portant; padding-right: 0px !important; padding-left: 0px !important; displ=
|
246
|
+
ay: block !important;
|
247
|
+
}
|
248
|
+
table[class=3D"body"] .column {
|
249
|
+
table-layout: fixed !important; float: none !important; width: 100% !im=
|
250
|
+
portant; padding-right: 0px !important; padding-left: 0px !important; displ=
|
251
|
+
ay: block !important;
|
252
|
+
}
|
253
|
+
table[class=3D"body"] .wrapper.first .columns {
|
254
|
+
display: table !important;
|
255
|
+
}
|
256
|
+
table[class=3D"body"] .wrapper.first .column {
|
257
|
+
display: table !important;
|
258
|
+
}
|
259
|
+
table[class=3D"body"] table.columns td {
|
260
|
+
width: 100% !important;
|
261
|
+
}
|
262
|
+
table[class=3D"body"] table.column td {
|
263
|
+
width: 100% !important;
|
264
|
+
}
|
265
|
+
table[class=3D"body"] .columns td.one {
|
266
|
+
width: 8.333333% !important;
|
267
|
+
}
|
268
|
+
table[class=3D"body"] .column td.one {
|
269
|
+
width: 8.333333% !important;
|
270
|
+
}
|
271
|
+
table[class=3D"body"] .columns td.two {
|
272
|
+
width: 16.666666% !important;
|
273
|
+
}
|
274
|
+
table[class=3D"body"] .column td.two {
|
275
|
+
width: 16.666666% !important;
|
276
|
+
}
|
277
|
+
table[class=3D"body"] .columns td.three {
|
278
|
+
width: 25% !important;
|
279
|
+
}
|
280
|
+
table[class=3D"body"] .column td.three {
|
281
|
+
width: 25% !important;
|
282
|
+
}
|
283
|
+
table[class=3D"body"] .columns td.four {
|
284
|
+
width: 33.333333% !important;
|
285
|
+
}
|
286
|
+
table[class=3D"body"] .column td.four {
|
287
|
+
width: 33.333333% !important;
|
288
|
+
}
|
289
|
+
table[class=3D"body"] .columns td.five {
|
290
|
+
width: 41.666666% !important;
|
291
|
+
}
|
292
|
+
table[class=3D"body"] .column td.five {
|
293
|
+
width: 41.666666% !important;
|
294
|
+
}
|
295
|
+
table[class=3D"body"] .columns td.six {
|
296
|
+
width: 50% !important;
|
297
|
+
}
|
298
|
+
table[class=3D"body"] .column td.six {
|
299
|
+
width: 50% !important;
|
300
|
+
}
|
301
|
+
table[class=3D"body"] .columns td.seven {
|
302
|
+
width: 58.333333% !important;
|
303
|
+
}
|
304
|
+
table[class=3D"body"] .column td.seven {
|
305
|
+
width: 58.333333% !important;
|
306
|
+
}
|
307
|
+
table[class=3D"body"] .columns td.eight {
|
308
|
+
width: 66.666666% !important;
|
309
|
+
}
|
310
|
+
table[class=3D"body"] .column td.eight {
|
311
|
+
width: 66.666666% !important;
|
312
|
+
}
|
313
|
+
table[class=3D"body"] .columns td.nine {
|
314
|
+
width: 75% !important;
|
315
|
+
}
|
316
|
+
table[class=3D"body"] .column td.nine {
|
317
|
+
width: 75% !important;
|
318
|
+
}
|
319
|
+
table[class=3D"body"] .columns td.ten {
|
320
|
+
width: 83.333333% !important;
|
321
|
+
}
|
322
|
+
table[class=3D"body"] .column td.ten {
|
323
|
+
width: 83.333333% !important;
|
324
|
+
}
|
325
|
+
table[class=3D"body"] .columns td.eleven {
|
326
|
+
width: 91.666666% !important;
|
327
|
+
}
|
328
|
+
table[class=3D"body"] .column td.eleven {
|
329
|
+
width: 91.666666% !important;
|
330
|
+
}
|
331
|
+
table[class=3D"body"] .columns td.twelve {
|
332
|
+
width: 100% !important;
|
333
|
+
}
|
334
|
+
table[class=3D"body"] .column td.twelve {
|
335
|
+
width: 100% !important;
|
336
|
+
}
|
337
|
+
table[class=3D"body"] td.offset-by-one {
|
338
|
+
padding-left: 0 !important;
|
339
|
+
}
|
340
|
+
table[class=3D"body"] td.offset-by-two {
|
341
|
+
padding-left: 0 !important;
|
342
|
+
}
|
343
|
+
table[class=3D"body"] td.offset-by-three {
|
344
|
+
padding-left: 0 !important;
|
345
|
+
}
|
346
|
+
table[class=3D"body"] td.offset-by-four {
|
347
|
+
padding-left: 0 !important;
|
348
|
+
}
|
349
|
+
table[class=3D"body"] td.offset-by-five {
|
350
|
+
padding-left: 0 !important;
|
351
|
+
}
|
352
|
+
table[class=3D"body"] td.offset-by-six {
|
353
|
+
padding-left: 0 !important;
|
354
|
+
}
|
355
|
+
table[class=3D"body"] td.offset-by-seven {
|
356
|
+
padding-left: 0 !important;
|
357
|
+
}
|
358
|
+
table[class=3D"body"] td.offset-by-eight {
|
359
|
+
padding-left: 0 !important;
|
360
|
+
}
|
361
|
+
table[class=3D"body"] td.offset-by-nine {
|
362
|
+
padding-left: 0 !important;
|
363
|
+
}
|
364
|
+
table[class=3D"body"] td.offset-by-ten {
|
365
|
+
padding-left: 0 !important;
|
366
|
+
}
|
367
|
+
table[class=3D"body"] td.offset-by-eleven {
|
368
|
+
padding-left: 0 !important;
|
369
|
+
}
|
370
|
+
table[class=3D"body"] table.columns td.expander {
|
371
|
+
width: 1px !important;
|
372
|
+
}
|
373
|
+
table[class=3D"body"] .hide-for-small {
|
374
|
+
display: none !important;
|
375
|
+
}
|
376
|
+
table[class=3D"body"] .show-for-desktop {
|
377
|
+
display: none !important;
|
378
|
+
}
|
379
|
+
table[class=3D"body"] .show-for-small {
|
380
|
+
display: inherit !important;
|
381
|
+
}
|
382
|
+
table[class=3D"body"] .hide-for-desktop {
|
383
|
+
display: inherit !important;
|
384
|
+
}
|
385
|
+
}
|
386
|
+
</style>=20
|
387
|
+
<table class=3D"body" style=3D"border-collapse: collapse; border-spacing:=
|
388
|
+
0; color: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, =
|
389
|
+
sans-serif; font-size: 14px; font-weight: normal; height: 100%; line-height=
|
390
|
+
: 19px; margin: 0; padding: 0; text-align: left; vertical-align: top; width=
|
391
|
+
: 100%">=20
|
392
|
+
<tbody>
|
393
|
+
<tr style=3D"padding: 0; text-align: left; vertical-align: top" align=
|
394
|
+
=3D"left">=20
|
395
|
+
<td align=3D"center" class=3D"center" valign=3D"top" style=3D"-moz-hyp=
|
396
|
+
hens: auto; -webkit-hyphens: auto; border-collapse: collapse !important; co=
|
397
|
+
lor: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-s=
|
398
|
+
erif; font-size: 14px; font-weight: normal; hyphens: auto; line-height: 19p=
|
399
|
+
x; margin: 0; padding: 0; text-align: center !important; vertical-align: to=
|
400
|
+
p; word-break: break-word">=20
|
401
|
+
<center style=3D"min-width: 580px; width: 100%">=20
|
402
|
+
<table class=3D"row header" style=3D"background: #ffffff; border-col=
|
403
|
+
lapse: collapse; border-spacing: 0; padding: 0px; position: relative; text-=
|
404
|
+
align: left; vertical-align: top; width: 100%" bgcolor=3D"#ffffff">=20
|
405
|
+
<tbody>
|
406
|
+
<tr style=3D"padding: 0; text-align: left; vertical-align: top" al=
|
407
|
+
ign=3D"left">=20
|
408
|
+
<td align=3D"center" class=3D"center" style=3D"-moz-hyphens: auto=
|
409
|
+
; -webkit-hyphens: auto; border-collapse: collapse !important; color: #2222=
|
410
|
+
22; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font=
|
411
|
+
-size: 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin:=
|
412
|
+
0; padding: 0; text-align: center !important; vertical-align: top; word-br=
|
413
|
+
eak: break-word" valign=3D"top">=20
|
414
|
+
<center style=3D"min-width: 580px; width: 100%">=20
|
415
|
+
<table class=3D"container" style=3D"border-collapse: collapse; =
|
416
|
+
border-spacing: 0; margin: 0 auto; padding: 0; text-align: inherit; vertica=
|
417
|
+
l-align: top; width: 580px">=20
|
418
|
+
<tbody>
|
419
|
+
<tr style=3D"padding: 0; text-align: left; vertical-align: to=
|
420
|
+
p" align=3D"left">=20
|
421
|
+
<td class=3D"wrapper" style=3D"-moz-hyphens: auto; -webkit-h=
|
422
|
+
yphens: auto; border-collapse: collapse !important; color: #222222; font-fa=
|
423
|
+
mily: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size: 14px=
|
424
|
+
; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; padding=
|
425
|
+
: 10px 0px 0px; position: relative; text-align: left; vertical-align: top; =
|
426
|
+
word-break: break-word" align=3D"left" valign=3D"top">=20
|
427
|
+
<table class=3D"twelve columns" style=3D"border-collapse: c=
|
428
|
+
ollapse; border-spacing: 0; margin: 0 auto; padding: 0; text-align: left; v=
|
429
|
+
ertical-align: top; width: 580px">=20
|
430
|
+
<tbody>
|
431
|
+
<tr style=3D"padding: 0; text-align: left; vertical-align=
|
432
|
+
: top" align=3D"left">=20
|
433
|
+
<td align=3D"center" class=3D"twelve sub-columns center"=
|
434
|
+
style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collapse: colla=
|
435
|
+
pse !important; color: #222222; font-family: 'Open Sans', Gill Sans, Arial,=
|
436
|
+
Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphens: auto=
|
437
|
+
; line-height: 19px; margin: 0; min-width: 0px; padding: 0px 0px 10px; text=
|
438
|
+
-align: center !important; vertical-align: top; width: 100%; word-break: br=
|
439
|
+
eak-word" valign=3D"top">=20
|
440
|
+
<center style=3D"min-width: 580px; width: 100%">=20
|
441
|
+
<img alt=3D"Aol." class=3D"center" src=3D"http://d1tmg=
|
442
|
+
hnu7krkze.cloudfront.net/aol/images/black-v2/aol-logo.png" style=3D"-ms-int=
|
443
|
+
erpolation-mode: bicubic; clear: both; display: block; float: none; margin:=
|
444
|
+
0 auto; max-width: 100%; outline: none; text-align: center; text-decoratio=
|
445
|
+
n: none; width: auto" align=3D"none" />=20
|
446
|
+
</center> </td>=20
|
447
|
+
<td class=3D"expander" style=3D"-moz-hyphens: auto; -web=
|
448
|
+
kit-hyphens: auto; border-collapse: collapse !important; color: #222222; fo=
|
449
|
+
nt-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size:=
|
450
|
+
14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; pa=
|
451
|
+
dding: 0; text-align: left; vertical-align: top; visibility: hidden; width:=
|
452
|
+
0px; word-break: break-word" align=3D"left" valign=3D"top"></td>=20
|
453
|
+
</tr>=20
|
454
|
+
</tbody>
|
455
|
+
</table> </td>=20
|
456
|
+
</tr>=20
|
457
|
+
<tr style=3D"padding: 0; text-align: left; vertical-align: to=
|
458
|
+
p" align=3D"left">=20
|
459
|
+
<td class=3D"wrapper" style=3D"-moz-hyphens: auto; -webkit-h=
|
460
|
+
yphens: auto; border-collapse: collapse !important; color: #222222; font-fa=
|
461
|
+
mily: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size: 14px=
|
462
|
+
; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; padding=
|
463
|
+
: 10px 0px 0px; position: relative; text-align: left; vertical-align: top; =
|
464
|
+
word-break: break-word" align=3D"left" valign=3D"top">=20
|
465
|
+
<table class=3D"twelve columns" style=3D"border-collapse: c=
|
466
|
+
ollapse; border-spacing: 0; margin: 0 auto; padding: 0; text-align: left; v=
|
467
|
+
ertical-align: top; width: 580px">=20
|
468
|
+
<tbody>
|
469
|
+
<tr style=3D"padding: 0; text-align: left; vertical-align=
|
470
|
+
: top" align=3D"left">=20
|
471
|
+
<td align=3D"center" class=3D"twelve sub-columns center"=
|
472
|
+
style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collapse: colla=
|
473
|
+
pse !important; color: #222222; font-family: 'Open Sans', Gill Sans, Arial,=
|
474
|
+
Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphens: auto=
|
475
|
+
; line-height: 19px; margin: 0; min-width: 0px; padding: 0px 0px 10px; text=
|
476
|
+
-align: center !important; vertical-align: top; width: 100%; word-break: br=
|
477
|
+
eak-word" valign=3D"top">=20
|
478
|
+
<center style=3D"min-width: 580px; width: 100%">=20
|
479
|
+
<img alt=3D"UH OH!" class=3D"center" src=3D"http://d1t=
|
480
|
+
mghnu7krkze.cloudfront.net/aol/images/black-v2/uh-oh.png" style=3D"-ms-inte=
|
481
|
+
rpolation-mode: bicubic; clear: both; display: block; float: none; margin: =
|
482
|
+
0 auto; max-width: 100%; outline: none; text-align: center; text-decoration=
|
483
|
+
: none; width: auto" align=3D"none" />=20
|
484
|
+
</center> </td>=20
|
485
|
+
<td class=3D"expander" style=3D"-moz-hyphens: auto; -web=
|
486
|
+
kit-hyphens: auto; border-collapse: collapse !important; color: #222222; fo=
|
487
|
+
nt-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size:=
|
488
|
+
14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; pa=
|
489
|
+
dding: 0; text-align: left; vertical-align: top; visibility: hidden; width:=
|
490
|
+
0px; word-break: break-word" align=3D"left" valign=3D"top"></td>=20
|
491
|
+
</tr>=20
|
492
|
+
</tbody>
|
493
|
+
</table> </td>=20
|
494
|
+
</tr>=20
|
495
|
+
<tr style=3D"padding: 0; text-align: left; vertical-align: to=
|
496
|
+
p" align=3D"left">=20
|
497
|
+
<td class=3D"wrapper" style=3D"-moz-hyphens: auto; -webkit-h=
|
498
|
+
yphens: auto; border-collapse: collapse !important; color: #222222; font-fa=
|
499
|
+
mily: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size: 14px=
|
500
|
+
; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; padding=
|
501
|
+
: 10px 0px 0px; position: relative; text-align: left; vertical-align: top; =
|
502
|
+
word-break: break-word" align=3D"left" valign=3D"top">=20
|
503
|
+
<table class=3D"twelve columns" style=3D"border-collapse: c=
|
504
|
+
ollapse; border-spacing: 0; margin: 0 auto; padding: 0; text-align: left; v=
|
505
|
+
ertical-align: top; width: 580px">=20
|
506
|
+
<tbody>
|
507
|
+
<tr style=3D"padding: 0; text-align: left; vertical-align=
|
508
|
+
: top" align=3D"left">=20
|
509
|
+
<td class=3D"one sub-columns center" style=3D"-moz-hyphe=
|
510
|
+
ns: auto; -webkit-hyphens: auto; border-collapse: collapse !important; colo=
|
511
|
+
r: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-ser=
|
512
|
+
if; font-size: 14px; font-weight: normal; hyphens: auto; line-height: 19px;=
|
513
|
+
margin: 0; min-width: 0px; padding: 0px 0px 10px; text-align: center !impo=
|
514
|
+
rtant; vertical-align: top; width: 8.333333%; word-break: break-word" align=
|
515
|
+
=3D"center !important" valign=3D"top"></td>=20
|
516
|
+
<td align=3D"center" class=3D"ten sub-columns center" st=
|
517
|
+
yle=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collapse: collapse=
|
518
|
+
!important; color: #222222; font-family: 'Open Sans', Gill Sans, Arial, He=
|
519
|
+
lvetica, sans-serif; font-size: 14px; font-weight: normal; hyphens: auto; l=
|
520
|
+
ine-height: 19px; margin: 0; min-width: 0px; padding: 0px 0px 10px; text-al=
|
521
|
+
ign: center !important; vertical-align: top; width: 83.333333%; word-break:=
|
522
|
+
break-word" valign=3D"top"> <h3 class=3D"center" style=3D"color: #f8842e; =
|
523
|
+
font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-siz=
|
524
|
+
e: 18px; font-style: italic; font-weight: normal; line-height: 1.3; margin:=
|
525
|
+
0; padding: 0; text-align: center; word-break: normal" align=3D"center">Em=
|
526
|
+
ail Returned</h3> <h2 class=3D"center" style=3D"color: #f8842e; font-family=
|
527
|
+
: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size: 25px; fo=
|
528
|
+
nt-style: italic; font-weight: 600; line-height: 1.3; margin: 0; padding: 0=
|
529
|
+
; text-align: center; word-break: normal" align=3D"center">Something went w=
|
530
|
+
rong.</h2> </td>=20
|
531
|
+
<td class=3D"one sub-columns center" style=3D"-moz-hyphe=
|
532
|
+
ns: auto; -webkit-hyphens: auto; border-collapse: collapse !important; colo=
|
533
|
+
r: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-ser=
|
534
|
+
if; font-size: 14px; font-weight: normal; hyphens: auto; line-height: 19px;=
|
535
|
+
margin: 0; min-width: 0px; padding: 0px 0px 10px; text-align: center !impo=
|
536
|
+
rtant; vertical-align: top; width: 8.333333%; word-break: break-word" align=
|
537
|
+
=3D"center !important" valign=3D"top"></td>=20
|
538
|
+
<td class=3D"expander" style=3D"-moz-hyphens: auto; -web=
|
539
|
+
kit-hyphens: auto; border-collapse: collapse !important; color: #222222; fo=
|
540
|
+
nt-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size:=
|
541
|
+
14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; pa=
|
542
|
+
dding: 0; text-align: left; vertical-align: top; visibility: hidden; width:=
|
543
|
+
0px; word-break: break-word" align=3D"left" valign=3D"top"></td>=20
|
544
|
+
</tr>=20
|
545
|
+
</tbody>
|
546
|
+
</table> </td>=20
|
547
|
+
</tr>=20
|
548
|
+
<tr style=3D"padding: 0; text-align: left; vertical-align: to=
|
549
|
+
p" align=3D"left">=20
|
550
|
+
<td class=3D"wrapper last" style=3D"-moz-hyphens: auto; -web=
|
551
|
+
kit-hyphens: auto; border-collapse: collapse !important; color: #222222; fo=
|
552
|
+
nt-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size:=
|
553
|
+
14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; pa=
|
554
|
+
dding: 10px 0px 0px; position: relative; text-align: left; vertical-align: =
|
555
|
+
top; word-break: break-word" align=3D"left" valign=3D"top">=20
|
556
|
+
<center style=3D"min-width: 580px; width: 100%">=20
|
557
|
+
<table class=3D"twelve columns center" style=3D"border-col=
|
558
|
+
lapse: collapse; border-spacing: 0; margin: 0 auto; padding: 0; text-align:=
|
559
|
+
center !important; vertical-align: top; width: 580px">=20
|
560
|
+
<tbody>
|
561
|
+
<tr style=3D"padding: 0; text-align: left; vertical-alig=
|
562
|
+
n: top" align=3D"left">=20
|
563
|
+
<td class=3D"two sub-columns center" style=3D"-moz-hyph=
|
564
|
+
ens: auto; -webkit-hyphens: auto; border-collapse: collapse !important; col=
|
565
|
+
or: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-se=
|
566
|
+
rif; font-size: 14px; font-weight: normal; hyphens: auto; line-height: 19px=
|
567
|
+
; margin: 0; min-width: 0px; padding: 0px 0px 10px; text-align: center !imp=
|
568
|
+
ortant; vertical-align: top; width: 16.666666%; word-break: break-word" ali=
|
569
|
+
gn=3D"center !important" valign=3D"top"></td>=20
|
570
|
+
<td class=3D"eight sub-columns center" style=3D"-moz-hy=
|
571
|
+
phens: auto; -webkit-hyphens: auto; border-collapse: collapse !important; c=
|
572
|
+
olor: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-=
|
573
|
+
serif; font-size: 14px; font-weight: normal; hyphens: auto; line-height: 19=
|
574
|
+
px; margin: 0; min-width: 0px; padding: 0px 0px 10px; text-align: center !i=
|
575
|
+
mportant; vertical-align: top; width: 66.666666%; word-break: break-word" a=
|
576
|
+
lign=3D"center !important" valign=3D"top">=20
|
577
|
+
<table id=3D"message" style=3D"border-collapse: collap=
|
578
|
+
se; border-spacing: 0; margin: 0; padding: 0; position: relative; text-alig=
|
579
|
+
n: center; vertical-align: top; width: 100%">=20
|
580
|
+
<tbody>
|
581
|
+
<tr style=3D"padding: 0; text-align: left; vertical-=
|
582
|
+
align: top" align=3D"left">=20
|
583
|
+
<td class=3D"close center" style=3D"-moz-hyphens: a=
|
584
|
+
uto; -webkit-hyphens: auto; border-collapse: collapse !important; color: #2=
|
585
|
+
22222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; f=
|
586
|
+
ont-size: 14px; font-weight: normal; hyphens: auto; line-height: 19px; marg=
|
587
|
+
in: 0; padding: 0px 0px 0; text-align: center !important; vertical-align: t=
|
588
|
+
op; word-break: break-word" align=3D"center !important" valign=3D"top"> <p =
|
589
|
+
style=3D"color: #f8842e; font-family: 'Open Sans', Gill Sans, Arial, Helvet=
|
590
|
+
ica, sans-serif; font-size: 20px; font-weight: normal; line-height: 1.3; ma=
|
591
|
+
rgin: 0 0 10px; padding: 0; text-align: center" align=3D"center">We were un=
|
592
|
+
able to deliver your message to the following address</p> </td>=20
|
593
|
+
</tr>=20
|
594
|
+
<tr style=3D"padding: 0; text-align: left; vertical-=
|
595
|
+
align: top" align=3D"left">=20
|
596
|
+
<td class=3D"close center" style=3D"-moz-hyphens: a=
|
597
|
+
uto; -webkit-hyphens: auto; border-collapse: collapse !important; color: #2=
|
598
|
+
22222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; f=
|
599
|
+
ont-size: 14px; font-weight: normal; hyphens: auto; line-height: 19px; marg=
|
600
|
+
in: 0; padding: 0px 0px 0; text-align: center !important; vertical-align: t=
|
601
|
+
op; word-break: break-word" align=3D"center !important" valign=3D"top">=20
|
602
|
+
<center style=3D"min-width: 580px; width: 100%">=
|
603
|
+
=20
|
604
|
+
<a class=3D"center" href=3D"#" id=3D"message-emai=
|
605
|
+
l" style=3D"color: #2ba6cb; display: block; font-size: 20px; font-style: no=
|
606
|
+
rmal; font-weight: bold; line-height: 47px; padding: 10px; text-align: cent=
|
607
|
+
er; text-decoration: none; width: 100%">kijitora@example.co.jp</a>=20
|
608
|
+
</center> </td>=20
|
609
|
+
</tr>=20
|
610
|
+
<tr style=3D"padding: 0; text-align: left; vertical-=
|
611
|
+
align: top" align=3D"left">=20
|
612
|
+
<td class=3D"close center" style=3D"-moz-hyphens: a=
|
613
|
+
uto; -webkit-hyphens: auto; border-collapse: collapse !important; color: #2=
|
614
|
+
22222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; f=
|
615
|
+
ont-size: 14px; font-weight: normal; hyphens: auto; line-height: 19px; marg=
|
616
|
+
in: 0; padding: 0px 0px 0; text-align: center !important; vertical-align: t=
|
617
|
+
op; word-break: break-word" align=3D"center !important" valign=3D"top"> <p =
|
618
|
+
style=3D"color: #f8842e; font-family: 'Open Sans', Gill Sans, Arial, Helvet=
|
619
|
+
ica, sans-serif; font-size: 20px; font-weight: normal; line-height: 1.3; ma=
|
620
|
+
rgin: 0 0 10px; padding: 0; text-align: center" align=3D"center">because: M=
|
621
|
+
ailbox is full</p> </td>=20
|
622
|
+
</tr>=20
|
623
|
+
</tbody>
|
624
|
+
</table> </td>=20
|
625
|
+
<td class=3D"two sub-columns center" style=3D"-moz-hyph=
|
626
|
+
ens: auto; -webkit-hyphens: auto; border-collapse: collapse !important; col=
|
627
|
+
or: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-se=
|
628
|
+
rif; font-size: 14px; font-weight: normal; hyphens: auto; line-height: 19px=
|
629
|
+
; margin: 0; min-width: 0px; padding: 0px 0px 10px; text-align: center !imp=
|
630
|
+
ortant; vertical-align: top; width: 16.666666%; word-break: break-word" ali=
|
631
|
+
gn=3D"center !important" valign=3D"top"></td>=20
|
632
|
+
<td class=3D"expander" style=3D"-moz-hyphens: auto; -we=
|
633
|
+
bkit-hyphens: auto; border-collapse: collapse !important; color: #222222; f=
|
634
|
+
ont-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size=
|
635
|
+
: 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; p=
|
636
|
+
adding: 0; text-align: left; vertical-align: top; visibility: hidden; width=
|
637
|
+
: 0px; word-break: break-word" align=3D"left" valign=3D"top"></td>=20
|
638
|
+
</tr>=20
|
639
|
+
</tbody>
|
640
|
+
</table>=20
|
641
|
+
</center> </td>=20
|
642
|
+
</tr>=20
|
643
|
+
</tbody>
|
644
|
+
</table>=20
|
645
|
+
</center> </td>=20
|
646
|
+
</tr>=20
|
647
|
+
</tbody>
|
648
|
+
</table>=20
|
649
|
+
<table class=3D"row" style=3D"border-collapse: collapse; border-spac=
|
650
|
+
ing: 0; padding: 0px; position: relative; text-align: left; vertical-align:=
|
651
|
+
top; width: 100%">=20
|
652
|
+
<tbody>
|
653
|
+
<tr style=3D"padding: 0; text-align: left; vertical-align: top" al=
|
654
|
+
ign=3D"left">=20
|
655
|
+
<td align=3D"center" class=3D"center" style=3D"-moz-hyphens: auto=
|
656
|
+
; -webkit-hyphens: auto; border-collapse: collapse !important; color: #2222=
|
657
|
+
22; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font=
|
658
|
+
-size: 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin:=
|
659
|
+
0; padding: 0; text-align: center !important; vertical-align: top; word-br=
|
660
|
+
eak: break-word" valign=3D"top">=20
|
661
|
+
<center style=3D"min-width: 580px; width: 100%">=20
|
662
|
+
<table class=3D"container" style=3D"border-collapse: collapse; =
|
663
|
+
border-spacing: 0; margin: 0 auto; padding: 0; text-align: inherit; vertica=
|
664
|
+
l-align: top; width: 580px">=20
|
665
|
+
<tbody>
|
666
|
+
<tr style=3D"padding: 0; text-align: left; vertical-align: to=
|
667
|
+
p" align=3D"left">=20
|
668
|
+
<td class=3D"wrapper center" style=3D"-moz-hyphens: auto; -w=
|
669
|
+
ebkit-hyphens: auto; border-collapse: collapse !important; color: #222222; =
|
670
|
+
font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-siz=
|
671
|
+
e: 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; =
|
672
|
+
padding: 10px 0px 0px; position: relative; text-align: center !important; v=
|
673
|
+
ertical-align: top; word-break: break-word" align=3D"center !important" val=
|
674
|
+
ign=3D"top">=20
|
675
|
+
<center style=3D"min-width: 580px; width: 100%">=20
|
676
|
+
<table class=3D"seven center" style=3D"border-collapse: co=
|
677
|
+
llapse; border-spacing: 0; padding: 0; text-align: center !important; verti=
|
678
|
+
cal-align: top; width: 330px">=20
|
679
|
+
<tbody>
|
680
|
+
<tr style=3D"padding: 0; text-align: left; vertical-alig=
|
681
|
+
n: top" align=3D"left">=20
|
682
|
+
<td align=3D"center" class=3D"explainer center" style=
|
683
|
+
=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collapse: collapse !i=
|
684
|
+
mportant; color: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helve=
|
685
|
+
tica, sans-serif; font-size: 14px; font-weight: normal; hyphens: auto; line=
|
686
|
+
-height: 19px; margin: 0; padding: 0; text-align: center !important; vertic=
|
687
|
+
al-align: top; word-break: break-word" valign=3D"top">=20
|
688
|
+
<center style=3D"min-width: 330px; width: 100%">=20
|
689
|
+
<p style=3D"color: #f8842e; font-family: 'Open Sans',=
|
690
|
+
Gill Sans, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: nor=
|
691
|
+
mal; line-height: 19px; margin: 0 0 10px; padding: 3px 0 20px; text-align: =
|
692
|
+
center" align=3D"center">Contact the recipient another way (e.g., phone or =
|
693
|
+
text message) and ask them if they're aware that their mail box is full </p=
|
694
|
+
>=20
|
695
|
+
<p style=3D"color: #f8842e; font-family: 'Open Sans',=
|
696
|
+
Gill Sans, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: nor=
|
697
|
+
mal; line-height: 19px; margin: 0 0 10px; padding: 3px 0 20px; text-align: =
|
698
|
+
center" align=3D"center">The recipient can delete messages to make more spa=
|
699
|
+
ce available</p>=20
|
700
|
+
<p style=3D"color: #f8842e; font-family: 'Open Sans',=
|
701
|
+
Gill Sans, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: nor=
|
702
|
+
mal; line-height: 19px; margin: 0 0 10px; padding: 3px 0 20px; text-align: =
|
703
|
+
center" align=3D"center">Send/Receive Log is attached. <a href=3D"http=
|
704
|
+
s://a.b-io.me/c/Y1lM9w9S1KenVjis8KQ5APgyWV3loW8sBJshGcDs43nQaWlkIsfqBOHxuuE=
|
705
|
+
y0dlLaL58u2f.ibt1zBpGZKU0XtH9ph34bJomLMC8caf.VuDWuc5TdFb8g4.iWROnrITERraJJa=
|
706
|
+
94WrVlXwnqCU6HePaRnm9ajotVQlwQEj_xwtKNvHok7Gpms03qTX3t3DSrVDtq9e9DP2x_UYNYS=
|
707
|
+
wttXUisSe3WvXE58lJR2Y4g9FUrn1NRA7A3ikJ79qes2bDJ9sBNIehQvj7IHFkFWhczAATqjpvB=
|
708
|
+
p01DiCx1MarDFeKRfhgdpZg4PNh0m_eIjFKcxBGL3a7F3rCnFVvTLvnaX.9AgT.UEo81mKVOvnA=
|
709
|
+
sbAAejbbeQ3AaOH9xrGZGL3oDPjne4u_bbGjR.aYd_GyaJuy1EBuhSZNloClaygNo758jOS3NU_=
|
710
|
+
MVmHiRR8UnTMehaNhlbXLENskl6G9l6MaFYNdscDQMBSDbU27NTP.diPc-" style=3D"color:=
|
711
|
+
#2ba6cb; text-decoration: none">More information about type 5.2.2 delivery=
|
712
|
+
errors are available if you want or need it.</a></p>=20
|
713
|
+
</center> </td>=20
|
714
|
+
<td class=3D"expander" style=3D"-moz-hyphens: auto; -we=
|
715
|
+
bkit-hyphens: auto; border-collapse: collapse !important; color: #222222; f=
|
716
|
+
ont-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size=
|
717
|
+
: 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; p=
|
718
|
+
adding: 0; text-align: left; vertical-align: top; visibility: hidden; width=
|
719
|
+
: 0px; word-break: break-word" align=3D"left" valign=3D"top"></td>=20
|
720
|
+
</tr>=20
|
721
|
+
</tbody>
|
722
|
+
</table>=20
|
723
|
+
</center> </td>=20
|
724
|
+
</tr>=20
|
725
|
+
<tr style=3D"padding: 0; text-align: left; vertical-align: to=
|
726
|
+
p" align=3D"left">=20
|
727
|
+
<td class=3D"wrapper" style=3D"-moz-hyphens: auto; -webkit-h=
|
728
|
+
yphens: auto; border-collapse: collapse !important; color: #222222; font-fa=
|
729
|
+
mily: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size: 14px=
|
730
|
+
; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; padding=
|
731
|
+
: 10px 0px 0px; position: relative; text-align: left; vertical-align: top; =
|
732
|
+
word-break: break-word" align=3D"left" valign=3D"top">=20
|
733
|
+
<table class=3D"twelve columns" style=3D"border-collapse: c=
|
734
|
+
ollapse; border-spacing: 0; margin: 0 auto; padding: 0; text-align: left; v=
|
735
|
+
ertical-align: top; width: 580px">=20
|
736
|
+
<tbody>
|
737
|
+
<tr style=3D"padding: 0; text-align: left; vertical-align=
|
738
|
+
: top" align=3D"left">=20
|
739
|
+
<td align=3D"center" class=3D"twelve sub-columns center"=
|
740
|
+
style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collapse: colla=
|
741
|
+
pse !important; color: #222222; font-family: 'Open Sans', Gill Sans, Arial,=
|
742
|
+
Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphens: auto=
|
743
|
+
; line-height: 19px; margin: 0; min-width: 0px; padding: 0px 0px 10px; text=
|
744
|
+
-align: center !important; vertical-align: top; width: 100%; word-break: br=
|
745
|
+
eak-word" valign=3D"top">=20
|
746
|
+
<center style=3D"min-width: 580px; width: 100%">=20
|
747
|
+
<small style=3D"color: #f8842e; font-size: 10px">ADVER=
|
748
|
+
TISEMENT</small>=20
|
749
|
+
<br />=20
|
750
|
+
<p style=3D"color: #f8842e; font-family: 'Open Sans', =
|
751
|
+
Gill Sans, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: norm=
|
752
|
+
al; line-height: 19px; margin: 0 0 10px; padding: 0; text-align: center" al=
|
753
|
+
ign=3D"center"></p>
|
754
|
+
<table border=3D"0" cellpadding=3D"0" cellspacing=3D"0=
|
755
|
+
">=20
|
756
|
+
<tbody>=20
|
757
|
+
<tr>=20
|
758
|
+
<td colspan=3D"2"> <a style=3D"display: block; widt=
|
759
|
+
h: 300px; height: 250px;" href=3D"https://a.b-io.me/c/Y1lM9w9S1KenVjis8KQ5A=
|
760
|
+
PgyWV3loW8sBJshGcDs43nQaWlkIsfqBOHxuuEy0dlLaL58u2f.ibt1zBpGZKU0XtH9ph34bJom=
|
761
|
+
LMC8caf.VuDWuc5TdFb8g4.iWROnrITERraJJa94WrVlXwnqCU6HePaRnm9ajotVQlwQEj_xwtK=
|
762
|
+
NvHok7Gpms5YWBOZ8Y_2nGI0DwOzDUvEuAYGbRv0DV1l2SUIfksBJJwZpqdvdkZKAzT9t6TWYRo=
|
763
|
+
e9Pl6FLLYEN.2Dyi1ZSzcYEeZka1kC_9d9YFoFX9K5GG9qD7X1bBbmtvsXryVvbAbbGpkmZNvFy=
|
764
|
+
Mj3mehLna_0Jcaq6SHw8Xv1nIvmbUsGPplB2vKabrYejbbeQ3AaOH9xrGZGL3oDPjne4u_bbGjR=
|
765
|
+
.aYd_GyaJuy1EBuhSZNlEshqXJjhtULPfFPKs.DXGqEVYZ24p6WFgT3ogOof4uE4OewZui06yn4=
|
766
|
+
1dCaYXAqOe.2gu7KHf7HZC7qe1cjkCy5B29w3qLPw" rel=3D"nofollow" data-biocat=3D"=
|
767
|
+
ad"><img src=3D"http://nl.newsletter.aol.com/imp?s=3D89931&t=3Dnewsletter&s=
|
768
|
+
z=3D300x250&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a15bc5af&p=3D141=
|
769
|
+
6612838684" border=3D"0" width=3D"300" height=3D"250" /></a> </td>=20
|
770
|
+
</tr>=20
|
771
|
+
<tr style=3D"display:block; height:1px; line-height:=
|
772
|
+
1px;">=20
|
773
|
+
<td> <img src=3D"http://nl.newsletter.aol.com/imp?s=
|
774
|
+
=3D89932&t=3Dnewsletter&sz=3D1x1&li=3DAOLBounceMail&m=3D6a2629809201a511936=
|
775
|
+
88c68a15bc5af&p=3D1416612838684" height=3D"1" width=3D"10" /> </td>=20
|
776
|
+
<td> <img src=3D"http://nl.newsletter.aol.com/imp?s=
|
777
|
+
=3D89933&t=3Dnewsletter&sz=3D1x1&li=3DAOLBounceMail&m=3D6a2629809201a511936=
|
778
|
+
88c68a15bc5af&p=3D1416612838684" height=3D"1" width=3D"10" /> </td>=20
|
779
|
+
</tr>=20
|
780
|
+
<tr>=20
|
781
|
+
<td align=3D"left"> <a href=3D"https://a.b-io.me/c/=
|
782
|
+
Y1lM9w9S1KenVjis8KQ5APgyWV3loW8sBJshGcDs43nQaWlkIsfqBOHxuuEy0dlLaL58u2f.ibt=
|
783
|
+
1zBpGZKU0XtH9ph34bJomLMC8caf.VuDWuc5TdFb8g4.iWROnrITERraJJa94WrVlXwnqCU6HeP=
|
784
|
+
aRnm9ajotVQlwQEj_xwtKNvHok7Gpms5YWBOZ8Y_2nGI0DwOzDUvEuAYGbRv0DV1l2SUIfksBJJ=
|
785
|
+
wZpqdvdkZKmNnR_ckPZyoe9Pl6FLLYEVext5ay3mmPB3dWuRBThBhFycKET4pYnFqsVOv.Gr9Ce=
|
786
|
+
5vGjJDypnkHT9yxARK_0sM7d7bgIYsNg2pVpjzBQjMW8hoAXFgdJnvb6biRF1Gy2K1P3VYjXnW1=
|
787
|
+
NSpm22rUOHdzKACox1kmAvItNF1UGxxmCpbP6BG7..ivjNWVcQkS5VFQLY4VHvkAmpDHISyK5ot=
|
788
|
+
3HW9m3X2JOgI_6RqFkFlFBF_rE3fx9LjrJMXhLXCiE1y8nEEaB4Yfo8XPiNFng" rel=3D"nofo=
|
789
|
+
llow" data-biocat=3D"ad"><img src=3D"http://nl.newsletter.aol.com/imp?s=3D8=
|
790
|
+
9919&t=3Dnewsletter&sz=3D116x15&li=3DAOLBounceMail&m=3D6a2629809201a5119368=
|
791
|
+
8c68a15bc5af&p=3D1416612838684" border=3D"0" /></a> </td>=20
|
792
|
+
<td align=3D"right"> <a href=3D"https://a.b-io.me/c=
|
793
|
+
/Y1lM9w9S1KenVjis8KQ5APgyWV3loW8sBJshGcDs43nQaWlkIsfqBOHxuuEy0dlLaL58u2f.ib=
|
794
|
+
t1zBpGZKU0XtH9ph34bJomLMC8caf.VuDWuc5TdFb8g4.iWROnrITERraJJa94WrVlXwnqCU6He=
|
795
|
+
PaRnm9ajotVQlwQEj_xwtKNvHok7Gpms5YWBOZ8Y_2nGI0DwOzDUvEuAYGbRv0DV1l2SUIfksBJ=
|
796
|
+
JwZpqdvdkZK02Y2QY_eS44e9Pl6FLLYE41ndLbr3rFVxnLv4jqxvyjT3kJfjG5MyOSmLMG8p6w9=
|
797
|
+
hbXbsqoxkfQ70y8icHYHGhDLrQdFz9448FKDHLJP7cYDZz2qKWw5PZQZLMmELB7cKNcxgbpC49P=
|
798
|
+
SFcFb_M_Tl0ssUB78auaImpUirSrFc9BBHRzcRPb1iIOb1uwg72toNfKYuD6Zg_zTrfmmXfWP6Y=
|
799
|
+
bWLbIidcyhqOpppJUvzqvv8.PZ.lDZV47bTEJHTAReEeDnx229aBrTOGBpQIUGH" rel=3D"nof=
|
800
|
+
ollow" data-biocat=3D"ad"><img src=3D"http://nl.newsletter.aol.com/imp?s=3D=
|
801
|
+
89920&t=3Dnewsletter&sz=3D69x15&li=3DAOLBounceMail&m=3D6a2629809201a5119368=
|
802
|
+
8c68a15bc5af&p=3D1416612838684" border=3D"0" /></a> </td>=20
|
803
|
+
</tr>=20
|
804
|
+
</tbody>=20
|
805
|
+
</table>
|
806
|
+
<p></p>=20
|
807
|
+
</center> </td>=20
|
808
|
+
<td class=3D"expander" style=3D"-moz-hyphens: auto; -web=
|
809
|
+
kit-hyphens: auto; border-collapse: collapse !important; color: #222222; fo=
|
810
|
+
nt-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size:=
|
811
|
+
14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; pa=
|
812
|
+
dding: 0; text-align: left; vertical-align: top; visibility: hidden; width:=
|
813
|
+
0px; word-break: break-word" align=3D"left" valign=3D"top"></td>=20
|
814
|
+
</tr>=20
|
815
|
+
</tbody>
|
816
|
+
</table> </td>=20
|
817
|
+
</tr>=20
|
818
|
+
<tr style=3D"padding: 0; text-align: left; vertical-align: to=
|
819
|
+
p" align=3D"left">=20
|
820
|
+
<td class=3D"wrapper" style=3D"-moz-hyphens: auto; -webkit-h=
|
821
|
+
yphens: auto; border-collapse: collapse !important; color: #222222; font-fa=
|
822
|
+
mily: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size: 14px=
|
823
|
+
; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; padding=
|
824
|
+
: 10px 0px 0px; position: relative; text-align: left; vertical-align: top; =
|
825
|
+
word-break: break-word" align=3D"left" valign=3D"top">=20
|
826
|
+
<center style=3D"min-width: 580px; width: 100%">=20
|
827
|
+
<table class=3D"twelve columns center" style=3D"border-col=
|
828
|
+
lapse: collapse; border-spacing: 0; margin: 0 auto; padding: 0; text-align:=
|
829
|
+
center !important; vertical-align: top; width: 580px">=20
|
830
|
+
<tbody>
|
831
|
+
<tr style=3D"padding: 0; text-align: left; vertical-alig=
|
832
|
+
n: top" align=3D"left">=20
|
833
|
+
<td class=3D"three sub-columns center" style=3D"-moz-hy=
|
834
|
+
phens: auto; -webkit-hyphens: auto; border-collapse: collapse !important; c=
|
835
|
+
olor: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-=
|
836
|
+
serif; font-size: 14px; font-weight: normal; hyphens: auto; line-height: 19=
|
837
|
+
px; margin: 0; min-width: 0px; padding: 0px 0px 10px; text-align: center !i=
|
838
|
+
mportant; vertical-align: top; width: 25%; word-break: break-word" align=3D=
|
839
|
+
"center !important" valign=3D"top"></td>=20
|
840
|
+
<td class=3D"three sub-columns center" style=3D"-moz-hy=
|
841
|
+
phens: auto; -webkit-hyphens: auto; border-collapse: collapse !important; c=
|
842
|
+
olor: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-=
|
843
|
+
serif; font-size: 14px; font-weight: normal; hyphens: auto; line-height: 19=
|
844
|
+
px; margin: 0; min-width: 0px; padding: 0px 0px 10px; text-align: center !i=
|
845
|
+
mportant; vertical-align: top; width: 25%; word-break: break-word" align=3D=
|
846
|
+
"center !important" valign=3D"top">=20
|
847
|
+
<table class=3D"tiny-button" style=3D"border-collapse:=
|
848
|
+
collapse; border-spacing: 0; border: 0; margin: auto; overflow: hidden; pa=
|
849
|
+
dding: 0; text-align: left; vertical-align: top; width: 98%">=20
|
850
|
+
<tbody>
|
851
|
+
<tr style=3D"padding: 0; text-align: left; vertical-=
|
852
|
+
align: top" align=3D"left">=20
|
853
|
+
<td style=3D"-moz-hyphens: auto; -webkit-hyphens: a=
|
854
|
+
uto; background: #000000; border-collapse: collapse !important; border: 0 s=
|
855
|
+
olid #2284a1; color: #ffffff; display: block; font-family: 'Open Sans', Gil=
|
856
|
+
l Sans, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal;=
|
857
|
+
hyphens: auto; line-height: 19px; margin: 0; padding: 5px 0 4px; text-alig=
|
858
|
+
n: center; vertical-align: top; width: auto !important; word-break: break-w=
|
859
|
+
ord" align=3D"center" bgcolor=3D"#000000" valign=3D"top"> <a data-biocat=3D=
|
860
|
+
"privacy" href=3D"https://a.b-io.me/c/Y1lM9w9S1KenVjis8KQ5APgyWV3loW8sBJshG=
|
861
|
+
cDs43nQaWlkIsfqBOHxuuEy0dlLaL58u2f.ibt1zBpGZKU0XtH9ph34bJomLMC8caf.VuDWuc5T=
|
862
|
+
dFb8g4.iWROnrITERraJJa94WrVlXwnqCU6HePaRnm9ajotVQlwQEj_xwtKNvHok7Gpms5YWBOZ=
|
863
|
+
8Y_2nmoC2tVNcOmHhV4VatLS.RHfLRf2kGXMnU2qbDDwR_8jTyjx4UDfxbvOp1wsTz2KdcDgI42=
|
864
|
+
pt6sHbQ2sq2b17B8NdbYnPBMKfmrEPzBMWxU00635pl31j_mG1i2yInXMoajqaaSVL86r7.Pz2f=
|
865
|
+
5Q2VeO20xCR0wEXhHg58dtvWga0zhgaUCFBhw--" style=3D"color: #ffffff; display: =
|
866
|
+
block; font-family: Helvetica, Arial, sans-serif; font-size: 12px; font-wei=
|
867
|
+
ght: normal; height: 100%; text-decoration: none; width: 100%">Privacy Poli=
|
868
|
+
cy</a> </td>=20
|
869
|
+
</tr>=20
|
870
|
+
</tbody>
|
871
|
+
</table> </td>=20
|
872
|
+
<td class=3D"three sub-columns center" style=3D"-moz-hy=
|
873
|
+
phens: auto; -webkit-hyphens: auto; border-collapse: collapse !important; c=
|
874
|
+
olor: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-=
|
875
|
+
serif; font-size: 14px; font-weight: normal; hyphens: auto; line-height: 19=
|
876
|
+
px; margin: 0; min-width: 0px; padding: 0px 0px 10px; text-align: center !i=
|
877
|
+
mportant; vertical-align: top; width: 25%; word-break: break-word" align=3D=
|
878
|
+
"center !important" valign=3D"top">=20
|
879
|
+
<table class=3D"tiny-button" style=3D"border-collapse:=
|
880
|
+
collapse; border-spacing: 0; border: 0; margin: auto; overflow: hidden; pa=
|
881
|
+
dding: 0; text-align: left; vertical-align: top; width: 98%">=20
|
882
|
+
<tbody>
|
883
|
+
<tr style=3D"padding: 0; text-align: left; vertical-=
|
884
|
+
align: top" align=3D"left">=20
|
885
|
+
<td style=3D"-moz-hyphens: auto; -webkit-hyphens: a=
|
886
|
+
uto; background: #000000; border-collapse: collapse !important; border: 0 s=
|
887
|
+
olid #2284a1; color: #ffffff; display: block; font-family: 'Open Sans', Gil=
|
888
|
+
l Sans, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal;=
|
889
|
+
hyphens: auto; line-height: 19px; margin: 0; padding: 5px 0 4px; text-alig=
|
890
|
+
n: center; vertical-align: top; width: auto !important; word-break: break-w=
|
891
|
+
ord" align=3D"center" bgcolor=3D"#000000" valign=3D"top"> <a data-biocat=3D=
|
892
|
+
"support" href=3D"https://a.b-io.me/c/Y1lM9w9S1KenVjis8KQ5APgyWV3loW8sBJshG=
|
893
|
+
cDs43nQaWlkIsfqBOHxuuEy0dlLaL58u2f.ibt1zBpGZKU0XtH9ph34bJomLMC8caf.VuDWuc5T=
|
894
|
+
dFb8g4.iWROnrITERraJJa94WrVlXwnqCU6HePaRnm9ajotVQlwQEj_xwtKNvHok7Gpms5YWBOZ=
|
895
|
+
8Y_2neRvYOP8lshx3oiiIkJu.nC9k7HaYcYjYM.0a4tYWGFwHa9Z_YSDUWu8oktfrulLSUUO.QA=
|
896
|
+
KftJBRG2K36YcP_cr5RllWQlPfnyiJbv.X7UBlLDCkkDZp.IC3Dsu1nWmdQppKoAALG6uzKme1b=
|
897
|
+
JFCiXsA78wZJ2klIeuRL_ZvBrbexDrUD1gvEYd3OuFoiCNg75a8H8_bm3o-" style=3D"color=
|
898
|
+
: #ffffff; display: block; font-family: Helvetica, Arial, sans-serif; font-=
|
899
|
+
size: 12px; font-weight: normal; height: 100%; text-decoration: none; width=
|
900
|
+
: 100%">Customer Support</a> </td>=20
|
901
|
+
</tr>=20
|
902
|
+
</tbody>
|
903
|
+
</table> </td>=20
|
904
|
+
<td class=3D"three sub-columns center" style=3D"-moz-hy=
|
905
|
+
phens: auto; -webkit-hyphens: auto; border-collapse: collapse !important; c=
|
906
|
+
olor: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-=
|
907
|
+
serif; font-size: 14px; font-weight: normal; hyphens: auto; line-height: 19=
|
908
|
+
px; margin: 0; min-width: 0px; padding: 0px 0px 10px; text-align: center !i=
|
909
|
+
mportant; vertical-align: top; width: 25%; word-break: break-word" align=3D=
|
910
|
+
"center !important" valign=3D"top"></td>=20
|
911
|
+
<td class=3D"expander" style=3D"-moz-hyphens: auto; -we=
|
912
|
+
bkit-hyphens: auto; border-collapse: collapse !important; color: #222222; f=
|
913
|
+
ont-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size=
|
914
|
+
: 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; p=
|
915
|
+
adding: 0; text-align: left; vertical-align: top; visibility: hidden; width=
|
916
|
+
: 0px; word-break: break-word" align=3D"left" valign=3D"top"></td>=20
|
917
|
+
</tr>=20
|
918
|
+
</tbody>
|
919
|
+
</table>=20
|
920
|
+
</center> </td>=20
|
921
|
+
</tr>=20
|
922
|
+
</tbody>
|
923
|
+
</table>=20
|
924
|
+
</center> </td>=20
|
925
|
+
</tr>=20
|
926
|
+
</tbody>
|
927
|
+
</table>=20
|
928
|
+
<table class=3D"row" style=3D"border-collapse: collapse; border-spac=
|
929
|
+
ing: 0; padding: 0px; position: relative; text-align: left; vertical-align:=
|
930
|
+
top; width: 100%">=20
|
931
|
+
<tbody>
|
932
|
+
<tr style=3D"padding: 0; text-align: left; vertical-align: top" al=
|
933
|
+
ign=3D"left">=20
|
934
|
+
<td align=3D"center" class=3D"center" style=3D"-moz-hyphens: auto=
|
935
|
+
; -webkit-hyphens: auto; border-collapse: collapse !important; color: #2222=
|
936
|
+
22; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font=
|
937
|
+
-size: 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin:=
|
938
|
+
0; padding: 0; text-align: center !important; vertical-align: top; word-br=
|
939
|
+
eak: break-word" valign=3D"top">=20
|
940
|
+
<center style=3D"min-width: 580px; width: 100%">=20
|
941
|
+
<table class=3D"container" style=3D"border-collapse: collapse; =
|
942
|
+
border-spacing: 0; margin: 0 auto; padding: 0; text-align: inherit; vertica=
|
943
|
+
l-align: top; width: 580px">=20
|
944
|
+
<tbody>
|
945
|
+
<tr style=3D"padding: 0; text-align: left; vertical-align: to=
|
946
|
+
p" align=3D"left">=20
|
947
|
+
<td class=3D"wrapper" style=3D"-moz-hyphens: auto; -webkit-h=
|
948
|
+
yphens: auto; border-collapse: collapse !important; color: #222222; font-fa=
|
949
|
+
mily: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size: 14px=
|
950
|
+
; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; padding=
|
951
|
+
: 10px 0px 0px; position: relative; text-align: left; vertical-align: top; =
|
952
|
+
word-break: break-word" align=3D"left" valign=3D"top">=20
|
953
|
+
<table class=3D"twelve columns" style=3D"border-collapse: c=
|
954
|
+
ollapse; border-spacing: 0; margin: 0 auto; padding: 0; text-align: left; v=
|
955
|
+
ertical-align: top; width: 580px">=20
|
956
|
+
<tbody>
|
957
|
+
<tr style=3D"padding: 0; text-align: left; vertical-align=
|
958
|
+
: top" align=3D"left">=20
|
959
|
+
<td class=3D"text-pad-left" style=3D"-moz-hyphens: auto;=
|
960
|
+
-webkit-hyphens: auto; border-collapse: collapse !important; color: #22222=
|
961
|
+
2; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-=
|
962
|
+
size: 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: =
|
963
|
+
0; padding: 0px 0px 10px 10px; text-align: left; vertical-align: top; word-=
|
964
|
+
break: break-word" align=3D"left" valign=3D"top"> <p style=3D"color: #f8842=
|
965
|
+
e; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-=
|
966
|
+
size: 14px; font-weight: normal; line-height: 19px; margin: 0 0 10px; paddi=
|
967
|
+
ng: 0; text-align: center" align=3D"center">Rate this email: <a =
|
968
|
+
data-biocat=3D"rating" href=3D"https://a.b-io.me/c/Y1lM9w9S1KenVjis8KQ5APgy=
|
969
|
+
WV3loW8sBJshGcDs43nQaWlkIsfqBOHxuuEy0dlLaL58u2f.ibt1zBpGZKU0XtH9ph34bJomLMC=
|
970
|
+
8caf.VuDWuc5TdFb8g4.iWROnrITERraJJa94WrVlXwnqCU6HePaRnm9ajotVQlwQEj_xwtKNvH=
|
971
|
+
ok7Gpms03qTX3t3DSrD.fY8OU5r5FaxVpaTQ7l7rJwSQh5z_fm9QvTv8gUwwZKQ4Fbbw9xSJ9DW=
|
972
|
+
9SkQt1n2Q.HN0QnTCsC5ANvSpQIOFyzkMmvra8RFXsyXJXx_ty92l3nlgP_NsWLNihGOwuF8FGy=
|
973
|
+
ZCFaF8ESd6Y8N97hAE1AGGFYCtx.riM4N3hYRsXWLv9AFWPezzZUFcI5yrbev1fd1PDsBfHF36k=
|
974
|
+
XVHdzJFuwt4qYWtuvx1mNIOOoBtXAYpf6OPi2Kr8Kd94C06XNQCakMchLIrmi3cdb2bdfYk6Aj7=
|
975
|
+
pGoWQWUUEX6sTd.H0uOskxeEtcKITXLycQRoHhh_jxc_I0WeA-" style=3D"color: #2ba6cb=
|
976
|
+
; text-decoration: none">Helpful</a> <a data-biocat=3D"rating" h=
|
977
|
+
ref=3D"https://a.b-io.me/c/Y1lM9w9S1KenVjis8KQ5APgyWV3loW8sBJshGcDs43nQaWlk=
|
978
|
+
IsfqBOHxuuEy0dlLaL58u2f.ibt1zBpGZKU0XtH9ph34bJomLMC8caf.VuDWuc5TdFb8g4.iWRO=
|
979
|
+
nrITERraJJa94WrVlXwnqCU6HePaRnm9ajotVQlwQEj_xwtKNvHok7Gpms03qTX3t3DSrD.fY8O=
|
980
|
+
U5r5FaxVpaTQ7l7rJwSQh5z_fm9QvTv8gUwwZKQ4Fbbw9xSJ9DW9SkQt1n2Q.HN0QnTCsC5ANvS=
|
981
|
+
pQIOFyzkMmvra8RFXsyXJXx_ty92l3nlgP_NsWLNihGOwuF8FGyZCFaF8ESd6Y8N97hAE1AGGFY=
|
982
|
+
Ctx.0yyle6YuaOGPebMs9yzuNXHGVDi0bcygCjXMYG6QuPT0hXBW.jPk5dLLFAe.GrmiJqVIq0q=
|
983
|
+
xXPQQR0c3ET29YiDm9bsIO9ran.BZXWiwAfER6CSbSjA8xRY.rmTkyTQ6TD.u7Kwrrj.p_kx815=
|
984
|
+
dPEaleUwE5j2.NJWjfhzi_sCRDk.8GBTrnAg--" style=3D"color: #2ba6cb; text-decor=
|
985
|
+
ation: none">Somewhat helpful</a> <a data-biocat=3D"rating" href=
|
986
|
+
=3D"https://a.b-io.me/c/Y1lM9w9S1KenVjis8KQ5APgyWV3loW8sBJshGcDs43nQaWlkIsf=
|
987
|
+
qBOHxuuEy0dlLaL58u2f.ibt1zBpGZKU0XtH9ph34bJomLMC8caf.VuDWuc5TdFb8g4.iWROnrI=
|
988
|
+
TERraJJa94WrVlXwnqCU6HePaRnm9ajotVQlwQEj_xwtKNvHok7Gpms03qTX3t3DSrD.fY8OU5r=
|
989
|
+
5FaxVpaTQ7l7rJwSQh5z_fm9QvTv8gUwwZKQ4Fbbw9xSJ9DW9SkQt1n2Q.HN0QnTCsC5ANvSpQI=
|
990
|
+
OFyzkMmvra8RFXsyXJXx_ty92l3nlgP_NsWLNihGOwuF8FGyZCFaF8ESd6Y8N97hAE1AGGFYCtx=
|
991
|
+
.f1c.WK6VlrKR3JspOZZpeDDWIM2ZwsZ7U2qbDDwR_8jTyjx4UDfxbvOp1wsTz2KdcDgI42pt6s=
|
992
|
+
HbQ2sq2b17ByJHVp.dzyqgjROBbE9G0kojOS3NU_MVmHiRR8UnTMehaNhlbXLENskl6G9l6MaFY=
|
993
|
+
NdscDQMBSDbU27NTP.diPc-" style=3D"color: #2ba6cb; text-decoration: none">No=
|
994
|
+
t helpful</a></p> </td>=20
|
995
|
+
</tr>=20
|
996
|
+
</tbody>
|
997
|
+
</table> </td>=20
|
998
|
+
</tr>=20
|
999
|
+
</tbody>
|
1000
|
+
</table>=20
|
1001
|
+
</center> </td>=20
|
1002
|
+
</tr>=20
|
1003
|
+
</tbody>
|
1004
|
+
</table>=20
|
1005
|
+
<table class=3D"row" style=3D"border-collapse: collapse; border-spac=
|
1006
|
+
ing: 0; padding: 0px; position: relative; text-align: left; vertical-align:=
|
1007
|
+
top; width: 100%">=20
|
1008
|
+
<tbody>
|
1009
|
+
<tr style=3D"padding: 0; text-align: left; vertical-align: top" al=
|
1010
|
+
ign=3D"left">=20
|
1011
|
+
<td align=3D"center" class=3D"center" style=3D"-moz-hyphens: auto=
|
1012
|
+
; -webkit-hyphens: auto; border-collapse: collapse !important; color: #2222=
|
1013
|
+
22; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font=
|
1014
|
+
-size: 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin:=
|
1015
|
+
0; padding: 0; text-align: center !important; vertical-align: top; word-br=
|
1016
|
+
eak: break-word" valign=3D"top">=20
|
1017
|
+
<center style=3D"min-width: 580px; width: 100%">=20
|
1018
|
+
<table class=3D"container" style=3D"border-collapse: collapse; =
|
1019
|
+
border-spacing: 0; margin: 0 auto; padding: 0; text-align: inherit; vertica=
|
1020
|
+
l-align: top; width: 580px">=20
|
1021
|
+
<tbody>
|
1022
|
+
<tr style=3D"padding: 0; text-align: left; vertical-align: to=
|
1023
|
+
p" align=3D"left">=20
|
1024
|
+
<td class=3D"wrapper last" style=3D"-moz-hyphens: auto; -web=
|
1025
|
+
kit-hyphens: auto; border-collapse: collapse !important; color: #222222; fo=
|
1026
|
+
nt-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size:=
|
1027
|
+
14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; pa=
|
1028
|
+
dding: 10px 0px 0px; position: relative; text-align: left; vertical-align: =
|
1029
|
+
top; word-break: break-word" align=3D"left" valign=3D"top">=20
|
1030
|
+
<center style=3D"min-width: 580px; width: 100%"></center>=
|
1031
|
+
=20
|
1032
|
+
<table class=3D"twelve columns" style=3D"border-collapse: c=
|
1033
|
+
ollapse; border-spacing: 0; margin: 0 auto; padding: 0; text-align: left; v=
|
1034
|
+
ertical-align: top; width: 580px">=20
|
1035
|
+
<tbody>
|
1036
|
+
<tr style=3D"padding: 0; text-align: left; vertical-align=
|
1037
|
+
: top" align=3D"left">=20
|
1038
|
+
<td align=3D"center" style=3D"-moz-hyphens: auto; -webki=
|
1039
|
+
t-hyphens: auto; border-collapse: collapse !important; color: #222222; font=
|
1040
|
+
-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size: 1=
|
1041
|
+
4px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; padd=
|
1042
|
+
ing: 0px 0px 10px; text-align: left; vertical-align: top; word-break: break=
|
1043
|
+
-word" valign=3D"top">=20
|
1044
|
+
<center style=3D"min-width: 580px; width: 100%">=20
|
1045
|
+
<p style=3D"color: #f8842e; font-family: 'Open Sans', =
|
1046
|
+
Gill Sans, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: norm=
|
1047
|
+
al; line-height: 19px; margin: 0 0 10px; padding: 0; text-align: center" al=
|
1048
|
+
ign=3D"center">© 2014 AOL Inc. - All Rights Reserved</p>=20
|
1049
|
+
</center> </td>=20
|
1050
|
+
<td class=3D"expander" style=3D"-moz-hyphens: auto; -web=
|
1051
|
+
kit-hyphens: auto; border-collapse: collapse !important; color: #222222; fo=
|
1052
|
+
nt-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size:=
|
1053
|
+
14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; pa=
|
1054
|
+
dding: 0; text-align: left; vertical-align: top; visibility: hidden; width:=
|
1055
|
+
0px; word-break: break-word" align=3D"left" valign=3D"top"></td>=20
|
1056
|
+
</tr>=20
|
1057
|
+
</tbody>
|
1058
|
+
</table> </td>=20
|
1059
|
+
</tr>=20
|
1060
|
+
</tbody>
|
1061
|
+
</table>=20
|
1062
|
+
</center> </td>=20
|
1063
|
+
</tr>=20
|
1064
|
+
</tbody>
|
1065
|
+
</table>=20
|
1066
|
+
</center> </td>=20
|
1067
|
+
</tr>=20
|
1068
|
+
</tbody>
|
1069
|
+
</table>=20
|
1070
|
+
<table border=3D"0" cellpadding=3D"0" cellspacing=3D"0" height=3D"6" widt=
|
1071
|
+
h=3D"24" style=3D"border-collapse: collapse; border-spacing: 0; padding: 0;=
|
1072
|
+
text-align: left; vertical-align: top">=20
|
1073
|
+
<tbody>=20
|
1074
|
+
<tr style=3D"padding: 0; text-align: left; vertical-align: top" align=
|
1075
|
+
=3D"left">=20
|
1076
|
+
<td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
|
1077
|
+
e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
|
1078
|
+
, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
|
1079
|
+
ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
|
1080
|
+
cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
|
1081
|
+
border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8993=
|
1082
|
+
4&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
|
1083
|
+
5bc5af&p=3D1416612838684" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
|
1084
|
+
bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
|
1085
|
+
ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
|
1086
|
+
<td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
|
1087
|
+
e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
|
1088
|
+
, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
|
1089
|
+
ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
|
1090
|
+
cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
|
1091
|
+
border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8993=
|
1092
|
+
5&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
|
1093
|
+
5bc5af&p=3D1416612838684" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
|
1094
|
+
bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
|
1095
|
+
ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
|
1096
|
+
<td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
|
1097
|
+
e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
|
1098
|
+
, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
|
1099
|
+
ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
|
1100
|
+
cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
|
1101
|
+
border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8993=
|
1102
|
+
6&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
|
1103
|
+
5bc5af&p=3D1416612838684" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
|
1104
|
+
bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
|
1105
|
+
ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
|
1106
|
+
<td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
|
1107
|
+
e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
|
1108
|
+
, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
|
1109
|
+
ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
|
1110
|
+
cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
|
1111
|
+
border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8993=
|
1112
|
+
7&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
|
1113
|
+
5bc5af&p=3D1416612838684" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
|
1114
|
+
bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
|
1115
|
+
ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
|
1116
|
+
<td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
|
1117
|
+
e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
|
1118
|
+
, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
|
1119
|
+
ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
|
1120
|
+
cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
|
1121
|
+
border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8993=
|
1122
|
+
8&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
|
1123
|
+
5bc5af&p=3D1416612838684" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
|
1124
|
+
bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
|
1125
|
+
ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
|
1126
|
+
<td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
|
1127
|
+
e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
|
1128
|
+
, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
|
1129
|
+
ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
|
1130
|
+
cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
|
1131
|
+
border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8993=
|
1132
|
+
9&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
|
1133
|
+
5bc5af&p=3D1416612838684" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
|
1134
|
+
bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
|
1135
|
+
ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
|
1136
|
+
<td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
|
1137
|
+
e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
|
1138
|
+
, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
|
1139
|
+
ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
|
1140
|
+
cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
|
1141
|
+
border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8994=
|
1142
|
+
0&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
|
1143
|
+
5bc5af&p=3D1416612838684" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
|
1144
|
+
bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
|
1145
|
+
ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
|
1146
|
+
<td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
|
1147
|
+
e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
|
1148
|
+
, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
|
1149
|
+
ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
|
1150
|
+
cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
|
1151
|
+
border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8994=
|
1152
|
+
1&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
|
1153
|
+
5bc5af&p=3D1416612838684" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
|
1154
|
+
bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
|
1155
|
+
ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
|
1156
|
+
<td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
|
1157
|
+
e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
|
1158
|
+
, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
|
1159
|
+
ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
|
1160
|
+
cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
|
1161
|
+
border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8994=
|
1162
|
+
2&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
|
1163
|
+
5bc5af&p=3D1416612838684" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
|
1164
|
+
bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
|
1165
|
+
ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
|
1166
|
+
<td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
|
1167
|
+
e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
|
1168
|
+
, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
|
1169
|
+
ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
|
1170
|
+
cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
|
1171
|
+
border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8994=
|
1172
|
+
3&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
|
1173
|
+
5bc5af&p=3D1416612838684" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
|
1174
|
+
bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
|
1175
|
+
ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
|
1176
|
+
<td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
|
1177
|
+
e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
|
1178
|
+
, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
|
1179
|
+
ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
|
1180
|
+
cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
|
1181
|
+
border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8994=
|
1182
|
+
4&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
|
1183
|
+
5bc5af&p=3D1416612838684" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
|
1184
|
+
bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
|
1185
|
+
ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
|
1186
|
+
<td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
|
1187
|
+
e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
|
1188
|
+
, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
|
1189
|
+
ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
|
1190
|
+
cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
|
1191
|
+
border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8994=
|
1192
|
+
5&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
|
1193
|
+
5bc5af&p=3D1416612838684" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
|
1194
|
+
bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
|
1195
|
+
ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
|
1196
|
+
</tr>=20
|
1197
|
+
</tbody>=20
|
1198
|
+
</table> =20
|
1199
|
+
<div><img src=3D'https://a.b-io.me/o/Y1lM9w9S1KenVjis8KQ5APgyWV3loW8sBJshG=
|
1200
|
+
cDs43nQaWlkIsfqBOHxuuEy0dlLaL58u2f.ibt1zBpGZKU0XtH9ph34bJomLMC8caf.VuDWuc5T=
|
1201
|
+
dFb8g4.iWROnrITERraJJa94WrVlXwnqCU6HePaRnm9ajotVQlwQEj_xwtKtMgvq7yct5jZUFcI=
|
1202
|
+
5yrbev1fd1PDsBfHF36kXVHdzJFuwt4qYWtuvx1mNIOOoBtWhFWGduKelhYE96IDqH_LhODnsGb=
|
1203
|
+
otOsp_NXQmmFwKjnv9oLuyh3_x2Qu6ntXI5AsuQdvcN6iz8A--' width=3D'1' height=3D'1=
|
1204
|
+
' border=3D'0' align=3D'right'/></div>
|
1205
|
+
</body>
|
1206
|
+
</html>
|
1207
|
+
|
1208
|
+
|
1209
|
+
------=_Part_853825_1979294533.1416612838700
|
1210
|
+
Content-Type: message/delivery-status
|
1211
|
+
Content-Transfer-Encoding: 7bit
|
1212
|
+
|
1213
|
+
Reporting-MTA: dns; omr-m5.mx.aol.com
|
1214
|
+
X-Outbound-Mail-Relay-Queue-ID: CCBA43800007F
|
1215
|
+
X-Outbound-Mail-Relay-Sender: rfc822; shironeko@aol.example.jp
|
1216
|
+
Arrival-Date: Fri, 21 Nov 2014 17:14:34 -0500 (EST)
|
1217
|
+
Final-Recipient: rfc822; kijitora@example.co.jp
|
1218
|
+
Original-Recipient: rfc822;kijitora@example.co.jp
|
1219
|
+
Action: failed
|
1220
|
+
Status: 5.2.2
|
1221
|
+
Remote-MTA: dns; mx.example.co.jp
|
1222
|
+
Diagnostic-Code: smtp; 550 5.2.2 <kijitora@example.co.jp>... Mailbox Full
|
1223
|
+
|
1224
|
+
------=_Part_853825_1979294533.1416612838700
|
1225
|
+
Content-Type: message/rfc822
|
1226
|
+
|
1227
|
+
Return-Path: <shironeko@aol.example.jp>
|
1228
|
+
Received: from mtaout-aag02.mx.aol.com (mtaout-aag02.mx.aol.com [172.26.126.78])
|
1229
|
+
by omr-m5.mx.aol.com (Outbound Mail Relay) with ESMTP id CCBA43800007F
|
1230
|
+
for <kijitora@example.co.jp>; Fri, 21 Nov 2014 17:14:34 -0500 (EST)
|
1231
|
+
Received: from [192.0.2.5] (c135.kyoto.kyoto.ne.jp [192.0.2.135])
|
1232
|
+
(using TLSv1 with cipher AES128-SHA (128/128 bits))
|
1233
|
+
(No client certificate requested)
|
1234
|
+
by mtaout-aag02.mx.aol.com (MUA/Third Party Client Interface) with ESMTPSA id 64B2F38000096
|
1235
|
+
for <kijitora@example.co.jp>; Fri, 21 Nov 2014 17:14:32 -0500 (EST)
|
1236
|
+
From: "Shironeko, Nyanko" <shironeko@aol.example.jp>
|
1237
|
+
Content-Type: text/plain; charset=us-ascii
|
1238
|
+
Content-Transfer-Encoding: 7bit
|
1239
|
+
Subject: Nyaaaaan
|
1240
|
+
Message-Id: <C1435873-4AD3-4C83-8967-AA2A4A91ACF9@aol.example.jp>
|
1241
|
+
Date: Sat, 22 Nov 2014 07:14:32 +0900
|
1242
|
+
To: kijitora@example.co.jp
|
1243
|
+
Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\))
|
1244
|
+
X-Mailer: Apple Mail (2.1878.6)
|
1245
|
+
x-aol-global-disposition: G
|
1246
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mx.aol.com;
|
1247
|
+
s=20140625; t=1416608074;
|
1248
|
+
bh=t4RTq0wP7XXMOD4/Vy94p2VuCD+sZaGyZxAADhrV9sU=;
|
1249
|
+
h=From:To:Subject:Message-Id:Date:Mime-Version:Content-Type;
|
1250
|
+
b=W8fgQUDUd4w9ltc/aD9hg9x9hEMEGhnTV5eCOXcwoYInjQb8S3rG46EStXwdhdrO1
|
1251
|
+
+QmkrcFmmm5Gcyd+alUiIveqFAh2ume5P2DORt5iuT78dNjJBV44tz7IAkg0MY4dNe
|
1252
|
+
ef61iWqPOlYOlvvPzu1ONMiAuTRK8sI/udHLCjEM=
|
1253
|
+
x-aol-sid: 3039ac1a7e4e546fb9484bcf
|
1254
|
+
X-AOL-IP: 192.0.2.135
|
1255
|
+
|
1256
|
+
Message truncated.
|
1257
|
+
------=_Part_853825_1979294533.1416612838700--
|