sisimai 4.25.3 → 4.25.8
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 +5 -5
- data/.gitignore +1 -0
- data/.travis.yml +3 -2
- data/ANALYTICAL-PRECISION +60 -58
- data/Benchmarks.mk +5 -3
- data/CONTRIBUTING +4 -0
- data/ChangeLog.md +195 -1
- data/Developers.mk +3 -74
- data/Makefile +5 -1
- data/README-JA.md +30 -54
- data/README.md +31 -54
- data/Repository.mk +1 -1
- data/lib/sisimai.rb +19 -73
- data/lib/sisimai/address.rb +13 -17
- data/lib/sisimai/arf.rb +26 -32
- data/lib/sisimai/data.rb +16 -39
- data/lib/sisimai/datetime.rb +3 -3
- data/lib/sisimai/lhost.rb +79 -0
- data/lib/sisimai/lhost/activehunter.rb +78 -0
- data/lib/sisimai/lhost/amavis.rb +166 -0
- data/lib/sisimai/lhost/amazonses.rb +343 -0
- data/lib/sisimai/lhost/amazonworkmail.rb +131 -0
- data/lib/sisimai/lhost/aol.rb +128 -0
- data/lib/sisimai/lhost/apachejames.rb +120 -0
- data/lib/sisimai/lhost/barracuda.rb +94 -0
- data/lib/sisimai/lhost/bigfoot.rb +126 -0
- data/lib/sisimai/lhost/biglobe.rb +101 -0
- data/lib/sisimai/lhost/courier.rb +146 -0
- data/lib/sisimai/lhost/domino.rb +118 -0
- data/lib/sisimai/lhost/einsundeins.rb +115 -0
- data/lib/sisimai/lhost/exchange2003.rb +230 -0
- data/lib/sisimai/lhost/exchange2007.rb +153 -0
- data/lib/sisimai/{bite/email → lhost}/exim.rb +136 -175
- data/lib/sisimai/{bite/email → lhost}/ezweb.rb +65 -97
- data/lib/sisimai/{bite/email → lhost}/facebook.rb +61 -98
- data/lib/sisimai/lhost/fml.rb +119 -0
- data/lib/sisimai/{bite/email/google.rb → lhost/gmail.rb} +58 -97
- data/lib/sisimai/lhost/gmx.rb +114 -0
- data/lib/sisimai/lhost/googlegroups.rb +77 -0
- data/lib/sisimai/lhost/gsuite.rb +196 -0
- data/lib/sisimai/lhost/imailserver.rb +118 -0
- data/lib/sisimai/lhost/interscanmss.rb +88 -0
- data/lib/sisimai/lhost/kddi.rb +113 -0
- data/lib/sisimai/lhost/mailfoundry.rb +83 -0
- data/lib/sisimai/lhost/mailmarshalsmtp.rb +127 -0
- data/lib/sisimai/{bite/email → lhost}/mailru.rb +65 -101
- data/lib/sisimai/lhost/mcafee.rb +119 -0
- data/lib/sisimai/lhost/messagelabs.rb +123 -0
- data/lib/sisimai/lhost/messagingserver.rb +152 -0
- data/lib/sisimai/lhost/mfilter.rb +120 -0
- data/lib/sisimai/{bite/email → lhost}/mxlogic.rb +54 -92
- data/lib/sisimai/lhost/notes.rb +126 -0
- data/lib/sisimai/lhost/office365.rb +216 -0
- data/lib/sisimai/{bite/email → lhost}/opensmtpd.rb +42 -78
- data/lib/sisimai/lhost/outlook.rb +133 -0
- data/lib/sisimai/lhost/postfix.rb +249 -0
- data/lib/sisimai/lhost/powermta.rb +120 -0
- data/lib/sisimai/{bite/email → lhost}/qmail.rb +47 -80
- data/lib/sisimai/lhost/receivingses.rb +132 -0
- data/lib/sisimai/lhost/sendgrid.rb +150 -0
- data/lib/sisimai/lhost/sendmail.rb +207 -0
- data/lib/sisimai/lhost/surfcontrol.rb +105 -0
- data/lib/sisimai/lhost/v5sendmail.rb +150 -0
- data/lib/sisimai/lhost/verizon.rb +164 -0
- data/lib/sisimai/lhost/x1.rb +78 -0
- data/lib/sisimai/lhost/x2.rb +71 -0
- data/lib/sisimai/lhost/x3.rb +92 -0
- data/lib/sisimai/{bite/email → lhost}/x4.rb +48 -84
- data/lib/sisimai/lhost/x5.rb +114 -0
- data/lib/sisimai/lhost/x6.rb +74 -0
- data/lib/sisimai/lhost/yahoo.rb +101 -0
- data/lib/sisimai/lhost/yandex.rb +123 -0
- data/lib/sisimai/lhost/zoho.rb +109 -0
- data/lib/sisimai/mail.rb +36 -25
- data/lib/sisimai/mail/maildir.rb +31 -36
- data/lib/sisimai/mail/mbox.rb +8 -12
- data/lib/sisimai/mail/memory.rb +18 -20
- data/lib/sisimai/mail/stdin.rb +8 -12
- data/lib/sisimai/mda.rb +7 -13
- data/lib/sisimai/message.rb +308 -74
- data/lib/sisimai/mime.rb +28 -33
- data/lib/sisimai/order.rb +179 -4
- data/lib/sisimai/reason.rb +29 -20
- data/lib/sisimai/reason/norelaying.rb +1 -1
- data/lib/sisimai/reason/rejected.rb +1 -0
- data/lib/sisimai/reason/userunknown.rb +13 -6
- data/lib/sisimai/reason/virusdetected.rb +1 -0
- data/lib/sisimai/rfc1894.rb +3 -3
- data/lib/sisimai/rfc3464.rb +49 -67
- data/lib/sisimai/rfc3834.rb +14 -26
- data/lib/sisimai/rfc5322.rb +21 -33
- data/lib/sisimai/rhost.rb +10 -12
- data/lib/sisimai/rhost/cox.rb +112 -0
- data/lib/sisimai/rhost/exchangeonline.rb +26 -23
- data/lib/sisimai/rhost/franceptt.rb +120 -24
- data/lib/sisimai/rhost/godaddy.rb +1 -1
- data/lib/sisimai/rhost/iua.rb +39 -0
- data/lib/sisimai/rhost/spectrum.rb +73 -0
- data/lib/sisimai/smtp.rb +0 -13
- data/lib/sisimai/smtp/error.rb +7 -7
- data/lib/sisimai/string.rb +3 -11
- data/lib/sisimai/version.rb +1 -1
- data/set-of-emails/README.md +5 -5
- data/set-of-emails/maildir/bsd/arf-24.eml +50 -0
- data/set-of-emails/maildir/bsd/{email-activehunter-01.eml → lhost-activehunter-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-activehunter-02.eml → lhost-activehunter-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amavis-01.eml → lhost-amavis-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amavis-02.eml → lhost-amavis-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/lhost-amavis-03.eml +90 -0
- data/set-of-emails/maildir/bsd/{email-amazonses-01.eml → lhost-amazonses-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonses-02.eml → lhost-amazonses-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonses-03.eml → lhost-amazonses-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonses-05.eml → lhost-amazonses-05.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonses-06.eml → lhost-amazonses-06.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonses-07.eml → lhost-amazonses-07.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonses-08.eml → lhost-amazonses-08.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonses-09.eml → lhost-amazonses-09.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonses-10.eml → lhost-amazonses-10.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonses-11.eml → lhost-amazonses-11.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonses-12.eml → lhost-amazonses-12.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonses-13.eml → lhost-amazonses-13.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonses-14.eml → lhost-amazonses-14.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonses-15.eml → lhost-amazonses-15.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonses-16.eml → lhost-amazonses-16.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonses-17.eml → lhost-amazonses-17.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonses-18.eml → lhost-amazonses-18.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonses-19.eml → lhost-amazonses-19.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonses-20.eml → lhost-amazonses-20.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonses-21.eml → lhost-amazonses-21.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonworkmail-01.eml → lhost-amazonworkmail-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonworkmail-02.eml → lhost-amazonworkmail-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonworkmail-03.eml → lhost-amazonworkmail-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonworkmail-04.eml → lhost-amazonworkmail-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonworkmail-05.eml → lhost-amazonworkmail-05.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonworkmail-07.eml → lhost-amazonworkmail-07.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-amazonworkmail-08.eml → lhost-amazonworkmail-08.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-aol-01.eml → lhost-aol-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-aol-02.eml → lhost-aol-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-aol-03.eml → lhost-aol-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-aol-04.eml → lhost-aol-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-aol-05.eml → lhost-aol-05.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-aol-06.eml → lhost-aol-06.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-apachejames-01.eml → lhost-apachejames-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/lhost-barracuda-01.eml +67 -0
- data/set-of-emails/maildir/bsd/lhost-barracuda-02.eml +71 -0
- data/set-of-emails/maildir/bsd/{email-bigfoot-02.eml → lhost-bigfoot-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-biglobe-01.eml → lhost-biglobe-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-courier-01.eml → lhost-courier-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-courier-02.eml → lhost-courier-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-courier-03.eml → lhost-courier-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-courier-04.eml → lhost-courier-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-domino-01.eml → lhost-domino-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-domino-02.eml → lhost-domino-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-domino-03.eml → lhost-domino-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-einsundeins-02.eml → lhost-einsundeins-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/lhost-einsundeins-03.eml +66 -0
- data/set-of-emails/maildir/bsd/{email-exchange2003-01.eml → lhost-exchange2003-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exchange2003-02.eml → lhost-exchange2003-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exchange2003-03.eml → lhost-exchange2003-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exchange2003-04.eml → lhost-exchange2003-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exchange2003-05.eml → lhost-exchange2003-05.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exchange2003-07.eml → lhost-exchange2003-07.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exchange2007-01.eml → lhost-exchange2007-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exchange2007-02.eml → lhost-exchange2007-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exchange2007-03.eml → lhost-exchange2007-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exchange2007-04.eml → lhost-exchange2007-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/lhost-exchange2007-05.eml +1469 -0
- data/set-of-emails/maildir/bsd/lhost-exchange2007-06.eml +764 -0
- data/set-of-emails/maildir/bsd/lhost-exchange2007-07.eml +128 -0
- data/set-of-emails/maildir/bsd/{email-exim-01.eml → lhost-exim-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-02.eml → lhost-exim-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-03.eml → lhost-exim-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-04.eml → lhost-exim-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-05.eml → lhost-exim-05.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-06.eml → lhost-exim-06.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-07.eml → lhost-exim-07.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-08.eml → lhost-exim-08.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-29.eml → lhost-exim-29.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-30.eml → lhost-exim-30.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-31.eml → lhost-exim-31.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-32.eml → lhost-exim-32.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-33.eml → lhost-exim-33.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-34.eml → lhost-exim-34.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-35.eml → lhost-exim-35.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-36.eml → lhost-exim-36.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-37.eml → lhost-exim-37.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-38.eml → lhost-exim-38.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-39.eml → lhost-exim-39.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-40.eml → lhost-exim-40.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-41.eml → lhost-exim-41.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-42.eml → lhost-exim-42.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-43.eml → lhost-exim-43.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-44.eml → lhost-exim-44.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-45.eml → lhost-exim-45.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-46.eml → lhost-exim-46.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-47.eml → lhost-exim-47.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-48.eml → lhost-exim-48.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-49.eml → lhost-exim-49.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-50.eml → lhost-exim-50.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-51.eml → lhost-exim-51.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-52.eml → lhost-exim-52.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-53.eml → lhost-exim-53.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-54.eml → lhost-exim-54.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-55.eml → lhost-exim-55.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-56.eml → lhost-exim-56.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-57.eml → lhost-exim-57.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-58.eml → lhost-exim-58.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-59.eml → lhost-exim-59.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-exim-60.eml → lhost-exim-60.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-ezweb-01.eml → lhost-ezweb-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-ezweb-02.eml → lhost-ezweb-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-ezweb-03.eml → lhost-ezweb-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-ezweb-04.eml → lhost-ezweb-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-ezweb-05.eml → lhost-ezweb-05.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-ezweb-07.eml → lhost-ezweb-07.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-ezweb-08.eml → lhost-ezweb-08.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-facebook-03.eml → lhost-facebook-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-facebook-04.eml → lhost-facebook-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-fml-02.eml → lhost-fml-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-fml-03.eml → lhost-fml-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-google-01.eml → lhost-gmail-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-google-03.eml → lhost-gmail-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-google-04.eml → lhost-gmail-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-google-05.eml → lhost-gmail-05.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-google-06.eml → lhost-gmail-06.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-google-07.eml → lhost-gmail-07.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-google-08.eml → lhost-gmail-08.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-google-09.eml → lhost-gmail-09.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-google-10.eml → lhost-gmail-10.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-google-11.eml → lhost-gmail-11.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-google-15.eml → lhost-gmail-15.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-google-16.eml → lhost-gmail-16.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-google-17.eml → lhost-gmail-17.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-google-18.eml → lhost-gmail-18.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-google-19.eml → lhost-gmail-19.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-gmx-01.eml → lhost-gmx-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-gmx-02.eml → lhost-gmx-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-gmx-03.eml → lhost-gmx-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-gmx-04.eml → lhost-gmx-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/lhost-googlegroups-01.eml +116 -0
- data/set-of-emails/maildir/bsd/lhost-googlegroups-02.eml +114 -0
- data/set-of-emails/maildir/bsd/lhost-googlegroups-03.eml +116 -0
- data/set-of-emails/maildir/bsd/lhost-googlegroups-04.eml +116 -0
- data/set-of-emails/maildir/bsd/lhost-googlegroups-05.eml +116 -0
- data/set-of-emails/maildir/bsd/lhost-googlegroups-06.eml +116 -0
- data/set-of-emails/maildir/bsd/lhost-googlegroups-07.eml +116 -0
- data/set-of-emails/maildir/bsd/lhost-googlegroups-08.eml +115 -0
- data/set-of-emails/maildir/bsd/lhost-googlegroups-09.eml +116 -0
- data/set-of-emails/maildir/bsd/lhost-googlegroups-10.eml +116 -0
- data/set-of-emails/maildir/bsd/lhost-googlegroups-11.eml +116 -0
- data/set-of-emails/maildir/bsd/lhost-googlegroups-12.eml +116 -0
- data/set-of-emails/maildir/bsd/lhost-googlegroups-13.eml +115 -0
- data/set-of-emails/maildir/bsd/lhost-googlegroups-14.eml +127 -0
- data/set-of-emails/maildir/bsd/{email-gsuite-01.eml → lhost-gsuite-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-gsuite-02.eml → lhost-gsuite-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-gsuite-03.eml → lhost-gsuite-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-gsuite-04.eml → lhost-gsuite-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-gsuite-05.eml → lhost-gsuite-05.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-gsuite-06.eml → lhost-gsuite-06.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-gsuite-07.eml → lhost-gsuite-07.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-gsuite-08.eml → lhost-gsuite-08.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-gsuite-09.eml → lhost-gsuite-09.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-gsuite-10.eml → lhost-gsuite-10.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-gsuite-11.eml → lhost-gsuite-11.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-gsuite-12.eml → lhost-gsuite-12.eml} +0 -0
- data/set-of-emails/maildir/bsd/lhost-gsuite-13.eml +261 -0
- data/set-of-emails/maildir/bsd/lhost-gsuite-14.eml +273 -0
- data/set-of-emails/maildir/bsd/{email-imailserver-01.eml → lhost-imailserver-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-imailserver-02.eml → lhost-imailserver-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-imailserver-03.eml → lhost-imailserver-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-imailserver-04.eml → lhost-imailserver-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-imailserver-06.eml → lhost-imailserver-06.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-interscanmss-01.eml → lhost-interscanmss-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/lhost-interscanmss-02.eml +70 -0
- data/set-of-emails/maildir/bsd/lhost-interscanmss-03.eml +73 -0
- data/set-of-emails/maildir/bsd/{email-kddi-01.eml → lhost-kddi-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-kddi-02.eml → lhost-kddi-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-kddi-03.eml → lhost-kddi-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mailfoundry-01.eml → lhost-mailfoundry-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mailfoundry-02.eml → lhost-mailfoundry-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mailmarshalsmtp-02.eml → lhost-mailmarshalsmtp-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mailru-01.eml → lhost-mailru-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mailru-02.eml → lhost-mailru-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mailru-03.eml → lhost-mailru-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mailru-04.eml → lhost-mailru-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mailru-05.eml → lhost-mailru-05.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mailru-06.eml → lhost-mailru-06.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mailru-07.eml → lhost-mailru-07.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mailru-08.eml → lhost-mailru-08.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mailru-09.eml → lhost-mailru-09.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mailru-10.eml → lhost-mailru-10.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mcafee-01.eml → lhost-mcafee-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mcafee-02.eml → lhost-mcafee-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mcafee-03.eml → lhost-mcafee-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mcafee-04.eml → lhost-mcafee-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mcafee-05.eml → lhost-mcafee-05.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-messagelabs-01.eml → lhost-messagelabs-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-messagelabs-02.eml → lhost-messagelabs-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-messagelabs-03.eml → lhost-messagelabs-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-messagingserver-01.eml → lhost-messagingserver-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-messagingserver-02.eml → lhost-messagingserver-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-messagingserver-03.eml → lhost-messagingserver-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-messagingserver-04.eml → lhost-messagingserver-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-messagingserver-05.eml → lhost-messagingserver-05.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-messagingserver-06.eml → lhost-messagingserver-06.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-messagingserver-07.eml → lhost-messagingserver-07.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-messagingserver-08.eml → lhost-messagingserver-08.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-messagingserver-09.eml → lhost-messagingserver-09.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-messagingserver-10.eml → lhost-messagingserver-10.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-messagingserver-11.eml → lhost-messagingserver-11.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-messagingserver-12.eml → lhost-messagingserver-12.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mfilter-01.eml → lhost-mfilter-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mfilter-02.eml → lhost-mfilter-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mfilter-03.eml → lhost-mfilter-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mfilter-04.eml → lhost-mfilter-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mxlogic-01.eml → lhost-mxlogic-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mxlogic-02.eml → lhost-mxlogic-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-mxlogic-03.eml → lhost-mxlogic-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-notes-01.eml → lhost-notes-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-notes-02.eml → lhost-notes-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-notes-03.eml → lhost-notes-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-office365-01.eml → lhost-office365-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-office365-02.eml → lhost-office365-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-office365-03.eml → lhost-office365-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-office365-04.eml → lhost-office365-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-office365-05.eml → lhost-office365-05.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-office365-06.eml → lhost-office365-06.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-office365-07.eml → lhost-office365-07.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-office365-08.eml → lhost-office365-08.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-office365-09.eml → lhost-office365-09.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-office365-10.eml → lhost-office365-10.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-office365-11.eml → lhost-office365-11.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-office365-12.eml → lhost-office365-12.eml} +0 -0
- data/set-of-emails/maildir/bsd/lhost-office365-13.eml +259 -0
- data/set-of-emails/maildir/bsd/{email-opensmtpd-01.eml → lhost-opensmtpd-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-opensmtpd-02.eml → lhost-opensmtpd-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-opensmtpd-03.eml → lhost-opensmtpd-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-opensmtpd-04.eml → lhost-opensmtpd-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-opensmtpd-05.eml → lhost-opensmtpd-05.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-opensmtpd-06.eml → lhost-opensmtpd-06.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-outlook-01.eml → lhost-outlook-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-outlook-02.eml → lhost-outlook-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-outlook-03.eml → lhost-outlook-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-outlook-04.eml → lhost-outlook-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-outlook-06.eml → lhost-outlook-06.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-outlook-07.eml → lhost-outlook-07.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-outlook-08.eml → lhost-outlook-08.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-outlook-09.eml → lhost-outlook-09.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-01.eml → lhost-postfix-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-02.eml → lhost-postfix-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-03.eml → lhost-postfix-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-04.eml → lhost-postfix-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-05.eml → lhost-postfix-05.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-06.eml → lhost-postfix-06.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-07.eml → lhost-postfix-07.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-08.eml → lhost-postfix-08.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-09.eml → lhost-postfix-09.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-10.eml → lhost-postfix-10.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-11.eml → lhost-postfix-11.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-13.eml → lhost-postfix-13.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-14.eml → lhost-postfix-14.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-15.eml → lhost-postfix-15.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-16.eml → lhost-postfix-16.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-17.eml → lhost-postfix-17.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-28.eml → lhost-postfix-28.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-29.eml → lhost-postfix-29.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-30.eml → lhost-postfix-30.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-31.eml → lhost-postfix-31.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-32.eml → lhost-postfix-32.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-33.eml → lhost-postfix-33.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-34.eml → lhost-postfix-34.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-35.eml → lhost-postfix-35.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-36.eml → lhost-postfix-36.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-37.eml → lhost-postfix-37.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-38.eml → lhost-postfix-38.eml} +1 -1
- data/set-of-emails/maildir/bsd/{email-postfix-39.eml → lhost-postfix-39.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-40.eml → lhost-postfix-40.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-41.eml → lhost-postfix-41.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-42.eml → lhost-postfix-42.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-43.eml → lhost-postfix-43.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-44.eml → lhost-postfix-44.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-45.eml → lhost-postfix-45.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-46.eml → lhost-postfix-46.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-47.eml → lhost-postfix-47.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-48.eml → lhost-postfix-48.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-49.eml → lhost-postfix-49.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-50.eml → lhost-postfix-50.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-51.eml → lhost-postfix-51.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-52.eml → lhost-postfix-52.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-53.eml → lhost-postfix-53.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-54.eml → lhost-postfix-54.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-55.eml → lhost-postfix-55.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-56.eml → lhost-postfix-56.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-57.eml → lhost-postfix-57.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-58.eml → lhost-postfix-58.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-59.eml → lhost-postfix-59.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-60.eml → lhost-postfix-60.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-postfix-61.eml → lhost-postfix-61.eml} +0 -0
- data/set-of-emails/maildir/bsd/lhost-postfix-62.eml +105 -0
- data/set-of-emails/maildir/bsd/lhost-postfix-63.eml +85 -0
- data/set-of-emails/maildir/bsd/lhost-postfix-64.eml +96 -0
- data/set-of-emails/maildir/bsd/lhost-postfix-65.eml +69 -0
- data/set-of-emails/maildir/bsd/{rfc3464-05.eml → lhost-powermta-01.eml} +19 -18
- data/set-of-emails/maildir/bsd/lhost-powermta-02.eml +58 -0
- data/set-of-emails/maildir/bsd/lhost-powermta-03.eml +71 -0
- data/set-of-emails/maildir/bsd/{email-qmail-01.eml → lhost-qmail-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-qmail-02.eml → lhost-qmail-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-qmail-03.eml → lhost-qmail-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-qmail-04.eml → lhost-qmail-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-qmail-05.eml → lhost-qmail-05.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-qmail-06.eml → lhost-qmail-06.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-qmail-07.eml → lhost-qmail-07.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-qmail-08.eml → lhost-qmail-08.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-qmail-09.eml → lhost-qmail-09.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-qmail-10.eml → lhost-qmail-10.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-receivingses-01.eml → lhost-receivingses-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-receivingses-02.eml → lhost-receivingses-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-receivingses-03.eml → lhost-receivingses-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-receivingses-04.eml → lhost-receivingses-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-receivingses-05.eml → lhost-receivingses-05.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-receivingses-06.eml → lhost-receivingses-06.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-receivingses-07.eml → lhost-receivingses-07.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendgrid-01.eml → lhost-sendgrid-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendgrid-02.eml → lhost-sendgrid-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendgrid-03.eml → lhost-sendgrid-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-01.eml → lhost-sendmail-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-02.eml → lhost-sendmail-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-03.eml → lhost-sendmail-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-04.eml → lhost-sendmail-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-05.eml → lhost-sendmail-05.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-06.eml → lhost-sendmail-06.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-07.eml → lhost-sendmail-07.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-08.eml → lhost-sendmail-08.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-09.eml → lhost-sendmail-09.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-10.eml → lhost-sendmail-10.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-11.eml → lhost-sendmail-11.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-12.eml → lhost-sendmail-12.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-13.eml → lhost-sendmail-13.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-14.eml → lhost-sendmail-14.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-15.eml → lhost-sendmail-15.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-16.eml → lhost-sendmail-16.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-17.eml → lhost-sendmail-17.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-18.eml → lhost-sendmail-18.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-19.eml → lhost-sendmail-19.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-20.eml → lhost-sendmail-20.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-21.eml → lhost-sendmail-21.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-22.eml → lhost-sendmail-22.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-24.eml → lhost-sendmail-24.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-25.eml → lhost-sendmail-25.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-26.eml → lhost-sendmail-26.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-27.eml → lhost-sendmail-27.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-28.eml → lhost-sendmail-28.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-29.eml → lhost-sendmail-29.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-30.eml → lhost-sendmail-30.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-31.eml → lhost-sendmail-31.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-32.eml → lhost-sendmail-32.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-33.eml → lhost-sendmail-33.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-34.eml → lhost-sendmail-34.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-35.eml → lhost-sendmail-35.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-36.eml → lhost-sendmail-36.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-37.eml → lhost-sendmail-37.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-38.eml → lhost-sendmail-38.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-39.eml → lhost-sendmail-39.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-40.eml → lhost-sendmail-40.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-41.eml → lhost-sendmail-41.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-42.eml → lhost-sendmail-42.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-43.eml → lhost-sendmail-43.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-44.eml → lhost-sendmail-44.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-45.eml → lhost-sendmail-45.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-46.eml → lhost-sendmail-46.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-47.eml → lhost-sendmail-47.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-48.eml → lhost-sendmail-48.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-49.eml → lhost-sendmail-49.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-50.eml → lhost-sendmail-50.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-51.eml → lhost-sendmail-51.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-52.eml → lhost-sendmail-52.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-53.eml → lhost-sendmail-53.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-54.eml → lhost-sendmail-54.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-55.eml → lhost-sendmail-55.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-sendmail-56.eml → lhost-sendmail-56.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-surfcontrol-01.eml → lhost-surfcontrol-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-surfcontrol-02.eml → lhost-surfcontrol-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-surfcontrol-03.eml → lhost-surfcontrol-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-v5sendmail-01.eml → lhost-v5sendmail-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-v5sendmail-02.eml → lhost-v5sendmail-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-v5sendmail-03.eml → lhost-v5sendmail-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-v5sendmail-04.eml → lhost-v5sendmail-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-v5sendmail-05.eml → lhost-v5sendmail-05.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-v5sendmail-06.eml → lhost-v5sendmail-06.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-v5sendmail-07.eml → lhost-v5sendmail-07.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-verizon-01.eml → lhost-verizon-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-verizon-02.eml → lhost-verizon-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-x1-01.eml → lhost-x1-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-x1-02.eml → lhost-x1-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-x2-01.eml → lhost-x2-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-x2-02.eml → lhost-x2-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-x2-03.eml → lhost-x2-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-x2-04.eml → lhost-x2-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-x2-05.eml → lhost-x2-05.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-x3-01.eml → lhost-x3-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-x3-02.eml → lhost-x3-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-x3-03.eml → lhost-x3-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-x3-05.eml → lhost-x3-05.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-x4-01.eml → lhost-x4-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-x4-08.eml → lhost-x4-08.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-x5-01.eml → lhost-x5-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/lhost-x6-01.eml +71 -0
- data/set-of-emails/maildir/bsd/lhost-x6-02.eml +68 -0
- data/set-of-emails/maildir/bsd/{email-yahoo-01.eml → lhost-yahoo-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-yahoo-02.eml → lhost-yahoo-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-yahoo-03.eml → lhost-yahoo-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-yahoo-04.eml → lhost-yahoo-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-yahoo-05.eml → lhost-yahoo-05.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-yahoo-06.eml → lhost-yahoo-06.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-yahoo-07.eml → lhost-yahoo-07.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-yahoo-08.eml → lhost-yahoo-08.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-yahoo-09.eml → lhost-yahoo-09.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-yahoo-10.eml → lhost-yahoo-10.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-yahoo-11.eml → lhost-yahoo-11.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-yahoo-12.eml → lhost-yahoo-12.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-yahoo-13.eml → lhost-yahoo-13.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-yahoo-14.eml → lhost-yahoo-14.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-yandex-01.eml → lhost-yandex-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-yandex-02.eml → lhost-yandex-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-yandex-03.eml → lhost-yandex-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-zoho-01.eml → lhost-zoho-01.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-zoho-02.eml → lhost-zoho-02.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-zoho-03.eml → lhost-zoho-03.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-zoho-04.eml → lhost-zoho-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/{email-zoho-05.eml → lhost-zoho-05.eml} +0 -0
- data/set-of-emails/maildir/bsd/rfc3834-03.eml +26 -0
- data/set-of-emails/maildir/bsd/{rfc3464-41.eml → rfc3834-04.eml} +0 -0
- data/set-of-emails/maildir/bsd/rhost-cox-01.eml +192 -0
- data/set-of-emails/maildir/bsd/rhost-franceptt-04.eml +66 -0
- data/set-of-emails/maildir/bsd/rhost-franceptt-05.eml +96 -0
- data/set-of-emails/maildir/bsd/rhost-franceptt-06.eml +100 -0
- data/set-of-emails/maildir/bsd/rhost-franceptt-07.eml +97 -0
- data/set-of-emails/maildir/bsd/rhost-franceptt-08.eml +78 -0
- data/set-of-emails/maildir/bsd/rhost-franceptt-10.eml +79 -0
- data/set-of-emails/maildir/bsd/rhost-franceptt-11.eml +96 -0
- data/set-of-emails/maildir/bsd/rhost-iua-01.eml +70 -0
- data/set-of-emails/maildir/bsd/rhost-spectrum-01.eml +111 -0
- data/set-of-emails/maildir/dos/{email-activehunter-01.eml → lhost-activehunter-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-amavis-01.eml → lhost-amavis-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-amazonses-01.eml → lhost-amazonses-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-amazonworkmail-01.eml → lhost-amazonworkmail-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-aol-01.eml → lhost-aol-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-apachejames-01.eml → lhost-apachejames-01.eml} +0 -0
- data/set-of-emails/maildir/dos/lhost-barracuda-01.eml +67 -0
- data/set-of-emails/maildir/dos/{email-bigfoot-01.eml → lhost-bigfoot-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-biglobe-01.eml → lhost-biglobe-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-courier-01.eml → lhost-courier-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-domino-01.eml → lhost-domino-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-einsundeins-01.eml → lhost-einsundeins-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-exchange-01.eml → lhost-exchange-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-exchange2003-01.eml → lhost-exchange2003-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-exchange2007-01.eml → lhost-exchange2007-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-exim-01.eml → lhost-exim-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-ezweb-01.eml → lhost-ezweb-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-facebook-01.eml → lhost-facebook-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-google-01.eml → lhost-gmail-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-gmx-01.eml → lhost-gmx-01.eml} +0 -0
- data/set-of-emails/maildir/dos/lhost-googlegroups-01.eml +116 -0
- data/set-of-emails/maildir/dos/{email-gsuite-01.eml → lhost-gsuite-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-imailserver-01.eml → lhost-imailserver-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-interscanmss-01.eml → lhost-interscanmss-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-kddi-01.eml → lhost-kddi-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-mailfoundry-01.eml → lhost-mailfoundry-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-mailmarshalsmtp-01.eml → lhost-mailmarshalsmtp-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-mailru-01.eml → lhost-mailru-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-mcafee-01.eml → lhost-mcafee-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-messagelabs-01.eml → lhost-messagelabs-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-messagingserver-01.eml → lhost-messagingserver-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-mfilter-01.eml → lhost-mfilter-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-mxlogic-01.eml → lhost-mxlogic-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-notes-01.eml → lhost-notes-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-office365-01.eml → lhost-office365-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-opensmtpd-01.eml → lhost-opensmtpd-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-outlook-01.eml → lhost-outlook-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-postfix-01.eml → lhost-postfix-01.eml} +0 -0
- data/set-of-emails/maildir/dos/lhost-powermta-01.eml +64 -0
- data/set-of-emails/maildir/dos/{email-qmail-01.eml → lhost-qmail-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-receivingses-01.eml → lhost-receivingses-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-sendgrid-01.eml → lhost-sendgrid-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-sendmail-01.eml → lhost-sendmail-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-surfcontrol-01.eml → lhost-surfcontrol-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-v5sendmail-01.eml → lhost-v5sendmail-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-verizon-01.eml → lhost-verizon-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-x1-01.eml → lhost-x1-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-x2-01.eml → lhost-x2-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-x3-01.eml → lhost-x3-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-x4-01.eml → lhost-x4-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-x5-01.eml → lhost-x5-01.eml} +0 -0
- data/set-of-emails/maildir/dos/lhost-x6-01.eml +71 -0
- data/set-of-emails/maildir/dos/{email-yahoo-01.eml → lhost-yahoo-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-yandex-01.eml → lhost-yandex-01.eml} +0 -0
- data/set-of-emails/maildir/dos/{email-zoho-01.eml → lhost-zoho-01.eml} +0 -0
- data/set-of-emails/maildir/dos/rhost-iua-01.eml +70 -0
- data/set-of-emails/maildir/mac/{email-activehunter-01.eml → lhost-activehunter-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-amavis-01.eml → lhost-amavis-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-amazonses-01.eml → lhost-amazonses-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-amazonworkmail-01.eml → lhost-amazonworkmail-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-aol-01.eml → lhost-aol-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-apachejames-01.eml → lhost-apachejames-01.eml} +0 -0
- data/set-of-emails/maildir/mac/lhost-barracuda-01.eml +1 -4
- data/set-of-emails/maildir/mac/{email-bigfoot-01.eml → lhost-bigfoot-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-biglobe-01.eml → lhost-biglobe-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-courier-01.eml → lhost-courier-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-domino-01.eml → lhost-domino-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-einsundeins-01.eml → lhost-einsundeins-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-exchange-01.eml → lhost-exchange-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-exchange2003-01.eml → lhost-exchange2003-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-exchange2007-01.eml → lhost-exchange2007-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-exim-01.eml → lhost-exim-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-ezweb-01.eml → lhost-ezweb-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-facebook-01.eml → lhost-facebook-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-google-01.eml → lhost-gmail-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-gmx-01.eml → lhost-gmx-01.eml} +0 -0
- data/set-of-emails/maildir/mac/lhost-googlegroups-01.eml +1 -1
- data/set-of-emails/maildir/mac/{email-gsuite-01.eml → lhost-gsuite-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-imailserver-01.eml → lhost-imailserver-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-interscanmss-01.eml → lhost-interscanmss-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-kddi-01.eml → lhost-kddi-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-mailfoundry-01.eml → lhost-mailfoundry-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-mailmarshalsmtp-01.eml → lhost-mailmarshalsmtp-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-mailru-01.eml → lhost-mailru-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-mcafee-01.eml → lhost-mcafee-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-messagelabs-01.eml → lhost-messagelabs-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-messagingserver-01.eml → lhost-messagingserver-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-mfilter-01.eml → lhost-mfilter-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-mxlogic-01.eml → lhost-mxlogic-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-notes-01.eml → lhost-notes-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-office365-01.eml → lhost-office365-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-opensmtpd-01.eml → lhost-opensmtpd-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-outlook-01.eml → lhost-outlook-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-postfix-01.eml → lhost-postfix-01.eml} +0 -0
- data/set-of-emails/maildir/mac/lhost-powermta-01.eml +1 -4
- data/set-of-emails/maildir/mac/{email-qmail-01.eml → lhost-qmail-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-receivingses-01.eml → lhost-receivingses-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-sendgrid-01.eml → lhost-sendgrid-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-sendmail-01.eml → lhost-sendmail-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-surfcontrol-01.eml → lhost-surfcontrol-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-v5sendmail-01.eml → lhost-v5sendmail-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-verizon-01.eml → lhost-verizon-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-x1-01.eml → lhost-x1-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-x2-01.eml → lhost-x2-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-x3-01.eml → lhost-x3-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-x4-01.eml → lhost-x4-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-x5-01.eml → lhost-x5-01.eml} +0 -0
- data/set-of-emails/maildir/mac/lhost-x6-01.eml +1 -3
- data/set-of-emails/maildir/mac/{email-yahoo-01.eml → lhost-yahoo-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-yandex-01.eml → lhost-yandex-01.eml} +0 -0
- data/set-of-emails/maildir/mac/{email-zoho-01.eml → lhost-zoho-01.eml} +0 -0
- data/set-of-emails/maildir/mac/rhost-iua-01.eml +1 -4
- metadata +614 -584
- data/fig/sisimai-architecture.png +0 -0
- data/lib/sisimai/bite.rb +0 -37
- data/lib/sisimai/bite/email.rb +0 -61
- data/lib/sisimai/bite/email/activehunter.rb +0 -117
- data/lib/sisimai/bite/email/amavis.rb +0 -133
- data/lib/sisimai/bite/email/amazonses.rb +0 -186
- data/lib/sisimai/bite/email/amazonworkmail.rb +0 -170
- data/lib/sisimai/bite/email/aol.rb +0 -168
- data/lib/sisimai/bite/email/apachejames.rb +0 -158
- data/lib/sisimai/bite/email/bigfoot.rb +0 -162
- data/lib/sisimai/bite/email/biglobe.rb +0 -134
- data/lib/sisimai/bite/email/courier.rb +0 -181
- data/lib/sisimai/bite/email/domino.rb +0 -156
- data/lib/sisimai/bite/email/einsundeins.rb +0 -124
- data/lib/sisimai/bite/email/exchange2003.rb +0 -261
- data/lib/sisimai/bite/email/exchange2007.rb +0 -164
- data/lib/sisimai/bite/email/fml.rb +0 -158
- data/lib/sisimai/bite/email/gmx.rb +0 -152
- data/lib/sisimai/bite/email/gsuite.rb +0 -228
- data/lib/sisimai/bite/email/imailserver.rb +0 -163
- data/lib/sisimai/bite/email/interscanmss.rb +0 -133
- data/lib/sisimai/bite/email/kddi.rb +0 -146
- data/lib/sisimai/bite/email/mailfoundry.rb +0 -120
- data/lib/sisimai/bite/email/mailmarshalsmtp.rb +0 -165
- data/lib/sisimai/bite/email/mcafee.rb +0 -157
- data/lib/sisimai/bite/email/messagelabs.rb +0 -161
- data/lib/sisimai/bite/email/messagingserver.rb +0 -187
- data/lib/sisimai/bite/email/mfilter.rb +0 -152
- data/lib/sisimai/bite/email/notes.rb +0 -167
- data/lib/sisimai/bite/email/office365.rb +0 -243
- data/lib/sisimai/bite/email/outlook.rb +0 -173
- data/lib/sisimai/bite/email/postfix.rb +0 -261
- data/lib/sisimai/bite/email/receivingses.rb +0 -173
- data/lib/sisimai/bite/email/sendgrid.rb +0 -189
- data/lib/sisimai/bite/email/sendmail.rb +0 -247
- data/lib/sisimai/bite/email/surfcontrol.rb +0 -147
- data/lib/sisimai/bite/email/userdefined.rb +0 -115
- data/lib/sisimai/bite/email/v5sendmail.rb +0 -193
- data/lib/sisimai/bite/email/verizon.rb +0 -225
- data/lib/sisimai/bite/email/x1.rb +0 -114
- data/lib/sisimai/bite/email/x2.rb +0 -110
- data/lib/sisimai/bite/email/x3.rb +0 -128
- data/lib/sisimai/bite/email/x5.rb +0 -153
- data/lib/sisimai/bite/email/yahoo.rb +0 -138
- data/lib/sisimai/bite/email/yandex.rb +0 -161
- data/lib/sisimai/bite/email/zoho.rb +0 -153
- data/lib/sisimai/bite/json.rb +0 -36
- data/lib/sisimai/bite/json/amazonses.rb +0 -242
- data/lib/sisimai/bite/json/sendgrid.rb +0 -123
- data/lib/sisimai/message/email.rb +0 -477
- data/lib/sisimai/message/json.rb +0 -198
- data/lib/sisimai/order/email.rb +0 -205
- data/lib/sisimai/order/json.rb +0 -52
- data/set-of-emails/jsonobj/json-amazonses-01.json +0 -1
- data/set-of-emails/jsonobj/json-amazonses-02.json +0 -11
- data/set-of-emails/jsonobj/json-amazonses-03.json +0 -1
- data/set-of-emails/jsonobj/json-amazonses-04.json +0 -1
- data/set-of-emails/jsonobj/json-amazonses-05.json +0 -1
- data/set-of-emails/jsonobj/json-amazonses-06.json +0 -1
- data/set-of-emails/jsonobj/json-sendgrid-01.json +0 -1
- data/set-of-emails/jsonobj/json-sendgrid-02.json +0 -1
- data/set-of-emails/jsonobj/json-sendgrid-03.json +0 -1
- data/set-of-emails/jsonobj/json-sendgrid-04.json +0 -1
- data/set-of-emails/jsonobj/json-sendgrid-05.json +0 -1
- data/set-of-emails/jsonobj/json-sendgrid-06.json +0 -1
- data/set-of-emails/jsonobj/json-sendgrid-07.json +0 -1
- data/set-of-emails/jsonobj/json-sendgrid-08.json +0 -1
- data/set-of-emails/jsonobj/json-sendgrid-09.json +0 -1
- data/set-of-emails/jsonobj/json-sendgrid-10.json +0 -1
- data/set-of-emails/jsonobj/json-sendgrid-11.json +0 -1
- data/set-of-emails/jsonobj/json-sendgrid-12.json +0 -1
- data/set-of-emails/jsonobj/json-sendgrid-13.json +0 -1
- data/set-of-emails/jsonobj/json-sendgrid-14.json +0 -1
- data/set-of-emails/jsonobj/json-sendgrid-15.json +0 -1
- data/set-of-emails/jsonobj/json-sendgrid-16.json +0 -1
- data/set-of-emails/jsonobj/json-sendgrid-17.json +0 -1
@@ -0,0 +1,764 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
X-Original-To: ha3dsljxgizc2mjrgq2dkobx@mb.newsletter-autos.fr
|
3
|
+
Delivered-To: retregie2@mindbounce1.odiso.net
|
4
|
+
Received: by mindbounce1.odiso.net (Postfix)
|
5
|
+
id 60BC5105C2CC; Wed, 13 Dec 2017 16:10:03 +0100 (CET)
|
6
|
+
Delivered-To: retregie@mindbounce1.odiso.net
|
7
|
+
Received: from mx.ville-saumur.fr (mx.ville-saumur.fr [185.87.100.136])
|
8
|
+
by mindbounce1.odiso.net (Postfix) with ESMTP id 3C9D4105B7FE
|
9
|
+
for <ha3dsljxgizc2mjrgq2dkobx@mb.newsletter-autos.fr>; Wed, 13 Dec 2017 16:10:03 +0100 (CET)
|
10
|
+
Received: from mx.ville-saumur.fr (unknown [127.0.0.1])
|
11
|
+
by IMSVA (Postfix) with ESMTP id E608E280633
|
12
|
+
for <ha3dsljxgizc2mjrgq2dkobx@mb.newsletter-autos.fr>; Wed, 13 Dec 2017 16:10:01 +0100 (CET)
|
13
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=ville-saumur.fr;
|
14
|
+
s=imsva; t=1513177802;
|
15
|
+
bh=+fQEOwk4gRGyIEFRVJYuB3UnB9iVRE1SVJOpQLUziBI=; h=From:To:Date;
|
16
|
+
b=TbY5nRFzdIujhOFgvu6dBpvGTQzMGhFDEydsvJyJ++ZNRR9fZ1+XMYjdCEdmK2l/R
|
17
|
+
XMrARCIBt7pcz+9rvbfLf0nksmk5l3SBfFdrE72URcG1CxJAJlYoOa6+7UiqfVjzaF
|
18
|
+
hOmAr7IpmKgRYli/TdXRRMiK567JtmqiXnz3T40U=
|
19
|
+
Received: from imsva82a.ville-saumur.fr (unknown [127.0.0.1])
|
20
|
+
by IMSVA (Postfix) with ESMTP id BC1E5280631
|
21
|
+
for <ha3dsljxgizc2mjrgq2dkobx@mb.newsletter-autos.fr>; Wed, 13 Dec 2017 16:10:01 +0100 (CET)
|
22
|
+
Received: from wm.ville-saumur.fr (unknown [10.1.0.124])
|
23
|
+
by imsva82a.ville-saumur.fr (Postfix) with ESMTPS
|
24
|
+
for <ha3dsljxgizc2mjrgq2dkobx@mb.newsletter-autos.fr>; Wed, 13 Dec 2017 16:10:01 +0100 (CET)
|
25
|
+
MIME-Version: 1.0
|
26
|
+
From: <postmaster@ville-saumur.fr>
|
27
|
+
To: <ha3dsljxgizc2mjrgq2dkobx@mb.newsletter-autos.fr>
|
28
|
+
Date: Wed, 13 Dec 2017 16:10:01 +0100
|
29
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
30
|
+
boundary="8bffb426-6123-43e5-9dab-20b1585123e2"
|
31
|
+
X-MS-Exchange-Message-Is-Ndr:
|
32
|
+
Content-Language: fr-FR
|
33
|
+
Message-ID: <60bd7793-7f39-49d0-9f91-4969ba3a6c25@SRV124.ville-saumur.fr>
|
34
|
+
In-Reply-To: <1513177790.ha3dsljxgizc2mjrgq2dkobx@mb.newsletter-autos.fr>
|
35
|
+
References: <1513177790.ha3dsljxgizc2mjrgq2dkobx@mb.newsletter-autos.fr>
|
36
|
+
Subject: =?iso-8859-1?Q?Non_remis_:_Votre_deuxi=E8me_paire_de_chaussures_=E0_5_eur?=
|
37
|
+
=?iso-8859-1?Q?os?=
|
38
|
+
Auto-Submitted: auto-replied
|
39
|
+
X-TM-AS-GCONF: 11111111
|
40
|
+
X-TM-AS-SMTP: 1.0 LQ== LQ==
|
41
|
+
X-TM-AS-ERS: 10.1.0.124-127.5.254.15
|
42
|
+
X-TM-AS-Product-Ver: IMSVA-9.1.0.1631-8.2.0.1013-23528.000
|
43
|
+
X-TM-AS-Result: No--7.363-5.0-31-10
|
44
|
+
X-imss-scan-details: No--7.363-5.0-31-10
|
45
|
+
X-TMASE-Version: IMSVA-9.1.0.1631-8.2.1013-23528.000
|
46
|
+
X-TMASE-Result: 10--7.362900-10.000000
|
47
|
+
X-TMASE-MatchedRID: OoEa6u7Uk59qjxjQhPpumIrZkzMMRAtw/+IVM0HqyVJeta3d1q4tNz9j
|
48
|
+
ze3XaHgOBypCqliZQDJgkFaDub1+zxGIZyLWiD804dDbWPxG2mXRHSR2OvHkkFIEeE9EDVxedTy
|
49
|
+
E9iCgMPn1gZn3ZH6qG4YVNpt8g9BE7T+j7/gPsPPOAzDMFUjn7N4DafIOGBfY4I/r0/g0c4QREd
|
50
|
+
y4UIYKZt8vJq4Bc0EC596FIjp5Y3MTaWey1CvC6gy5PqjEOm2XGUjB+u9XpAf3h6GQGePcPiisx
|
51
|
+
DzpNDLX4YS6FyG8vyjyUQNiagGSs9szWfm77NPrdcbbjnFUAzAkvo4CXV1B876+F8za0bM2zh9/
|
52
|
+
JTWzqExXfyJjJyOvlYbKKfqixrF9nTqdU4w65WkcDDLReGt4PfmUDxpFogQXSV/yBKtVmpbXy9W
|
53
|
+
kB3xLM2jXG+JH7VI6P1DisKR/e5SIRG6EbDQlQDqCio6PxgXRRSjhBTCB4m/Effi2Qh7UxjB+uI
|
54
|
+
/RgoO9edKufSszF8kHQetSnxTP0FIPg7du9z6TY/tnrmO0q/v5mhsMNUGm4GDso3VqoaEftn7hi
|
55
|
+
s9zi8cTmjUk2NA2S3Lw1r9RKgOgG66tuBin4dDFPIkC/8l5ST0xA7cxL5gk/B+ZbDJ0sUm7Cny+
|
56
|
+
2yOst1VIpaYvubsyoH22ADlVKXiNzYJBKgDdEdB67dTBeETm4pinC0b7AdXAhmyW1RcNIzT6+3+
|
57
|
+
sQxw4K4N5A+ADaGBSMZjuun6XDkHrI6vFzzG7V3TFVaszFQaXgiEiwswK5KUyUU8RUGsueWleV0
|
58
|
+
6xcOQjGtzozoJsmwDIyPV0+BTjqeKvrWP6460rISWsnRVGP5soi2XrUn/JlR1cT9YafQV8xV+8y
|
59
|
+
Tp8+QKptUMJRSxQVqOtKX78ZnTd0T72oA/znrPBHyH5KhYzdeUkgoTygTtdLOvsicsBPz8SZRLu
|
60
|
+
/pPOXC8FdRLPDjDp9ZUhtDPhLB3ZqgdpWBdtPAaRNY38lObYDpe9GBVdR1QUzMd3dErR2aWIdsq
|
61
|
+
RbKqwXSrN3bNtCC0Z1/7eb8Rj9SgHMZ5baBzIzTtxalGYfkmma3V/xsSCzdAfQVZTF3Q2aFvmL0
|
62
|
+
nHhb6LqwH1+oXK4eZLp8bTU/Q=
|
63
|
+
X-TMASE-SNAP-Result: 1.821001.0001-0-1-12:0,22:0,33:0,34:0,39:0-0
|
64
|
+
|
65
|
+
--8bffb426-6123-43e5-9dab-20b1585123e2
|
66
|
+
Content-Type: multipart/alternative; differences=Content-Type;
|
67
|
+
boundary="dba03067-b37f-49a1-b483-2ab42a1ec8e7"
|
68
|
+
|
69
|
+
--dba03067-b37f-49a1-b483-2ab42a1ec8e7
|
70
|
+
Content-Type: text/plain; charset="iso-8859-1"
|
71
|
+
Content-Transfer-Encoding: quoted-printable
|
72
|
+
|
73
|
+
=C9chec de la remise pour ces destinataires ou groupes :
|
74
|
+
|
75
|
+
transports@agglo-saumur.fr<mailto:transports@agglo-saumur.fr>
|
76
|
+
L'adresse de messagerie que vous avez entr=E9e est introuvable. V=E9rifiez =
|
77
|
+
l'adresse de messagerie du destinataire et essayez de renvoyer le message. =
|
78
|
+
Si le probl=E8me persiste, contactez le support technique de votre organisa=
|
79
|
+
tion.
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
|
88
|
+
Informations de diagnostic pour les administrateurs :
|
89
|
+
|
90
|
+
Serveur de g=E9n=E9ration : SRV124.ville-saumur.fr
|
91
|
+
|
92
|
+
transports@agglo-saumur.fr
|
93
|
+
Remote Server returned '550 5.1.1 RESOLVER.ADR.RecipNotFound; not found'
|
94
|
+
|
95
|
+
En-t=EAtes de message d'origine :
|
96
|
+
|
97
|
+
Received: from SRV124.ville-saumur.fr (10.1.0.124) by SRV124.ville-saumur.f=
|
98
|
+
r
|
99
|
+
(10.1.0.124) with Microsoft SMTP Server (TLS) id 15.0.1178.4; Wed, 13 Dec
|
100
|
+
2017 16:10:01 +0100
|
101
|
+
Received: from mx.ville-saumur.fr (10.100.0.27) by SRV124.ville-saumur.fr
|
102
|
+
(10.1.0.124) with Microsoft SMTP Server (TLS) id 15.0.1178.4 via Frontend
|
103
|
+
Transport; Wed, 13 Dec 2017 16:10:01 +0100
|
104
|
+
Received: from mx.ville-saumur.fr (unknown [127.0.0.1])
|
105
|
+
by IMSVA (Postfix) with ESMTP id DDEF1280633
|
106
|
+
for <transports@agglo-saumur.fr>; Wed, 13 Dec 2017 16:10:00 +0100 (=
|
107
|
+
CET)
|
108
|
+
Received: from imsva82a.ville-saumur.fr (unknown [127.0.0.1])
|
109
|
+
by IMSVA (Postfix) with ESMTP id AEAB9280631
|
110
|
+
for <transports@agglo-saumur.fr>; Wed, 13 Dec 2017 16:10:00 +0100 (=
|
111
|
+
CET)
|
112
|
+
Received: from Prefilter-postMTA10.emailsecurity.trendmicro.eu (unknown [15=
|
113
|
+
0.70.236.146])
|
114
|
+
by imsva82a.ville-saumur.fr (Postfix) with ESMTPS
|
115
|
+
for <transports@agglo-saumur.fr>; Wed, 13 Dec 2017 16:10:00 +0100 (=
|
116
|
+
CET)
|
117
|
+
Received: from hes.trendmicro.com (unknown [10.36.141.75])
|
118
|
+
by Prefilter-postMTA10.emailsecurity.trendmicro.eu (Postfix) with S=
|
119
|
+
MTP id 6B4376C0296
|
120
|
+
for <transports@agglo-saumur.fr>; Wed, 13 Dec 2017 15:10:00 +0000 (=
|
121
|
+
UTC)
|
122
|
+
Received: from regiesmtp1151-1.odiso.net (unknown [89.248.219.79])
|
123
|
+
by prefilter-premta15.muc1 (Postfix) with ESMTP id F1ADF4E0031
|
124
|
+
for <transports@agglo-saumur.fr>; Wed, 13 Dec 2017 15:09:50 +0000 (=
|
125
|
+
UTC)
|
126
|
+
Message-ID: <1513177790.ha3dsljxgizc2mjrgq2dkobx@mb.newsletter-autos.fr>
|
127
|
+
Feedback-Id: 317:869
|
128
|
+
Dkim-Signature: v=3D1; a=3Drsa-sha1; c=3Drelaxed; d=3Dmb.newsletter-autos.f=
|
129
|
+
r; h=3Dmessage-id:list-unsubscribe:from:to:reply-to:content-type:subject:co=
|
130
|
+
ntent-transfer-encoding:mime-version:date; s=3Dselector1; bh=3DEUgx6DV9EKBU=
|
131
|
+
E7bK/ghWzJT4CkE=3D; b=3DqhBtU27k/TVcJsungkq/gOOLjxErfp7Cgs2pH8go5dgUSDPMbFX=
|
132
|
+
T1JVKtlXB7/6vE009GkOHQbAYRFN6IKGJZVgdIbdxlzwTQac8s+a5kI9SScW7Fce1XlLtTCLIKN=
|
133
|
+
hSACDE1hM4uWi/e9tlqd4UP3iZPRuyEcOJIH+ziFJUh4Q=3D
|
134
|
+
List-Unsubscribe: <mailto:ha3dsljxgizc2mjrgq2dkobx@lu.mb.newsletter-autos.f=
|
135
|
+
r>
|
136
|
+
Precedence: bulk
|
137
|
+
From: =3D?UTF-8?Q?Tati_-_AdM?=3D <newsletter@mb.newsletter-autos.fr>
|
138
|
+
To: <transports@agglo-saumur.fr>
|
139
|
+
Reply-To: newsletter@mb.newsletter-autos.fr
|
140
|
+
Content-Type: multipart/alternative;
|
141
|
+
boundary=3D"_----------=3D_1513177790252370"
|
142
|
+
Subject: =3D?UTF-8?Q?Votre_deuxi=3DC3=3DA8me_paire_de_chaussures_=3DC3=3DA0=
|
143
|
+
_5_euros?=3D
|
144
|
+
MIME-Version: 1.0
|
145
|
+
X-Mailer: MIME::Lite 3.030 (F2.85; T2.09; A2.13; B3.14; Q3.13)
|
146
|
+
Date: Wed, 13 Dec 2017 16:09:50 +0100
|
147
|
+
Content-Transfer-Encoding: 7bit
|
148
|
+
X-TM-AS-GCONF: 11111111
|
149
|
+
X-TM-AS-SMTP: 1.0
|
150
|
+
UHJlZmlsdGVyLXBvc3RNVEExMC5lbWFpbHNlY3VyaXR5LnRyZW5kbWljcm8uZXU=3D
|
151
|
+
aGEzZHNsanhnaXpjMm1qcmdxMmRrb2J4QG1iLm5ld3NsZXR0ZXItYXV0b3MuZnI=3D
|
152
|
+
X-TM-AS-ERS: 150.70.236.146-127.2.0.1
|
153
|
+
X-TM-AS-Product-Ver: IMSVA-9.1.0.1631-8.2.0.1013-23528.000
|
154
|
+
X-TM-AS-Result: No-2.177-5.0-31-10
|
155
|
+
X-imss-scan-details: No-2.177-5.0-31-10
|
156
|
+
X-TMASE-Version: IMSVA-9.1.0.1631-8.2.1013-23528.000
|
157
|
+
X-TMASE-Result: 10-2.176800-10.000000
|
158
|
+
X-TMASE-MatchedRID: flB6T5oFUOG9Kv/10f43C2csZoSFOH3NY5tzpc6U41teiZtkAw19jtt=
|
159
|
+
n
|
160
|
+
IlAw5OtvJtPtdHb5AVCIRG6EbDQlQDqCio6PxgXRRSjhBTCB4m+YWary0xmPWCFp1qi=
|
161
|
+
KhmwCNtm
|
162
|
+
bUiv8JIqCeoACUnt+kUim+3pSpOPvhuxnKU8erYLejs/DUNX6H7DG/SWRjAWTxfqWqT=
|
163
|
+
gUDaatv2
|
164
|
+
L8rp8wDnGT6kwYVy/xQr2qXCJMSV98yGO3dvk8/UrRZP/NcCCSr1mTostAo49Ey+L1h=
|
165
|
+
9unlhIGV
|
166
|
+
1AUBgcucX/dhsxYJQmdCtkMrsOtOpkShYcLpGH98gW3ugGq8mL2tny05XshuJO5MheD=
|
167
|
+
HerMNid+
|
168
|
+
2TRXuOoeszLHPCQb9Dqf0DtPln4nAAKeQY7XbxWTHH8954RP8PYV+0g4ZB1VWV916O3=
|
169
|
+
mRv5iK2z
|
170
|
+
fMUqB7IBnqVrykRvFh80rxgFhR2QJMLs/8/GbekIjuk0uJKN9ZssMASAsm75BOq1LSI=
|
171
|
+
bi+5CBCp
|
172
|
+
iPBEnDmxh0gY/o+VkTqkzLw5R0LmPRQPg64rFKFRlN8zTSzj5qRyrZEAcpylprRr3O6=
|
173
|
+
87j660+D
|
174
|
+
qvfilPfX2sZfyOJoZ4CIKY/Hg3AaZGo0EeYG97zVcS9oBLzOIq6dXL5V9BGaSrMgBAZ=
|
175
|
+
dKG7BImx
|
176
|
+
r//NmcUGZ0Kwi4SAIacEPGsrqo8wTtWW0vTRuPIVg5Bxdd7eNOS6tvXJTUWKsCvF32F=
|
177
|
+
Ni3HikUs
|
178
|
+
KreV0bQqXiWz3lqWI8v6ED7vD28KSUVn8jgTXPFZyMml8HAKjjACJTpCNlcek5YV6H6=
|
179
|
+
2Cw2Qrxk
|
180
|
+
+1gNDenUDPbTUZ3Bo+vfwNxatwJjn6J820XhunvCfR08Ny/to0vurG59uKhyz+woFna=
|
181
|
+
QVtiYY1M
|
182
|
+
pZUY2cjFnImzvyS
|
183
|
+
X-TMASE-SNAP-Result: 1.821001.0001-0-1-12:0,22:0,33:0,34:0,39:0-0
|
184
|
+
Return-Path: ha3dsljxgizc2mjrgq2dkobx@mb.newsletter-autos.fr
|
185
|
+
|
186
|
+
|
187
|
+
--dba03067-b37f-49a1-b483-2ab42a1ec8e7
|
188
|
+
Content-Type: text/html; charset="iso-8859-1"
|
189
|
+
Content-Transfer-Encoding: quoted-printable
|
190
|
+
|
191
|
+
<html>
|
192
|
+
<Head></head><body>
|
193
|
+
<p><b><font color=3D"#000066" size=3D"3" face=3D"Arial">=C9chec de la remis=
|
194
|
+
e pour ces destinataires ou groupes=A0:</font></b></p>
|
195
|
+
<font color=3D"#000000" size=3D"2" face=3D"Tahoma"><p><a href=3D"mailto:tra=
|
196
|
+
nsports@agglo-saumur.fr">transports@agglo-saumur.fr</a><br>
|
197
|
+
</font>
|
198
|
+
<font color=3D"#000000" size=3D"3" face=3D"Arial">L'adresse de messagerie q=
|
199
|
+
ue vous avez entr=E9e est introuvable. V=E9rifiez l'adresse de messagerie d=
|
200
|
+
u destinataire et essayez de renvoyer le message. Si le probl=E8me persiste=
|
201
|
+
, contactez le support technique de votre organisation.<br>
|
202
|
+
</font>
|
203
|
+
<font color=3D"#000000" size=3D"2" face=3D"Tahoma"><br>
|
204
|
+
</p>
|
205
|
+
</font>
|
206
|
+
<br><br><br><br><br><br>
|
207
|
+
<font color=3D"#808080" size=3D"2" face=3D"Tahoma"><p><b>Informations de di=
|
208
|
+
agnostic pour les administrateurs :</b></p>
|
209
|
+
<p>Serveur de g=E9n=E9ration : SRV124.ville-saumur.fr<br>
|
210
|
+
</p>
|
211
|
+
<p>transports@agglo-saumur.fr<br>
|
212
|
+
Remote Server returned '550 5.1.1 RESOLVER.ADR.RecipNotFound; not found'<b=
|
213
|
+
r>
|
214
|
+
</p>
|
215
|
+
<p>En-t=EAtes de message d'origine :</p>
|
216
|
+
<pre>Received: from SRV124.ville-saumur.fr (10.1.0.124) by SRV124.ville-sau=
|
217
|
+
mur.fr
|
218
|
+
(10.1.0.124) with Microsoft SMTP Server (TLS) id 15.0.1178.4; Wed, 13 Dec
|
219
|
+
2017 16:10:01 +0100
|
220
|
+
Received: from mx.ville-saumur.fr (10.100.0.27) by SRV124.ville-saumur.fr
|
221
|
+
(10.1.0.124) with Microsoft SMTP Server (TLS) id 15.0.1178.4 via Frontend
|
222
|
+
Transport; Wed, 13 Dec 2017 16:10:01 +0100
|
223
|
+
Received: from mx.ville-saumur.fr (unknown [127.0.0.1])
|
224
|
+
by IMSVA (Postfix) with ESMTP id DDEF1280633
|
225
|
+
for <transports@agglo-saumur.fr>; Wed, 13 Dec 2017 16:10:00 +0100 (C=
|
226
|
+
ET)
|
227
|
+
Received: from imsva82a.ville-saumur.fr (unknown [127.0.0.1])
|
228
|
+
by IMSVA (Postfix) with ESMTP id AEAB9280631
|
229
|
+
for <transports@agglo-saumur.fr>; Wed, 13 Dec 2017 16:10:00 +0100 (C=
|
230
|
+
ET)
|
231
|
+
Received: from Prefilter-postMTA10.emailsecurity.trendmicro.eu (unknown [15=
|
232
|
+
0.70.236.146])
|
233
|
+
by imsva82a.ville-saumur.fr (Postfix) with ESMTPS
|
234
|
+
for <transports@agglo-saumur.fr>; Wed, 13 Dec 2017 16:10:00 +0100 (C=
|
235
|
+
ET)
|
236
|
+
Received: from hes.trendmicro.com (unknown [10.36.141.75])
|
237
|
+
by Prefilter-postMTA10.emailsecurity.trendmicro.eu (Postfix) with SMTP id =
|
238
|
+
6B4376C0296
|
239
|
+
for <transports@agglo-saumur.fr>; Wed, 13 Dec 2017 15:10:00 +0000 (U=
|
240
|
+
TC)
|
241
|
+
Received: from regiesmtp1151-1.odiso.net (unknown [89.248.219.79])
|
242
|
+
by prefilter-premta15.muc1 (Postfix) with ESMTP id F1ADF4E0031
|
243
|
+
for <transports@agglo-saumur.fr>; Wed, 13 Dec 2017 15:09:50 +0000 (U=
|
244
|
+
TC)
|
245
|
+
Message-ID: <1513177790.ha3dsljxgizc2mjrgq2dkobx@mb.newsletter-autos.fr&=
|
246
|
+
gt;
|
247
|
+
Feedback-Id: 317:869
|
248
|
+
Dkim-Signature: v=3D1; a=3Drsa-sha1; c=3Drelaxed; d=3Dmb.newsletter-autos.f=
|
249
|
+
r; h=3Dmessage-id:list-unsubscribe:from:to:reply-to:content-type:subject:co=
|
250
|
+
ntent-transfer-encoding:mime-version:date; s=3Dselector1; bh=3DEUgx6DV9EKBU=
|
251
|
+
E7bK/ghWzJT4CkE=3D; b=3DqhBtU27k/TVcJsungkq/gOOLjxErfp7Cgs2pH8go5dgUSDPMbFX=
|
252
|
+
T1JVKtlXB7/6vE009GkOHQbAYRFN6IKGJZVgdIbdxlzwTQac8s+a5kI9SScW7Fce1XlLtTCLIKN=
|
253
|
+
hSACDE1hM4uWi/e9tlqd4UP3iZPRuyEcOJIH+ziFJUh4Q=3D
|
254
|
+
List-Unsubscribe: <mailto:ha3dsljxgizc2mjrgq2dkobx@lu.mb.newsletter-auto=
|
255
|
+
s.fr>
|
256
|
+
Precedence: bulk
|
257
|
+
From: =3D?UTF-8?Q?Tati_-_AdM?=3D <newsletter@mb.newsletter-autos.fr>
|
258
|
+
To: <transports@agglo-saumur.fr>
|
259
|
+
Reply-To: newsletter@mb.newsletter-autos.fr
|
260
|
+
Content-Type: multipart/alternative;
|
261
|
+
boundary=3D"_----------=3D_1513177790252370"
|
262
|
+
Subject: =3D?UTF-8?Q?Votre_deuxi=3DC3=3DA8me_paire_de_chaussures_=3DC3=3DA0=
|
263
|
+
_5_euros?=3D
|
264
|
+
MIME-Version: 1.0
|
265
|
+
X-Mailer: MIME::Lite 3.030 (F2.85; T2.09; A2.13; B3.14; Q3.13)
|
266
|
+
Date: Wed, 13 Dec 2017 16:09:50 +0100
|
267
|
+
Content-Transfer-Encoding: 7bit
|
268
|
+
X-TM-AS-GCONF: 11111111
|
269
|
+
X-TM-AS-SMTP: 1.0=20
|
270
|
+
UHJlZmlsdGVyLXBvc3RNVEExMC5lbWFpbHNlY3VyaXR5LnRyZW5kbWljcm8uZXU=3D=20
|
271
|
+
aGEzZHNsanhnaXpjMm1qcmdxMmRrb2J4QG1iLm5ld3NsZXR0ZXItYXV0b3MuZnI=3D
|
272
|
+
X-TM-AS-ERS: 150.70.236.146-127.2.0.1
|
273
|
+
X-TM-AS-Product-Ver: IMSVA-9.1.0.1631-8.2.0.1013-23528.000
|
274
|
+
X-TM-AS-Result: No-2.177-5.0-31-10
|
275
|
+
X-imss-scan-details: No-2.177-5.0-31-10
|
276
|
+
X-TMASE-Version: IMSVA-9.1.0.1631-8.2.1013-23528.000
|
277
|
+
X-TMASE-Result: 10-2.176800-10.000000
|
278
|
+
X-TMASE-MatchedRID: flB6T5oFUOG9Kv/10f43C2csZoSFOH3NY5tzpc6U41teiZtkAw19jtt=
|
279
|
+
n
|
280
|
+
IlAw5OtvJtPtdHb5AVCIRG6EbDQlQDqCio6PxgXRRSjhBTCB4m+YWary0xmPWCFp1qiKhmwCNt=
|
281
|
+
m
|
282
|
+
bUiv8JIqCeoACUnt+kUim+3pSpOPvhuxnKU8erYLejs/DUNX6H7DG/SWRjAWTxfqWqTgUDaatv=
|
283
|
+
2
|
284
|
+
L8rp8wDnGT6kwYVy/xQr2qXCJMSV98yGO3dvk8/UrRZP/NcCCSr1mTostAo49Ey+L1h9unlhIG=
|
285
|
+
V
|
286
|
+
1AUBgcucX/dhsxYJQmdCtkMrsOtOpkShYcLpGH98gW3ugGq8mL2tny05XshuJO5MheDHerMNid=
|
287
|
+
+
|
288
|
+
2TRXuOoeszLHPCQb9Dqf0DtPln4nAAKeQY7XbxWTHH8954RP8PYV+0g4ZB1VWV916O3mRv5iK2=
|
289
|
+
z
|
290
|
+
fMUqB7IBnqVrykRvFh80rxgFhR2QJMLs/8/GbekIjuk0uJKN9ZssMASAsm75BOq1LSIbi+5CBC=
|
291
|
+
p
|
292
|
+
iPBEnDmxh0gY/o+VkTqkzLw5R0LmPRQPg64rFKFRlN8zTSzj5qRyrZEAcpylprRr3O687j660+=
|
293
|
+
D
|
294
|
+
qvfilPfX2sZfyOJoZ4CIKY/Hg3AaZGo0EeYG97zVcS9oBLzOIq6dXL5V9BGaSrMgBAZdKG7BIm=
|
295
|
+
x
|
296
|
+
r//NmcUGZ0Kwi4SAIacEPGsrqo8wTtWW0vTRuPIVg5Bxdd7eNOS6tvXJTUWKsCvF32FNi3HikU=
|
297
|
+
s
|
298
|
+
KreV0bQqXiWz3lqWI8v6ED7vD28KSUVn8jgTXPFZyMml8HAKjjACJTpCNlcek5YV6H62Cw2Qrx=
|
299
|
+
k
|
300
|
+
+1gNDenUDPbTUZ3Bo+vfwNxatwJjn6J820XhunvCfR08Ny/to0vurG59uKhyz+woFnaQVtiYY1=
|
301
|
+
M
|
302
|
+
pZUY2cjFnImzvyS
|
303
|
+
X-TMASE-SNAP-Result: 1.821001.0001-0-1-12:0,22:0,33:0,34:0,39:0-0
|
304
|
+
Return-Path: ha3dsljxgizc2mjrgq2dkobx@mb.newsletter-autos.fr
|
305
|
+
</pre>
|
306
|
+
</font>
|
307
|
+
</body>
|
308
|
+
</html>=
|
309
|
+
|
310
|
+
--dba03067-b37f-49a1-b483-2ab42a1ec8e7--
|
311
|
+
|
312
|
+
--8bffb426-6123-43e5-9dab-20b1585123e2
|
313
|
+
Content-Type: message/delivery-status
|
314
|
+
|
315
|
+
Reporting-MTA: dns;SRV124.ville-saumur.fr
|
316
|
+
Received-From-MTA: dns;mx.ville-saumur.fr
|
317
|
+
Arrival-Date: Wed, 13 Dec 2017 15:10:01 +0000
|
318
|
+
|
319
|
+
Original-Recipient: rfc822;transports@agglo-saumur.fr
|
320
|
+
Final-Recipient: rfc822;transports@agglo-saumur.fr
|
321
|
+
Action: failed
|
322
|
+
Status: 5.1.1
|
323
|
+
Diagnostic-Code: smtp;550 5.1.1 RESOLVER.ADR.RecipNotFound; not found
|
324
|
+
|
325
|
+
|
326
|
+
--8bffb426-6123-43e5-9dab-20b1585123e2
|
327
|
+
Content-Type: message/rfc822
|
328
|
+
|
329
|
+
Received: from SRV124.ville-saumur.fr (10.1.0.124) by SRV124.ville-saumur.fr
|
330
|
+
(10.1.0.124) with Microsoft SMTP Server (TLS) id 15.0.1178.4; Wed, 13 Dec
|
331
|
+
2017 16:10:01 +0100
|
332
|
+
Received: from mx.ville-saumur.fr (10.100.0.27) by SRV124.ville-saumur.fr
|
333
|
+
(10.1.0.124) with Microsoft SMTP Server (TLS) id 15.0.1178.4 via Frontend
|
334
|
+
Transport; Wed, 13 Dec 2017 16:10:01 +0100
|
335
|
+
Received: from mx.ville-saumur.fr (unknown [127.0.0.1])
|
336
|
+
by IMSVA (Postfix) with ESMTP id DDEF1280633
|
337
|
+
for <transports@agglo-saumur.fr>; Wed, 13 Dec 2017 16:10:00 +0100 (CET)
|
338
|
+
Received: from imsva82a.ville-saumur.fr (unknown [127.0.0.1])
|
339
|
+
by IMSVA (Postfix) with ESMTP id AEAB9280631
|
340
|
+
for <transports@agglo-saumur.fr>; Wed, 13 Dec 2017 16:10:00 +0100 (CET)
|
341
|
+
Received: from Prefilter-postMTA10.emailsecurity.trendmicro.eu (unknown [150.70.236.146])
|
342
|
+
by imsva82a.ville-saumur.fr (Postfix) with ESMTPS
|
343
|
+
for <transports@agglo-saumur.fr>; Wed, 13 Dec 2017 16:10:00 +0100 (CET)
|
344
|
+
Received: from hes.trendmicro.com (unknown [10.36.141.75])
|
345
|
+
by Prefilter-postMTA10.emailsecurity.trendmicro.eu (Postfix) with SMTP id 6B4376C0296
|
346
|
+
for <transports@agglo-saumur.fr>; Wed, 13 Dec 2017 15:10:00 +0000 (UTC)
|
347
|
+
Received: from regiesmtp1151-1.odiso.net (unknown [89.248.219.79])
|
348
|
+
by prefilter-premta15.muc1 (Postfix) with ESMTP id F1ADF4E0031
|
349
|
+
for <transports@agglo-saumur.fr>; Wed, 13 Dec 2017 15:09:50 +0000 (UTC)
|
350
|
+
Message-ID: <1513177790.ha3dsljxgizc2mjrgq2dkobx@mb.newsletter-autos.fr>
|
351
|
+
Feedback-Id: 317:869
|
352
|
+
Dkim-Signature: v=1; a=rsa-sha1; c=relaxed; d=mb.newsletter-autos.fr; h=message-id:list-unsubscribe:from:to:reply-to:content-type:subject:content-transfer-encoding:mime-version:date; s=selector1; bh=EUgx6DV9EKBUE7bK/ghWzJT4CkE=; b=qhBtU27k/TVcJsungkq/gOOLjxErfp7Cgs2pH8go5dgUSDPMbFXT1JVKtlXB7/6vE009GkOHQbAYRFN6IKGJZVgdIbdxlzwTQac8s+a5kI9SScW7Fce1XlLtTCLIKNhSACDE1hM4uWi/e9tlqd4UP3iZPRuyEcOJIH+ziFJUh4Q=
|
353
|
+
List-Unsubscribe: <mailto:ha3dsljxgizc2mjrgq2dkobx@lu.mb.newsletter-autos.fr>
|
354
|
+
Precedence: bulk
|
355
|
+
From: =?UTF-8?Q?Tati_-_AdM?= <newsletter@mb.newsletter-autos.fr>
|
356
|
+
To: <transports@agglo-saumur.fr>
|
357
|
+
Reply-To: <newsletter@mb.newsletter-autos.fr>
|
358
|
+
Content-Type: multipart/alternative;
|
359
|
+
boundary="_----------=_1513177790252370"
|
360
|
+
Subject: =?UTF-8?Q?Votre_deuxi=C3=A8me_paire_de_chaussures_=C3=A0_5_euros?=
|
361
|
+
MIME-Version: 1.0
|
362
|
+
X-Mailer: MIME::Lite 3.030 (F2.85; T2.09; A2.13; B3.14; Q3.13)
|
363
|
+
Date: Wed, 13 Dec 2017 16:09:50 +0100
|
364
|
+
Content-Transfer-Encoding: 7bit
|
365
|
+
X-TM-AS-GCONF: 11111111
|
366
|
+
X-TM-AS-SMTP: 1.0
|
367
|
+
UHJlZmlsdGVyLXBvc3RNVEExMC5lbWFpbHNlY3VyaXR5LnRyZW5kbWljcm8uZXU=
|
368
|
+
aGEzZHNsanhnaXpjMm1qcmdxMmRrb2J4QG1iLm5ld3NsZXR0ZXItYXV0b3MuZnI=
|
369
|
+
X-TM-AS-ERS: 150.70.236.146-127.2.0.1
|
370
|
+
X-TM-AS-Product-Ver: IMSVA-9.1.0.1631-8.2.0.1013-23528.000
|
371
|
+
X-TM-AS-Result: No-2.177-5.0-31-10
|
372
|
+
X-imss-scan-details: No-2.177-5.0-31-10
|
373
|
+
X-TMASE-Version: IMSVA-9.1.0.1631-8.2.1013-23528.000
|
374
|
+
X-TMASE-Result: 10-2.176800-10.000000
|
375
|
+
X-TMASE-MatchedRID: flB6T5oFUOG9Kv/10f43C2csZoSFOH3NY5tzpc6U41teiZtkAw19jttn
|
376
|
+
IlAw5OtvJtPtdHb5AVCIRG6EbDQlQDqCio6PxgXRRSjhBTCB4m+YWary0xmPWCFp1qiKhmwCNtm
|
377
|
+
bUiv8JIqCeoACUnt+kUim+3pSpOPvhuxnKU8erYLejs/DUNX6H7DG/SWRjAWTxfqWqTgUDaatv2
|
378
|
+
L8rp8wDnGT6kwYVy/xQr2qXCJMSV98yGO3dvk8/UrRZP/NcCCSr1mTostAo49Ey+L1h9unlhIGV
|
379
|
+
1AUBgcucX/dhsxYJQmdCtkMrsOtOpkShYcLpGH98gW3ugGq8mL2tny05XshuJO5MheDHerMNid+
|
380
|
+
2TRXuOoeszLHPCQb9Dqf0DtPln4nAAKeQY7XbxWTHH8954RP8PYV+0g4ZB1VWV916O3mRv5iK2z
|
381
|
+
fMUqB7IBnqVrykRvFh80rxgFhR2QJMLs/8/GbekIjuk0uJKN9ZssMASAsm75BOq1LSIbi+5CBCp
|
382
|
+
iPBEnDmxh0gY/o+VkTqkzLw5R0LmPRQPg64rFKFRlN8zTSzj5qRyrZEAcpylprRr3O687j660+D
|
383
|
+
qvfilPfX2sZfyOJoZ4CIKY/Hg3AaZGo0EeYG97zVcS9oBLzOIq6dXL5V9BGaSrMgBAZdKG7BImx
|
384
|
+
r//NmcUGZ0Kwi4SAIacEPGsrqo8wTtWW0vTRuPIVg5Bxdd7eNOS6tvXJTUWKsCvF32FNi3HikUs
|
385
|
+
KreV0bQqXiWz3lqWI8v6ED7vD28KSUVn8jgTXPFZyMml8HAKjjACJTpCNlcek5YV6H62Cw2Qrxk
|
386
|
+
+1gNDenUDPbTUZ3Bo+vfwNxatwJjn6J820XhunvCfR08Ny/to0vurG59uKhyz+woFnaQVtiYY1M
|
387
|
+
pZUY2cjFnImzvyS
|
388
|
+
X-TMASE-SNAP-Result: 1.821001.0001-0-1-12:0,22:0,33:0,34:0,39:0-0
|
389
|
+
Return-Path: ha3dsljxgizc2mjrgq2dkobx@mb.newsletter-autos.fr
|
390
|
+
|
391
|
+
--_----------=_1513177790252370
|
392
|
+
Content-Disposition: inline
|
393
|
+
Content-Transfer-Encoding: quoted-printable
|
394
|
+
Content-Type: text/plain; charset="utf-8"
|
395
|
+
|
396
|
+
Si ce message ne s'affiche pas correctement, suivez ce lien http://mirror.m=
|
397
|
+
b.newsletter-autos.fr/?e=3Dtransports@agglo-saumur.fr&s=3D722&b=3D869=0D
|
398
|
+
News - TATI
|
399
|
+
=C2=A0
|
400
|
+
|
401
|
+
FEMME (http://stats.digital-metric.com/stclk/91d444560e56e157dea1bd885dad5=
|
402
|
+
ff8/7Tm/49468/5?)=20
|
403
|
+
|
404
|
+
HOMME (http://stats.digital-metric.com/stclk/91d444560e56e157dea1bd885dad5f=
|
405
|
+
f8/7Tn/49468/6?)=20
|
406
|
+
|
407
|
+
ENFANT (http://stats.digital-metric.com/stclk/91d444560e56e157dea1bd885dad5=
|
408
|
+
ff8/7To/49468/7?)=20
|
409
|
+
|
410
|
+
CHAUSSURES (http://stats.digital-metric.com/stclk/91d444560e56e157dea1bd885=
|
411
|
+
dad5ff8/7Tp/49468/8?)=20
|
412
|
+
|
413
|
+
MAISON (http://stats.digital-metric.com/stclk/91d444560e56e157dea1bd885dad5=
|
414
|
+
ff8/7Tq/49468/9?)=20
|
415
|
+
|
416
|
+
MEUBLES (http://stats.digital-metric.com/stclk/91d444560e56e157dea1bd885dad=
|
417
|
+
5ff8/7Tr/49468/10?)=20
|
418
|
+
|
419
|
+
MARIAGE (http://stats.digital-metric.com/stclk/91d444560e56e157dea1bd885dad=
|
420
|
+
5ff8/7Ts/49468/11?)=20
|
421
|
+
|
422
|
+
DU 11 AU 13 D=C3=89CEMBRE 2017 MINUIT (http://stats.digital-metric.com/stcl=
|
423
|
+
k/91d444560e56e157dea1bd885dad5ff8/7Tt/49468/14?)=20
|
424
|
+
(http://stats.digital-metric.com/stclk/91d444560e56e157dea1bd885dad5ff8/7T=
|
425
|
+
t/49468/15?)=20
|
426
|
+
|
427
|
+
(http://stats.digital-metric.com/stclk/91d444560e56e157dea1bd885dad5ff8/7T=
|
428
|
+
t/49468/16?)=20
|
429
|
+
(http://stats.digital-metric.com/stclk/91d444560e56e157dea1bd885dad5ff8/7T=
|
430
|
+
u/49468/17?)=20
|
431
|
+
DEC17
|
432
|
+
(http://stats.digital-metric.com/stclk/91d444560e56e157dea1bd885dad5ff8/7T=
|
433
|
+
t/49468/18?)=20
|
434
|
+
J'EN PROFITE ! (http://stats.digital-metric.com/stclk/91d444560e56e157dea1b=
|
435
|
+
d885dad5ff8/7Tt/49468/19?)=20
|
436
|
+
(http://stats.digital-metric.com/stclk/91d444560e56e157dea1bd885dad5ff8/7T=
|
437
|
+
t/49468/20?)=20
|
438
|
+
|
439
|
+
(http://stats.digital-metric.com/stclk/91d444560e56e157dea1bd885dad5ff8/7T=
|
440
|
+
t/49468/21?)=20
|
441
|
+
(http://stats.digital-metric.com/stclk/91d444560e56e157dea1bd885dad5ff8/7T=
|
442
|
+
u/49468/22?)=20
|
443
|
+
(http://stats.digital-metric.com/stclk/91d444560e56e157dea1bd885dad5ff8/7T=
|
444
|
+
v/49468/23?)=20
|
445
|
+
(http://stats.digital-metric.com/stclk/91d444560e56e157dea1bd885dad5ff8/7T=
|
446
|
+
v/49468/24?)=20
|
447
|
+
(http://stats.digital-metric.com/stclk/91d444560e56e157dea1bd885dad5ff8/7T=
|
448
|
+
v/49468/25?)=20
|
449
|
+
|
450
|
+
=20
|
451
|
+
=20
|
452
|
+
CETTE SEMAINE SUR TATI:
|
453
|
+
|
454
|
+
5=E2=82=AC la 2=C3=A8me paire de chaussures pour toute la famille
|
455
|
+
|
456
|
+
Profitez-en vite, c'est jusqu'au 13 d=C3=A9cembre 2017 minuit
|
457
|
+
|
458
|
+
=20
|
459
|
+
|
460
|
+
=20=20
|
461
|
+
Offre "1 paire de chaussures achet=C3=A9e, la 2=C3=A8me =C3=A0 5 euros" val=
|
462
|
+
able du 11 au 13 d=C3=A9cembre=C2=A0 2017 jusqu'=C3=A0 minuit pour une comm=
|
463
|
+
ande r=C3=A9alis=C3=A9e sur le site tati sur une s=C3=A9lection de produits=
|
464
|
+
de la boutique Chaussures identifi=C3=A9s par un pictogramme "5=E2=82=AC l=
|
465
|
+
a 2=C3=A8me chaussures". L'article =C3=A0 5 euros est le moins cher des art=
|
466
|
+
icles mis au panier de commande. Dans la limite de 4 produits =C3=A0 5=E2=
|
467
|
+
=82=AC. Offre non cumulable avec d'autres promotions en cours. Ce code prom=
|
468
|
+
otionnel ne peut faire l'objet d'aucun remboursement en esp=C3=A8ces ni d'a=
|
469
|
+
ucune contrepartie de quelque nature que ce soit.
|
470
|
+
|
471
|
+
|
472
|
+
|
473
|
+
=0D
|
474
|
+
Pour vous d=C3=A9sabonner, suivez ce lien http://unsub.mb.newsletter-autos.=
|
475
|
+
fr/?e=3Dtransports@agglo-saumur.fr&s=3D722&b=3D869=0D
|
476
|
+
|
477
|
+
--_----------=_1513177790252370
|
478
|
+
Content-Disposition: inline
|
479
|
+
Content-Transfer-Encoding: quoted-printable
|
480
|
+
Content-Type: text/html; charset="utf-8"
|
481
|
+
|
482
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.=
|
483
|
+
w3.org/TR/html4/loose.dtd">=0D
|
484
|
+
<html>=0D
|
485
|
+
<head>=0D
|
486
|
+
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Dutf-8">=0D
|
487
|
+
<META HTTP-EQUIV=3D"imagetoolbar" CONTENT=3D"no">=0D
|
488
|
+
<title>News - TATI</title>=0D
|
489
|
+
<style type=3D"text/css">=0D
|
490
|
+
table {=0D
|
491
|
+
border-collapse:collapse;=0D
|
492
|
+
}=0D
|
493
|
+
</style>=0D
|
494
|
+
</head>=0D
|
495
|
+
<body bgcolor=3D"#ffffff" text=3D"#3D494B" link=3D"#3D494B" vlink=3D"#3D494=
|
496
|
+
B" alink=3D"#3D494B"> <table style=3D"width: 100%;margin:auto;text-align:c=
|
497
|
+
enter;font-family:Lucida Grande,Verdana,sans-serif;"><tr><td>Si ce message =
|
498
|
+
ne s'affiche pas correctement, <a href=3D"http://t.mb.newsletter-autos.fr/c=
|
499
|
+
/?t=3D9ec00f7-1i3-z81-1wk-z5wkq" target=3D"_blank">cliquez-ici</a></td></tr=
|
500
|
+
></table>=0D
|
501
|
+
<table border=3D"0" align=3D"center" cellpadding=3D"0" cellspacing=3D"0" bg=
|
502
|
+
color=3D"#ffffff">=0D
|
503
|
+
<tr>=0D
|
504
|
+
<td colspan=3D"3" align=3D"center" valign=3D"bottom">=0D
|
505
|
+
<table border=3D"0" align=3D"center" cellpadding=3D"0" cellspacing=3D"0" bg=
|
506
|
+
color=3D"#ffffff" width=3D"676" height=3D"53">=0D
|
507
|
+
<tr>=0D
|
508
|
+
<td width=3D"100"><a href=3D"http://t.mb.newsletter-autos.fr/c/?t=3D9ec00f7=
|
509
|
+
-1i3-z84-1wk-z5wkq" target=3D"_blank" title=3D"TATI.fr"><img src=3D"http://=
|
510
|
+
img.tati.fr/news/advertise_offreboots_20171211/img/tati.jpg" width=3D"76" h=
|
511
|
+
eight=3D"53" border=3D"0" style=3D"vertical-align:bottom;" alt=3D"TATI.fr">=
|
512
|
+
</a></td>=0D
|
513
|
+
<td height=3D"19" valign=3D"bottom" style=3D"font-family: Arial, Helvetica,=
|
514
|
+
sans-serif; font-size: 8px; color: #A2A2A2; vertical-align: bottom;"> =
|
515
|
+
; <a href=3D"http://t.mb.newsletter-autos.fr/c/?t=3D9ec00f7-1i3-z8z-1w=
|
516
|
+
k-z5wkq" target=3D"_blank" style=3D"text-decoration:none; color: #A2A2A2;">=
|
517
|
+
PARRAINAGE</a> | <a href=3D"http://t.mb.newsletter-au=
|
518
|
+
tos.fr/c/?t=3D9ec00f7-1i3-z88-1wk-z5wkq" title=3D"" target=3D"_blank" style=
|
519
|
+
=3D"text-decoration:none; color: #000000;"><img src=3D"http://img.tati.fr/n=
|
520
|
+
ews/advertise_offreboots_20171211/img/carte.jpg" width=3D"33" height=3D"19"=
|
521
|
+
border=3D"0" style=3D"vertical-align:middle;" alt=3D""> D&Eacut=
|
522
|
+
e;COUVREZ LA <span style=3D"color: #E4027F;">CARTE TATI</span></a> &nb=
|
523
|
+
sp;| <a href=3D"http://t.mb.newsletter-autos.fr/c/?t=3D9ec00f7-1=
|
524
|
+
i3-z82-1wk-z5wkq" target=3D"_blank" style=3D"text-decoration:none; color: #=
|
525
|
+
A2A2A2;"><img src=3D"http://img.tati.fr/news/advertise_offreboots_20171211/=
|
526
|
+
img/magasin.jpg" width=3D"11" height=3D"17" border=3D"0" style=3D"vertical-=
|
527
|
+
align:middle;" alt=3D""> TROUVEZ VOTRE MAGASIN</a>=0D
|
528
|
+
</td>=0D
|
529
|
+
</tr>=0D
|
530
|
+
</table>=0D
|
531
|
+
<table border=3D"0" align=3D"center" cellpadding=3D"0" cellspacing=3D"0" bg=
|
532
|
+
color=3D"#ffffff" width=3D"676" height=3D"15">=0D
|
533
|
+
<tr><td height=3D"15"> </td></tr>=0D
|
534
|
+
</table>=0D
|
535
|
+
</td>=0D
|
536
|
+
</tr>=0D
|
537
|
+
<tr>=0D
|
538
|
+
<td align=3D"center" valign=3D"bottom" colspan=3D"3">=0D
|
539
|
+
<table border=3D"0" align=3D"center" cellpadding=3D"0" cellspacing=3D"0" b=
|
540
|
+
gcolor=3D"#E3E3E3" width=3D"676" height=3D"25">=0D
|
541
|
+
<tr>=0D
|
542
|
+
<td align=3D"center" valign=3D"middle" style=3D"padding: 0; vertical-align:=
|
543
|
+
middle;"><a href=3D"http://t.mb.newsletter-autos.fr/c/?t=3D9ec00f7-1i3-z8!=
|
544
|
+
-1wk-z5wkq" title=3D"FEMME" target=3D"_blank" style=3D"font-family: Arial, =
|
545
|
+
Helvetica, sans-serif; font-size: 14px; color: #000000; font-weight: bold; =
|
546
|
+
text-decoration:none;">FEMME</a></td>=0D
|
547
|
+
<td width=3D"1" height=3D"31" style=3D"vertical-align: middle;"><img src=3D=
|
548
|
+
"http://img.tati.fr/news/advertise_offreboots_20171211/img/menu_sep.jpg" al=
|
549
|
+
t=3D"|" width=3D"1" height=3D"31" border=3D"0" /></td>=0D
|
550
|
+
<td align=3D"center" valign=3D"middle" style=3D"padding: 0; vertical-align:=
|
551
|
+
middle;"><a href=3D"http://t.mb.newsletter-autos.fr/c/?t=3D9ec00f7-1i3-z89=
|
552
|
+
-1wk-z5wkq" title=3D"HOMME" target=3D"_blank" style=3D"font-family:Arial, H=
|
553
|
+
elvetica, sans-serif; font-size: 14px; color: #000000; font-weight: bold; t=
|
554
|
+
ext-decoration:none;">HOMME</a></td>=0D
|
555
|
+
<td width=3D"1" height=3D"31" style=3D"vertical-align: middle;"><img src=3D=
|
556
|
+
"http://img.tati.fr/news/advertise_offreboots_20171211/img/menu_sep.jpg" al=
|
557
|
+
t=3D"|" width=3D"1" height=3D"31" border=3D"0" /></td>=0D
|
558
|
+
<td align=3D"center" valign=3D"middle" style=3D"padding: 0; vertical-align:=
|
559
|
+
middle;"><a href=3D"http://t.mb.newsletter-autos.fr/c/?t=3D9ec00f7-1i3-z8a=
|
560
|
+
-1wk-z5wkq" title=3D"ENFANT" target=3D"_blank" style=3D"font-family:Arial, =
|
561
|
+
Helvetica, sans-serif; font-size: 14px; color: #000000; font-weight: bold; =
|
562
|
+
text-decoration:none;">ENFANT</a></td>=0D
|
563
|
+
<td width=3D"1" height=3D"31" style=3D"vertical-align: middle;"><img src=3D=
|
564
|
+
"http://img.tati.fr/news/advertise_offreboots_20171211/img/menu_sep.jpg" al=
|
565
|
+
t=3D"|" width=3D"1" height=3D"31" border=3D"0" /></td>=0D
|
566
|
+
<td align=3D"center" valign=3D"middle" style=3D"padding: 0; vertical-align:=
|
567
|
+
middle;"><a href=3D"http://t.mb.newsletter-autos.fr/c/?t=3D9ec00f7-1i3-z8w=
|
568
|
+
-1wk-z5wkq" title=3D"CHAUSSURES" target=3D"_blank" style=3D"font-family:Ari=
|
569
|
+
al, Helvetica, sans-serif; font-size: 14px; color: #000000; font-weight: bo=
|
570
|
+
ld; text-decoration:none;">CHAUSSURES</a></td>=0D
|
571
|
+
<td width=3D"1" height=3D"31" style=3D"vertical-align: middle;"><img src=3D=
|
572
|
+
"http://img.tati.fr/news/advertise_offreboots_20171211/img/menu_sep.jpg" al=
|
573
|
+
t=3D"|" width=3D"1" height=3D"31" border=3D"0" /></td>=0D
|
574
|
+
<td align=3D"center" valign=3D"middle" style=3D"padding: 0; vertical-align:=
|
575
|
+
middle;"><a href=3D"http://t.mb.newsletter-autos.fr/c/?t=3D9ec00f7-1i3-z83=
|
576
|
+
-1wk-z5wkq" title=3D"MAISON" target=3D"_blank" style=3D"font-family:Arial, =
|
577
|
+
Helvetica, sans-serif; font-size: 14px; color: #000000; font-weight: bold; =
|
578
|
+
text-decoration:none;">MAISON</a></td>=0D
|
579
|
+
<td width=3D"1" height=3D"31" style=3D"vertical-align: middle;"><img src=3D=
|
580
|
+
"http://img.tati.fr/news/advertise_offreboots_20171211/img/menu_sep.jpg" al=
|
581
|
+
t=3D"|" width=3D"1" height=3D"31" border=3D"0" /></td>=0D
|
582
|
+
<td align=3D"center" valign=3D"middle" style=3D"padding: 0; vertical-align:=
|
583
|
+
middle;"><a href=3D"http://t.mb.newsletter-autos.fr/c/?t=3D9ec00f7-1i3-z8s=
|
584
|
+
-1wk-z5wkq" title=3D"MEUBLES" target=3D"_blank" style=3D"font-family:Arial,=
|
585
|
+
Helvetica, sans-serif; font-size: 14px; color: #000000; font-weight: bold;=
|
586
|
+
text-decoration:none;">MEUBLES</a></td>=0D
|
587
|
+
<td width=3D"1" height=3D"31" style=3D"vertical-align: middle;"><img src=3D=
|
588
|
+
"http://img.tati.fr/news/advertise_offreboots_20171211/img/menu_sep.jpg" al=
|
589
|
+
t=3D"|" width=3D"1" height=3D"31" border=3D"0" /></td>=0D
|
590
|
+
<td align=3D"center" valign=3D"middle" style=3D"padding: 0; vertical-align:=
|
591
|
+
middle;"><a href=3D"http://t.mb.newsletter-autos.fr/c/?t=3D9ec00f7-1i3-z8f=
|
592
|
+
-1wk-z5wkq" title=3D"MARIAGE" target=3D"_blank" style=3D"font-family:Arial,=
|
593
|
+
Helvetica, sans-serif; font-size: 14px; color: #000000; font-weight: bold;=
|
594
|
+
text-decoration:none;">MARIAGE</a></td>=0D
|
595
|
+
</tr>=0D
|
596
|
+
</table></td>=0D
|
597
|
+
</tr>=0D
|
598
|
+
<tr>=0D
|
599
|
+
<td align=3D"center" valign=3D"bottom">=0D
|
600
|
+
<table align=3D"center" border=3D"0" cellpadding=3D"0" cellspacing=3D"0" wi=
|
601
|
+
dth=3D"778">=0D
|
602
|
+
<tr><td align=3D"center" valign=3D"bottom"><a href=3D"http://t.mb.newslette=
|
603
|
+
r-autos.fr/c/?t=3D9ec00f7-1i3-z8e-1wk-z5wkq" target=3D"_blank" title=3D"DU =
|
604
|
+
11 AU 13 D=C3=89CEMBRE 2017 MINUIT"><img name=3D"visu_01" src=3D"http://img=
|
605
|
+
.tati.fr/news/advertise_offreboots_20171211/img/visu_01.jpg" border=3D"0" s=
|
606
|
+
tyle=3D"vertical-align:bottom;" width=3D"778" height=3D"31" id=3D"visu_01" =
|
607
|
+
alt=3D"DU 11 AU 13 D=C3=89CEMBRE 2017 MINUIT" /></a></td></tr>=0D
|
608
|
+
<tr><td align=3D"center" valign=3D"bottom"><table border=3D"0" cellspacing=
|
609
|
+
=3D"0" cellpadding=3D"0">=0D
|
610
|
+
<tr>=0D
|
611
|
+
<td width=3D"213" height=3D"28"><a href=3D"http://t.mb.newsletter-autos.fr/=
|
612
|
+
c/?t=3D9ec00f7-1i3-z8q-1wk-z5wkq" target=3D"_blank" title=3D"DU 11 AU 13 D=
|
613
|
+
=C3=89CEMBRE 2017 MINUIT"><img name=3D"visu_02" src=3D"http://img.tati.fr/n=
|
614
|
+
ews/advertise_offreboots_20171211/img/visu_02.jpg" border=3D"0" style=3D"ve=
|
615
|
+
rtical-align:bottom;" width=3D"213" height=3D"28" id=3D"visu_02" alt=3D"DU =
|
616
|
+
11 AU 13 D=C3=89CEMBRE 2017 MINUIT" /></a></td>=0D
|
617
|
+
<td width=3D"348" height=3D"28" bgcolor=3D"#C2EDF6" align=3D"center" valign=
|
618
|
+
=3D"middle"><a href=3D"http://t.mb.newsletter-autos.fr/c/?t=3D9ec00f7-1i3-z=
|
619
|
+
80-1wk-z5wkq" target=3D"_blank" title=3D"DU 11 AU 13 D=C3=89CEMBRE 2017 MIN=
|
620
|
+
UIT" style=3D"text-decoration:none; font-size:18px;font-family: Arial, Helv=
|
621
|
+
etica, sans-serif; display: block; color: #00376A;">DU 11 AU 13 D=C3=89CEMB=
|
622
|
+
RE 2017 MINUIT</a></td>=0D
|
623
|
+
<td width=3D"217" height=3D"28"><a href=3D"http://t.mb.newsletter-autos.fr/=
|
624
|
+
c/?t=3D9ec00f7-1i3-z8i-1wk-z5wkq" target=3D"_blank" title=3D"DU 11 AU 13 D=
|
625
|
+
=C3=89CEMBRE 2017 MINUIT"><img name=3D"visu_04" src=3D"http://img.tati.fr/n=
|
626
|
+
ews/advertise_offreboots_20171211/img/visu_04.jpg" border=3D"0" style=3D"ve=
|
627
|
+
rtical-align:bottom;" width=3D"217" height=3D"28" id=3D"visu_04" alt=3D"DU =
|
628
|
+
11 AU 13 D=C3=89CEMBRE 2017 MINUIT" /></a></td>=0D
|
629
|
+
</tr>=0D
|
630
|
+
</table>=0D
|
631
|
+
</td></tr>=0D
|
632
|
+
<tr><td align=3D"center" valign=3D"bottom"><a href=3D"http://t.mb.newslette=
|
633
|
+
r-autos.fr/c/?t=3D9ec00f7-1i3-z8k-1wk-z5wkq" target=3D"_blank" title=3D"5=
|
634
|
+
=E2=82=AC LA 2EME PAIRE DE CHAUSSURES SUR LA S=C3=89LECTION IDENTIFI=C3=89E=
|
635
|
+
"><img name=3D"visu_05" src=3D"http://img.tati.fr/news/advertise_offreboots=
|
636
|
+
_20171211/img/visu_05.jpg" border=3D"0" style=3D"vertical-align:bottom;" wi=
|
637
|
+
dth=3D"778" height=3D"465" id=3D"visu_05" alt=3D"5=E2=82=AC LA 2EME PAIRE D=
|
638
|
+
E CHAUSSURES SUR LA S=C3=89LECTION IDENTIFI=C3=89E" /></a></td></tr>=0D
|
639
|
+
<tr><td align=3D"center" valign=3D"bottom"><table width=3D"0%" border=3D"0"=
|
640
|
+
cellspacing=3D"0" cellpadding=3D"0">=0D
|
641
|
+
<tr>=0D
|
642
|
+
<td width=3D"205" height=3D"40"><a href=3D"http://t.mb.newsletter-autos.fr/=
|
643
|
+
c/?t=3D9ec00f7-1i3-z21-1wk-z5wkq" target=3D"_blank" title=3D"Avec le code p=
|
644
|
+
romo:"><img name=3D"visu_06" src=3D"http://img.tati.fr/news/advertise_offre=
|
645
|
+
boots_20171211/img/visu_06.jpg" border=3D"0" style=3D"vertical-align:bottom=
|
646
|
+
;" width=3D"205" height=3D"40" id=3D"visu_06" alt=3D"Avec le code promo:" /=
|
647
|
+
></a></td>=0D
|
648
|
+
<td width=3D"110" height=3D"40" align=3D"center" valign=3D"middle" style=3D=
|
649
|
+
"font-family: Arial, Helvetica, sans-serif; text-decoration: none; color: #=
|
650
|
+
EF018D; font-size: 28px;">DEC17</td>=0D
|
651
|
+
<td width=3D"137" height=3D"40"><a href=3D"http://t.mb.newsletter-autos.fr/=
|
652
|
+
c/?t=3D9ec00f7-1i3-z85-1wk-z5wkq" target=3D"_blank" title=3D"J'EN PROFITE !=
|
653
|
+
"><img name=3D"visu_08" src=3D"http://img.tati.fr/news/advertise_offreboots=
|
654
|
+
_20171211/img/visu_08.jpg" border=3D"0" style=3D"vertical-align:bottom;" wi=
|
655
|
+
dth=3D"137" height=3D"40" id=3D"visu_08" alt=3D"J'EN PROFITE !" /></a>=0D
|
656
|
+
</td>=0D
|
657
|
+
<td width=3D"238" height=3D"40" align=3D"center" valign=3D"middle" bgcolor=
|
658
|
+
=3D"#EF018D"><a href=3D"http://t.mb.newsletter-autos.fr/c/?t=3D9ec00f7-1i3-=
|
659
|
+
z8l-1wk-z5wkq" target=3D"_blank" title=3D"J'EN PROFITE !" style=3D"text-dec=
|
660
|
+
oration:none; font-size:20px;font-family: Arial, Helvetica, sans-serif; dis=
|
661
|
+
play: block; color: #fff;" ><strong>J'EN PROFITE !</strong></a>=0D
|
662
|
+
</td>=0D
|
663
|
+
<td width=3D"88" height=3D"40"><a href=3D"http://t.mb.newsletter-autos.fr/c=
|
664
|
+
/?t=3D9ec00f7-1i3-z8m-1wk-z5wkq" target=3D"_blank" title=3D"J'EN PROFITE !"=
|
665
|
+
><img name=3D"visu_11" src=3D"http://img.tati.fr/news/advertise_offreboots_=
|
666
|
+
20171211/img/visu_11.jpg" border=3D"0" style=3D"vertical-align:bottom;" wid=
|
667
|
+
th=3D"88" height=3D"40" id=3D"visu_11" alt=3D"J'EN PROFITE !" /></a></td>=0D
|
668
|
+
</tr>=0D
|
669
|
+
</table>=0D
|
670
|
+
</td></tr>=0D
|
671
|
+
<tr><td align=3D"center" valign=3D"bottom"><a href=3D"http://t.mb.newslette=
|
672
|
+
r-autos.fr/c/?t=3D9ec00f7-1i3-z2x-1wk-z5wkq" target=3D"_blank" title=3D"J'E=
|
673
|
+
N PROFITE !"><img name=3D"visu_12" src=3D"http://img.tati.fr/news/advertise=
|
674
|
+
_offreboots_20171211/img/visu_12.jpg" border=3D"0" style=3D"vertical-align:=
|
675
|
+
bottom;" width=3D"778" height=3D"20" id=3D"visu_12" alt=3D"J'EN PROFITE !" =
|
676
|
+
/></a></td></tr>=0D
|
677
|
+
<tr><td align=3D"center" valign=3D"bottom"><a href=3D"http://t.mb.newslette=
|
678
|
+
r-autos.fr/c/?t=3D9ec00f7-1i3-z2c-1wk-z5wkq" target=3D"_blank" title=3D"LES=
|
679
|
+
TOPS PRODUITS TATI"><img name=3D"visu_13" src=3D"http://img.tati.fr/news/a=
|
680
|
+
dvertise_offreboots_20171211/img/visu_13.jpg" border=3D"0" style=3D"vertica=
|
681
|
+
l-align:bottom;" width=3D"778" height=3D"45" id=3D"visu_13" alt=3D"LES TOPS=
|
682
|
+
PRODUITS TATI" /></a></td></tr>=0D
|
683
|
+
<tr><td align=3D"center" valign=3D"bottom">=0D
|
684
|
+
<table cellpadding=3D"0" cellspacing=3D"0" align=3D"center">=0D
|
685
|
+
<tr>=0D
|
686
|
+
<td>=0D
|
687
|
+
<a href=3D"http://t.mb.newsletter-autos.fr/c/?t=3D9ec00f7-1i3-z24-1wk-z5wkq=
|
688
|
+
" target=3D"_blank" title=3D"BOTTES FEMME"><img name=3D"visu_14" src=3D"htt=
|
689
|
+
p://img.tati.fr/news/advertise_offreboots_20171211/img/visu_14.jpg" border=
|
690
|
+
=3D"0" style=3D"vertical-align:bottom;" width=3D"269" height=3D"243" id=3D"=
|
691
|
+
visu_14" alt=3D"BOTTES FEMME" /></a>=0D
|
692
|
+
</td>=0D
|
693
|
+
<td>=0D
|
694
|
+
<a href=3D"http://t.mb.newsletter-autos.fr/c/?t=3D9ec00f7-1i3-z2z-1wk-z5wkq=
|
695
|
+
" target=3D"_blank" title=3D"BOOTS FEMME"><img name=3D"visu_15" src=3D"http=
|
696
|
+
://img.tati.fr/news/advertise_offreboots_20171211/img/visu_15.jpg" border=
|
697
|
+
=3D"0" style=3D"vertical-align:bottom;" width=3D"244" height=3D"243" id=3D"=
|
698
|
+
visu_15" alt=3D"BOOTS FEMME" /></a>=0D
|
699
|
+
</td>=0D
|
700
|
+
<td>=0D
|
701
|
+
<a href=3D"http://t.mb.newsletter-autos.fr/c/?t=3D9ec00f7-1i3-z28-1wk-z5wkq=
|
702
|
+
" target=3D"_blank" title=3D"BOTTES FILLE"><img name=3D"visu_16" src=3D"htt=
|
703
|
+
p://img.tati.fr/news/advertise_offreboots_20171211/img/visu_16.jpg" border=
|
704
|
+
=3D"0" style=3D"vertical-align:bottom;" width=3D"265" height=3D"243" id=3D"=
|
705
|
+
visu_16" alt=3D"BOTTES FILLE" /></a>=0D
|
706
|
+
</td>=0D
|
707
|
+
</tr>=0D
|
708
|
+
</table>=0D
|
709
|
+
</td></tr>=0D
|
710
|
+
</table>=0D
|
711
|
+
</td>=0D
|
712
|
+
</tr>=0D
|
713
|
+
<tr>=0D
|
714
|
+
<td align=3D"center">=0D
|
715
|
+
<table cellpadding=3D"0" cellspacing=3D"0" width=3D"676" style=3D"border-ri=
|
716
|
+
ght:1px solid #DADADA;border-bottom:1px solid #DADADA;border-left:1px solid=
|
717
|
+
#DADADA;">=0D
|
718
|
+
<tr>=0D
|
719
|
+
<td align=3D"center" valign=3D"top" style=3D"font-family:Arial, Helvetica, =
|
720
|
+
sans-serif;font-size:12px;color:#010101;"><span style=3D"color:#EB2A97;font=
|
721
|
+
-size:14px;"><strong><br>CETTE SEMAINE SUR TATI:</a></strong></span><br /><=
|
722
|
+
br />=0D
|
723
|
+
<strong>5=E2=82=AC la 2=C3=A8me paire de chaussures pour toute la famille</=
|
724
|
+
strong><br/><br/>=0D
|
725
|
+
<strong>Profitez-en vite, c'est jusqu'au 13 d=C3=A9cembre 2017 minuit</stro=
|
726
|
+
ng><br />=0D
|
727
|
+
<br />=0D
|
728
|
+
</td></tr>=0D
|
729
|
+
</table>=0D
|
730
|
+
</td>=0D
|
731
|
+
</tr>=0D
|
732
|
+
<tr>=0D
|
733
|
+
<td align=3D"center">=0D
|
734
|
+
<table cellpadding=3D"0" cellspacing=3D"0" width=3D"676" style=3D"">=0D
|
735
|
+
<tr>=0D
|
736
|
+
<td align=3D"justify" valign=3D"top" style=3D"font-family:Arial, Helvetica,=
|
737
|
+
sans-serif;font-size:11px;color:#3C3C3C;"><br>Offre "1 paire de chaus=
|
738
|
+
sures achetée, la 2ème à 5 euros" valable du 11 a=
|
739
|
+
u 13 décembre 2017 jusqu'à minuit pour une commande r&e=
|
740
|
+
acute;alisée sur le site tati sur une sélection de produits d=
|
741
|
+
e la boutique Chaussures identifiés par un pictogramme "5€=
|
742
|
+
la 2ème chaussures". L'article à 5 euros est le moins c=
|
743
|
+
her des articles mis au panier de commande. Dans la limite de 4 produits &a=
|
744
|
+
grave; 5€. Offre non cumulable avec d'autres promotions en cours. Ce c=
|
745
|
+
ode promotionnel ne peut faire l'objet d'aucun remboursement en espè=
|
746
|
+
ces ni d'aucune contrepartie de quelque nature que ce soit.<br><br></td></t=
|
747
|
+
r>=0D
|
748
|
+
</table>=0D
|
749
|
+
</td>=0D
|
750
|
+
</tr>=0D
|
751
|
+
</table>=0D
|
752
|
+
<img src=3D"http://stats.digital-metric.com/stcvw/91d444560e56e157dea1bd885=
|
753
|
+
dad5ff8/49468" alt=3D"" width=3D"1" height=3D"1" /> <table style=3D"width: =
|
754
|
+
100%;margin:auto;text-align:center;font-family:Lucida Grande,Verdana,sans-s=
|
755
|
+
erif;"><tr><td>Pour vous d=C3=A9sabonner, <a href=3D"http://t.mb.newsletter=
|
756
|
+
-autos.fr/c/?t=3D9ec00f7-1i3-z8c-1wk-z5wkq" target=3D"_blank">cliquez-ici</=
|
757
|
+
a></td></tr></table> <img src=3D"http://t.mb.newsletter-autos.fr/o/?t=3D1i=
|
758
|
+
3-1wk-z5wkq" width=3D"1" height=3D"1" alt=3D""/> </body>=0D
|
759
|
+
</html>=
|
760
|
+
|
761
|
+
--_----------=_1513177790252370--
|
762
|
+
|
763
|
+
--8bffb426-6123-43e5-9dab-20b1585123e2--
|
764
|
+
|