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
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,66 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
From: "Mail Delivery System" <mailer-daemon@kundenserver.de>
|
3
|
+
To: xxxx@xxxx.fr
|
4
|
+
Subject: Mail delivery failed: returning message to sender
|
5
|
+
Auto-Submitted: auto-replied
|
6
|
+
MIME-Version: 1.0
|
7
|
+
Content-Type: text/plain; charset=utf-8
|
8
|
+
Content-Transfer-Encoding: 8bit
|
9
|
+
X-UI-Out-Filterresults: unknown:0;V03:K0:Kcn/zdAZw0Y=:T7VNfNUTHnyf4qzwjmCtIA
|
10
|
+
==
|
11
|
+
|
12
|
+
This message was created automatically by mail delivery software.
|
13
|
+
|
14
|
+
A message that you sent could not be delivered to one or more of
|
15
|
+
its recipients. This is a permanent error. The following address(es)
|
16
|
+
failed:
|
17
|
+
|
18
|
+
xxxx@xxxx.fr:
|
19
|
+
SMTP error from remote server for TEXT command, host: smtp-in.orange.fr (193.252.22.65) reason: 550 5.2.0 Mail rejete. Mail rejected. ofr_506 [506]
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
--- The header of the original message is following. ---
|
24
|
+
|
25
|
+
Received: from [212.227.15.41] ([212.227.15.41]) by mx.kundenserver.de
|
26
|
+
(mxeue010 [212.227.15.41]) with ESMTP (Nemesis) id 1MQvwN-1iJ0J61sAR-00O9vb
|
27
|
+
for <xxxx@xxxxx.fr>; Mon, 16 Dec 2019 14:22:07 +0100
|
28
|
+
Received: from regiesmtp1792-2.odiso.net ([185.251.132.146]) by
|
29
|
+
mx.kundenserver.de (mxeue010 [212.227.15.41]) with ESMTP (Nemesis) id
|
30
|
+
1MOBJp-1iMreo1s6L-00OhMP for <xxxx@xxxx.com>; Mon, 16 Dec 2019 14:22:07
|
31
|
+
+0100
|
32
|
+
Message-Id: <1576497267.@xxxx.xxxx>
|
33
|
+
Feedback-Id: 22:1693
|
34
|
+
Precedence: bulk
|
35
|
+
From: <xxxx@xxxx.fr>
|
36
|
+
To: xxxx@xxxx.com
|
37
|
+
Reply-To: <xxxxx@xxxx.fr>
|
38
|
+
Content-Type: text/html; charset=utf-8
|
39
|
+
Subject: xxxxxx
|
40
|
+
Content-Disposition: inline
|
41
|
+
Content-Transfer-Encoding: quoted-printable
|
42
|
+
MIME-Version: 1.0
|
43
|
+
Date: Mon, 16 Dec 2019 12:54:27 +0100
|
44
|
+
X-Spam-Flag: NO
|
45
|
+
X-UI-Out-Filterresults: notjunk:1;V03:K0:bNR20cJ6slw=:420XAXjcgAf15+npPybzpF
|
46
|
+
kCV+AJjbiKSMG3sAhI9YjJfQ8gB/i66pY1cU7g3Rz+By/+na6v7UbFidb17A8ug8KeOMFyHza
|
47
|
+
tJ8DfnOPaq+jEWytlpOQ+xzTRIYersZFYLsATQQGU+IFqs5ftFir5JllSf2rvkAuUOqGdh94P
|
48
|
+
okuFRqflpoKOw0ChfgwNzgW/UYsdHoZL/JRzR24NnoeoTnIp8oWstELobGnLrT3CJeOesuGW/
|
49
|
+
4lpi0xouFF5woDYUE2zVuBHKNteM5U6sqLgL/S4+tIj62V9exm0Z4woutbQBBrdmDn945Q+MU
|
50
|
+
XoFQtVuDxiZUYTLpCRbUHzCL9R9dYdClzbR2VVWTxjmpMNEsFcIn1mqkU8N+wroz3u8YC2R8h
|
51
|
+
s8j7gLFDx3kx8xL5b7yoyaj/KyHWf2DfyBA/qfQrjeCgm9Jz+CWrq6IyyjdAI/Eu+21ahc6og
|
52
|
+
W0QsYKrdDJKNPMEm3WCzX09sfKTgUYzfVzttRl2xU7cJxW2mv194qzDWr2fQSIuntnM6MN2NQ
|
53
|
+
skoPfZFkFr8v9hlyIuIr7zfsqGeRBscmpvh2NVqg0LOTvQnZBDUNrPtmoROX0dviHfKUVG+UT
|
54
|
+
FwVv6XuJyqcUlcTrS7CLg8Jo7mpy+67Mys0+RRA+Iw6D9J0HnH24ktG57c7whPI0jpLDXE8o2
|
55
|
+
njmUJpmJPpBLcNllcuXQntI1pShnl0rG6ILvXcTi5nZ7EU2WbzgWzoE3ZbSWu4cwYywz5e4nw
|
56
|
+
8USo8EZhGbwwyoPs2UojquXB7tRtMPFoIr17c1+KU6BEw3xNhhrakrXElxaYgqhpU1JxUtiEA
|
57
|
+
eIjbL1XPkzDX/HjEDG0qwUBxN16BVZvV1l/st3lhDfgRSAqbnEU3EEyqkER3RwPTJszRoh/u8
|
58
|
+
LIlXhSswmJG2A/OqhbVnyZAsr+UX/TAi6aEFcfjzy89NTKR6qhhlC97kca4dRA81VFI3dYjBg
|
59
|
+
rv421zHHGAymgpixtDXlcv67B+XqQWtEnKU5naxGZK+8nglSKjCemO5jCe5duETtLLBMtblE9
|
60
|
+
IGhQs23v8JQBc+gfqBXRcLcrt6NCcHI2JLr6EPWCmhFW9ftVDn0P8W12dnwdrIfQ6gP744Fe5
|
61
|
+
EAi4HFGFkQMBKs4zI9VMbu0gIwut7QsZzS7lzpOcZgQzeTF+X2RsyhWXjFkfrXq2MwsuldC48
|
62
|
+
O6g42PJkE6z1jlt+7Vg+r2xDyybq6dubLUzxgQyGUJ295sFKI3A3igccSUN8pz5ZNdGmxUShs
|
63
|
+
wugaqOcxx2ekbo1Sr8agWIYuTYkC3OGu6CerZDS/LdbQpNywpWtvGreFKmYbuqYEzazY1WT5J
|
64
|
+
qpMi1jdgw+iEv0f9FLeUDxIxLI7PNSeQnoVGksGQvWmiWkkaknQ=
|
65
|
+
|
66
|
+
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,1469 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
X-Original-To: gm4daljtga4dmljrgy2donjsha@newsletter.supersurprises-au.com
|
3
|
+
Delivered-To: retregie2@mindbounce1.odiso.net
|
4
|
+
Received: by mindbounce1.odiso.net (Postfix)
|
5
|
+
id 4E5F01043E8C; Sat, 3 Sep 2016 22:06:04 +0200 (CEST)
|
6
|
+
Delivered-To: retregie@mindbounce1.odiso.net
|
7
|
+
Received: from mlc-school-burwood.safenetbox.biz (mlc-school-burwood.safenetbox.biz [163.47.52.66])
|
8
|
+
by mindbounce1.odiso.net (Postfix) with ESMTP id 53E341043E83
|
9
|
+
for <gm4daljtga4dmljrgy2donjsha@newsletter.supersurprises-au.com>; Sat, 3 Sep 2016 22:06:03 +0200 (CEST)
|
10
|
+
Received: from mlc-school-burwood.safenetbox.biz (mlc-school-burwood.safenetbox.biz [127.0.0.1])
|
11
|
+
by mlc-school-burwood.safenetbox.biz (Postfix) with ESMTP id 925E4626676
|
12
|
+
for <gm4daljtga4dmljrgy2donjsha@newsletter.supersurprises-au.com>; Sun, 4 Sep 2016 06:06:01 +1000 (AEST)
|
13
|
+
Received: from mlc-school-burwood.safenetbox.biz (unknown [10.1.1.33])
|
14
|
+
by mlc-school-burwood.safenetbox.biz (Postfix) with ESMTP id 9177A626674
|
15
|
+
for <gm4daljtga4dmljrgy2donjsha@newsletter.supersurprises-au.com>; Sun, 4 Sep 2016 06:05:59 +1000 (AEST)
|
16
|
+
MIME-Version: 1.0
|
17
|
+
From: <postmaster@mlcsyd.school>
|
18
|
+
To: <gm4daljtga4dmljrgy2donjsha@newsletter.supersurprises-au.com>
|
19
|
+
Date: Sun, 4 Sep 2016 06:05:56 +1000
|
20
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
21
|
+
boundary="4a18aa08-28cf-409c-9056-8d84c79248b2"
|
22
|
+
X-MS-Exchange-Message-Is-Ndr:
|
23
|
+
Content-Language: en-AU
|
24
|
+
Message-ID: <30fe02df-1863-4f99-b615-0dc480e8023d@mlc-exchange1.mlcsyd.school>
|
25
|
+
In-Reply-To: <1472759554.gm4daljtga4dmljrgy2donjsha@newsletter.supersurprises-au.com>
|
26
|
+
References: <1472759554.gm4daljtga4dmljrgy2donjsha@newsletter.supersurprises-au.com>
|
27
|
+
Subject: Undeliverable: Mieko...Last minute escape?
|
28
|
+
Auto-Submitted: auto-replied
|
29
|
+
|
30
|
+
--4a18aa08-28cf-409c-9056-8d84c79248b2
|
31
|
+
Content-Type: multipart/alternative; differences=Content-Type;
|
32
|
+
boundary="f0c18ab5-b3dd-4b69-8348-8135ed7dd4c7"
|
33
|
+
|
34
|
+
--f0c18ab5-b3dd-4b69-8348-8135ed7dd4c7
|
35
|
+
Content-Type: text/plain; charset="us-ascii"
|
36
|
+
Content-Transfer-Encoding: quoted-printable
|
37
|
+
|
38
|
+
Delivery has failed to these recipients or groups:
|
39
|
+
|
40
|
+
gwang1@student.mlcsyd.nsw.edu.au<mailto:gwang1@student.mlcsyd.nsw.edu.au>
|
41
|
+
The server has tried to deliver this message, without success, and has stop=
|
42
|
+
ped trying. Please try sending this message again. If the problem continues=
|
43
|
+
, contact your helpdesk.
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
|
52
|
+
Diagnostic information for administrators:
|
53
|
+
|
54
|
+
Generating server: mlc-exchange1.mlcsyd.school
|
55
|
+
Receiving server: student.mlcsyd.nsw.edu.au (10.1.1.3)
|
56
|
+
|
57
|
+
gwang1@student.mlcsyd.nsw.edu.au
|
58
|
+
3/09/2016 8:05:56 PM - Remote Server at student.mlcsyd.nsw.edu.au (10.1.1.3=
|
59
|
+
) returned '550 4.4.7 QUEUE.Expired; message expired'
|
60
|
+
3/09/2016 7:58:27 PM - Remote Server at student.mlcsyd.nsw.edu.au (10.1.1.3=
|
61
|
+
) returned '441 4.4.1 Error encountered while communicating with primary ta=
|
62
|
+
rget IP address: "Failed to connect. Winsock error code: 10060, Win32 error=
|
63
|
+
code: 10060." Attempted failover to alternate host, but that did not succe=
|
64
|
+
ed. Either there are no alternate hosts, or delivery failed to all alternat=
|
65
|
+
e hosts. The last endpoint attempted was 10.1.1.3:25'
|
66
|
+
|
67
|
+
Original message headers:
|
68
|
+
|
69
|
+
Received: from mlc-exchange2.mlcsyd.school (10.1.1.34) by
|
70
|
+
mlc-exchange1.mlcsyd.school (10.1.1.33) with Microsoft SMTP Server (TLS) i=
|
71
|
+
d
|
72
|
+
15.0.1104.5; Fri, 2 Sep 2016 05:52:53 +1000
|
73
|
+
Received: from mlc-exchange1.mlcsyd.school (10.1.1.33) by
|
74
|
+
mlc-exchange2.mlcsyd.school (10.1.1.34) with Microsoft SMTP Server (TLS) i=
|
75
|
+
d
|
76
|
+
15.0.1104.5; Fri, 2 Sep 2016 05:52:53 +1000
|
77
|
+
Received: from mlc-school-burwood.safenetbox.biz (10.1.2.1) by
|
78
|
+
mlc-exchange1.mlcsyd.school (10.1.1.33) with Microsoft SMTP Server id
|
79
|
+
15.0.1104.5 via Frontend Transport; Fri, 2 Sep 2016 05:52:53 +1000
|
80
|
+
Received: from mlc-school-burwood.safenetbox.biz (mlc-school-burwood.safene=
|
81
|
+
tbox.biz [127.0.0.1])
|
82
|
+
by mlc-school-burwood.safenetbox.biz (Postfix) with ESMTP id 725496=
|
83
|
+
25614
|
84
|
+
for <gwang1@student.mlcsyd.nsw.edu.au>; Fri, 2 Sep 2016 05:52:53 +=
|
85
|
+
1000 (AEST)
|
86
|
+
Received: from regiesmtp601-1.odiso.net (regiesmtp601-1.odiso.net [89.248.2=
|
87
|
+
14.209])
|
88
|
+
by mlc-school-burwood.safenetbox.biz (Postfix) with ESMTP id D1E4F6=
|
89
|
+
25612
|
90
|
+
for <gwang1@student.mlcsyd.nsw.edu.au>; Fri, 2 Sep 2016 05:52:36 +=
|
91
|
+
1000 (AEST)
|
92
|
+
Message-ID: <1472759554.gm4daljtga4dmljrgy2donjsha@newsletter.supersurprise=
|
93
|
+
s-au.com>
|
94
|
+
Feedback-Id: 1335:380
|
95
|
+
Dkim-Signature: v=3D1; a=3Drsa-sha1; c=3Drelaxed; d=3Dnewsletter.supersurpr=
|
96
|
+
ises-au.com; h=3Dmessage-id:list-unsubscribe:from:to:reply-to:content-type:=
|
97
|
+
subject:content-transfer-encoding:mime-version:date; s=3Dselector1; bh=3Dgt=
|
98
|
+
oQJS7g2LKyzdEzcAEIL77g0PU=3D; b=3DCtd06vDu9Qagod50kBWIFORpLFBtSn7fgCofpIOwa=
|
99
|
+
aD3B9Zih0qByGrCbUiTqkDUsRv8ADUlxkod9Yy1EcgOwide2s+EsGs0jaXEMpUlraLD34mOIQ+9=
|
100
|
+
qByh3PD622KDmz9CMqFBdKz5Q1uBa8tb5SnUmROC9LYkjcLdS/uTBZs=3D
|
101
|
+
List-Unsubscribe: <mailto:gm4daljtga4dmljrgy2donjsha@lu.newsletter.supersur=
|
102
|
+
prises-au.com>
|
103
|
+
Precedence: bulk
|
104
|
+
From: Trivago <newsletter@newsletter.supersurprises-au.com>
|
105
|
+
To: <gwang1@student.mlcsyd.nsw.edu.au>
|
106
|
+
Reply-To: <newsletter@newsletter.supersurprises-au.com>
|
107
|
+
Content-Type: text/html; charset=3D"utf-8"
|
108
|
+
Subject: Mieko...Last minute escape?
|
109
|
+
Content-Disposition: inline
|
110
|
+
Content-Transfer-Encoding: quoted-printable
|
111
|
+
MIME-Version: 1.0
|
112
|
+
X-Mailer: MIME::Lite 3.028 (F2.82; T1.35; A2.09; B3.13; Q3.13)
|
113
|
+
Date: Thu, 1 Sep 2016 21:52:34 +0200
|
114
|
+
Return-Path: gm4daljtga4dmljrgy2donjsha@newsletter.supersurprises-au.com
|
115
|
+
X-MS-Exchange-CrossPremises-OriginalArrivalTime: 01 Sep 2016 19:52:53.2521
|
116
|
+
(UTC)
|
117
|
+
X-MS-Exchange-CrossPremises-OriginalClientIPAddress: 10.1.2.1
|
118
|
+
X-MS-Exchange-CrossPremises-OriginalServerIPAddress: 10.1.1.33
|
119
|
+
X-MS-Exchange-CrossPremises-Cross-Premises-Headers-Processed: mlc-exchange1=
|
120
|
+
.mlcsyd.school
|
121
|
+
X-MS-Exchange-CrossPremises-MessageHighPrecisionLatencyInProgress: LSRV=3Dm=
|
122
|
+
lc-exchange2.mlcsyd.school:TOTAL-HUB=3D0.687;2016-09-01T19:52:54.021Z
|
123
|
+
X-MS-Exchange-CrossPremises-Network-Message-Id: 32124c06-669a-465d-b287-08d=
|
124
|
+
3d2a18fcc
|
125
|
+
X-MS-Exchange-CrossPremises-OriginalSize: 61933
|
126
|
+
X-MS-Exchange-CrossPremises-HygienePolicy: Standard
|
127
|
+
X-MS-Exchange-CrossPremises-MessageLatency: SRV=3Dmlc-exchange1.mlcsyd.scho=
|
128
|
+
ol:TOTAL-FE=3D0.082|SMS=3D0.082
|
129
|
+
X-MS-Exchange-CrossPremises-MessageLatency: SRV=3Dmlc-exchange2.mlcsyd.scho=
|
130
|
+
ol:TOTAL-HUB=3D0.687
|
131
|
+
X-MS-Exchange-CrossPremises-Recipient-Limit-Verified: True
|
132
|
+
X-MS-Exchange-CrossPremises-Transport-Properties: DeliveryPriority=3DNormal
|
133
|
+
X-MS-Exchange-CrossPremises-Prioritization: 1
|
134
|
+
X-MS-Exchange-CrossPremises-AVStamp-Mailbox: Sophos;-1277675518;0;PM
|
135
|
+
X-MS-Exchange-CrossPremises-Rules-Execution-History: TransportVersioned.Sta=
|
136
|
+
ff
|
137
|
+
Signature and Disclaimer%%%TransportVersioned.Disclaimer
|
138
|
+
X-MS-Exchange-CrossPremises-Processed-By-Journaling: Journal Agent
|
139
|
+
X-MS-Exchange-CrossPremises-AuthSource: mlc-exchange1.mlcsyd.school
|
140
|
+
X-MS-Exchange-CrossPremises-AuthAs: Anonymous
|
141
|
+
X-MS-Exchange-CrossPremises-SCL: 1
|
142
|
+
X-OrganizationHeadersPreserved: mlc-exchange1.mlcsyd.school
|
143
|
+
|
144
|
+
|
145
|
+
--f0c18ab5-b3dd-4b69-8348-8135ed7dd4c7
|
146
|
+
Content-Type: text/html; charset="us-ascii"
|
147
|
+
Content-Transfer-Encoding: quoted-printable
|
148
|
+
|
149
|
+
<html>
|
150
|
+
<Head></head><body>
|
151
|
+
<p><b><font color=3D"#000066" size=3D"3" face=3D"Arial">Delivery has failed=
|
152
|
+
to these recipients or groups:</font></b></p>
|
153
|
+
<font color=3D"#000000" size=3D"2" face=3D"Tahoma"><p><a href=3D"mailto:gwa=
|
154
|
+
ng1@student.mlcsyd.nsw.edu.au">gwang1@student.mlcsyd.nsw.edu.au</a><br>
|
155
|
+
</font>
|
156
|
+
<font color=3D"#000000" size=3D"3" face=3D"Arial">The server has tried to d=
|
157
|
+
eliver this message, without success, and has stopped trying. Please try se=
|
158
|
+
nding this message again. If the problem continues, contact your helpdesk.<=
|
159
|
+
br>
|
160
|
+
</font>
|
161
|
+
<font color=3D"#000000" size=3D"2" face=3D"Tahoma"><br>
|
162
|
+
</p>
|
163
|
+
</font>
|
164
|
+
<br><br><br><br><br><br>
|
165
|
+
<font color=3D"#808080" size=3D"2" face=3D"Tahoma"><p><b>Diagnostic informa=
|
166
|
+
tion for administrators:</b></p>
|
167
|
+
<p>Generating server: mlc-exchange1.mlcsyd.school<br>
|
168
|
+
Receiving server: student.mlcsyd.nsw.edu.au (10.1.1.3)<br>
|
169
|
+
</p>
|
170
|
+
<p>gwang1@student.mlcsyd.nsw.edu.au<br>
|
171
|
+
3/09/2016 8:05:56 PM - Remote Server at student.mlcsyd.nsw.edu.au (10.1.1.3=
|
172
|
+
) returned '550 4.4.7 QUEUE.Expired; message expired'<br>
|
173
|
+
3/09/2016 7:58:27 PM - Remote Server at student.mlcsyd.nsw.edu.au (10.1.1.3=
|
174
|
+
) returned '441 4.4.1 Error encountered while communicating with primary ta=
|
175
|
+
rget IP address: "Failed to connect. Winsock error code: 10060, Win32 =
|
176
|
+
error code: 10060." Attempted failover to alternate host, but that did=
|
177
|
+
not succeed. Either there are no alternate hosts, or delivery failed to al=
|
178
|
+
l alternate hosts. The last endpoint attempted was 10.1.1.3:25'</p>
|
179
|
+
<p>Original message headers:</p>
|
180
|
+
<pre>Received: from mlc-exchange2.mlcsyd.school (10.1.1.34) by
|
181
|
+
mlc-exchange1.mlcsyd.school (10.1.1.33) with Microsoft SMTP Server (TLS) i=
|
182
|
+
d
|
183
|
+
15.0.1104.5; Fri, 2 Sep 2016 05:52:53 +1000
|
184
|
+
Received: from mlc-exchange1.mlcsyd.school (10.1.1.33) by
|
185
|
+
mlc-exchange2.mlcsyd.school (10.1.1.34) with Microsoft SMTP Server (TLS) i=
|
186
|
+
d
|
187
|
+
15.0.1104.5; Fri, 2 Sep 2016 05:52:53 +1000
|
188
|
+
Received: from mlc-school-burwood.safenetbox.biz (10.1.2.1) by
|
189
|
+
mlc-exchange1.mlcsyd.school (10.1.1.33) with Microsoft SMTP Server id
|
190
|
+
15.0.1104.5 via Frontend Transport; Fri, 2 Sep 2016 05:52:53 +1000
|
191
|
+
Received: from mlc-school-burwood.safenetbox.biz (mlc-school-burwood.safene=
|
192
|
+
tbox.biz [127.0.0.1])
|
193
|
+
by mlc-school-burwood.safenetbox.biz (Postfix) with ESMTP id 72549625614
|
194
|
+
for <gwang1@student.mlcsyd.nsw.edu.au>; Fri, 2 Sep 2016 05:52:53 +1=
|
195
|
+
000 (AEST)
|
196
|
+
Received: from regiesmtp601-1.odiso.net (regiesmtp601-1.odiso.net [89.248.2=
|
197
|
+
14.209])
|
198
|
+
by mlc-school-burwood.safenetbox.biz (Postfix) with ESMTP id D1E4F625612
|
199
|
+
for <gwang1@student.mlcsyd.nsw.edu.au>; Fri, 2 Sep 2016 05:52:36 +1=
|
200
|
+
000 (AEST)
|
201
|
+
Message-ID: <1472759554.gm4daljtga4dmljrgy2donjsha@newsletter.supersurpr=
|
202
|
+
ises-au.com>
|
203
|
+
Feedback-Id: 1335:380
|
204
|
+
Dkim-Signature: v=3D1; a=3Drsa-sha1; c=3Drelaxed; d=3Dnewsletter.supersurpr=
|
205
|
+
ises-au.com; h=3Dmessage-id:list-unsubscribe:from:to:reply-to:content-type:=
|
206
|
+
subject:content-transfer-encoding:mime-version:date; s=3Dselector1; bh=3Dgt=
|
207
|
+
oQJS7g2LKyzdEzcAEIL77g0PU=3D; b=3DCtd06vDu9Qagod50kBWIFORpLFBtSn7fgCofpIOwa=
|
208
|
+
aD3B9Zih0qByGrCbUiTqkDUsRv8ADUlxkod9Yy1EcgOwide2s+EsGs0jaXEMpUlraLD34mOIQ+9=
|
209
|
+
qByh3PD622KDmz9CMqFBdKz5Q1uBa8tb5SnUmROC9LYkjcLdS/uTBZs=3D
|
210
|
+
List-Unsubscribe: <mailto:gm4daljtga4dmljrgy2donjsha@lu.newsletter.super=
|
211
|
+
surprises-au.com>
|
212
|
+
Precedence: bulk
|
213
|
+
From: Trivago <newsletter@newsletter.supersurprises-au.com>
|
214
|
+
To: <gwang1@student.mlcsyd.nsw.edu.au>
|
215
|
+
Reply-To: <newsletter@newsletter.supersurprises-au.com>
|
216
|
+
Content-Type: text/html; charset=3D"utf-8"
|
217
|
+
Subject: Mieko...Last minute escape?
|
218
|
+
Content-Disposition: inline
|
219
|
+
Content-Transfer-Encoding: quoted-printable
|
220
|
+
MIME-Version: 1.0
|
221
|
+
X-Mailer: MIME::Lite 3.028 (F2.82; T1.35; A2.09; B3.13; Q3.13)
|
222
|
+
Date: Thu, 1 Sep 2016 21:52:34 +0200
|
223
|
+
Return-Path: gm4daljtga4dmljrgy2donjsha@newsletter.supersurprises-au.com
|
224
|
+
X-MS-Exchange-CrossPremises-OriginalArrivalTime: 01 Sep 2016 19:52:53.2521
|
225
|
+
(UTC)
|
226
|
+
X-MS-Exchange-CrossPremises-OriginalClientIPAddress: 10.1.2.1
|
227
|
+
X-MS-Exchange-CrossPremises-OriginalServerIPAddress: 10.1.1.33
|
228
|
+
X-MS-Exchange-CrossPremises-Cross-Premises-Headers-Processed: mlc-exchange1=
|
229
|
+
.mlcsyd.school
|
230
|
+
X-MS-Exchange-CrossPremises-MessageHighPrecisionLatencyInProgress: LSRV=3Dm=
|
231
|
+
lc-exchange2.mlcsyd.school:TOTAL-HUB=3D0.687;2016-09-01T19:52:54.021Z
|
232
|
+
X-MS-Exchange-CrossPremises-Network-Message-Id: 32124c06-669a-465d-b287-08d=
|
233
|
+
3d2a18fcc
|
234
|
+
X-MS-Exchange-CrossPremises-OriginalSize: 61933
|
235
|
+
X-MS-Exchange-CrossPremises-HygienePolicy: Standard
|
236
|
+
X-MS-Exchange-CrossPremises-MessageLatency: SRV=3Dmlc-exchange1.mlcsyd.scho=
|
237
|
+
ol:TOTAL-FE=3D0.082|SMS=3D0.082
|
238
|
+
X-MS-Exchange-CrossPremises-MessageLatency: SRV=3Dmlc-exchange2.mlcsyd.scho=
|
239
|
+
ol:TOTAL-HUB=3D0.687
|
240
|
+
X-MS-Exchange-CrossPremises-Recipient-Limit-Verified: True
|
241
|
+
X-MS-Exchange-CrossPremises-Transport-Properties: DeliveryPriority=3DNormal
|
242
|
+
X-MS-Exchange-CrossPremises-Prioritization: 1
|
243
|
+
X-MS-Exchange-CrossPremises-AVStamp-Mailbox: Sophos;-1277675518;0;PM
|
244
|
+
X-MS-Exchange-CrossPremises-Rules-Execution-History: TransportVersioned.Sta=
|
245
|
+
ff
|
246
|
+
Signature and Disclaimer%%%TransportVersioned.Disclaimer
|
247
|
+
X-MS-Exchange-CrossPremises-Processed-By-Journaling: Journal Agent
|
248
|
+
X-MS-Exchange-CrossPremises-AuthSource: mlc-exchange1.mlcsyd.school
|
249
|
+
X-MS-Exchange-CrossPremises-AuthAs: Anonymous
|
250
|
+
X-MS-Exchange-CrossPremises-SCL: 1
|
251
|
+
X-OrganizationHeadersPreserved: mlc-exchange1.mlcsyd.school
|
252
|
+
</pre>
|
253
|
+
</font>
|
254
|
+
</body>
|
255
|
+
</html>=
|
256
|
+
|
257
|
+
--f0c18ab5-b3dd-4b69-8348-8135ed7dd4c7--
|
258
|
+
|
259
|
+
--4a18aa08-28cf-409c-9056-8d84c79248b2
|
260
|
+
Content-Type: message/delivery-status
|
261
|
+
|
262
|
+
Reporting-MTA: dns;mlc-exchange1.mlcsyd.school
|
263
|
+
Received-From-MTA: dns;mlc-exchange2.mlcsyd.school
|
264
|
+
Arrival-Date: Thu, 1 Sep 2016 19:52:53 +0000
|
265
|
+
|
266
|
+
Original-Recipient: rfc822;gwang1@student.mlcsyd.nsw.edu.au
|
267
|
+
Final-Recipient: rfc822;gwang1@student.mlcsyd.nsw.edu.au
|
268
|
+
Action: failed
|
269
|
+
Status: 4.4.7
|
270
|
+
Diagnostic-Code: smtp;550 4.4.7 QUEUE.Expired; message expired
|
271
|
+
|
272
|
+
|
273
|
+
--4a18aa08-28cf-409c-9056-8d84c79248b2
|
274
|
+
Content-Type: message/rfc822
|
275
|
+
|
276
|
+
Received: from mlc-exchange2.mlcsyd.school (10.1.1.34) by
|
277
|
+
mlc-exchange1.mlcsyd.school (10.1.1.33) with Microsoft SMTP Server (TLS) id
|
278
|
+
15.0.1104.5; Fri, 2 Sep 2016 05:52:53 +1000
|
279
|
+
Received: from mlc-exchange1.mlcsyd.school (10.1.1.33) by
|
280
|
+
mlc-exchange2.mlcsyd.school (10.1.1.34) with Microsoft SMTP Server (TLS) id
|
281
|
+
15.0.1104.5; Fri, 2 Sep 2016 05:52:53 +1000
|
282
|
+
Received: from mlc-school-burwood.safenetbox.biz (10.1.2.1) by
|
283
|
+
mlc-exchange1.mlcsyd.school (10.1.1.33) with Microsoft SMTP Server id
|
284
|
+
15.0.1104.5 via Frontend Transport; Fri, 2 Sep 2016 05:52:53 +1000
|
285
|
+
Received: from mlc-school-burwood.safenetbox.biz (mlc-school-burwood.safenetbox.biz [127.0.0.1])
|
286
|
+
by mlc-school-burwood.safenetbox.biz (Postfix) with ESMTP id 72549625614
|
287
|
+
for <gwang1@student.mlcsyd.nsw.edu.au>; Fri, 2 Sep 2016 05:52:53 +1000 (AEST)
|
288
|
+
Received: from regiesmtp601-1.odiso.net (regiesmtp601-1.odiso.net [89.248.214.209])
|
289
|
+
by mlc-school-burwood.safenetbox.biz (Postfix) with ESMTP id D1E4F625612
|
290
|
+
for <gwang1@student.mlcsyd.nsw.edu.au>; Fri, 2 Sep 2016 05:52:36 +1000 (AEST)
|
291
|
+
Message-ID: <1472759554.gm4daljtga4dmljrgy2donjsha@newsletter.supersurprises-au.com>
|
292
|
+
Feedback-Id: 1335:380
|
293
|
+
Dkim-Signature: v=1; a=rsa-sha1; c=relaxed; d=newsletter.supersurprises-au.com; h=message-id:list-unsubscribe:from:to:reply-to:content-type:subject:content-transfer-encoding:mime-version:date; s=selector1; bh=gtoQJS7g2LKyzdEzcAEIL77g0PU=; b=Ctd06vDu9Qagod50kBWIFORpLFBtSn7fgCofpIOwaaD3B9Zih0qByGrCbUiTqkDUsRv8ADUlxkod9Yy1EcgOwide2s+EsGs0jaXEMpUlraLD34mOIQ+9qByh3PD622KDmz9CMqFBdKz5Q1uBa8tb5SnUmROC9LYkjcLdS/uTBZs=
|
294
|
+
List-Unsubscribe: <mailto:gm4daljtga4dmljrgy2donjsha@lu.newsletter.supersurprises-au.com>
|
295
|
+
Precedence: bulk
|
296
|
+
From: Trivago <newsletter@newsletter.supersurprises-au.com>
|
297
|
+
To: <gwang1@student.mlcsyd.nsw.edu.au>
|
298
|
+
Reply-To: <newsletter@newsletter.supersurprises-au.com>
|
299
|
+
Content-Type: text/html; charset="utf-8"
|
300
|
+
Subject: Mieko...Last minute escape?
|
301
|
+
Content-Disposition: inline
|
302
|
+
Content-Transfer-Encoding: quoted-printable
|
303
|
+
MIME-Version: 1.0
|
304
|
+
X-Mailer: MIME::Lite 3.028 (F2.82; T1.35; A2.09; B3.13; Q3.13)
|
305
|
+
Date: Thu, 1 Sep 2016 21:52:34 +0200
|
306
|
+
Return-Path: gm4daljtga4dmljrgy2donjsha@newsletter.supersurprises-au.com
|
307
|
+
X-OrganizationHeadersPreserved: mlc-exchange1.mlcsyd.school
|
308
|
+
|
309
|
+
|
310
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
311
|
+
|
312
|
+
<html lang=3D"en">
|
313
|
+
<head>
|
314
|
+
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Dus-asci=
|
315
|
+
i">
|
316
|
+
<style type=3D"text/css">
|
317
|
+
/*<![CDATA[*/
|
318
|
+
.ReadMsgBody { width: 100%; }
|
319
|
+
.ExternalClass { width: 100%; }
|
320
|
+
table { border-collapse: collapse; }
|
321
|
+
td { border-collapse: collapse; }
|
322
|
+
/*]]>*/
|
323
|
+
</style>
|
324
|
+
|
325
|
+
<title>--</title>
|
326
|
+
</head>
|
327
|
+
|
328
|
+
<body style=3D"margin: 0; padding: 0;">=20=20
|
329
|
+
<div>
|
330
|
+
<center>
|
331
|
+
<table width=3D"603" border=3D"0" cellpadding=3D"0" cellspacing=3D"0">
|
332
|
+
<tr>
|
333
|
+
<td>
|
334
|
+
<table width=3D"603" border=3D"0" cellpadding=3D"0" cellspacing=
|
335
|
+
=3D"0">
|
336
|
+
<!-- debut -->
|
337
|
+
|
338
|
+
<tr>
|
339
|
+
<td bgcolor=3D"#FFFFFF" style=3D"background-color:#ffffff;t=
|
340
|
+
ext-align: center;"><a href=3D"http://t.newsletter.supersurprises-au.com/c/=
|
341
|
+
?t=3Daa089f9-i2-3k4-292-!xqme" style=3D"color:#677375;"><font color=3D"#677=
|
342
|
+
375" face=3D"Arial, Verdana, sans-serif" style=3D"font-size:12px;">Click he=
|
343
|
+
re to view the message in your browser</font></a></td>
|
344
|
+
</tr>
|
345
|
+
</table>
|
346
|
+
</td>
|
347
|
+
</tr><!-- fin 1 -->
|
348
|
+
|
349
|
+
<tr>
|
350
|
+
<td>
|
351
|
+
<table width=3D"603" border=3D"0" cellpadding=3D"0" cellspacing=
|
352
|
+
=3D"0">
|
353
|
+
<!-- debut -->
|
354
|
+
|
355
|
+
<tr>
|
356
|
+
<td height=3D"15px" bgcolor=3D"#FFFFFF" style=3D"background=
|
357
|
+
-color:#ffffff;text-align: center;"><a href=3D"http://t.newsletter.supersur=
|
358
|
+
prises-au.com/c/?t=3Daa089f9-i2-3k2-292-!xqme" style=3D"color:#677375;"><fo=
|
359
|
+
nt color=3D"#677375" face=3D"Arial, Verdana, sans-serif" style=3D"font-size=
|
360
|
+
:12px;">Mieko...Last minute escape? Click HERE!</font></a></td>
|
361
|
+
</tr>
|
362
|
+
</table>
|
363
|
+
</td>
|
364
|
+
</tr><!-- fin 1 -->
|
365
|
+
|
366
|
+
<tr>
|
367
|
+
<td>
|
368
|
+
<table width=3D"603" border=3D"0" cellpadding=3D"0" cellspacing=
|
369
|
+
=3D"0">
|
370
|
+
<!-- debut -->
|
371
|
+
|
372
|
+
<tr>
|
373
|
+
<td><img style=3D"display:block;" src=3D"http://assets.supe=
|
374
|
+
rsurprises-au.com/PERF/AU/super-surprises/header/images/logo1.jpg" width=3D=
|
375
|
+
"603" height=3D"6" alt=3D""></td>
|
376
|
+
</tr>
|
377
|
+
</table>
|
378
|
+
</td>
|
379
|
+
</tr><!-- fin 1 -->
|
380
|
+
|
381
|
+
<tr>
|
382
|
+
<td>
|
383
|
+
<table width=3D"603" border=3D"0" cellpadding=3D"0" cellspacing=
|
384
|
+
=3D"0">
|
385
|
+
<!-- debut -->
|
386
|
+
|
387
|
+
<tr>
|
388
|
+
<td><img style=3D"display:block;" src=3D"http://assets.supe=
|
389
|
+
rsurprises-au.com/PERF/AU/super-surprises/header/images/logo2.png" width=3D=
|
390
|
+
"208" height=3D"20" alt=3D""></td>
|
391
|
+
|
392
|
+
<td width=3D"372" height=3D"20" bgcolor=3D"#FFFFFF" style=
|
393
|
+
=3D"text-align:right;background-color:#ffffff;"><a href=3D"http://t.newslet=
|
394
|
+
ter.supersurprises-au.com/c/?t=3Daa089f9-i2-3kz-292-!xqme" style=3D"color:#=
|
395
|
+
677375;"><font color=3D"#677375" face=3D"Arial, Verdana, sans-serif" style=
|
396
|
+
=3D"font-size:11px;">Remove me from all future mailings</font></a></td>
|
397
|
+
|
398
|
+
<td><img style=3D"display:block;" src=3D"http://assets.supe=
|
399
|
+
rsurprises.comPERF/AU/super-surprises/header/images/picto-desabo.jpg" width=
|
400
|
+
=3D"23" height=3D"20" alt=3D""></td>
|
401
|
+
</tr>
|
402
|
+
</table>
|
403
|
+
</td>
|
404
|
+
</tr><!-- fin 1 -->
|
405
|
+
|
406
|
+
<tr>
|
407
|
+
<td>
|
408
|
+
<table width=3D"603" border=3D"0" cellpadding=3D"0" cellspacing=
|
409
|
+
=3D"0">
|
410
|
+
<!-- debut -->
|
411
|
+
|
412
|
+
<tr>
|
413
|
+
<td><img style=3D"display:block;" src=3D"http://assets.supe=
|
414
|
+
rsurprises-au.com/PERF/AU/super-surprises/header/images/logo3.jpg" width=3D=
|
415
|
+
"208" height=3D"22" alt=3D""></td>
|
416
|
+
|
417
|
+
<td width=3D"372" height=3D"22" bgcolor=3D"#FFFFFF" style=
|
418
|
+
=3D"text-align:right;background-color:#ffffff;"><a href=3D"http://t.newslet=
|
419
|
+
ter.supersurprises-au.com/c/?t=3Daa089f9-i2-3kz-292-!xqme" style=3D"color:#=
|
420
|
+
677375;"><font color=3D"#677375" face=3D"Arial, Verdana, sans-serif" style=
|
421
|
+
=3D"font-size:11px;">Unsolicited message</font></a></td>
|
422
|
+
|
423
|
+
<td><img style=3D"display:block;" src=3D"http://assets.supe=
|
424
|
+
rsurprises-au.com/PERF/AU/super-surprises/header/images/picto-indesirable.j=
|
425
|
+
pg" width=3D"23" height=3D"22" alt=3D""></td>
|
426
|
+
</tr>
|
427
|
+
</table>
|
428
|
+
</td>
|
429
|
+
</tr><!-- fin 1 -->
|
430
|
+
|
431
|
+
<tr>
|
432
|
+
<td>
|
433
|
+
<table width=3D"603" border=3D"0" cellpadding=3D"0" cellspacing=
|
434
|
+
=3D"0">
|
435
|
+
<!-- debut -->
|
436
|
+
|
437
|
+
<tr>
|
438
|
+
<td><img style=3D"display:block;" src=3D"http://assets.supe=
|
439
|
+
rsurprises-au.com/PERF/AU/super-surprises/header/images/logo4.jpg" width=3D=
|
440
|
+
"603" height=3D"9" alt=3D""></td>
|
441
|
+
</tr>
|
442
|
+
</table>
|
443
|
+
</td>
|
444
|
+
</tr><!-- fin 1 -->
|
445
|
+
</table>
|
446
|
+
</center>
|
447
|
+
</div> <a href=3D"http://t.newsletter.supersurprises-au.com/c/?t=3Daa089f=
|
448
|
+
9-i2-3k2-292-!xqme" target=3D"_blank" style=3D"text:decoration:none">
|
449
|
+
|
450
|
+
|
451
|
+
|
452
|
+
|
453
|
+
<br>
|
454
|
+
|
455
|
+
|
456
|
+
|
457
|
+
|
458
|
+
|
459
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.=
|
460
|
+
w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns=3D"http://www.w3.=
|
461
|
+
org/1999/xhtml"><head>
|
462
|
+
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3DU=
|
463
|
+
TF-8">
|
464
|
+
<meta name=3D"viewport" content=3D"width=3Ddevice-width, user-scala=
|
465
|
+
ble=3Dno, initial-scale=3D1.0, minimum-scale=3D1.0, maximum-scale=3D1.0">
|
466
|
+
<meta name=3D"author" content=3D"Dirk Soentjens - http://www.soentj=
|
467
|
+
ens.nl - twitter : @tampert">
|
468
|
+
<title >trivago Newsletter</title>
|
469
|
+
<style type=3D"text/css">
|
470
|
+
.ReadMsgBody {
|
471
|
+
width: 100%;
|
472
|
+
}
|
473
|
+
.ExternalClass {
|
474
|
+
width: 100%;
|
475
|
+
}
|
476
|
+
.ExternalClass, .ExternalClass p, .ExternalClass span, .Externa=
|
477
|
+
lClass font, .ExternalClass td, .ExternalClass div {
|
478
|
+
line-height: 100%;
|
479
|
+
}
|
480
|
+
table, td {
|
481
|
+
border-collapse: collapse;
|
482
|
+
mso-table-lspace: 0pt;
|
483
|
+
mso-table-rspace: 0pt;
|
484
|
+
border: 0px;
|
485
|
+
}
|
486
|
+
/* angularjs*/
|
487
|
+
.ng-hide {
|
488
|
+
display: none !important;
|
489
|
+
}
|
490
|
+
@media only screen and (max-width: 480px), screen and (max-devi=
|
491
|
+
ce-width: 500px) {
|
492
|
+
body[yahoo] .main_photo {
|
493
|
+
width: 100% !important;
|
494
|
+
}
|
495
|
+
body[yahoo] .subheader {
|
496
|
+
text-align: center;
|
497
|
+
}
|
498
|
+
body[yahoo] .hide_m {
|
499
|
+
width: 0px;
|
500
|
+
display: none;
|
501
|
+
}
|
502
|
+
body[yahoo] .deal_item {
|
503
|
+
width: 100% !important;
|
504
|
+
height: auto !important;
|
505
|
+
margin-bottom: 15px !important;
|
506
|
+
}
|
507
|
+
body[yahoo] .top_deal_item {
|
508
|
+
width: 100% !important;
|
509
|
+
height: auto !important;
|
510
|
+
margin-bottom: 15px !important;
|
511
|
+
}
|
512
|
+
body[yahoo] .main_button {
|
513
|
+
width: 100% !important;
|
514
|
+
}
|
515
|
+
body[yahoo] .other_destinations {
|
516
|
+
padding-right: 0 !important;
|
517
|
+
width: 100% !important;
|
518
|
+
}
|
519
|
+
body[yahoo] .social {
|
520
|
+
text-align: center;
|
521
|
+
}
|
522
|
+
body[yahoo] .full_m {
|
523
|
+
width: 100% !important;
|
524
|
+
}
|
525
|
+
body[yahoo] .deviceWidth {
|
526
|
+
width: 95% !important;
|
527
|
+
padding: 0 !important;
|
528
|
+
}
|
529
|
+
body[yahoo] .m-fw {
|
530
|
+
width: 100% !important;
|
531
|
+
padding: 0;
|
532
|
+
}
|
533
|
+
body[yahoo] img.m-fw {
|
534
|
+
width: 100% !important;
|
535
|
+
height: auto !important;
|
536
|
+
}
|
537
|
+
body[yahoo] .m-stack {
|
538
|
+
display: block !important;
|
539
|
+
float: left !important;
|
540
|
+
width: 100% !important;
|
541
|
+
}
|
542
|
+
body[yahoo] .tile {
|
543
|
+
padding: 0 !important;
|
544
|
+
padding-bottom: 12px !important;
|
545
|
+
}
|
546
|
+
body[yahoo] .tileimg {
|
547
|
+
padding: 0 !important;
|
548
|
+
}
|
549
|
+
body[yahoo] .headerimage {
|
550
|
+
text-align: center;
|
551
|
+
padding: 0 !important;
|
552
|
+
padding-bottom: 12px !important;
|
553
|
+
padding-top: 12px !important;
|
554
|
+
}
|
555
|
+
body[yahoo] .headertext {
|
556
|
+
text-align: center;
|
557
|
+
padding: 0 !important;
|
558
|
+
padding-bottom: 12px !important;
|
559
|
+
}
|
560
|
+
body[yahoo] .deviceWidth {
|
561
|
+
width: 95% !important;
|
562
|
+
padding: 0;
|
563
|
+
}
|
564
|
+
.fixed_city_name {
|
565
|
+
width: 100px !important;
|
566
|
+
max-width: 100px !important;
|
567
|
+
}
|
568
|
+
}
|
569
|
+
</style></head><body bgcolor=3D"#ffffff" topmargin=3D"0" leftmargin=
|
570
|
+
=3D"0" marginwidth=3D"0" yahoo=3D"fix" marginheight=3D"0" style=3D"padding:=
|
571
|
+
0; margin: 0; background-color:#EEE;font-family: 'Arial', 'Helvetica', san=
|
572
|
+
s-serif;">
|
573
|
+
<table border=3D"0" align=3D"center" cellpadding=3D"0" cellspacing=3D"0=
|
574
|
+
" style=3D"max-width:700px; border-collapse: collapse;">
|
575
|
+
<tbody><tr>
|
576
|
+
<td>
|
577
|
+
<table border=3D"0" align=3D"center" cellpadding=3D"0" cell=
|
578
|
+
spacing=3D"0" bgcolor=3D"#ffffff" style=3D"max-width:700px; border-collapse=
|
579
|
+
: collapse; border:0px;">
|
580
|
+
<tbody><tr>
|
581
|
+
<td valign=3D"top" bgcolor=3D"#ffffff" style=3D" bo=
|
582
|
+
rder-bottom-width: 0px; border-bottom-style: solid;">
|
583
|
+
</td>
|
584
|
+
</tr>
|
585
|
+
<tr>
|
586
|
+
<td bgcolor=3D"#FFFFFF">
|
587
|
+
<table border=3D"0" cellpadding=3D"0" cellspaci=
|
588
|
+
ng=3D"0" bgcolor=3D"#FFFFFF" class=3D"full_m">
|
589
|
+
<tbody><tr>
|
590
|
+
<td class=3D"m-stack headerimage" style=
|
591
|
+
=3D"background-color: #FFFFFF; padding-top: 15px; padding-left: 15px; paddi=
|
592
|
+
ng-right: 15px; padding-bottom: 15px;" height=3D"57"><a href=3D"http://t.ne=
|
593
|
+
wsletter.supersurprises-au.com/c/?t=3Daa089f9-i2-3k!-292-!xqme" target=3D"_=
|
594
|
+
blank" style=3D"text-decoration:none" title=3D"trivago logo"><img src=3D"ht=
|
595
|
+
tp://dea.trivago.com/images/assets/trivagologo.jpg" alt=3D"trivago" style=
|
596
|
+
=3D"border:0 none;"></a></td>
|
597
|
+
<td class=3D"m-stack headertext"><span =
|
598
|
+
style=3D"background-color: #FFFFFF; font-size: 18px; color: #777777; displa=
|
599
|
+
y: inline-block; font-family: 'Arial', 'Helvetica', sans-serif;" >Newslette=
|
600
|
+
r | Last Minute Domestic Deals</span>
|
601
|
+
</td>
|
602
|
+
</tr>
|
603
|
+
</tbody></table>
|
604
|
+
</td>
|
605
|
+
</tr>
|
606
|
+
<tr class=3D"">
|
607
|
+
<td style=3D"background-color: #FFFFFF; padding-lef=
|
608
|
+
t:15px; padding-right:15px; padding-bottom:15px; border:0px;">
|
609
|
+
<table border=3D"0" cellpadding=3D"0" cellspaci=
|
610
|
+
ng=3D"0" style=3D"border-collapse: collapse; border:none; border-color: #ff=
|
611
|
+
ffff;">
|
612
|
+
<tbody><tr>
|
613
|
+
<td style=3D"padding-left: 10px; width:=
|
614
|
+
354px;border-width:1px; border-style:solid; border-color:#66a400;border-co=
|
615
|
+
llapse: collapse;">
|
616
|
+
<a href=3D"http://t.newsletter.supe=
|
617
|
+
rsurprises-au.com/c/?t=3Daa089f9-i2-3k9-292-!xqme" target=3D"_blank" style=
|
618
|
+
=3D"text-decoration:none;" title=3D"#TITLE HERE"><span style=3D"font-weight=
|
619
|
+
: normal; font-size: 20px; color: #777777;font-family: 'Arial', 'Helvetica'=
|
620
|
+
, sans-serif; text-decoration: none;" >Sydney</span></a>
|
621
|
+
</td>
|
622
|
+
<td width=3D"10" style=3D"border: none;=
|
623
|
+
border-collapse: collapse; margin:0px; padding:0px; border-color: #ffffff;=
|
624
|
+
background:#ffffff;"></td>
|
625
|
+
<td class=3D"hide_m" style=3D"border-wi=
|
626
|
+
dth:1px; border-style:solid; border-color:#cccccc; padding-left:10px; paddi=
|
627
|
+
ng-right:10px; margin:0px; background:#FFFFFF;">
|
628
|
+
<a href=3D"http://t.newsletter.supe=
|
629
|
+
rsurprises-au.com/c/?t=3Daa089f9-i2-3k2-292-!xqme" target=3D"_blank" style=
|
630
|
+
=3D"text-decoration:none;" title=3D"#TITLE HERE"><span style=3D"color: #777=
|
631
|
+
777; font-size: 12px;font-family: 'Arial', 'Helvetica', sans-serif;border-c=
|
632
|
+
ollapse: collapse;" >DD/MM/YY</span></a>
|
633
|
+
</td>
|
634
|
+
<td width=3D"10" style=3D"border: none;=
|
635
|
+
border-collapse: collapse; margin:0px; padding:0px; border-color: #ffffff;=
|
636
|
+
background:#ffffff;"></td>
|
637
|
+
<td>
|
638
|
+
<table cellspacing=3D"0" cellpaddin=
|
639
|
+
g=3D"0" border=3D"0" style=3D"border-collapse: collapse;">
|
640
|
+
<tbody><tr>
|
641
|
+
<td align=3D"center" style=
|
642
|
+
=3D"width: 140px; background: #66a400; -webkit-border-radius: 6px; -moz-bor=
|
643
|
+
der-radius: 6px; border-radius: 6px; color: #ffffff; display: block; paddin=
|
644
|
+
g:10px 0;">
|
645
|
+
<a href=3D"http://t.new=
|
646
|
+
sletter.supersurprises-au.com/c/?t=3Daa089f9-i2-3ka-292-!xqme" style=3D"col=
|
647
|
+
or: #ffffff; font-size:20px; font-weight: bold; font-family: 'Arial', 'Helv=
|
648
|
+
etica', sans-serif; text-decoration: none; line-height:20px; width:100%; di=
|
649
|
+
splay:inline-block" >
|
650
|
+
Search </a></td>
|
651
|
+
</tr>
|
652
|
+
</tbody></table>
|
653
|
+
</td>
|
654
|
+
</tr>
|
655
|
+
</tbody></table>
|
656
|
+
</td>
|
657
|
+
</tr>
|
658
|
+
<tr>
|
659
|
+
<td style=3D"background-color:#EEEEEE; width:700px;=
|
660
|
+
"><a href=3D"http://t.newsletter.supersurprises-au.com/c/?t=3Daa089f9-i2-3k=
|
661
|
+
w-292-!xqme" target=3D"_blank" style=3D"text-decoration:none;"><img alt=3D"=
|
662
|
+
sydney" class=3D"main_photo" src=3D"http://admin.dea.trivago.com/images/big=
|
663
|
+
_image/Syndey_BigImage.jpg" style=3D"max-width:700px; display: block; bord=
|
664
|
+
er:0px;"></a></td>
|
665
|
+
</tr>
|
666
|
+
</tbody></table>
|
667
|
+
</td>
|
668
|
+
</tr>
|
669
|
+
<tr class=3D"">
|
670
|
+
<td>
|
671
|
+
<table class=3D"full_m" align=3D"left" cellpadding=3D"0" ce=
|
672
|
+
llspacing=3D"0" style=3D"border:none; border-collapse: collapse; width:700p=
|
673
|
+
x;">
|
674
|
+
<tbody><tr>
|
675
|
+
<td style=3D"background-color: #eee; padding-top: 2=
|
676
|
+
4px; padding-bottom:8px; padding-left: 13px;" class=3D"subheader"><span sty=
|
677
|
+
le=3D"font-size: 18px; color: #777777; font-weight: bold;font-family: 'Aria=
|
678
|
+
l', 'Helvetica', sans-serif; width:100%;" ></span>
|
679
|
+
</td>
|
680
|
+
</tr>
|
681
|
+
</tbody></table>
|
682
|
+
</td>
|
683
|
+
</tr>
|
684
|
+
<!-- Top deals -->
|
685
|
+
<tr >
|
686
|
+
<td>
|
687
|
+
<table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" ali=
|
688
|
+
gn=3D"center" width=3D"700" class=3D"deviceWidth" bgcolor=3D"#eeeeee">
|
689
|
+
<tbody><tr>
|
690
|
+
<td style=3D" padding-bottom:16px;" valign=3D"top" =
|
691
|
+
class=3D"m-stack tile ng-scope" >
|
692
|
+
<table cellpadding=3D"0" cellspacing=3D"0" bord=
|
693
|
+
er=3D"0" align=3D"center" width=3D"226" style=3D"background:#ffffff;" class=
|
694
|
+
=3D"m-fw">
|
695
|
+
<tbody><tr>
|
696
|
+
<td style=3D"background:#dfe4e8;" colsp=
|
697
|
+
an=3D"2"><a href=3D"http://t.newsletter.supersurprises-au.com/c/?t=3Daa089f=
|
698
|
+
9-i2-3k3-292-!xqme" target=3D"_blank" style=3D"text-decoration:none" title=
|
699
|
+
=3D""><img style=3D"display:block;border:0 none;" class=3D"m-fw" alt=3D"mel=
|
700
|
+
bourne" width=3D"226" height=3D"152" src=3D"http://dea.trivago.com/images/=
|
701
|
+
destinations/480x320/44314_v1.jpg"></a>
|
702
|
+
</td>
|
703
|
+
</tr>
|
704
|
+
<tr>
|
705
|
+
<td style=3D"background-color: #fff; pa=
|
706
|
+
dding: 5px 15px 0px 15px;" colspan=3D"2"><a href=3D"http://t.newsletter.sup=
|
707
|
+
ersurprises-au.com/c/?t=3Daa089f9-i2-3k3-292-!xqme" target=3D"_blank" style=
|
708
|
+
=3D"text-decoration:none;" title=3D"melbourne"><span style=3D"color: #777; =
|
709
|
+
font-size: 18px;font-family: 'Arial', 'Helvetica', sans-serif;text-decorati=
|
710
|
+
on: none;" >Melbourne</span></a>
|
711
|
+
</td>
|
712
|
+
</tr>
|
713
|
+
<tr>
|
714
|
+
<td style=3D"background-color: #fff; pa=
|
715
|
+
dding-bottom: 5px; padding-left: 15px;"><img src=3D"http://ie1.trivago.com/=
|
716
|
+
images/layoutimages/mailing/responsive_newsletter_template/images/stars_3.j=
|
717
|
+
pg" alt=3D"rating" style=3D"display:block;border:0 none;"></td>
|
718
|
+
<td style=3D"background-color: #fff; pa=
|
719
|
+
dding-bottom: 5px; padding-right: 15px; padding-left: 15px;">
|
720
|
+
<a href=3D"http://t.newsletter.supe=
|
721
|
+
rsurprises-au.com/c/?t=3Daa089f9-i2-3k3-292-!xqme" target=3D"_blank" style=
|
722
|
+
=3D"text-decoration:none;" title=3D"melbourne"><span style=3D"color:#119710=
|
723
|
+
; font-size: 15px;font-family: 'Arial', 'Helvetica', sans-serif;text-decora=
|
724
|
+
tion: none;" >from </span><span style=3D"color:#119710; font-size: 16=
|
725
|
+
px;font-family: 'Arial', 'Helvetica', sans-serif;text-decoration: none; fon=
|
726
|
+
t-weight: bold;" >$78</span></a>
|
727
|
+
</td>
|
728
|
+
</tr>
|
729
|
+
<tr>
|
730
|
+
<td colspan=3D"2" style=3D"background-c=
|
731
|
+
olor: #fff; padding:0 15px 15px; border-bottom: 1px solid #bdbdbd;" align=
|
732
|
+
=3D"center">
|
733
|
+
<table cellspacing=3D"0" cellpaddin=
|
734
|
+
g=3D"0" style=3D"width: 100%;">
|
735
|
+
<tbody><tr>
|
736
|
+
<td align=3D"center" class=
|
737
|
+
=3D"main_button" style=3D"background: #66a400; -webkit-border-radius: 6px; =
|
738
|
+
-moz-border-radius: 6px; border-radius: 6px; color: #ffffff; display: block=
|
739
|
+
; padding:5px 0;">
|
740
|
+
<a href=3D"http://t.new=
|
741
|
+
sletter.supersurprises-au.com/c/?t=3Daa089f9-i2-3k3-292-!xqme" style=3D"col=
|
742
|
+
or: #ffffff; font-size:14px; font-weight: bold; font-family: 'Arial', 'Helv=
|
743
|
+
etica', sans-serif; text-decoration: none; line-height:20px; width:100%; di=
|
744
|
+
splay:inline-block" >Save up to 61%<span style=3D"font-size:22px;font-weigh=
|
745
|
+
t: normal;"> =E2=80=BA=E2=80=BA</span></a>
|
746
|
+
</td>
|
747
|
+
</tr>
|
748
|
+
</tbody></table>
|
749
|
+
</td>
|
750
|
+
</tr>
|
751
|
+
</tbody></table>
|
752
|
+
</td><td style=3D" padding-bottom:16px;" valign=3D"=
|
753
|
+
top" class=3D"m-stack tile ng-scope" >
|
754
|
+
<table cellpadding=3D"0" cellspacing=3D"0" bord=
|
755
|
+
er=3D"0" align=3D"center" width=3D"226" style=3D"background:#ffffff;" class=
|
756
|
+
=3D"m-fw">
|
757
|
+
<tbody><tr>
|
758
|
+
<td style=3D"background:#dfe4e8;" colsp=
|
759
|
+
an=3D"2"><a href=3D"http://t.newsletter.supersurprises-au.com/c/?t=3Daa089f=
|
760
|
+
9-i2-3ks-292-!xqme" target=3D"_blank" style=3D"text-decoration:none" title=
|
761
|
+
=3D""><img style=3D"display:block;border:0 none;" class=3D"m-fw" alt=3D"bri=
|
762
|
+
sbane" width=3D"226" height=3D"152" src=3D"http://dea.trivago.com/images/d=
|
763
|
+
estinations/480x320/44311_v2.jpg"></a>
|
764
|
+
</td>
|
765
|
+
</tr>
|
766
|
+
<tr>
|
767
|
+
<td style=3D"background-color: #fff; pa=
|
768
|
+
dding: 5px 15px 0px 15px;" colspan=3D"2"><a href=3D"http://t.newsletter.sup=
|
769
|
+
ersurprises-au.com/c/?t=3Daa089f9-i2-3ks-292-!xqme" target=3D"_blank" style=
|
770
|
+
=3D"text-decoration:none;" title=3D"brisbane"><span style=3D"color: #777; f=
|
771
|
+
ont-size: 18px;font-family: 'Arial', 'Helvetica', sans-serif;text-decoratio=
|
772
|
+
n: none;" >Brisbane</span></a>
|
773
|
+
</td>
|
774
|
+
</tr>
|
775
|
+
<tr>
|
776
|
+
<td style=3D"background-color: #fff; pa=
|
777
|
+
dding-bottom: 5px; padding-left: 15px;"><img alt=3D"rating" style=3D"displa=
|
778
|
+
y:block;border:0 none;" src=3D"http://ie1.trivago.com/images/layoutimages/m=
|
779
|
+
ailing/responsive_newsletter_template/images/stars_3.jpg" ></td>
|
780
|
+
<td style=3D"background-color: #fff; pa=
|
781
|
+
dding-bottom: 5px; padding-right: 15px; padding-left: 15px;">
|
782
|
+
<a href=3D"http://t.newsletter.supe=
|
783
|
+
rsurprises-au.com/c/?t=3Daa089f9-i2-3ks-292-!xqme" target=3D"_blank" style=
|
784
|
+
=3D"text-decoration:none;" title=3D"brisbane"><span style=3D"color:#119710;=
|
785
|
+
font-size: 15px;font-family: 'Arial', 'Helvetica', sans-serif;text-decorat=
|
786
|
+
ion: none;" >from </span><span style=3D"color:#119710; font-size: 16p=
|
787
|
+
x;font-family: 'Arial', 'Helvetica', sans-serif;text-decoration: none; font=
|
788
|
+
-weight: bold;" >$80</span></a>
|
789
|
+
</td>
|
790
|
+
</tr>
|
791
|
+
<tr>
|
792
|
+
<td colspan=3D"2" style=3D"background-c=
|
793
|
+
olor: #fff; padding:0 15px 15px; border-bottom: 1px solid #bdbdbd;" align=
|
794
|
+
=3D"center">
|
795
|
+
<table cellspacing=3D"0" cellpaddin=
|
796
|
+
g=3D"0" style=3D"width: 100%;">
|
797
|
+
<tbody><tr>
|
798
|
+
<td align=3D"center" class=
|
799
|
+
=3D"main_button" style=3D"background: #66a400; -webkit-border-radius: 6px; =
|
800
|
+
-moz-border-radius: 6px; border-radius: 6px; color: #ffffff; display: block=
|
801
|
+
; padding:5px 0;">
|
802
|
+
<a href=3D"http://t.new=
|
803
|
+
sletter.supersurprises-au.com/c/?t=3Daa089f9-i2-3ks-292-!xqme" style=3D"col=
|
804
|
+
or: #ffffff; font-size:14px; font-weight: bold; font-family: 'Arial', 'Helv=
|
805
|
+
etica', sans-serif; text-decoration: none; line-height:20px; width:100%; di=
|
806
|
+
splay:inline-block" >Save up to 59%<span style=3D"font-size:22px;font-weigh=
|
807
|
+
t: normal;"> =E2=80=BA=E2=80=BA</span></a>
|
808
|
+
</td>
|
809
|
+
</tr>
|
810
|
+
</tbody></table>
|
811
|
+
</td>
|
812
|
+
</tr>
|
813
|
+
</tbody></table>
|
814
|
+
</td><td style=3D" padding-bottom:16px;" valign=3D"=
|
815
|
+
top" class=3D"m-stack tile ng-scope" >
|
816
|
+
<table cellpadding=3D"0" cellspacing=3D"0" bord=
|
817
|
+
er=3D"0" align=3D"center" width=3D"226" style=3D"background:#ffffff;" class=
|
818
|
+
=3D"m-fw">
|
819
|
+
<tbody><tr>
|
820
|
+
<td style=3D"background:#dfe4e8;" colsp=
|
821
|
+
an=3D"2"><a href=3D"http://t.newsletter.supersurprises-au.com/c/?t=3Daa089f=
|
822
|
+
9-i2-3kf-292-!xqme" target=3D"_blank" style=3D"text-decoration:none" title=
|
823
|
+
=3D""><img style=3D"display:block;border:0 none;" class=3D"m-fw" alt=3D"Bri=
|
824
|
+
sbane" width=3D"226" height=3D"152" src=3D"http://dea.trivago.com/images/d=
|
825
|
+
estinations/480x320/93757_v8.jpg"></a>
|
826
|
+
</td>
|
827
|
+
</tr>
|
828
|
+
<tr>
|
829
|
+
<td style=3D"background-color: #fff; pa=
|
830
|
+
dding: 5px 15px 0px 15px;" colspan=3D"2"><a href=3D"http://t.newsletter.sup=
|
831
|
+
ersurprises-au.com/c/?t=3Daa089f9-i2-3kf-292-!xqme" target=3D"_blank" style=
|
832
|
+
=3D"text-decoration:none;" title=3D"Brisbane"><span style=3D"color: #777; f=
|
833
|
+
ont-size: 18px;font-family: 'Arial', 'Helvetica', sans-serif;text-decoratio=
|
834
|
+
n: none;" >Gold Coast</span></a>
|
835
|
+
</td>
|
836
|
+
</tr>
|
837
|
+
<tr>
|
838
|
+
<td style=3D"background-color: #fff; pa=
|
839
|
+
dding-bottom: 5px; padding-left: 15px;"><img alt=3D"rating" style=3D"displa=
|
840
|
+
y:block;border:0 none;" src=3D"http://ie1.trivago.com/images/layoutimages/m=
|
841
|
+
ailing/responsive_newsletter_template/images/stars_3.jpg" ></td>
|
842
|
+
<td style=3D"background-color: #fff; pa=
|
843
|
+
dding-bottom: 5px; padding-right: 15px; padding-left: 15px;">
|
844
|
+
<a href=3D"http://t.newsletter.supe=
|
845
|
+
rsurprises-au.com/c/?t=3Daa089f9-i2-3kf-292-!xqme" target=3D"_blank" style=
|
846
|
+
=3D"text-decoration:none;" title=3D"Brisbane"><span style=3D"color:#119710;=
|
847
|
+
font-size: 15px;font-family: 'Arial', 'Helvetica', sans-serif;text-decorat=
|
848
|
+
ion: none;" >from </span><span style=3D"color:#119710; font-size: 16p=
|
849
|
+
x;font-family: 'Arial', 'Helvetica', sans-serif;text-decoration: none; font=
|
850
|
+
-weight: bold;" >$60</span></a>
|
851
|
+
</td>
|
852
|
+
</tr>
|
853
|
+
<tr>
|
854
|
+
<td colspan=3D"2" style=3D"background-c=
|
855
|
+
olor: #fff; padding:0 15px 15px; border-bottom: 1px solid #bdbdbd;" align=
|
856
|
+
=3D"center">
|
857
|
+
<table cellspacing=3D"0" cellpaddin=
|
858
|
+
g=3D"0" style=3D"width: 100%;">
|
859
|
+
<tbody><tr>
|
860
|
+
<td align=3D"center" class=
|
861
|
+
=3D"main_button" style=3D"background: #66a400; -webkit-border-radius: 6px; =
|
862
|
+
-moz-border-radius: 6px; border-radius: 6px; color: #ffffff; display: block=
|
863
|
+
; padding:5px 0;">
|
864
|
+
<a href=3D"http://t.new=
|
865
|
+
sletter.supersurprises-au.com/c/?t=3Daa089f9-i2-3kf-292-!xqme" style=3D"col=
|
866
|
+
or: #ffffff; font-size:14px; font-weight: bold; font-family: 'Arial', 'Helv=
|
867
|
+
etica', sans-serif; text-decoration: none; line-height:20px; width:100%; di=
|
868
|
+
splay:inline-block" >Save up to 45%<span style=3D"font-size:22px;font-weigh=
|
869
|
+
t: normal;"> =E2=80=BA=E2=80=BA</span></a>
|
870
|
+
</td>
|
871
|
+
</tr>
|
872
|
+
</tbody></table>
|
873
|
+
</td>
|
874
|
+
</tr>
|
875
|
+
</tbody></table>
|
876
|
+
</td>
|
877
|
+
</tr>
|
878
|
+
</tbody></table>
|
879
|
+
</td>
|
880
|
+
</tr><tr >
|
881
|
+
<td>
|
882
|
+
<table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" ali=
|
883
|
+
gn=3D"center" width=3D"700" class=3D"deviceWidth" bgcolor=3D"#eeeeee">
|
884
|
+
<tbody><tr>
|
885
|
+
<td style=3D" padding-bottom:16px;" valign=3D"top" =
|
886
|
+
class=3D"m-stack tile ng-scope" >
|
887
|
+
<table cellpadding=3D"0" cellspacing=3D"0" bord=
|
888
|
+
er=3D"0" align=3D"center" width=3D"226" style=3D"background:#ffffff;" class=
|
889
|
+
=3D"m-fw">
|
890
|
+
<tbody><tr>
|
891
|
+
<td style=3D"background:#dfe4e8;" colsp=
|
892
|
+
an=3D"2"><a href=3D"http://t.newsletter.supersurprises-au.com/c/?t=3Daa089f=
|
893
|
+
9-i2-3ke-292-!xqme" target=3D"_blank" style=3D"text-decoration:none" title=
|
894
|
+
=3D""><img style=3D"display:block;border:0 none;" class=3D"m-fw" alt=3D"Gol=
|
895
|
+
d Coast" width=3D"226" height=3D"152" src=3D"http://dea.trivago.com/images=
|
896
|
+
/destinations/480x320/74462_v1.jpg"></a>
|
897
|
+
</td>
|
898
|
+
</tr>
|
899
|
+
<tr>
|
900
|
+
<td style=3D"background-color: #fff; pa=
|
901
|
+
dding: 5px 15px 0px 15px;" colspan=3D"2"><a href=3D"http://t.newsletter.sup=
|
902
|
+
ersurprises-au.com/c/?t=3Daa089f9-i2-3ke-292-!xqme" target=3D"_blank" style=
|
903
|
+
=3D"text-decoration:none;" title=3D"Gold Coast"><span style=3D"color: #777;=
|
904
|
+
font-size: 18px;font-family: 'Arial', 'Helvetica', sans-serif;text-decorat=
|
905
|
+
ion: none;" >Adelaide</span></a>
|
906
|
+
</td>
|
907
|
+
</tr>
|
908
|
+
<tr>
|
909
|
+
<td style=3D"background-color: #fff; pa=
|
910
|
+
dding-bottom: 5px; padding-left: 15px;"><img src=3D"http://ie1.trivago.com/=
|
911
|
+
images/layoutimages/mailing/responsive_newsletter_template/images/stars_3.j=
|
912
|
+
pg" alt=3D"rating" style=3D"display:block;border:0 none;"></td>
|
913
|
+
<td style=3D"background-color: #fff; pa=
|
914
|
+
dding-bottom: 5px; padding-right: 15px; padding-left: 15px;">
|
915
|
+
<a href=3D"http://t.newsletter.supe=
|
916
|
+
rsurprises-au.com/c/?t=3Daa089f9-i2-3ke-292-!xqme" target=3D"_blank" style=
|
917
|
+
=3D"text-decoration:none;" title=3D"Gold Coast"><span style=3D"color:#11971=
|
918
|
+
0; font-size: 15px;font-family: 'Arial', 'Helvetica', sans-serif;text-decor=
|
919
|
+
ation: none;" >from </span><span style=3D"color:#119710; font-size: 1=
|
920
|
+
6px;font-family: 'Arial', 'Helvetica', sans-serif;text-decoration: none; fo=
|
921
|
+
nt-weight: bold;" >$80</span></a>
|
922
|
+
</td>
|
923
|
+
</tr>
|
924
|
+
<tr>
|
925
|
+
<td colspan=3D"2" style=3D"background-c=
|
926
|
+
olor: #fff; padding:0 15px 15px; border-bottom: 1px solid #bdbdbd;" align=
|
927
|
+
=3D"center">
|
928
|
+
<table cellspacing=3D"0" cellpaddin=
|
929
|
+
g=3D"0" style=3D"width: 100%;">
|
930
|
+
<tbody><tr>
|
931
|
+
<td align=3D"center" class=
|
932
|
+
=3D"main_button" style=3D"background: #66a400; -webkit-border-radius: 6px; =
|
933
|
+
-moz-border-radius: 6px; border-radius: 6px; color: #ffffff; display: block=
|
934
|
+
; padding:5px 0;">
|
935
|
+
<a href=3D"http://t.new=
|
936
|
+
sletter.supersurprises-au.com/c/?t=3Daa089f9-i2-3ke-292-!xqme" style=3D"col=
|
937
|
+
or: #ffffff; font-size:14px; font-weight: bold; font-family: 'Arial', 'Helv=
|
938
|
+
etica', sans-serif; text-decoration: none; line-height:20px; width:100%; di=
|
939
|
+
splay:inline-block" >Save up to 36%<span style=3D"font-size:22px;font-weigh=
|
940
|
+
t: normal;"> =E2=80=BA=E2=80=BA</span></a>
|
941
|
+
</td>
|
942
|
+
</tr>
|
943
|
+
</tbody></table>
|
944
|
+
</td>
|
945
|
+
</tr>
|
946
|
+
</tbody></table>
|
947
|
+
</td><td style=3D" padding-bottom:16px;" valign=3D"=
|
948
|
+
top" class=3D"m-stack tile ng-scope" >
|
949
|
+
<table cellpadding=3D"0" cellspacing=3D"0" bord=
|
950
|
+
er=3D"0" align=3D"center" width=3D"226" style=3D"background:#ffffff;" class=
|
951
|
+
=3D"m-fw">
|
952
|
+
<tbody><tr>
|
953
|
+
<td style=3D"background:#dfe4e8;" colsp=
|
954
|
+
an=3D"2"><a href=3D"http://t.newsletter.supersurprises-au.com/c/?t=3Daa089f=
|
955
|
+
9-i2-3kq-292-!xqme" target=3D"_blank" style=3D"text-decoration:none" title=
|
956
|
+
=3D""><img style=3D"display:block;border:0 none;" class=3D"m-fw" alt=3D"Ade=
|
957
|
+
laide" width=3D"226" height=3D"152" src=3D"http://dea.trivago.com/images/d=
|
958
|
+
estinations/480x320/44315_v2.jpg"></a>
|
959
|
+
</td>
|
960
|
+
</tr>
|
961
|
+
<tr>
|
962
|
+
<td style=3D"background-color: #fff; pa=
|
963
|
+
dding: 5px 15px 0px 15px;" colspan=3D"2"><a href=3D"http://t.newsletter.sup=
|
964
|
+
ersurprises-au.com/c/?t=3Daa089f9-i2-3kq-292-!xqme" target=3D"_blank" style=
|
965
|
+
=3D"text-decoration:none;" title=3D"Adelaide"><span style=3D"color: #777; f=
|
966
|
+
ont-size: 18px;font-family: 'Arial', 'Helvetica', sans-serif;text-decoratio=
|
967
|
+
n: none;" >Perth</span></a>
|
968
|
+
</td>
|
969
|
+
</tr>
|
970
|
+
<tr>
|
971
|
+
<td style=3D"background-color: #fff; pa=
|
972
|
+
dding-bottom: 5px; padding-left: 15px;"><img alt=3D"rating" style=3D"displa=
|
973
|
+
y:block;border:0 none;" src=3D"http://ie1.trivago.com/images/layoutimages/m=
|
974
|
+
ailing/responsive_newsletter_template/images/stars_3.jpg" ></td>
|
975
|
+
<td style=3D"background-color: #fff; pa=
|
976
|
+
dding-bottom: 5px; padding-right: 15px; padding-left: 15px;">
|
977
|
+
<a href=3D"http://t.newsletter.supe=
|
978
|
+
rsurprises-au.com/c/?t=3Daa089f9-i2-3kq-292-!xqme" target=3D"_blank" style=
|
979
|
+
=3D"text-decoration:none;" title=3D"Adelaide"><span style=3D"color:#119710;=
|
980
|
+
font-size: 15px;font-family: 'Arial', 'Helvetica', sans-serif;text-decorat=
|
981
|
+
ion: none;" >from </span><span style=3D"color:#119710; font-size: 16p=
|
982
|
+
x;font-family: 'Arial', 'Helvetica', sans-serif;text-decoration: none; font=
|
983
|
+
-weight: bold;" >$62</span></a>
|
984
|
+
</td>
|
985
|
+
</tr>
|
986
|
+
<tr>
|
987
|
+
<td colspan=3D"2" style=3D"background-c=
|
988
|
+
olor: #fff; padding:0 15px 15px; border-bottom: 1px solid #bdbdbd;" align=
|
989
|
+
=3D"center">
|
990
|
+
<table cellspacing=3D"0" cellpaddin=
|
991
|
+
g=3D"0" style=3D"width: 100%;">
|
992
|
+
<tbody><tr>
|
993
|
+
<td align=3D"center" class=
|
994
|
+
=3D"main_button" style=3D"background: #66a400; -webkit-border-radius: 6px; =
|
995
|
+
-moz-border-radius: 6px; border-radius: 6px; color: #ffffff; display: block=
|
996
|
+
; padding:5px 0;">
|
997
|
+
<a href=3D"http://t.new=
|
998
|
+
sletter.supersurprises-au.com/c/?t=3Daa089f9-i2-3kq-292-!xqme" style=3D"col=
|
999
|
+
or: #ffffff; font-size:14px; font-weight: bold; font-family: 'Arial', 'Helv=
|
1000
|
+
etica', sans-serif; text-decoration: none; line-height:20px; width:100%; di=
|
1001
|
+
splay:inline-block" >Save up to 60%<span style=3D"font-size:22px;font-weigh=
|
1002
|
+
t: normal;"> =E2=80=BA=E2=80=BA</span></a>
|
1003
|
+
</td>
|
1004
|
+
</tr>
|
1005
|
+
</tbody></table>
|
1006
|
+
</td>
|
1007
|
+
</tr>
|
1008
|
+
</tbody></table>
|
1009
|
+
</td><td style=3D" padding-bottom:16px;" valign=3D"=
|
1010
|
+
top" class=3D"m-stack tile ng-scope" >
|
1011
|
+
<table cellpadding=3D"0" cellspacing=3D"0" bord=
|
1012
|
+
er=3D"0" align=3D"center" width=3D"226" style=3D"background:#ffffff;" class=
|
1013
|
+
=3D"m-fw">
|
1014
|
+
<tbody><tr>
|
1015
|
+
<td style=3D"background:#dfe4e8;" colsp=
|
1016
|
+
an=3D"2"><a href=3D"http://t.newsletter.supersurprises-au.com/c/?t=3Daa089f=
|
1017
|
+
9-i2-3k0-292-!xqme" target=3D"_blank" style=3D"text-decoration:none" title=
|
1018
|
+
=3D""><img style=3D"display:block;border:0 none;" class=3D"m-fw" alt=3D"Per=
|
1019
|
+
th" width=3D"226" height=3D"152" src=3D"http://dea.trivago.com/images/dest=
|
1020
|
+
inations/480x320/444034_v1.jpg"></a>
|
1021
|
+
</td>
|
1022
|
+
</tr>
|
1023
|
+
<tr>
|
1024
|
+
<td style=3D"background-color: #fff; pa=
|
1025
|
+
dding: 5px 15px 0px 15px;" colspan=3D"2"><a href=3D"http://t.newsletter.sup=
|
1026
|
+
ersurprises-au.com/c/?t=3Daa089f9-i2-3k0-292-!xqme" target=3D"_blank" style=
|
1027
|
+
=3D"text-decoration:none;" title=3D"Perth"><span style=3D"color: #777; font=
|
1028
|
+
-size: 18px;font-family: 'Arial', 'Helvetica', sans-serif;text-decoration: =
|
1029
|
+
none;" >Canberra</span></a>
|
1030
|
+
</td>
|
1031
|
+
</tr>
|
1032
|
+
<tr>
|
1033
|
+
<td style=3D"background-color: #fff; pa=
|
1034
|
+
dding-bottom: 5px; padding-left: 15px;"><img alt=3D"rating" style=3D"displa=
|
1035
|
+
y:block;border:0 none;" src=3D"http://ie1.trivago.com/images/layoutimages/m=
|
1036
|
+
ailing/responsive_newsletter_template/images/stars_3.jpg" ></td>
|
1037
|
+
<td style=3D"background-color: #fff; pa=
|
1038
|
+
dding-bottom: 5px; padding-right: 15px; padding-left: 15px;">
|
1039
|
+
<a href=3D"http://t.newsletter.supe=
|
1040
|
+
rsurprises-au.com/c/?t=3Daa089f9-i2-3k0-292-!xqme" target=3D"_blank" style=
|
1041
|
+
=3D"text-decoration:none;" title=3D"Perth"><span style=3D"color:#119710; fo=
|
1042
|
+
nt-size: 15px;font-family: 'Arial', 'Helvetica', sans-serif;text-decoration=
|
1043
|
+
: none;" >from </span><span style=3D"color:#119710; font-size: 16px;f=
|
1044
|
+
ont-family: 'Arial', 'Helvetica', sans-serif;text-decoration: none; font-we=
|
1045
|
+
ight: bold;" >$89</span></a>
|
1046
|
+
</td>
|
1047
|
+
</tr>
|
1048
|
+
<tr>
|
1049
|
+
<td colspan=3D"2" style=3D"background-c=
|
1050
|
+
olor: #fff; padding:0 15px 15px; border-bottom: 1px solid #bdbdbd;" align=
|
1051
|
+
=3D"center">
|
1052
|
+
<table cellspacing=3D"0" cellpaddin=
|
1053
|
+
g=3D"0" style=3D"width: 100%;">
|
1054
|
+
<tbody><tr>
|
1055
|
+
<td align=3D"center" class=
|
1056
|
+
=3D"main_button" style=3D"background: #66a400; -webkit-border-radius: 6px; =
|
1057
|
+
-moz-border-radius: 6px; border-radius: 6px; color: #ffffff; display: block=
|
1058
|
+
; padding:5px 0;">
|
1059
|
+
<a href=3D"http://t.new=
|
1060
|
+
sletter.supersurprises-au.com/c/?t=3Daa089f9-i2-3k0-292-!xqme" style=3D"col=
|
1061
|
+
or: #ffffff; font-size:14px; font-weight: bold; font-family: 'Arial', 'Helv=
|
1062
|
+
etica', sans-serif; text-decoration: none; line-height:20px; width:100%; di=
|
1063
|
+
splay:inline-block" >Save up to 53%<span style=3D"font-size:22px;font-weigh=
|
1064
|
+
t: normal;"> =E2=80=BA=E2=80=BA</span></a>
|
1065
|
+
</td>
|
1066
|
+
</tr>
|
1067
|
+
</tbody></table>
|
1068
|
+
</td>
|
1069
|
+
</tr>
|
1070
|
+
</tbody></table>
|
1071
|
+
</td>
|
1072
|
+
</tr>
|
1073
|
+
</tbody></table>
|
1074
|
+
</td>
|
1075
|
+
</tr>
|
1076
|
+
<tr class=3D"">
|
1077
|
+
<td>
|
1078
|
+
<table class=3D"full_m" align=3D"left" cellpadding=3D"0" ce=
|
1079
|
+
llspacing=3D"0" style=3D"border:none; border-collapse: collapse; width:700p=
|
1080
|
+
x;">
|
1081
|
+
<tbody><tr>
|
1082
|
+
<td style=3D"background-color: #eee; padding-top: 4=
|
1083
|
+
px; padding-bottom:8px; padding-left: 13px;" class=3D"subheader"><span styl=
|
1084
|
+
e=3D"font-size: 18px; color: #777777; font-weight: bold;font-family: 'Arial=
|
1085
|
+
', 'Helvetica', sans-serif; width:100%;" ></span>
|
1086
|
+
</td>
|
1087
|
+
</tr>
|
1088
|
+
</tbody></table>
|
1089
|
+
</td>
|
1090
|
+
</tr>
|
1091
|
+
<!-- small deals -->
|
1092
|
+
<tr class=3D"hide_m ng-scope" >
|
1093
|
+
<td style=3D"padding-bottom:5px;">
|
1094
|
+
<table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" ali=
|
1095
|
+
gn=3D"center" width=3D"700" class=3D"deviceWidth" bgcolor=3D"#EEEEEE">
|
1096
|
+
<tbody><tr>
|
1097
|
+
<td valign=3D"top" class=3D"m-stack tile ng-scope" =
|
1098
|
+
>
|
1099
|
+
<table cellpadding=3D"0" cellspacing=3D"0" bord=
|
1100
|
+
er=3D"0" align=3D"center" width=3D"345" style=3D"background:#ffffff;" class=
|
1101
|
+
=3D"m-fw">
|
1102
|
+
<tbody><tr>
|
1103
|
+
<td style=3D"background-color: #ffffff;=
|
1104
|
+
" width=3D"77"><img style=3D"display: block; max-height:51px; border:0px;"=
|
1105
|
+
class=3D"top_deal_item" height=3D"51" alt=3D"Singapore" src=3D"http://dea.=
|
1106
|
+
trivago.com/images/destinations/480x320/93757_v6.jpg">
|
1107
|
+
</td>
|
1108
|
+
<td style=3D"padding-left:15px; backgro=
|
1109
|
+
und-color: #fff;font-family: 'Arial', 'Helvetica', sans-serif;">
|
1110
|
+
<span style=3D"color: #777; font-si=
|
1111
|
+
ze: 18px; " >Surfers Paradise</span>
|
1112
|
+
</td>
|
1113
|
+
<td style=3D"text-align: right; padding=
|
1114
|
+
: 0 5px; background-color: #fff;font-family: 'Arial', 'Helvetica', sans-ser=
|
1115
|
+
if;">
|
1116
|
+
<span style=3D"color: #777; font-si=
|
1117
|
+
ze: 12px; padding-right:5px;" >from</span>
|
1118
|
+
<span style=3D"color:#119710; font-=
|
1119
|
+
size: 22px; padding-right:5px;" >$96</span>
|
1120
|
+
</td>
|
1121
|
+
<td valign=3D"middle" width=3D"36">
|
1122
|
+
<table>
|
1123
|
+
<tbody><tr>
|
1124
|
+
<td style=3D"width: 25px; h=
|
1125
|
+
eight:25px; background: #66a400; -webkit-border-radius: 6px; -moz-border-ra=
|
1126
|
+
dius: 6px; border-radius: 6px; color: #ffffff; display: block; text-align:=
|
1127
|
+
center; vertical-align:middle;">
|
1128
|
+
<a href=3D"http://t.new=
|
1129
|
+
sletter.supersurprises-au.com/c/?t=3Daa089f9-i2-3ki-292-!xqme" style=3D"col=
|
1130
|
+
or: #ffffff; font-size:20px; font-weight: normal; font-family: 'Arial', 'He=
|
1131
|
+
lvetica', sans-serif; text-decoration: none; line-height:23px; width:100%; =
|
1132
|
+
display:inline-block">=C2=BB</a>
|
1133
|
+
</td>
|
1134
|
+
</tr>
|
1135
|
+
</tbody></table>
|
1136
|
+
</td>
|
1137
|
+
</tr>
|
1138
|
+
</tbody></table>
|
1139
|
+
</td><td valign=3D"top" class=3D"m-stack tile ng-sc=
|
1140
|
+
ope" >
|
1141
|
+
<table cellpadding=3D"0" cellspacing=3D"0" bord=
|
1142
|
+
er=3D"0" align=3D"center" width=3D"345" style=3D"background:#ffffff;" class=
|
1143
|
+
=3D"m-fw">
|
1144
|
+
<tbody><tr>
|
1145
|
+
<td style=3D"background-color: #ffffff;=
|
1146
|
+
" width=3D"77"><img style=3D"display: block; max-height:51px; border:0px;"=
|
1147
|
+
class=3D"top_deal_item" height=3D"51" alt=3D"Queenstown" src=3D"http://dea=
|
1148
|
+
.trivago.com/images/destinations/480x320/74004_v1.jpg">
|
1149
|
+
</td>
|
1150
|
+
<td style=3D"padding-left:15px; backgro=
|
1151
|
+
und-color: #fff;font-family: 'Arial', 'Helvetica', sans-serif;">
|
1152
|
+
<span style=3D"color: #777; font-si=
|
1153
|
+
ze: 18px; " >Townsville</span>
|
1154
|
+
</td>
|
1155
|
+
<td style=3D"text-align: right; padding=
|
1156
|
+
: 0 5px; background-color: #fff;font-family: 'Arial', 'Helvetica', sans-ser=
|
1157
|
+
if;">
|
1158
|
+
<span style=3D"color: #777; font-si=
|
1159
|
+
ze: 12px; padding-right:5px;" >from</span>
|
1160
|
+
<span style=3D"color:#119710; font-=
|
1161
|
+
size: 22px; padding-right:5px;" >$80</span>
|
1162
|
+
</td>
|
1163
|
+
<td valign=3D"middle" width=3D"36">
|
1164
|
+
<table>
|
1165
|
+
<tbody><tr>
|
1166
|
+
<td style=3D"width: 25px; h=
|
1167
|
+
eight:25px; background: #66a400; -webkit-border-radius: 6px; -moz-border-ra=
|
1168
|
+
dius: 6px; border-radius: 6px; color: #ffffff; display: block; text-align:=
|
1169
|
+
center; vertical-align:middle;">
|
1170
|
+
<a href=3D"http://t.new=
|
1171
|
+
sletter.supersurprises-au.com/c/?t=3Daa089f9-i2-3kk-292-!xqme" style=3D"col=
|
1172
|
+
or: #ffffff; font-size:20px; font-weight: normal; font-family: 'Arial', 'He=
|
1173
|
+
lvetica', sans-serif; text-decoration: none; line-height:23px; width:100%; =
|
1174
|
+
display:inline-block">=C2=BB</a>
|
1175
|
+
</td>
|
1176
|
+
</tr>
|
1177
|
+
</tbody></table>
|
1178
|
+
</td>
|
1179
|
+
</tr>
|
1180
|
+
</tbody></table>
|
1181
|
+
</td>
|
1182
|
+
</tr>
|
1183
|
+
</tbody></table>
|
1184
|
+
</td>
|
1185
|
+
</tr><tr class=3D"hide_m ng-scope" >
|
1186
|
+
<td style=3D"padding-bottom:5px;">
|
1187
|
+
<table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" ali=
|
1188
|
+
gn=3D"center" width=3D"700" class=3D"deviceWidth" bgcolor=3D"#EEEEEE">
|
1189
|
+
<tbody><tr>
|
1190
|
+
<td valign=3D"top" class=3D"m-stack tile ng-scope" =
|
1191
|
+
>
|
1192
|
+
<table cellpadding=3D"0" cellspacing=3D"0" bord=
|
1193
|
+
er=3D"0" align=3D"center" width=3D"345" style=3D"background:#ffffff;" class=
|
1194
|
+
=3D"m-fw">
|
1195
|
+
<tbody><tr>
|
1196
|
+
<td style=3D"background-color: #ffffff;=
|
1197
|
+
" width=3D"77"><img style=3D"display: block; max-height:51px; border:0px;"=
|
1198
|
+
class=3D"top_deal_item" height=3D"51" alt=3D"Honolulu" src=3D"http://dea.t=
|
1199
|
+
rivago.com/images/destinations/480x320/44313_v1.jpg">
|
1200
|
+
</td>
|
1201
|
+
<td style=3D"padding-left:15px; backgro=
|
1202
|
+
und-color: #fff;font-family: 'Arial', 'Helvetica', sans-serif;">
|
1203
|
+
<span style=3D"color: #777; font-si=
|
1204
|
+
ze: 18px; " >Hobart</span>
|
1205
|
+
</td>
|
1206
|
+
<td style=3D"text-align: right; padding=
|
1207
|
+
: 0 5px; background-color: #fff;font-family: 'Arial', 'Helvetica', sans-ser=
|
1208
|
+
if;">
|
1209
|
+
<span style=3D"color: #777; font-si=
|
1210
|
+
ze: 12px; padding-right:5px;" >from</span>
|
1211
|
+
<span style=3D"color:#119710; font-=
|
1212
|
+
size: 22px; padding-right:5px;" >$74</span>
|
1213
|
+
</td>
|
1214
|
+
<td valign=3D"middle" width=3D"36">
|
1215
|
+
<table>
|
1216
|
+
<tbody><tr>
|
1217
|
+
<td style=3D"width: 25px; h=
|
1218
|
+
eight:25px; background: #66a400; -webkit-border-radius: 6px; -moz-border-ra=
|
1219
|
+
dius: 6px; border-radius: 6px; color: #ffffff; display: block; text-align:=
|
1220
|
+
center; vertical-align:middle;">
|
1221
|
+
<a href=3D"http://t.new=
|
1222
|
+
sletter.supersurprises-au.com/c/?t=3Daa089f9-i2-3k5-292-!xqme" style=3D"col=
|
1223
|
+
or: #ffffff; font-size:20px; font-weight: normal; font-family: 'Arial', 'He=
|
1224
|
+
lvetica', sans-serif; text-decoration: none; line-height:23px; width:100%; =
|
1225
|
+
display:inline-block">=C2=BB</a>
|
1226
|
+
</td>
|
1227
|
+
</tr>
|
1228
|
+
</tbody></table>
|
1229
|
+
</td>
|
1230
|
+
</tr>
|
1231
|
+
</tbody></table>
|
1232
|
+
</td><td valign=3D"top" class=3D"m-stack tile ng-sc=
|
1233
|
+
ope" >
|
1234
|
+
<table cellpadding=3D"0" cellspacing=3D"0" bord=
|
1235
|
+
er=3D"0" align=3D"center" width=3D"345" style=3D"background:#ffffff;" class=
|
1236
|
+
=3D"m-fw">
|
1237
|
+
<tbody><tr>
|
1238
|
+
<td style=3D"background-color: #ffffff;=
|
1239
|
+
" width=3D"77"><img style=3D"display: block; max-height:51px; border:0px;"=
|
1240
|
+
class=3D"top_deal_item" height=3D"51" alt=3D"Phuket" src=3D"http://dea.tri=
|
1241
|
+
vago.com/images/destinations/480x320/74003_v1.jpg">
|
1242
|
+
</td>
|
1243
|
+
<td style=3D"padding-left:15px; backgro=
|
1244
|
+
und-color: #fff;font-family: 'Arial', 'Helvetica', sans-serif;">
|
1245
|
+
<span style=3D"color: #777; font-si=
|
1246
|
+
ze: 18px; " >Noosa</span>
|
1247
|
+
</td>
|
1248
|
+
<td style=3D"text-align: right; padding=
|
1249
|
+
: 0 5px; background-color: #fff;font-family: 'Arial', 'Helvetica', sans-ser=
|
1250
|
+
if;">
|
1251
|
+
<span style=3D"color: #777; font-si=
|
1252
|
+
ze: 12px; padding-right:5px;" >from</span>
|
1253
|
+
<span style=3D"color:#119710; font-=
|
1254
|
+
size: 22px; padding-right:5px;" >$115</span>
|
1255
|
+
</td>
|
1256
|
+
<td valign=3D"middle" width=3D"36">
|
1257
|
+
<table>
|
1258
|
+
<tbody><tr>
|
1259
|
+
<td style=3D"width: 25px; h=
|
1260
|
+
eight:25px; background: #66a400; -webkit-border-radius: 6px; -moz-border-ra=
|
1261
|
+
dius: 6px; border-radius: 6px; color: #ffffff; display: block; text-align:=
|
1262
|
+
center; vertical-align:middle;">
|
1263
|
+
<a href=3D"http://t.new=
|
1264
|
+
sletter.supersurprises-au.com/c/?t=3Daa089f9-i2-3kl-292-!xqme" style=3D"col=
|
1265
|
+
or: #ffffff; font-size:20px; font-weight: normal; font-family: 'Arial', 'He=
|
1266
|
+
lvetica', sans-serif; text-decoration: none; line-height:23px; width:100%; =
|
1267
|
+
display:inline-block">=C2=BB</a>
|
1268
|
+
</td>
|
1269
|
+
</tr>
|
1270
|
+
</tbody></table>
|
1271
|
+
</td>
|
1272
|
+
</tr>
|
1273
|
+
</tbody></table>
|
1274
|
+
</td>
|
1275
|
+
</tr>
|
1276
|
+
</tbody></table>
|
1277
|
+
</td>
|
1278
|
+
</tr><tr class=3D"hide_m ng-scope" >
|
1279
|
+
<td style=3D"padding-bottom:5px;">
|
1280
|
+
<table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" ali=
|
1281
|
+
gn=3D"center" width=3D"700" class=3D"deviceWidth" bgcolor=3D"#EEEEEE">
|
1282
|
+
<tbody><tr>
|
1283
|
+
<td valign=3D"top" class=3D"m-stack tile ng-scope" =
|
1284
|
+
>
|
1285
|
+
<table cellpadding=3D"0" cellspacing=3D"0" bord=
|
1286
|
+
er=3D"0" align=3D"center" width=3D"345" style=3D"background:#ffffff;" class=
|
1287
|
+
=3D"m-fw">
|
1288
|
+
<tbody><tr>
|
1289
|
+
<td style=3D"background-color: #ffffff;=
|
1290
|
+
" width=3D"77"><img style=3D"display: block; max-height:51px; border:0px;"=
|
1291
|
+
class=3D"top_deal_item" height=3D"51" alt=3D"Bali" src=3D"http://dea.triva=
|
1292
|
+
go.com/images/destinations/480x320/51591_v2.jpg">
|
1293
|
+
</td>
|
1294
|
+
<td style=3D"padding-left:15px; backgro=
|
1295
|
+
und-color: #fff;font-family: 'Arial', 'Helvetica', sans-serif;">
|
1296
|
+
<span style=3D"color: #777; font-si=
|
1297
|
+
ze: 18px; " >Darwin</span>
|
1298
|
+
</td>
|
1299
|
+
<td style=3D"text-align: right; padding=
|
1300
|
+
: 0 5px; background-color: #fff;font-family: 'Arial', 'Helvetica', sans-ser=
|
1301
|
+
if;">
|
1302
|
+
<span style=3D"color: #777; font-si=
|
1303
|
+
ze: 12px; padding-right:5px;" >from</span>
|
1304
|
+
<span style=3D"color:#119710; font-=
|
1305
|
+
size: 22px; padding-right:5px;" >$91</span>
|
1306
|
+
</td>
|
1307
|
+
<td valign=3D"middle" width=3D"36">
|
1308
|
+
<table>
|
1309
|
+
<tbody><tr>
|
1310
|
+
<td style=3D"width: 25px; h=
|
1311
|
+
eight:25px; background: #66a400; -webkit-border-radius: 6px; -moz-border-ra=
|
1312
|
+
dius: 6px; border-radius: 6px; color: #ffffff; display: block; text-align:=
|
1313
|
+
center; vertical-align:middle;">
|
1314
|
+
<a href=3D"http://t.new=
|
1315
|
+
sletter.supersurprises-au.com/c/?t=3Daa089f9-i2-3km-292-!xqme" style=3D"col=
|
1316
|
+
or: #ffffff; font-size:20px; font-weight: normal; font-family: 'Arial', 'He=
|
1317
|
+
lvetica', sans-serif; text-decoration: none; line-height:23px; width:100%; =
|
1318
|
+
display:inline-block">=C2=BB</a>
|
1319
|
+
</td>
|
1320
|
+
</tr>
|
1321
|
+
</tbody></table>
|
1322
|
+
</td>
|
1323
|
+
</tr>
|
1324
|
+
</tbody></table>
|
1325
|
+
</td><td valign=3D"top" class=3D"m-stack tile ng-sc=
|
1326
|
+
ope" >
|
1327
|
+
<table cellpadding=3D"0" cellspacing=3D"0" bord=
|
1328
|
+
er=3D"0" align=3D"center" width=3D"345" style=3D"background:#ffffff;" class=
|
1329
|
+
=3D"m-fw">
|
1330
|
+
<tbody><tr>
|
1331
|
+
<td style=3D"background-color: #ffffff;=
|
1332
|
+
" width=3D"77"><img style=3D"display: block; max-height:51px; border:0px;"=
|
1333
|
+
class=3D"top_deal_item" height=3D"51" alt=3D"sydney" src=3D"http://dea.tri=
|
1334
|
+
vago.com/images/destinations/480x320/73991_v1.jpg">
|
1335
|
+
</td>
|
1336
|
+
<td style=3D"padding-left:15px; backgro=
|
1337
|
+
und-color: #fff;font-family: 'Arial', 'Helvetica', sans-serif;">
|
1338
|
+
<span style=3D"color: #777; font-si=
|
1339
|
+
ze: 18px; " >Cairns</span>
|
1340
|
+
</td>
|
1341
|
+
<td style=3D"text-align: right; padding=
|
1342
|
+
: 0 5px; background-color: #fff;font-family: 'Arial', 'Helvetica', sans-ser=
|
1343
|
+
if;">
|
1344
|
+
<span style=3D"color: #777; font-si=
|
1345
|
+
ze: 12px; padding-right:5px;" >from</span>
|
1346
|
+
<span style=3D"color:#119710; font-=
|
1347
|
+
size: 22px; padding-right:5px;" >$63</span>
|
1348
|
+
</td>
|
1349
|
+
<td valign=3D"middle" width=3D"36">
|
1350
|
+
<table>
|
1351
|
+
<tbody><tr>
|
1352
|
+
<td style=3D"width: 25px; h=
|
1353
|
+
eight:25px; background: #66a400; -webkit-border-radius: 6px; -moz-border-ra=
|
1354
|
+
dius: 6px; border-radius: 6px; color: #ffffff; display: block; text-align:=
|
1355
|
+
center; vertical-align:middle;">
|
1356
|
+
<a href=3D"http://t.new=
|
1357
|
+
sletter.supersurprises-au.com/c/?t=3Daa089f9-i2-35x-292-!xqme" style=3D"col=
|
1358
|
+
or: #ffffff; font-size:20px; font-weight: normal; font-family: 'Arial', 'He=
|
1359
|
+
lvetica', sans-serif; text-decoration: none; line-height:23px; width:100%; =
|
1360
|
+
display:inline-block">=C2=BB</a>
|
1361
|
+
</td>
|
1362
|
+
</tr>
|
1363
|
+
</tbody></table>
|
1364
|
+
</td>
|
1365
|
+
</tr>
|
1366
|
+
</tbody></table>
|
1367
|
+
</td>
|
1368
|
+
</tr>
|
1369
|
+
</tbody></table>
|
1370
|
+
</td>
|
1371
|
+
</tr>
|
1372
|
+
<!-- small deals -->
|
1373
|
+
<!-- other destinations -->
|
1374
|
+
<!-- other destinations -->
|
1375
|
+
<tr>
|
1376
|
+
<td bgcolor=3D"#eeeeee">
|
1377
|
+
<table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" bgc=
|
1378
|
+
olor=3D"#eeeeee">
|
1379
|
+
<tbody><tr>
|
1380
|
+
<td class=3D"social" style=3D"padding-top: 15px; pa=
|
1381
|
+
dding-left: 15px; padding-bottom: 15px; background-color:#EEEEEE;">
|
1382
|
+
<a href=3D"http://t.newsletter.supersurprises-a=
|
1383
|
+
u.com/c/?t=3Daa089f9-i2-351-292-!xqme" target=3D"_blank" style=3D"text-deco=
|
1384
|
+
ration:none;" border=3D"0"><img src=3D"http://dea.trivago.com/images/newsle=
|
1385
|
+
tter/assets/facebook.jpg" alt=3D"facebook" style=3D"display:block;border:0 =
|
1386
|
+
none;"></a></td>
|
1387
|
+
<td class=3D"social" style=3D"padding-left:5px; bac=
|
1388
|
+
kground-color:#EEEEEE;"><a href=3D"http://t.newsletter.supersurprises-au.co=
|
1389
|
+
m/c/?t=3Daa089f9-i2-35c-292-!xqme" target=3D"_blank" style=3D"text-decorati=
|
1390
|
+
on:none;" border=3D"0"><img src=3D"http://dea.trivago.com/images/newsletter=
|
1391
|
+
/assets/google.jpg" alt=3D"google+" style=3D"display:block;border:0 none;">=
|
1392
|
+
</a></td>
|
1393
|
+
</tr>
|
1394
|
+
</tbody></table>
|
1395
|
+
</td>
|
1396
|
+
</tr>
|
1397
|
+
<tr>
|
1398
|
+
<td style=3D"background-color:#EEE; padding-left:15px; padding-=
|
1399
|
+
right:15px; padding-bottom: 15px; width:670px;">
|
1400
|
+
<span style=3D"color: #999; font-size: 12px;font-family: 'A=
|
1401
|
+
rial', 'Helvetica', sans-serif;" ng-bind-html=3D"newsletter_footer | unsafe=
|
1402
|
+
" ><a href=3D"http://t.newsletter.supersurprises-au.com/c/?t=3Daa089f9-i2-3=
|
1403
|
+
kc-292-!xqme" style=3D"text-decoration:none;">www.trivago.com.au</a> allows=
|
1404
|
+
travellers to find the perfect hotel at the best price, from over 700,000 =
|
1405
|
+
hotels and over 200 booking sites worldwide. Rates quoted are based on Doub=
|
1406
|
+
le Room price per night. All prices listed above are for guidance only and =
|
1407
|
+
may vary depending on availability of partners. <br><br>=C2=A9 2004 - 2016 =
|
1408
|
+
All rights reserved. </span></td>
|
1409
|
+
</tr>
|
1410
|
+
</tbody></table>
|
1411
|
+
<img src=3D"http://ntk-trk.com/i.ashx?a=3D468&c=3D1925&s1=3DwidigoSUB_ID" w=
|
1412
|
+
idth=3D"1" height=3D"1" border=3D"0" />=20
|
1413
|
+
|
1414
|
+
|
1415
|
+
<table width=3D"560" border=3D"0" cellpadding=3D"0" cellspacing=3D"0" align=
|
1416
|
+
=3D"center" style=3D"margin: 0 auto;">
|
1417
|
+
|
1418
|
+
|
1419
|
+
|
1420
|
+
<tr>
|
1421
|
+
|
1422
|
+
|
1423
|
+
|
1424
|
+
<td width=3D"560" height=3D"1" bgcolor=3D"#cacaca" style=3D"background-co=
|
1425
|
+
lor:#cacaca;">
|
1426
|
+
|
1427
|
+
</td>
|
1428
|
+
|
1429
|
+
|
1430
|
+
|
1431
|
+
</tr>
|
1432
|
+
|
1433
|
+
|
1434
|
+
|
1435
|
+
<tr>
|
1436
|
+
|
1437
|
+
<td width=3D"560" height=3D"87" bgcolor=3D"#ffffff" style=3D"background-c=
|
1438
|
+
olor:#ffffff;text-align: center;vertical-align:middle;">
|
1439
|
+
|
1440
|
+
<font color=3D"#a5a5a5" face=3D"Arial, Helvetica, Verdana, sans-serif" s=
|
1441
|
+
tyle=3D"font-size:11px;">You are receiving this message because the email a=
|
1442
|
+
ddress gwang1@student.mlcsyd.nsw.edu.au was used to subscribe to our emaili=
|
1443
|
+
ng database at the website <a href=3D"http://t.newsletter.supersurprises-au=
|
1444
|
+
.com/c/?t=3Daa089f9-i2-3k8-292-!xqme">www.supersurprises-au.com</a>. Super =
|
1445
|
+
Surprises=C2=A0is owned by Natexo Spain SL. Natexo Spain Agencia Barcelona =
|
1446
|
+
Calle C=C3=B3rcega 329 8 planta 08037 Barcelona. You have the right to acce=
|
1447
|
+
ss, modify, correct and remove your personal data from our database by clic=
|
1448
|
+
king on the following link: <a href=3D"http://t.newsletter.supersurprises-a=
|
1449
|
+
u.com/c/?t=3Daa089f9-i2-3kz-292-!xqme">MySubscriptions</a>..you can also un=
|
1450
|
+
subscribe from all future mailings by clicking <a href=3D"http://t.newslett=
|
1451
|
+
er.supersurprises-au.com/c/?t=3Daa089f9-i2-3kz-292-!xqme">here</a>.
|
1452
|
+
|
1453
|
+
</font>
|
1454
|
+
|
1455
|
+
</td>
|
1456
|
+
|
1457
|
+
</tr>
|
1458
|
+
|
1459
|
+
|
1460
|
+
|
1461
|
+
=09
|
1462
|
+
|
1463
|
+
</table>
|
1464
|
+
|
1465
|
+
<img src=3D"http://t.newsletter.supersurprises-au.com/o/?t=3Di2-292-!xqme=
|
1466
|
+
" width=3D"1" height=3D"1" alt=3D""/> </body></html>=
|
1467
|
+
|
1468
|
+
--4a18aa08-28cf-409c-9056-8d84c79248b2--
|
1469
|
+
|