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
|
File without changes
|
File without changes
|
@@ -0,0 +1,71 @@
|
|
1
|
+
From mailer-daemon Fri Apr 29 23:34:45 2012
|
2
|
+
Return-path: <>
|
3
|
+
Envelope-to: neko@example.co.jp
|
4
|
+
Delivery-date: Thu, 29 Apr 2012 23:34:45 +0000
|
5
|
+
Received: from [192.0.1.3] (helo=x6.smtp.example.org)
|
6
|
+
by smtp.x6.example.com with esmtp (Exim 4.69)
|
7
|
+
id DIMUdn-Yvs1YW-6S
|
8
|
+
for neko@example.co.jp; Thu, 29 Apr 2012 23:34:45 +0000
|
9
|
+
Received: from smtp-x-6.example.jp ([192.168.21.22])
|
10
|
+
by x6-01.smtp.example.org with neko (version 4.8.3.54) nyaan id 000000000
|
11
|
+
for neko@example.co.jp;e0ff9c6a684b9cf1; Thu, 29 Apr 2012 23:34:45 +0000
|
12
|
+
From: mailer-daemon
|
13
|
+
To: neko@example.co.jp
|
14
|
+
Subject: There was an error sending your mail
|
15
|
+
Date: Thu, 29 Apr 2012 23:34:45 +0000
|
16
|
+
Auto-Submitted: auto-replied
|
17
|
+
Precedence: list
|
18
|
+
MIME-Version: 1.0
|
19
|
+
Content-Type: multipart/mx6d;
|
20
|
+
boundary="--=_MIMEBOUNDARY_d1e2471b4b95f44c_12823329331748206317161a01e__a96ea837"
|
21
|
+
Message-ID: <20120429233445.1203309516@x6-2.smtp.example.org>
|
22
|
+
|
23
|
+
This is a multi-part message in MIME format.
|
24
|
+
|
25
|
+
----=_MIMEBOUNDARY_d1e2471b4b95f44c_12823329331748206317161a01e__a96ea837
|
26
|
+
Content-Type: text/plain; charset=us-ascii
|
27
|
+
Content-Transfer-Encoding: 7bit
|
28
|
+
|
29
|
+
We had trouble delivering your message. Full details follow:
|
30
|
+
|
31
|
+
Subject: 'Neko Nyaan'
|
32
|
+
Date: 'Thu, 29 Apr 2012 23:34:45 +0000'
|
33
|
+
|
34
|
+
1 error(s):
|
35
|
+
|
36
|
+
The following recipients returned permanent errors: kijitora@nyaan.example.org. Reason: SMTP Server <192.0.2.223> refused to accept your message (DATA), with the following error message: [554 5.4.6 Hop count exceeded - possible mail loop]
|
37
|
+
|
38
|
+
The attachment contains the original mail headers. Please verify recipient(s) mail addresses and try resending this message or contact your IT department with contents of this mail.
|
39
|
+
|
40
|
+
|
41
|
+
----=_MIMEBOUNDARY_d1e2471b4b95f44c_12823329331748206317161a01e__a96ea837
|
42
|
+
Content-Type: text/plain;
|
43
|
+
name="mailheaders-1035422417.txt"
|
44
|
+
Content-Transfer-Encoding: 7bit
|
45
|
+
Content-Disposition: attachment;
|
46
|
+
filename="mailheaders-1035422417.txt"
|
47
|
+
|
48
|
+
Received: from 203.0.113.225 ([203.0.113.225])
|
49
|
+
by x6-mx6.smtp.example.org with neko2 (version 4.8.5.36) nyaan2 id 1509261695
|
50
|
+
for kijitora@nyaan.example.org;000000000000eeee; Thu, 29 Apr 2012 23:34:45 +0000
|
51
|
+
Received: from neko.nyaan.example.jp ([198.51.100.5]) by ps-x6.example.com with
|
52
|
+
Microsoft SMTPSVC(6.0.3790.3959); Thu, 29 Apr 2012 23:34:45 +0000
|
53
|
+
Received: from xx6-mx6.smtp.example.org (172.16.4.243) by
|
54
|
+
Hades.nyaan.example.jp (10.90.23.11) with Microsoft SMTP Server id 8.2.255.0;
|
55
|
+
Thu, 29 Apr 2012 23:34:45 +0000
|
56
|
+
X-CTCH-RefID: str=0000.CFBEA618.E8D32220.AEE0,ss=0,sh,fgs=0
|
57
|
+
X-Cloudmark-Analysis: v=1.1 ...
|
58
|
+
Date: Thu, 29 Apr 2012 23:34:45 +0000
|
59
|
+
To: kijitora@nyaan.example.org
|
60
|
+
From: Neko <neko@example.co.jp>
|
61
|
+
Subject: Neko Nyaan
|
62
|
+
Message-ID: <68b329da9893e34099c7d8ad5cb9c940@x6.example.co.jp>
|
63
|
+
X-Priority: 3
|
64
|
+
MIME-Version: 1.0
|
65
|
+
Content-Type: text/plain
|
66
|
+
Return-Path: neko@example.co.jp
|
67
|
+
|
68
|
+
|
69
|
+
----=_MIMEBOUNDARY_d1e2471b4b95f44c_12823329331748206317161a01e__a96ea837--
|
70
|
+
|
71
|
+
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,70 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
X-Original-To: nekochan@example.co.jp
|
3
|
+
Delivered-To: nekochan@example.co.jp
|
4
|
+
Received: by mail.example.co.jp (Postfix)
|
5
|
+
id 18513041C2DA; Thu, 29 Apr 2019 23:34:45 +0900 (JST)
|
6
|
+
Date: Thu, 29 Apr 2019 23:34:45 +0900 (JST)
|
7
|
+
From: MAILER-DAEMON@example.co.jp (Mail Delivery System)
|
8
|
+
Subject: Undelivered Mail Returned to Sender
|
9
|
+
To: nekochan@example.co.jp
|
10
|
+
Auto-Submitted: auto-replied
|
11
|
+
MIME-Version: 1.0
|
12
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
13
|
+
boundary="0E1D4CDC0054.1562628010/mail.example.co.jp"
|
14
|
+
Message-Id: <20190429233445.18513041C2DA@mail.example.co.jp>
|
15
|
+
|
16
|
+
This is a MIME-encapsulated message.
|
17
|
+
|
18
|
+
--0E1D4CDC0054.1562628010/mail.example.co.jp
|
19
|
+
Content-Description: Notification
|
20
|
+
Content-Type: text/plain; charset=us-ascii
|
21
|
+
|
22
|
+
This is the mail system at host mail.example.co.jp.
|
23
|
+
|
24
|
+
I'm sorry to have to inform you that your message could not
|
25
|
+
be delivered to one or more recipients. It's attached below.
|
26
|
+
|
27
|
+
For further assistance, please send mail to postmaster.
|
28
|
+
|
29
|
+
If you do so, please include this problem report. You can
|
30
|
+
delete your own text from the attached returned message.
|
31
|
+
|
32
|
+
The mail system
|
33
|
+
|
34
|
+
<neko@email.example.ua>: host mx3.email.ua[185.187.81.214] said: 550 Mailbox is
|
35
|
+
frozen. See http://mail.i.ua/err/3/ (in reply to RCPT TO command)
|
36
|
+
|
37
|
+
--0E1D4CDC0054.1562628010/mail.example.co.jp
|
38
|
+
Content-Description: Delivery report
|
39
|
+
Content-Type: message/delivery-status
|
40
|
+
|
41
|
+
Reporting-MTA: dns; mail.example.co.jp
|
42
|
+
X-Postfix-Queue-ID: 0E1D4CDC0054
|
43
|
+
X-Postfix-Sender: rfc822; nekochan@example.co.jp
|
44
|
+
Arrival-Date: Thu, 29 Apr 2019 23:34:45 +0900 (JST)
|
45
|
+
|
46
|
+
Final-Recipient: rfc822; neko@email.example.ua
|
47
|
+
Action: failed
|
48
|
+
Status: 5.0.0
|
49
|
+
Remote-MTA: dns; mx3.email.ua
|
50
|
+
Diagnostic-Code: smtp; 550 Mailbox is frozen. See http://mail.i.ua/err/3/
|
51
|
+
|
52
|
+
--0E1D4CDC0054.1562628010/mail.example.co.jp
|
53
|
+
Content-Description: Undelivered Message
|
54
|
+
Content-Type: message/rfc822
|
55
|
+
|
56
|
+
Return-Path: <nekochan@example.co.jp>
|
57
|
+
Received: by mail.example.co.jp (Postfix, from userid 2022)
|
58
|
+
id 0E1D4CDC0054; Thu, 29 Apr 2019 23:34:45 +0900 (JST)
|
59
|
+
To: neko@email.example.ua
|
60
|
+
Subject: Nyaan
|
61
|
+
From: <kijitora@example.com>
|
62
|
+
MIME-Version: 1.0
|
63
|
+
Content-Type: text/plain; charset=ISO-2022-JP
|
64
|
+
Content-Transfer-Encoding: 7bit
|
65
|
+
Message-Id: <20190429233445.0E1D4CDC0054@mail.example.co.jp>
|
66
|
+
Date: Thu, 29 Apr 2019 23:34:45 +0900 (JST)
|
67
|
+
|
68
|
+
Nyaan
|
69
|
+
|
70
|
+
--0E1D4CDC0054.1562628010/mail.example.co.jp--
|
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
|
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 @@
|
|
1
|
+
Return-Path: <>
|
2
|
for <kijitora@example.jp>; Fri, 28 Apr 2019 23:34:45 -0800 (PST)
|
1
3
|
d=googlemail.com; s=20161025;
|
2
4
|
h=mime-version:to:auto-submitted:message-id:date:from:subject
|
3
5
|
:references:in-reply-to:content-transfer-encoding;
|
4
6
|
bh=viGSQvYPNJVZH4dXToSBHekismMW1Ot793DC8ImaxZY=;
|
5
7
|
b=ghtHdqn8I/GTsVpzgfNhitVHb/YJNdN1rWnM/PTH2tbJCxlB5LpnejC9/8BzBUeMkf
|
6
8
|
7hZPb4Q5G6K1fK3wT9mVZWK5MY/ictyBCmWmTwjLw9rAOZ0qMLUE1WgX2zum/I3IAM43
|
7
9
|
Gl4veN+WsBEhwBTPKPh76lwmMSo5TdZbje2M/G09fLJ3fxRzmQgs4MQWBdVr5Bd0I7/h
|
8
10
|
+iFsefuYQ97Sm6TTwdADra0c2jxyNfjyMiJl1iBKsnnWMDb6QmYKwIld+JksK+sAbQOW
|
9
11
|
K1udcBA4WoA+1by9dWqcv6FZvSBjLqIt+hBhLaCoA91LtIp6rwOrrzSxcfu3iUfnMYiN
|
10
12
|
JCqA==
|
11
13
|
d=1e100.net; s=20161025;
|
12
14
|
h=x-gm-message-state:mime-version:to:auto-submitted:message-id:date
|
13
15
|
:from:subject:references:in-reply-to:content-transfer-encoding;
|
14
16
|
bh=viGSQvYPNJVZH4dXToSBHekismMW1Ot793DC8ImaxZY=;
|
15
17
|
b=aDIdwNK3FTNkrcf9wjQy3p/LxI1WPP9wBKGXb1SU15ZmZv9EbQngRA7rCIEyTdTo96
|
16
18
|
C9raRBF0+DL1omok8vJkCszMctuGdNrrnSa7f/jGNZ3a2u/9nr7XXKo+b8+xAccw4Yze
|
17
19
|
V/1XCEaL/n40tWI9bAhsQj0ope/Vd5nxQKqQNvVROXTUFZLS9nv411d0P6lFdrHjMatm
|
18
20
|
3VJXVYQB8J1OylReEMUY9AB550ud3+eR8NDIGKe2QjptoCkZ3YfEGP/OCEFzwDyzJLtg
|
19
21
|
W687LE6NChg5NZIeIzZtYCd/Kq6grjPY5hQ1Nj6L6xYIy3hSSkXJiDU3wgSLQpauisqr
|
20
22
|
lZlQ==
|
21
23
|
Fri, 28 Apr 2019 23:34:45 -0800 (PST)
|
22
24
|
2019 23:34:45 -0800 (PST)
|
23
25
|
* グループ名のスペルや形式が間違っている。
|
24
26
|
* グループのオーナーによってこのグループが削除された。
|
25
27
|
* 投稿する権限を取得するためには、グループに参加する必要がある。
|
26
28
|
* このグループでは投稿を受け付けていない。
|
27
|
-
---- Original message -----
|
28
29
|
Fri, 28 Apr 2019 23:34:45 -0800 (PST)
|
29
30
|
d=google.com; s=arc-20160816;
|
30
31
|
b=YrnvfiU4Y0yTPJshJO4m7pzWlXOzFCdS23cAwbpMx1V4FLEH3Pp7Ep3XC+mdz8gxRZ
|
31
32
|
RrQNbJwnZr3eLBiKw490ufaQldAYMP2ujJebOnGrf9HxMCkupow7i2UM3wHwnLZB9G04
|
32
33
|
gsulleL6CYZHxiXjCQ05Ufj0UQaUdoZyCZsDRAwrW68SPAniMMQABJloLlBzgmCjLvot
|
33
34
|
2GZimNxP7zqtQFgXvIV1t3VQ68OjaumtDCrQVHk9GeaZGxtt6Se5DZzIQf2CQJVdUOJO
|
34
35
|
nJ/sRyCAfJWKEQqA9VYrego3ISTmiOO5SQPBzeAkPYE4/qr1PAFXKlLy+yg9Mg4NzK7t
|
35
36
|
A/VQ==
|
36
37
|
h=to:date:message-id:subject:mime-version:content-transfer-encoding
|
37
38
|
:from;
|
38
39
|
bh=AzwcYblGi4hxjxK0/x5EOU5HR3v/xczPHJW5iwumRf8=;
|
39
40
|
b=HXFLnmNhnEQJkRLLXXQKhk/NPFZUpUc96OMjwdk5VrtB6A30yuXJhKHTin5IH4p8cy
|
40
41
|
cg30cu025hISp9YUWwyjenCjjXPgJhrgSp4H3Xk6TvCAAHdZZrDeA74Y3Nkqu1LOPaMS
|
41
42
|
9uSrWCGjgdNwyO3WBYjE+5OJAgC3K/5RtweL0bwHa4DGQksfQ4bXsGiXJUQvJw1mDgDs
|
42
43
|
lce1lW15hUKmnR3EoITAgB6JdylyaqkSJ682d0SQWZ4NJqLIiknJe5+gFPOHVhmqR77T
|
43
44
|
uDVDCuUt/+hJ//AXkEZ/KDgfIPrpVm7f9AqFK+hfIN+2D3ceT+y+tCyXF2yoDfCizvqC
|
44
45
|
UwYw==
|
45
46
|
spf=pass (google.com: domain of kijitora@example.jp designates 192.0.2.222 as permitted sender) smtp.mailfrom=kijitora@example.jp
|
46
47
|
by gmr-mx.google.com with ESMTP id h2si601605pju.2.2019.02.28.13.38.41
|
47
48
|
for <libsisimai@googlegroups.com>;
|
48
49
|
Fri, 28 Apr 2019 23:34:45 -0800 (PST)
|
49
50
|
spf=pass (google.com: domain of kijitora@example.jp designates 192.0.2.222 as permitted sender) smtp.mailfrom=kijitora@example.jp
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/set-of-emails/maildir/mac/{email-mailmarshalsmtp-01.eml → lhost-mailmarshalsmtp-01.eml}
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/set-of-emails/maildir/mac/{email-messagingserver-01.eml → lhost-messagingserver-01.eml}
RENAMED
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 @@
|
|
1
|
+
Return-Path: <>
|
2
|
boundary="report4E747F78@mail22.neko.example.net"
|
1
|
-
-report4E747F78@mail22.neko.example.net
|
2
3
|
<kijitora@example.jp> delivery failed; will not continue trying
|
3
|
-
-report4E747F78@mail22.neko.example.net
|
4
|
-
-report4E747F78@mail22.neko.example.net
|
5
4
|
id hehvng0ik18p for <kijitora@example.jp>; Sat, 17 Sep 2011 07:07:29 -0400
|
6
5
|
(envelope-from <bounce-5899542-1206365-kijitora=example.jp@mail22.neko.example.net>)
|
7
|
-
-report4E747F78@mail22.neko.example.net--
|
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
|
File without changes
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
From mailer-daemon Fri Apr 29 23:34:45 2012
|
-
---=_MIMEBOUNDARY_d1e2471b4b95f44c_12823329331748206317161a01e__a96ea837
|
|
1
|
-
---=_MIMEBOUNDARY_d1e2471b4b95f44c_12823329331748206317161a01e__a96ea837
|
2
2
|
Microsoft SMTPSVC(6.0.3790.3959); Thu, 29 Apr 2012 23:34:45 +0000
|
3
3
|
Hades.nyaan.example.jp (10.90.23.11) with Microsoft SMTP Server id 8.2.255.0;
|
4
4
|
Thu, 29 Apr 2012 23:34:45 +0000
|
5
|
-
---=_MIMEBOUNDARY_d1e2471b4b95f44c_12823329331748206317161a01e__a96ea837--
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
Return-Path: <>
|
-
-0E1D4CDC0054.1562628010/mail.example.co.jp
|
|
1
2
|
The mail system
|
2
3
|
frozen. See http://mail.i.ua/err/3/ (in reply to RCPT TO command)
|
3
|
-
-0E1D4CDC0054.1562628010/mail.example.co.jp
|
4
|
-
-0E1D4CDC0054.1562628010/mail.example.co.jp
|
5
|
-
-0E1D4CDC0054.1562628010/mail.example.co.jp--
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sisimai
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.25.
|
4
|
+
version: 4.25.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- azumakuniyuki
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-07-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -80,6 +80,7 @@ files:
|
|
80
80
|
- ".travis.yml"
|
81
81
|
- ANALYTICAL-PRECISION
|
82
82
|
- Benchmarks.mk
|
83
|
+
- CONTRIBUTING
|
83
84
|
- ChangeLog.md
|
84
85
|
- Developers.mk
|
85
86
|
- Gemfile
|
@@ -92,71 +93,69 @@ files:
|
|
92
93
|
- appveyor.yml
|
93
94
|
- bin/console
|
94
95
|
- bin/setup
|
95
|
-
- fig/sisimai-architecture.png
|
96
96
|
- lib/sisimai.rb
|
97
97
|
- lib/sisimai/address.rb
|
98
98
|
- lib/sisimai/arf.rb
|
99
|
-
- lib/sisimai/bite.rb
|
100
|
-
- lib/sisimai/bite/email.rb
|
101
|
-
- lib/sisimai/bite/email/activehunter.rb
|
102
|
-
- lib/sisimai/bite/email/amavis.rb
|
103
|
-
- lib/sisimai/bite/email/amazonses.rb
|
104
|
-
- lib/sisimai/bite/email/amazonworkmail.rb
|
105
|
-
- lib/sisimai/bite/email/aol.rb
|
106
|
-
- lib/sisimai/bite/email/apachejames.rb
|
107
|
-
- lib/sisimai/bite/email/bigfoot.rb
|
108
|
-
- lib/sisimai/bite/email/biglobe.rb
|
109
|
-
- lib/sisimai/bite/email/courier.rb
|
110
|
-
- lib/sisimai/bite/email/domino.rb
|
111
|
-
- lib/sisimai/bite/email/einsundeins.rb
|
112
|
-
- lib/sisimai/bite/email/exchange2003.rb
|
113
|
-
- lib/sisimai/bite/email/exchange2007.rb
|
114
|
-
- lib/sisimai/bite/email/exim.rb
|
115
|
-
- lib/sisimai/bite/email/ezweb.rb
|
116
|
-
- lib/sisimai/bite/email/facebook.rb
|
117
|
-
- lib/sisimai/bite/email/fml.rb
|
118
|
-
- lib/sisimai/bite/email/gmx.rb
|
119
|
-
- lib/sisimai/bite/email/google.rb
|
120
|
-
- lib/sisimai/bite/email/gsuite.rb
|
121
|
-
- lib/sisimai/bite/email/imailserver.rb
|
122
|
-
- lib/sisimai/bite/email/interscanmss.rb
|
123
|
-
- lib/sisimai/bite/email/kddi.rb
|
124
|
-
- lib/sisimai/bite/email/mailfoundry.rb
|
125
|
-
- lib/sisimai/bite/email/mailmarshalsmtp.rb
|
126
|
-
- lib/sisimai/bite/email/mailru.rb
|
127
|
-
- lib/sisimai/bite/email/mcafee.rb
|
128
|
-
- lib/sisimai/bite/email/messagelabs.rb
|
129
|
-
- lib/sisimai/bite/email/messagingserver.rb
|
130
|
-
- lib/sisimai/bite/email/mfilter.rb
|
131
|
-
- lib/sisimai/bite/email/mxlogic.rb
|
132
|
-
- lib/sisimai/bite/email/notes.rb
|
133
|
-
- lib/sisimai/bite/email/office365.rb
|
134
|
-
- lib/sisimai/bite/email/opensmtpd.rb
|
135
|
-
- lib/sisimai/bite/email/outlook.rb
|
136
|
-
- lib/sisimai/bite/email/postfix.rb
|
137
|
-
- lib/sisimai/bite/email/qmail.rb
|
138
|
-
- lib/sisimai/bite/email/receivingses.rb
|
139
|
-
- lib/sisimai/bite/email/sendgrid.rb
|
140
|
-
- lib/sisimai/bite/email/sendmail.rb
|
141
|
-
- lib/sisimai/bite/email/surfcontrol.rb
|
142
|
-
- lib/sisimai/bite/email/userdefined.rb
|
143
|
-
- lib/sisimai/bite/email/v5sendmail.rb
|
144
|
-
- lib/sisimai/bite/email/verizon.rb
|
145
|
-
- lib/sisimai/bite/email/x1.rb
|
146
|
-
- lib/sisimai/bite/email/x2.rb
|
147
|
-
- lib/sisimai/bite/email/x3.rb
|
148
|
-
- lib/sisimai/bite/email/x4.rb
|
149
|
-
- lib/sisimai/bite/email/x5.rb
|
150
|
-
- lib/sisimai/bite/email/yahoo.rb
|
151
|
-
- lib/sisimai/bite/email/yandex.rb
|
152
|
-
- lib/sisimai/bite/email/zoho.rb
|
153
|
-
- lib/sisimai/bite/json.rb
|
154
|
-
- lib/sisimai/bite/json/amazonses.rb
|
155
|
-
- lib/sisimai/bite/json/sendgrid.rb
|
156
99
|
- lib/sisimai/data.rb
|
157
100
|
- lib/sisimai/data/json.rb
|
158
101
|
- lib/sisimai/data/yaml.rb
|
159
102
|
- lib/sisimai/datetime.rb
|
103
|
+
- lib/sisimai/lhost.rb
|
104
|
+
- lib/sisimai/lhost/activehunter.rb
|
105
|
+
- lib/sisimai/lhost/amavis.rb
|
106
|
+
- lib/sisimai/lhost/amazonses.rb
|
107
|
+
- lib/sisimai/lhost/amazonworkmail.rb
|
108
|
+
- lib/sisimai/lhost/aol.rb
|
109
|
+
- lib/sisimai/lhost/apachejames.rb
|
110
|
+
- lib/sisimai/lhost/barracuda.rb
|
111
|
+
- lib/sisimai/lhost/bigfoot.rb
|
112
|
+
- lib/sisimai/lhost/biglobe.rb
|
113
|
+
- lib/sisimai/lhost/courier.rb
|
114
|
+
- lib/sisimai/lhost/domino.rb
|
115
|
+
- lib/sisimai/lhost/einsundeins.rb
|
116
|
+
- lib/sisimai/lhost/exchange2003.rb
|
117
|
+
- lib/sisimai/lhost/exchange2007.rb
|
118
|
+
- lib/sisimai/lhost/exim.rb
|
119
|
+
- lib/sisimai/lhost/ezweb.rb
|
120
|
+
- lib/sisimai/lhost/facebook.rb
|
121
|
+
- lib/sisimai/lhost/fml.rb
|
122
|
+
- lib/sisimai/lhost/gmail.rb
|
123
|
+
- lib/sisimai/lhost/gmx.rb
|
124
|
+
- lib/sisimai/lhost/googlegroups.rb
|
125
|
+
- lib/sisimai/lhost/gsuite.rb
|
126
|
+
- lib/sisimai/lhost/imailserver.rb
|
127
|
+
- lib/sisimai/lhost/interscanmss.rb
|
128
|
+
- lib/sisimai/lhost/kddi.rb
|
129
|
+
- lib/sisimai/lhost/mailfoundry.rb
|
130
|
+
- lib/sisimai/lhost/mailmarshalsmtp.rb
|
131
|
+
- lib/sisimai/lhost/mailru.rb
|
132
|
+
- lib/sisimai/lhost/mcafee.rb
|
133
|
+
- lib/sisimai/lhost/messagelabs.rb
|
134
|
+
- lib/sisimai/lhost/messagingserver.rb
|
135
|
+
- lib/sisimai/lhost/mfilter.rb
|
136
|
+
- lib/sisimai/lhost/mxlogic.rb
|
137
|
+
- lib/sisimai/lhost/notes.rb
|
138
|
+
- lib/sisimai/lhost/office365.rb
|
139
|
+
- lib/sisimai/lhost/opensmtpd.rb
|
140
|
+
- lib/sisimai/lhost/outlook.rb
|
141
|
+
- lib/sisimai/lhost/postfix.rb
|
142
|
+
- lib/sisimai/lhost/powermta.rb
|
143
|
+
- lib/sisimai/lhost/qmail.rb
|
144
|
+
- lib/sisimai/lhost/receivingses.rb
|
145
|
+
- lib/sisimai/lhost/sendgrid.rb
|
146
|
+
- lib/sisimai/lhost/sendmail.rb
|
147
|
+
- lib/sisimai/lhost/surfcontrol.rb
|
148
|
+
- lib/sisimai/lhost/v5sendmail.rb
|
149
|
+
- lib/sisimai/lhost/verizon.rb
|
150
|
+
- lib/sisimai/lhost/x1.rb
|
151
|
+
- lib/sisimai/lhost/x2.rb
|
152
|
+
- lib/sisimai/lhost/x3.rb
|
153
|
+
- lib/sisimai/lhost/x4.rb
|
154
|
+
- lib/sisimai/lhost/x5.rb
|
155
|
+
- lib/sisimai/lhost/x6.rb
|
156
|
+
- lib/sisimai/lhost/yahoo.rb
|
157
|
+
- lib/sisimai/lhost/yandex.rb
|
158
|
+
- lib/sisimai/lhost/zoho.rb
|
160
159
|
- lib/sisimai/mail.rb
|
161
160
|
- lib/sisimai/mail/maildir.rb
|
162
161
|
- lib/sisimai/mail/mbox.rb
|
@@ -164,12 +163,8 @@ files:
|
|
164
163
|
- lib/sisimai/mail/stdin.rb
|
165
164
|
- lib/sisimai/mda.rb
|
166
165
|
- lib/sisimai/message.rb
|
167
|
-
- lib/sisimai/message/email.rb
|
168
|
-
- lib/sisimai/message/json.rb
|
169
166
|
- lib/sisimai/mime.rb
|
170
167
|
- lib/sisimai/order.rb
|
171
|
-
- lib/sisimai/order/email.rb
|
172
|
-
- lib/sisimai/order/json.rb
|
173
168
|
- lib/sisimai/reason.rb
|
174
169
|
- lib/sisimai/reason/blocked.rb
|
175
170
|
- lib/sisimai/reason/contenterror.rb
|
@@ -205,11 +200,14 @@ files:
|
|
205
200
|
- lib/sisimai/rfc3834.rb
|
206
201
|
- lib/sisimai/rfc5322.rb
|
207
202
|
- lib/sisimai/rhost.rb
|
203
|
+
- lib/sisimai/rhost/cox.rb
|
208
204
|
- lib/sisimai/rhost/exchangeonline.rb
|
209
205
|
- lib/sisimai/rhost/franceptt.rb
|
210
206
|
- lib/sisimai/rhost/godaddy.rb
|
211
207
|
- lib/sisimai/rhost/googleapps.rb
|
208
|
+
- lib/sisimai/rhost/iua.rb
|
212
209
|
- lib/sisimai/rhost/kddi.rb
|
210
|
+
- lib/sisimai/rhost/spectrum.rb
|
213
211
|
- lib/sisimai/rhost/tencentqq.rb
|
214
212
|
- lib/sisimai/smtp.rb
|
215
213
|
- lib/sisimai/smtp/error.rb
|
@@ -219,29 +217,6 @@ files:
|
|
219
217
|
- lib/sisimai/time.rb
|
220
218
|
- lib/sisimai/version.rb
|
221
219
|
- set-of-emails/README.md
|
222
|
-
- set-of-emails/jsonobj/json-amazonses-01.json
|
223
|
-
- set-of-emails/jsonobj/json-amazonses-02.json
|
224
|
-
- set-of-emails/jsonobj/json-amazonses-03.json
|
225
|
-
- set-of-emails/jsonobj/json-amazonses-04.json
|
226
|
-
- set-of-emails/jsonobj/json-amazonses-05.json
|
227
|
-
- set-of-emails/jsonobj/json-amazonses-06.json
|
228
|
-
- set-of-emails/jsonobj/json-sendgrid-01.json
|
229
|
-
- set-of-emails/jsonobj/json-sendgrid-02.json
|
230
|
-
- set-of-emails/jsonobj/json-sendgrid-03.json
|
231
|
-
- set-of-emails/jsonobj/json-sendgrid-04.json
|
232
|
-
- set-of-emails/jsonobj/json-sendgrid-05.json
|
233
|
-
- set-of-emails/jsonobj/json-sendgrid-06.json
|
234
|
-
- set-of-emails/jsonobj/json-sendgrid-07.json
|
235
|
-
- set-of-emails/jsonobj/json-sendgrid-08.json
|
236
|
-
- set-of-emails/jsonobj/json-sendgrid-09.json
|
237
|
-
- set-of-emails/jsonobj/json-sendgrid-10.json
|
238
|
-
- set-of-emails/jsonobj/json-sendgrid-11.json
|
239
|
-
- set-of-emails/jsonobj/json-sendgrid-12.json
|
240
|
-
- set-of-emails/jsonobj/json-sendgrid-13.json
|
241
|
-
- set-of-emails/jsonobj/json-sendgrid-14.json
|
242
|
-
- set-of-emails/jsonobj/json-sendgrid-15.json
|
243
|
-
- set-of-emails/jsonobj/json-sendgrid-16.json
|
244
|
-
- set-of-emails/jsonobj/json-sendgrid-17.json
|
245
220
|
- set-of-emails/mailbox/mbox-0
|
246
221
|
- set-of-emails/mailbox/mbox-1
|
247
222
|
- set-of-emails/maildir/bsd/arf-01.eml
|
@@ -258,401 +233,436 @@ files:
|
|
258
233
|
- set-of-emails/maildir/bsd/arf-21.eml
|
259
234
|
- set-of-emails/maildir/bsd/arf-22.eml
|
260
235
|
- set-of-emails/maildir/bsd/arf-23.eml
|
261
|
-
- set-of-emails/maildir/bsd/
|
262
|
-
- set-of-emails/maildir/bsd/
|
263
|
-
- set-of-emails/maildir/bsd/
|
264
|
-
- set-of-emails/maildir/bsd/
|
265
|
-
- set-of-emails/maildir/bsd/
|
266
|
-
- set-of-emails/maildir/bsd/
|
267
|
-
- set-of-emails/maildir/bsd/
|
268
|
-
- set-of-emails/maildir/bsd/
|
269
|
-
- set-of-emails/maildir/bsd/
|
270
|
-
- set-of-emails/maildir/bsd/
|
271
|
-
- set-of-emails/maildir/bsd/
|
272
|
-
- set-of-emails/maildir/bsd/
|
273
|
-
- set-of-emails/maildir/bsd/
|
274
|
-
- set-of-emails/maildir/bsd/
|
275
|
-
- set-of-emails/maildir/bsd/
|
276
|
-
- set-of-emails/maildir/bsd/
|
277
|
-
- set-of-emails/maildir/bsd/
|
278
|
-
- set-of-emails/maildir/bsd/
|
279
|
-
- set-of-emails/maildir/bsd/
|
280
|
-
- set-of-emails/maildir/bsd/
|
281
|
-
- set-of-emails/maildir/bsd/
|
282
|
-
- set-of-emails/maildir/bsd/
|
283
|
-
- set-of-emails/maildir/bsd/
|
284
|
-
- set-of-emails/maildir/bsd/
|
285
|
-
- set-of-emails/maildir/bsd/
|
286
|
-
- set-of-emails/maildir/bsd/
|
287
|
-
- set-of-emails/maildir/bsd/
|
288
|
-
- set-of-emails/maildir/bsd/
|
289
|
-
- set-of-emails/maildir/bsd/
|
290
|
-
- set-of-emails/maildir/bsd/
|
291
|
-
- set-of-emails/maildir/bsd/
|
292
|
-
- set-of-emails/maildir/bsd/
|
293
|
-
- set-of-emails/maildir/bsd/
|
294
|
-
- set-of-emails/maildir/bsd/
|
295
|
-
- set-of-emails/maildir/bsd/
|
296
|
-
- set-of-emails/maildir/bsd/
|
297
|
-
- set-of-emails/maildir/bsd/
|
298
|
-
- set-of-emails/maildir/bsd/
|
299
|
-
- set-of-emails/maildir/bsd/
|
300
|
-
- set-of-emails/maildir/bsd/
|
301
|
-
- set-of-emails/maildir/bsd/
|
302
|
-
- set-of-emails/maildir/bsd/
|
303
|
-
- set-of-emails/maildir/bsd/
|
304
|
-
- set-of-emails/maildir/bsd/
|
305
|
-
- set-of-emails/maildir/bsd/
|
306
|
-
- set-of-emails/maildir/bsd/
|
307
|
-
- set-of-emails/maildir/bsd/
|
308
|
-
- set-of-emails/maildir/bsd/
|
309
|
-
- set-of-emails/maildir/bsd/
|
310
|
-
- set-of-emails/maildir/bsd/
|
311
|
-
- set-of-emails/maildir/bsd/
|
312
|
-
- set-of-emails/maildir/bsd/
|
313
|
-
- set-of-emails/maildir/bsd/
|
314
|
-
- set-of-emails/maildir/bsd/
|
315
|
-
- set-of-emails/maildir/bsd/
|
316
|
-
- set-of-emails/maildir/bsd/
|
317
|
-
- set-of-emails/maildir/bsd/
|
318
|
-
- set-of-emails/maildir/bsd/
|
319
|
-
- set-of-emails/maildir/bsd/
|
320
|
-
- set-of-emails/maildir/bsd/
|
321
|
-
- set-of-emails/maildir/bsd/
|
322
|
-
- set-of-emails/maildir/bsd/
|
323
|
-
- set-of-emails/maildir/bsd/
|
324
|
-
- set-of-emails/maildir/bsd/
|
325
|
-
- set-of-emails/maildir/bsd/
|
326
|
-
- set-of-emails/maildir/bsd/
|
327
|
-
- set-of-emails/maildir/bsd/
|
328
|
-
- set-of-emails/maildir/bsd/
|
329
|
-
- set-of-emails/maildir/bsd/
|
330
|
-
- set-of-emails/maildir/bsd/
|
331
|
-
- set-of-emails/maildir/bsd/
|
332
|
-
- set-of-emails/maildir/bsd/
|
333
|
-
- set-of-emails/maildir/bsd/
|
334
|
-
- set-of-emails/maildir/bsd/
|
335
|
-
- set-of-emails/maildir/bsd/
|
336
|
-
- set-of-emails/maildir/bsd/
|
337
|
-
- set-of-emails/maildir/bsd/
|
338
|
-
- set-of-emails/maildir/bsd/
|
339
|
-
- set-of-emails/maildir/bsd/
|
340
|
-
- set-of-emails/maildir/bsd/
|
341
|
-
- set-of-emails/maildir/bsd/
|
342
|
-
- set-of-emails/maildir/bsd/
|
343
|
-
- set-of-emails/maildir/bsd/
|
344
|
-
- set-of-emails/maildir/bsd/
|
345
|
-
- set-of-emails/maildir/bsd/
|
346
|
-
- set-of-emails/maildir/bsd/
|
347
|
-
- set-of-emails/maildir/bsd/
|
348
|
-
- set-of-emails/maildir/bsd/
|
349
|
-
- set-of-emails/maildir/bsd/
|
350
|
-
- set-of-emails/maildir/bsd/
|
351
|
-
- set-of-emails/maildir/bsd/
|
352
|
-
- set-of-emails/maildir/bsd/
|
353
|
-
- set-of-emails/maildir/bsd/
|
354
|
-
- set-of-emails/maildir/bsd/
|
355
|
-
- set-of-emails/maildir/bsd/
|
356
|
-
- set-of-emails/maildir/bsd/
|
357
|
-
- set-of-emails/maildir/bsd/
|
358
|
-
- set-of-emails/maildir/bsd/
|
359
|
-
- set-of-emails/maildir/bsd/
|
360
|
-
- set-of-emails/maildir/bsd/
|
361
|
-
- set-of-emails/maildir/bsd/
|
362
|
-
- set-of-emails/maildir/bsd/
|
363
|
-
- set-of-emails/maildir/bsd/
|
364
|
-
- set-of-emails/maildir/bsd/
|
365
|
-
- set-of-emails/maildir/bsd/
|
366
|
-
- set-of-emails/maildir/bsd/
|
367
|
-
- set-of-emails/maildir/bsd/
|
368
|
-
- set-of-emails/maildir/bsd/
|
369
|
-
- set-of-emails/maildir/bsd/
|
370
|
-
- set-of-emails/maildir/bsd/
|
371
|
-
- set-of-emails/maildir/bsd/
|
372
|
-
- set-of-emails/maildir/bsd/
|
373
|
-
- set-of-emails/maildir/bsd/
|
374
|
-
- set-of-emails/maildir/bsd/
|
375
|
-
- set-of-emails/maildir/bsd/
|
376
|
-
- set-of-emails/maildir/bsd/
|
377
|
-
- set-of-emails/maildir/bsd/
|
378
|
-
- set-of-emails/maildir/bsd/
|
379
|
-
- set-of-emails/maildir/bsd/
|
380
|
-
- set-of-emails/maildir/bsd/
|
381
|
-
- set-of-emails/maildir/bsd/
|
382
|
-
- set-of-emails/maildir/bsd/
|
383
|
-
- set-of-emails/maildir/bsd/
|
384
|
-
- set-of-emails/maildir/bsd/
|
385
|
-
- set-of-emails/maildir/bsd/
|
386
|
-
- set-of-emails/maildir/bsd/
|
387
|
-
- set-of-emails/maildir/bsd/
|
388
|
-
- set-of-emails/maildir/bsd/
|
389
|
-
- set-of-emails/maildir/bsd/
|
390
|
-
- set-of-emails/maildir/bsd/
|
391
|
-
- set-of-emails/maildir/bsd/
|
392
|
-
- set-of-emails/maildir/bsd/
|
393
|
-
- set-of-emails/maildir/bsd/
|
394
|
-
- set-of-emails/maildir/bsd/
|
395
|
-
- set-of-emails/maildir/bsd/
|
396
|
-
- set-of-emails/maildir/bsd/
|
397
|
-
- set-of-emails/maildir/bsd/
|
398
|
-
- set-of-emails/maildir/bsd/
|
399
|
-
- set-of-emails/maildir/bsd/
|
400
|
-
- set-of-emails/maildir/bsd/
|
401
|
-
- set-of-emails/maildir/bsd/
|
402
|
-
- set-of-emails/maildir/bsd/
|
403
|
-
- set-of-emails/maildir/bsd/
|
404
|
-
- set-of-emails/maildir/bsd/
|
405
|
-
- set-of-emails/maildir/bsd/
|
406
|
-
- set-of-emails/maildir/bsd/
|
407
|
-
- set-of-emails/maildir/bsd/
|
408
|
-
- set-of-emails/maildir/bsd/
|
409
|
-
- set-of-emails/maildir/bsd/
|
410
|
-
- set-of-emails/maildir/bsd/
|
411
|
-
- set-of-emails/maildir/bsd/
|
412
|
-
- set-of-emails/maildir/bsd/
|
413
|
-
- set-of-emails/maildir/bsd/
|
414
|
-
- set-of-emails/maildir/bsd/
|
415
|
-
- set-of-emails/maildir/bsd/
|
416
|
-
- set-of-emails/maildir/bsd/
|
417
|
-
- set-of-emails/maildir/bsd/
|
418
|
-
- set-of-emails/maildir/bsd/
|
419
|
-
- set-of-emails/maildir/bsd/
|
420
|
-
- set-of-emails/maildir/bsd/
|
421
|
-
- set-of-emails/maildir/bsd/
|
422
|
-
- set-of-emails/maildir/bsd/
|
423
|
-
- set-of-emails/maildir/bsd/
|
424
|
-
- set-of-emails/maildir/bsd/
|
425
|
-
- set-of-emails/maildir/bsd/
|
426
|
-
- set-of-emails/maildir/bsd/
|
427
|
-
- set-of-emails/maildir/bsd/
|
428
|
-
- set-of-emails/maildir/bsd/
|
429
|
-
- set-of-emails/maildir/bsd/
|
430
|
-
- set-of-emails/maildir/bsd/
|
431
|
-
- set-of-emails/maildir/bsd/
|
432
|
-
- set-of-emails/maildir/bsd/
|
433
|
-
- set-of-emails/maildir/bsd/
|
434
|
-
- set-of-emails/maildir/bsd/
|
435
|
-
- set-of-emails/maildir/bsd/
|
436
|
-
- set-of-emails/maildir/bsd/
|
437
|
-
- set-of-emails/maildir/bsd/
|
438
|
-
- set-of-emails/maildir/bsd/
|
439
|
-
- set-of-emails/maildir/bsd/
|
440
|
-
- set-of-emails/maildir/bsd/
|
441
|
-
- set-of-emails/maildir/bsd/
|
442
|
-
- set-of-emails/maildir/bsd/
|
443
|
-
- set-of-emails/maildir/bsd/
|
444
|
-
- set-of-emails/maildir/bsd/
|
445
|
-
- set-of-emails/maildir/bsd/
|
446
|
-
- set-of-emails/maildir/bsd/
|
447
|
-
- set-of-emails/maildir/bsd/
|
448
|
-
- set-of-emails/maildir/bsd/
|
449
|
-
- set-of-emails/maildir/bsd/
|
450
|
-
- set-of-emails/maildir/bsd/
|
451
|
-
- set-of-emails/maildir/bsd/
|
452
|
-
- set-of-emails/maildir/bsd/
|
453
|
-
- set-of-emails/maildir/bsd/
|
454
|
-
- set-of-emails/maildir/bsd/
|
455
|
-
- set-of-emails/maildir/bsd/
|
456
|
-
- set-of-emails/maildir/bsd/
|
457
|
-
- set-of-emails/maildir/bsd/
|
458
|
-
- set-of-emails/maildir/bsd/
|
459
|
-
- set-of-emails/maildir/bsd/
|
460
|
-
- set-of-emails/maildir/bsd/
|
461
|
-
- set-of-emails/maildir/bsd/
|
462
|
-
- set-of-emails/maildir/bsd/
|
463
|
-
- set-of-emails/maildir/bsd/
|
464
|
-
- set-of-emails/maildir/bsd/
|
465
|
-
- set-of-emails/maildir/bsd/
|
466
|
-
- set-of-emails/maildir/bsd/
|
467
|
-
- set-of-emails/maildir/bsd/
|
468
|
-
- set-of-emails/maildir/bsd/
|
469
|
-
- set-of-emails/maildir/bsd/
|
470
|
-
- set-of-emails/maildir/bsd/
|
471
|
-
- set-of-emails/maildir/bsd/
|
472
|
-
- set-of-emails/maildir/bsd/
|
473
|
-
- set-of-emails/maildir/bsd/
|
474
|
-
- set-of-emails/maildir/bsd/
|
475
|
-
- set-of-emails/maildir/bsd/
|
476
|
-
- set-of-emails/maildir/bsd/
|
477
|
-
- set-of-emails/maildir/bsd/
|
478
|
-
- set-of-emails/maildir/bsd/
|
479
|
-
- set-of-emails/maildir/bsd/
|
480
|
-
- set-of-emails/maildir/bsd/
|
481
|
-
- set-of-emails/maildir/bsd/
|
482
|
-
- set-of-emails/maildir/bsd/
|
483
|
-
- set-of-emails/maildir/bsd/
|
484
|
-
- set-of-emails/maildir/bsd/
|
485
|
-
- set-of-emails/maildir/bsd/
|
486
|
-
- set-of-emails/maildir/bsd/
|
487
|
-
- set-of-emails/maildir/bsd/
|
488
|
-
- set-of-emails/maildir/bsd/
|
489
|
-
- set-of-emails/maildir/bsd/
|
490
|
-
- set-of-emails/maildir/bsd/
|
491
|
-
- set-of-emails/maildir/bsd/
|
492
|
-
- set-of-emails/maildir/bsd/
|
493
|
-
- set-of-emails/maildir/bsd/
|
494
|
-
- set-of-emails/maildir/bsd/
|
495
|
-
- set-of-emails/maildir/bsd/
|
496
|
-
- set-of-emails/maildir/bsd/
|
497
|
-
- set-of-emails/maildir/bsd/
|
498
|
-
- set-of-emails/maildir/bsd/
|
499
|
-
- set-of-emails/maildir/bsd/
|
500
|
-
- set-of-emails/maildir/bsd/
|
501
|
-
- set-of-emails/maildir/bsd/
|
502
|
-
- set-of-emails/maildir/bsd/
|
503
|
-
- set-of-emails/maildir/bsd/
|
504
|
-
- set-of-emails/maildir/bsd/
|
505
|
-
- set-of-emails/maildir/bsd/
|
506
|
-
- set-of-emails/maildir/bsd/
|
507
|
-
- set-of-emails/maildir/bsd/
|
508
|
-
- set-of-emails/maildir/bsd/
|
509
|
-
- set-of-emails/maildir/bsd/
|
510
|
-
- set-of-emails/maildir/bsd/
|
511
|
-
- set-of-emails/maildir/bsd/
|
512
|
-
- set-of-emails/maildir/bsd/
|
513
|
-
- set-of-emails/maildir/bsd/
|
514
|
-
- set-of-emails/maildir/bsd/
|
515
|
-
- set-of-emails/maildir/bsd/
|
516
|
-
- set-of-emails/maildir/bsd/
|
517
|
-
- set-of-emails/maildir/bsd/
|
518
|
-
- set-of-emails/maildir/bsd/
|
519
|
-
- set-of-emails/maildir/bsd/
|
520
|
-
- set-of-emails/maildir/bsd/
|
521
|
-
- set-of-emails/maildir/bsd/
|
522
|
-
- set-of-emails/maildir/bsd/
|
523
|
-
- set-of-emails/maildir/bsd/
|
524
|
-
- set-of-emails/maildir/bsd/
|
525
|
-
- set-of-emails/maildir/bsd/
|
526
|
-
- set-of-emails/maildir/bsd/
|
527
|
-
- set-of-emails/maildir/bsd/
|
528
|
-
- set-of-emails/maildir/bsd/
|
529
|
-
- set-of-emails/maildir/bsd/
|
530
|
-
- set-of-emails/maildir/bsd/
|
531
|
-
- set-of-emails/maildir/bsd/
|
532
|
-
- set-of-emails/maildir/bsd/
|
533
|
-
- set-of-emails/maildir/bsd/
|
534
|
-
- set-of-emails/maildir/bsd/
|
535
|
-
- set-of-emails/maildir/bsd/
|
536
|
-
- set-of-emails/maildir/bsd/
|
537
|
-
- set-of-emails/maildir/bsd/
|
538
|
-
- set-of-emails/maildir/bsd/
|
539
|
-
- set-of-emails/maildir/bsd/
|
540
|
-
- set-of-emails/maildir/bsd/
|
541
|
-
- set-of-emails/maildir/bsd/
|
542
|
-
- set-of-emails/maildir/bsd/
|
543
|
-
- set-of-emails/maildir/bsd/
|
544
|
-
- set-of-emails/maildir/bsd/
|
545
|
-
- set-of-emails/maildir/bsd/
|
546
|
-
- set-of-emails/maildir/bsd/
|
547
|
-
- set-of-emails/maildir/bsd/
|
548
|
-
- set-of-emails/maildir/bsd/
|
549
|
-
- set-of-emails/maildir/bsd/
|
550
|
-
- set-of-emails/maildir/bsd/
|
551
|
-
- set-of-emails/maildir/bsd/
|
552
|
-
- set-of-emails/maildir/bsd/
|
553
|
-
- set-of-emails/maildir/bsd/
|
554
|
-
- set-of-emails/maildir/bsd/
|
555
|
-
- set-of-emails/maildir/bsd/
|
556
|
-
- set-of-emails/maildir/bsd/
|
557
|
-
- set-of-emails/maildir/bsd/
|
558
|
-
- set-of-emails/maildir/bsd/
|
559
|
-
- set-of-emails/maildir/bsd/
|
560
|
-
- set-of-emails/maildir/bsd/
|
561
|
-
- set-of-emails/maildir/bsd/
|
562
|
-
- set-of-emails/maildir/bsd/
|
563
|
-
- set-of-emails/maildir/bsd/
|
564
|
-
- set-of-emails/maildir/bsd/
|
565
|
-
- set-of-emails/maildir/bsd/
|
566
|
-
- set-of-emails/maildir/bsd/
|
567
|
-
- set-of-emails/maildir/bsd/
|
568
|
-
- set-of-emails/maildir/bsd/
|
569
|
-
- set-of-emails/maildir/bsd/
|
570
|
-
- set-of-emails/maildir/bsd/
|
571
|
-
- set-of-emails/maildir/bsd/
|
572
|
-
- set-of-emails/maildir/bsd/
|
573
|
-
- set-of-emails/maildir/bsd/
|
574
|
-
- set-of-emails/maildir/bsd/
|
575
|
-
- set-of-emails/maildir/bsd/
|
576
|
-
- set-of-emails/maildir/bsd/
|
577
|
-
- set-of-emails/maildir/bsd/
|
578
|
-
- set-of-emails/maildir/bsd/
|
579
|
-
- set-of-emails/maildir/bsd/
|
580
|
-
- set-of-emails/maildir/bsd/
|
581
|
-
- set-of-emails/maildir/bsd/
|
582
|
-
- set-of-emails/maildir/bsd/
|
583
|
-
- set-of-emails/maildir/bsd/
|
584
|
-
- set-of-emails/maildir/bsd/
|
585
|
-
- set-of-emails/maildir/bsd/
|
586
|
-
- set-of-emails/maildir/bsd/
|
587
|
-
- set-of-emails/maildir/bsd/
|
588
|
-
- set-of-emails/maildir/bsd/
|
589
|
-
- set-of-emails/maildir/bsd/
|
590
|
-
- set-of-emails/maildir/bsd/
|
591
|
-
- set-of-emails/maildir/bsd/
|
592
|
-
- set-of-emails/maildir/bsd/
|
593
|
-
- set-of-emails/maildir/bsd/
|
594
|
-
- set-of-emails/maildir/bsd/
|
595
|
-
- set-of-emails/maildir/bsd/
|
596
|
-
- set-of-emails/maildir/bsd/
|
597
|
-
- set-of-emails/maildir/bsd/
|
598
|
-
- set-of-emails/maildir/bsd/
|
599
|
-
- set-of-emails/maildir/bsd/
|
600
|
-
- set-of-emails/maildir/bsd/
|
601
|
-
- set-of-emails/maildir/bsd/
|
602
|
-
- set-of-emails/maildir/bsd/
|
603
|
-
- set-of-emails/maildir/bsd/
|
604
|
-
- set-of-emails/maildir/bsd/
|
605
|
-
- set-of-emails/maildir/bsd/
|
606
|
-
- set-of-emails/maildir/bsd/
|
607
|
-
- set-of-emails/maildir/bsd/
|
608
|
-
- set-of-emails/maildir/bsd/
|
609
|
-
- set-of-emails/maildir/bsd/
|
610
|
-
- set-of-emails/maildir/bsd/
|
611
|
-
- set-of-emails/maildir/bsd/
|
612
|
-
- set-of-emails/maildir/bsd/
|
613
|
-
- set-of-emails/maildir/bsd/
|
614
|
-
- set-of-emails/maildir/bsd/
|
615
|
-
- set-of-emails/maildir/bsd/
|
616
|
-
- set-of-emails/maildir/bsd/
|
617
|
-
- set-of-emails/maildir/bsd/
|
618
|
-
- set-of-emails/maildir/bsd/
|
619
|
-
- set-of-emails/maildir/bsd/
|
620
|
-
- set-of-emails/maildir/bsd/
|
621
|
-
- set-of-emails/maildir/bsd/
|
622
|
-
- set-of-emails/maildir/bsd/
|
623
|
-
- set-of-emails/maildir/bsd/
|
624
|
-
- set-of-emails/maildir/bsd/
|
625
|
-
- set-of-emails/maildir/bsd/
|
626
|
-
- set-of-emails/maildir/bsd/
|
627
|
-
- set-of-emails/maildir/bsd/
|
628
|
-
- set-of-emails/maildir/bsd/
|
629
|
-
- set-of-emails/maildir/bsd/
|
630
|
-
- set-of-emails/maildir/bsd/
|
631
|
-
- set-of-emails/maildir/bsd/
|
632
|
-
- set-of-emails/maildir/bsd/
|
633
|
-
- set-of-emails/maildir/bsd/
|
634
|
-
- set-of-emails/maildir/bsd/
|
635
|
-
- set-of-emails/maildir/bsd/
|
636
|
-
- set-of-emails/maildir/bsd/
|
637
|
-
- set-of-emails/maildir/bsd/
|
638
|
-
- set-of-emails/maildir/bsd/
|
639
|
-
- set-of-emails/maildir/bsd/
|
640
|
-
- set-of-emails/maildir/bsd/
|
641
|
-
- set-of-emails/maildir/bsd/
|
642
|
-
- set-of-emails/maildir/bsd/
|
643
|
-
- set-of-emails/maildir/bsd/
|
644
|
-
- set-of-emails/maildir/bsd/
|
645
|
-
- set-of-emails/maildir/bsd/
|
646
|
-
- set-of-emails/maildir/bsd/
|
647
|
-
- set-of-emails/maildir/bsd/
|
648
|
-
- set-of-emails/maildir/bsd/
|
649
|
-
- set-of-emails/maildir/bsd/
|
650
|
-
- set-of-emails/maildir/bsd/
|
651
|
-
- set-of-emails/maildir/bsd/
|
236
|
+
- set-of-emails/maildir/bsd/arf-24.eml
|
237
|
+
- set-of-emails/maildir/bsd/lhost-activehunter-01.eml
|
238
|
+
- set-of-emails/maildir/bsd/lhost-activehunter-02.eml
|
239
|
+
- set-of-emails/maildir/bsd/lhost-amavis-01.eml
|
240
|
+
- set-of-emails/maildir/bsd/lhost-amavis-02.eml
|
241
|
+
- set-of-emails/maildir/bsd/lhost-amavis-03.eml
|
242
|
+
- set-of-emails/maildir/bsd/lhost-amazonses-01.eml
|
243
|
+
- set-of-emails/maildir/bsd/lhost-amazonses-02.eml
|
244
|
+
- set-of-emails/maildir/bsd/lhost-amazonses-03.eml
|
245
|
+
- set-of-emails/maildir/bsd/lhost-amazonses-05.eml
|
246
|
+
- set-of-emails/maildir/bsd/lhost-amazonses-06.eml
|
247
|
+
- set-of-emails/maildir/bsd/lhost-amazonses-07.eml
|
248
|
+
- set-of-emails/maildir/bsd/lhost-amazonses-08.eml
|
249
|
+
- set-of-emails/maildir/bsd/lhost-amazonses-09.eml
|
250
|
+
- set-of-emails/maildir/bsd/lhost-amazonses-10.eml
|
251
|
+
- set-of-emails/maildir/bsd/lhost-amazonses-11.eml
|
252
|
+
- set-of-emails/maildir/bsd/lhost-amazonses-12.eml
|
253
|
+
- set-of-emails/maildir/bsd/lhost-amazonses-13.eml
|
254
|
+
- set-of-emails/maildir/bsd/lhost-amazonses-14.eml
|
255
|
+
- set-of-emails/maildir/bsd/lhost-amazonses-15.eml
|
256
|
+
- set-of-emails/maildir/bsd/lhost-amazonses-16.eml
|
257
|
+
- set-of-emails/maildir/bsd/lhost-amazonses-17.eml
|
258
|
+
- set-of-emails/maildir/bsd/lhost-amazonses-18.eml
|
259
|
+
- set-of-emails/maildir/bsd/lhost-amazonses-19.eml
|
260
|
+
- set-of-emails/maildir/bsd/lhost-amazonses-20.eml
|
261
|
+
- set-of-emails/maildir/bsd/lhost-amazonses-21.eml
|
262
|
+
- set-of-emails/maildir/bsd/lhost-amazonworkmail-01.eml
|
263
|
+
- set-of-emails/maildir/bsd/lhost-amazonworkmail-02.eml
|
264
|
+
- set-of-emails/maildir/bsd/lhost-amazonworkmail-03.eml
|
265
|
+
- set-of-emails/maildir/bsd/lhost-amazonworkmail-04.eml
|
266
|
+
- set-of-emails/maildir/bsd/lhost-amazonworkmail-05.eml
|
267
|
+
- set-of-emails/maildir/bsd/lhost-amazonworkmail-07.eml
|
268
|
+
- set-of-emails/maildir/bsd/lhost-amazonworkmail-08.eml
|
269
|
+
- set-of-emails/maildir/bsd/lhost-aol-01.eml
|
270
|
+
- set-of-emails/maildir/bsd/lhost-aol-02.eml
|
271
|
+
- set-of-emails/maildir/bsd/lhost-aol-03.eml
|
272
|
+
- set-of-emails/maildir/bsd/lhost-aol-04.eml
|
273
|
+
- set-of-emails/maildir/bsd/lhost-aol-05.eml
|
274
|
+
- set-of-emails/maildir/bsd/lhost-aol-06.eml
|
275
|
+
- set-of-emails/maildir/bsd/lhost-apachejames-01.eml
|
276
|
+
- set-of-emails/maildir/bsd/lhost-barracuda-01.eml
|
277
|
+
- set-of-emails/maildir/bsd/lhost-barracuda-02.eml
|
278
|
+
- set-of-emails/maildir/bsd/lhost-bigfoot-02.eml
|
279
|
+
- set-of-emails/maildir/bsd/lhost-biglobe-01.eml
|
280
|
+
- set-of-emails/maildir/bsd/lhost-courier-01.eml
|
281
|
+
- set-of-emails/maildir/bsd/lhost-courier-02.eml
|
282
|
+
- set-of-emails/maildir/bsd/lhost-courier-03.eml
|
283
|
+
- set-of-emails/maildir/bsd/lhost-courier-04.eml
|
284
|
+
- set-of-emails/maildir/bsd/lhost-domino-01.eml
|
285
|
+
- set-of-emails/maildir/bsd/lhost-domino-02.eml
|
286
|
+
- set-of-emails/maildir/bsd/lhost-domino-03.eml
|
287
|
+
- set-of-emails/maildir/bsd/lhost-einsundeins-02.eml
|
288
|
+
- set-of-emails/maildir/bsd/lhost-einsundeins-03.eml
|
289
|
+
- set-of-emails/maildir/bsd/lhost-exchange2003-01.eml
|
290
|
+
- set-of-emails/maildir/bsd/lhost-exchange2003-02.eml
|
291
|
+
- set-of-emails/maildir/bsd/lhost-exchange2003-03.eml
|
292
|
+
- set-of-emails/maildir/bsd/lhost-exchange2003-04.eml
|
293
|
+
- set-of-emails/maildir/bsd/lhost-exchange2003-05.eml
|
294
|
+
- set-of-emails/maildir/bsd/lhost-exchange2003-07.eml
|
295
|
+
- set-of-emails/maildir/bsd/lhost-exchange2007-01.eml
|
296
|
+
- set-of-emails/maildir/bsd/lhost-exchange2007-02.eml
|
297
|
+
- set-of-emails/maildir/bsd/lhost-exchange2007-03.eml
|
298
|
+
- set-of-emails/maildir/bsd/lhost-exchange2007-04.eml
|
299
|
+
- set-of-emails/maildir/bsd/lhost-exchange2007-05.eml
|
300
|
+
- set-of-emails/maildir/bsd/lhost-exchange2007-06.eml
|
301
|
+
- set-of-emails/maildir/bsd/lhost-exchange2007-07.eml
|
302
|
+
- set-of-emails/maildir/bsd/lhost-exim-01.eml
|
303
|
+
- set-of-emails/maildir/bsd/lhost-exim-02.eml
|
304
|
+
- set-of-emails/maildir/bsd/lhost-exim-03.eml
|
305
|
+
- set-of-emails/maildir/bsd/lhost-exim-04.eml
|
306
|
+
- set-of-emails/maildir/bsd/lhost-exim-05.eml
|
307
|
+
- set-of-emails/maildir/bsd/lhost-exim-06.eml
|
308
|
+
- set-of-emails/maildir/bsd/lhost-exim-07.eml
|
309
|
+
- set-of-emails/maildir/bsd/lhost-exim-08.eml
|
310
|
+
- set-of-emails/maildir/bsd/lhost-exim-29.eml
|
311
|
+
- set-of-emails/maildir/bsd/lhost-exim-30.eml
|
312
|
+
- set-of-emails/maildir/bsd/lhost-exim-31.eml
|
313
|
+
- set-of-emails/maildir/bsd/lhost-exim-32.eml
|
314
|
+
- set-of-emails/maildir/bsd/lhost-exim-33.eml
|
315
|
+
- set-of-emails/maildir/bsd/lhost-exim-34.eml
|
316
|
+
- set-of-emails/maildir/bsd/lhost-exim-35.eml
|
317
|
+
- set-of-emails/maildir/bsd/lhost-exim-36.eml
|
318
|
+
- set-of-emails/maildir/bsd/lhost-exim-37.eml
|
319
|
+
- set-of-emails/maildir/bsd/lhost-exim-38.eml
|
320
|
+
- set-of-emails/maildir/bsd/lhost-exim-39.eml
|
321
|
+
- set-of-emails/maildir/bsd/lhost-exim-40.eml
|
322
|
+
- set-of-emails/maildir/bsd/lhost-exim-41.eml
|
323
|
+
- set-of-emails/maildir/bsd/lhost-exim-42.eml
|
324
|
+
- set-of-emails/maildir/bsd/lhost-exim-43.eml
|
325
|
+
- set-of-emails/maildir/bsd/lhost-exim-44.eml
|
326
|
+
- set-of-emails/maildir/bsd/lhost-exim-45.eml
|
327
|
+
- set-of-emails/maildir/bsd/lhost-exim-46.eml
|
328
|
+
- set-of-emails/maildir/bsd/lhost-exim-47.eml
|
329
|
+
- set-of-emails/maildir/bsd/lhost-exim-48.eml
|
330
|
+
- set-of-emails/maildir/bsd/lhost-exim-49.eml
|
331
|
+
- set-of-emails/maildir/bsd/lhost-exim-50.eml
|
332
|
+
- set-of-emails/maildir/bsd/lhost-exim-51.eml
|
333
|
+
- set-of-emails/maildir/bsd/lhost-exim-52.eml
|
334
|
+
- set-of-emails/maildir/bsd/lhost-exim-53.eml
|
335
|
+
- set-of-emails/maildir/bsd/lhost-exim-54.eml
|
336
|
+
- set-of-emails/maildir/bsd/lhost-exim-55.eml
|
337
|
+
- set-of-emails/maildir/bsd/lhost-exim-56.eml
|
338
|
+
- set-of-emails/maildir/bsd/lhost-exim-57.eml
|
339
|
+
- set-of-emails/maildir/bsd/lhost-exim-58.eml
|
340
|
+
- set-of-emails/maildir/bsd/lhost-exim-59.eml
|
341
|
+
- set-of-emails/maildir/bsd/lhost-exim-60.eml
|
342
|
+
- set-of-emails/maildir/bsd/lhost-ezweb-01.eml
|
343
|
+
- set-of-emails/maildir/bsd/lhost-ezweb-02.eml
|
344
|
+
- set-of-emails/maildir/bsd/lhost-ezweb-03.eml
|
345
|
+
- set-of-emails/maildir/bsd/lhost-ezweb-04.eml
|
346
|
+
- set-of-emails/maildir/bsd/lhost-ezweb-05.eml
|
347
|
+
- set-of-emails/maildir/bsd/lhost-ezweb-07.eml
|
348
|
+
- set-of-emails/maildir/bsd/lhost-ezweb-08.eml
|
349
|
+
- set-of-emails/maildir/bsd/lhost-facebook-03.eml
|
350
|
+
- set-of-emails/maildir/bsd/lhost-facebook-04.eml
|
351
|
+
- set-of-emails/maildir/bsd/lhost-fml-02.eml
|
352
|
+
- set-of-emails/maildir/bsd/lhost-fml-03.eml
|
353
|
+
- set-of-emails/maildir/bsd/lhost-gmail-01.eml
|
354
|
+
- set-of-emails/maildir/bsd/lhost-gmail-03.eml
|
355
|
+
- set-of-emails/maildir/bsd/lhost-gmail-04.eml
|
356
|
+
- set-of-emails/maildir/bsd/lhost-gmail-05.eml
|
357
|
+
- set-of-emails/maildir/bsd/lhost-gmail-06.eml
|
358
|
+
- set-of-emails/maildir/bsd/lhost-gmail-07.eml
|
359
|
+
- set-of-emails/maildir/bsd/lhost-gmail-08.eml
|
360
|
+
- set-of-emails/maildir/bsd/lhost-gmail-09.eml
|
361
|
+
- set-of-emails/maildir/bsd/lhost-gmail-10.eml
|
362
|
+
- set-of-emails/maildir/bsd/lhost-gmail-11.eml
|
363
|
+
- set-of-emails/maildir/bsd/lhost-gmail-15.eml
|
364
|
+
- set-of-emails/maildir/bsd/lhost-gmail-16.eml
|
365
|
+
- set-of-emails/maildir/bsd/lhost-gmail-17.eml
|
366
|
+
- set-of-emails/maildir/bsd/lhost-gmail-18.eml
|
367
|
+
- set-of-emails/maildir/bsd/lhost-gmail-19.eml
|
368
|
+
- set-of-emails/maildir/bsd/lhost-gmx-01.eml
|
369
|
+
- set-of-emails/maildir/bsd/lhost-gmx-02.eml
|
370
|
+
- set-of-emails/maildir/bsd/lhost-gmx-03.eml
|
371
|
+
- set-of-emails/maildir/bsd/lhost-gmx-04.eml
|
372
|
+
- set-of-emails/maildir/bsd/lhost-googlegroups-01.eml
|
373
|
+
- set-of-emails/maildir/bsd/lhost-googlegroups-02.eml
|
374
|
+
- set-of-emails/maildir/bsd/lhost-googlegroups-03.eml
|
375
|
+
- set-of-emails/maildir/bsd/lhost-googlegroups-04.eml
|
376
|
+
- set-of-emails/maildir/bsd/lhost-googlegroups-05.eml
|
377
|
+
- set-of-emails/maildir/bsd/lhost-googlegroups-06.eml
|
378
|
+
- set-of-emails/maildir/bsd/lhost-googlegroups-07.eml
|
379
|
+
- set-of-emails/maildir/bsd/lhost-googlegroups-08.eml
|
380
|
+
- set-of-emails/maildir/bsd/lhost-googlegroups-09.eml
|
381
|
+
- set-of-emails/maildir/bsd/lhost-googlegroups-10.eml
|
382
|
+
- set-of-emails/maildir/bsd/lhost-googlegroups-11.eml
|
383
|
+
- set-of-emails/maildir/bsd/lhost-googlegroups-12.eml
|
384
|
+
- set-of-emails/maildir/bsd/lhost-googlegroups-13.eml
|
385
|
+
- set-of-emails/maildir/bsd/lhost-googlegroups-14.eml
|
386
|
+
- set-of-emails/maildir/bsd/lhost-gsuite-01.eml
|
387
|
+
- set-of-emails/maildir/bsd/lhost-gsuite-02.eml
|
388
|
+
- set-of-emails/maildir/bsd/lhost-gsuite-03.eml
|
389
|
+
- set-of-emails/maildir/bsd/lhost-gsuite-04.eml
|
390
|
+
- set-of-emails/maildir/bsd/lhost-gsuite-05.eml
|
391
|
+
- set-of-emails/maildir/bsd/lhost-gsuite-06.eml
|
392
|
+
- set-of-emails/maildir/bsd/lhost-gsuite-07.eml
|
393
|
+
- set-of-emails/maildir/bsd/lhost-gsuite-08.eml
|
394
|
+
- set-of-emails/maildir/bsd/lhost-gsuite-09.eml
|
395
|
+
- set-of-emails/maildir/bsd/lhost-gsuite-10.eml
|
396
|
+
- set-of-emails/maildir/bsd/lhost-gsuite-11.eml
|
397
|
+
- set-of-emails/maildir/bsd/lhost-gsuite-12.eml
|
398
|
+
- set-of-emails/maildir/bsd/lhost-gsuite-13.eml
|
399
|
+
- set-of-emails/maildir/bsd/lhost-gsuite-14.eml
|
400
|
+
- set-of-emails/maildir/bsd/lhost-imailserver-01.eml
|
401
|
+
- set-of-emails/maildir/bsd/lhost-imailserver-02.eml
|
402
|
+
- set-of-emails/maildir/bsd/lhost-imailserver-03.eml
|
403
|
+
- set-of-emails/maildir/bsd/lhost-imailserver-04.eml
|
404
|
+
- set-of-emails/maildir/bsd/lhost-imailserver-06.eml
|
405
|
+
- set-of-emails/maildir/bsd/lhost-interscanmss-01.eml
|
406
|
+
- set-of-emails/maildir/bsd/lhost-interscanmss-02.eml
|
407
|
+
- set-of-emails/maildir/bsd/lhost-interscanmss-03.eml
|
408
|
+
- set-of-emails/maildir/bsd/lhost-kddi-01.eml
|
409
|
+
- set-of-emails/maildir/bsd/lhost-kddi-02.eml
|
410
|
+
- set-of-emails/maildir/bsd/lhost-kddi-03.eml
|
411
|
+
- set-of-emails/maildir/bsd/lhost-mailfoundry-01.eml
|
412
|
+
- set-of-emails/maildir/bsd/lhost-mailfoundry-02.eml
|
413
|
+
- set-of-emails/maildir/bsd/lhost-mailmarshalsmtp-02.eml
|
414
|
+
- set-of-emails/maildir/bsd/lhost-mailru-01.eml
|
415
|
+
- set-of-emails/maildir/bsd/lhost-mailru-02.eml
|
416
|
+
- set-of-emails/maildir/bsd/lhost-mailru-03.eml
|
417
|
+
- set-of-emails/maildir/bsd/lhost-mailru-04.eml
|
418
|
+
- set-of-emails/maildir/bsd/lhost-mailru-05.eml
|
419
|
+
- set-of-emails/maildir/bsd/lhost-mailru-06.eml
|
420
|
+
- set-of-emails/maildir/bsd/lhost-mailru-07.eml
|
421
|
+
- set-of-emails/maildir/bsd/lhost-mailru-08.eml
|
422
|
+
- set-of-emails/maildir/bsd/lhost-mailru-09.eml
|
423
|
+
- set-of-emails/maildir/bsd/lhost-mailru-10.eml
|
424
|
+
- set-of-emails/maildir/bsd/lhost-mcafee-01.eml
|
425
|
+
- set-of-emails/maildir/bsd/lhost-mcafee-02.eml
|
426
|
+
- set-of-emails/maildir/bsd/lhost-mcafee-03.eml
|
427
|
+
- set-of-emails/maildir/bsd/lhost-mcafee-04.eml
|
428
|
+
- set-of-emails/maildir/bsd/lhost-mcafee-05.eml
|
429
|
+
- set-of-emails/maildir/bsd/lhost-messagelabs-01.eml
|
430
|
+
- set-of-emails/maildir/bsd/lhost-messagelabs-02.eml
|
431
|
+
- set-of-emails/maildir/bsd/lhost-messagelabs-03.eml
|
432
|
+
- set-of-emails/maildir/bsd/lhost-messagingserver-01.eml
|
433
|
+
- set-of-emails/maildir/bsd/lhost-messagingserver-02.eml
|
434
|
+
- set-of-emails/maildir/bsd/lhost-messagingserver-03.eml
|
435
|
+
- set-of-emails/maildir/bsd/lhost-messagingserver-04.eml
|
436
|
+
- set-of-emails/maildir/bsd/lhost-messagingserver-05.eml
|
437
|
+
- set-of-emails/maildir/bsd/lhost-messagingserver-06.eml
|
438
|
+
- set-of-emails/maildir/bsd/lhost-messagingserver-07.eml
|
439
|
+
- set-of-emails/maildir/bsd/lhost-messagingserver-08.eml
|
440
|
+
- set-of-emails/maildir/bsd/lhost-messagingserver-09.eml
|
441
|
+
- set-of-emails/maildir/bsd/lhost-messagingserver-10.eml
|
442
|
+
- set-of-emails/maildir/bsd/lhost-messagingserver-11.eml
|
443
|
+
- set-of-emails/maildir/bsd/lhost-messagingserver-12.eml
|
444
|
+
- set-of-emails/maildir/bsd/lhost-mfilter-01.eml
|
445
|
+
- set-of-emails/maildir/bsd/lhost-mfilter-02.eml
|
446
|
+
- set-of-emails/maildir/bsd/lhost-mfilter-03.eml
|
447
|
+
- set-of-emails/maildir/bsd/lhost-mfilter-04.eml
|
448
|
+
- set-of-emails/maildir/bsd/lhost-mxlogic-01.eml
|
449
|
+
- set-of-emails/maildir/bsd/lhost-mxlogic-02.eml
|
450
|
+
- set-of-emails/maildir/bsd/lhost-mxlogic-03.eml
|
451
|
+
- set-of-emails/maildir/bsd/lhost-notes-01.eml
|
452
|
+
- set-of-emails/maildir/bsd/lhost-notes-02.eml
|
453
|
+
- set-of-emails/maildir/bsd/lhost-notes-03.eml
|
454
|
+
- set-of-emails/maildir/bsd/lhost-office365-01.eml
|
455
|
+
- set-of-emails/maildir/bsd/lhost-office365-02.eml
|
456
|
+
- set-of-emails/maildir/bsd/lhost-office365-03.eml
|
457
|
+
- set-of-emails/maildir/bsd/lhost-office365-04.eml
|
458
|
+
- set-of-emails/maildir/bsd/lhost-office365-05.eml
|
459
|
+
- set-of-emails/maildir/bsd/lhost-office365-06.eml
|
460
|
+
- set-of-emails/maildir/bsd/lhost-office365-07.eml
|
461
|
+
- set-of-emails/maildir/bsd/lhost-office365-08.eml
|
462
|
+
- set-of-emails/maildir/bsd/lhost-office365-09.eml
|
463
|
+
- set-of-emails/maildir/bsd/lhost-office365-10.eml
|
464
|
+
- set-of-emails/maildir/bsd/lhost-office365-11.eml
|
465
|
+
- set-of-emails/maildir/bsd/lhost-office365-12.eml
|
466
|
+
- set-of-emails/maildir/bsd/lhost-office365-13.eml
|
467
|
+
- set-of-emails/maildir/bsd/lhost-opensmtpd-01.eml
|
468
|
+
- set-of-emails/maildir/bsd/lhost-opensmtpd-02.eml
|
469
|
+
- set-of-emails/maildir/bsd/lhost-opensmtpd-03.eml
|
470
|
+
- set-of-emails/maildir/bsd/lhost-opensmtpd-04.eml
|
471
|
+
- set-of-emails/maildir/bsd/lhost-opensmtpd-05.eml
|
472
|
+
- set-of-emails/maildir/bsd/lhost-opensmtpd-06.eml
|
473
|
+
- set-of-emails/maildir/bsd/lhost-outlook-01.eml
|
474
|
+
- set-of-emails/maildir/bsd/lhost-outlook-02.eml
|
475
|
+
- set-of-emails/maildir/bsd/lhost-outlook-03.eml
|
476
|
+
- set-of-emails/maildir/bsd/lhost-outlook-04.eml
|
477
|
+
- set-of-emails/maildir/bsd/lhost-outlook-06.eml
|
478
|
+
- set-of-emails/maildir/bsd/lhost-outlook-07.eml
|
479
|
+
- set-of-emails/maildir/bsd/lhost-outlook-08.eml
|
480
|
+
- set-of-emails/maildir/bsd/lhost-outlook-09.eml
|
481
|
+
- set-of-emails/maildir/bsd/lhost-postfix-01.eml
|
482
|
+
- set-of-emails/maildir/bsd/lhost-postfix-02.eml
|
483
|
+
- set-of-emails/maildir/bsd/lhost-postfix-03.eml
|
484
|
+
- set-of-emails/maildir/bsd/lhost-postfix-04.eml
|
485
|
+
- set-of-emails/maildir/bsd/lhost-postfix-05.eml
|
486
|
+
- set-of-emails/maildir/bsd/lhost-postfix-06.eml
|
487
|
+
- set-of-emails/maildir/bsd/lhost-postfix-07.eml
|
488
|
+
- set-of-emails/maildir/bsd/lhost-postfix-08.eml
|
489
|
+
- set-of-emails/maildir/bsd/lhost-postfix-09.eml
|
490
|
+
- set-of-emails/maildir/bsd/lhost-postfix-10.eml
|
491
|
+
- set-of-emails/maildir/bsd/lhost-postfix-11.eml
|
492
|
+
- set-of-emails/maildir/bsd/lhost-postfix-13.eml
|
493
|
+
- set-of-emails/maildir/bsd/lhost-postfix-14.eml
|
494
|
+
- set-of-emails/maildir/bsd/lhost-postfix-15.eml
|
495
|
+
- set-of-emails/maildir/bsd/lhost-postfix-16.eml
|
496
|
+
- set-of-emails/maildir/bsd/lhost-postfix-17.eml
|
497
|
+
- set-of-emails/maildir/bsd/lhost-postfix-28.eml
|
498
|
+
- set-of-emails/maildir/bsd/lhost-postfix-29.eml
|
499
|
+
- set-of-emails/maildir/bsd/lhost-postfix-30.eml
|
500
|
+
- set-of-emails/maildir/bsd/lhost-postfix-31.eml
|
501
|
+
- set-of-emails/maildir/bsd/lhost-postfix-32.eml
|
502
|
+
- set-of-emails/maildir/bsd/lhost-postfix-33.eml
|
503
|
+
- set-of-emails/maildir/bsd/lhost-postfix-34.eml
|
504
|
+
- set-of-emails/maildir/bsd/lhost-postfix-35.eml
|
505
|
+
- set-of-emails/maildir/bsd/lhost-postfix-36.eml
|
506
|
+
- set-of-emails/maildir/bsd/lhost-postfix-37.eml
|
507
|
+
- set-of-emails/maildir/bsd/lhost-postfix-38.eml
|
508
|
+
- set-of-emails/maildir/bsd/lhost-postfix-39.eml
|
509
|
+
- set-of-emails/maildir/bsd/lhost-postfix-40.eml
|
510
|
+
- set-of-emails/maildir/bsd/lhost-postfix-41.eml
|
511
|
+
- set-of-emails/maildir/bsd/lhost-postfix-42.eml
|
512
|
+
- set-of-emails/maildir/bsd/lhost-postfix-43.eml
|
513
|
+
- set-of-emails/maildir/bsd/lhost-postfix-44.eml
|
514
|
+
- set-of-emails/maildir/bsd/lhost-postfix-45.eml
|
515
|
+
- set-of-emails/maildir/bsd/lhost-postfix-46.eml
|
516
|
+
- set-of-emails/maildir/bsd/lhost-postfix-47.eml
|
517
|
+
- set-of-emails/maildir/bsd/lhost-postfix-48.eml
|
518
|
+
- set-of-emails/maildir/bsd/lhost-postfix-49.eml
|
519
|
+
- set-of-emails/maildir/bsd/lhost-postfix-50.eml
|
520
|
+
- set-of-emails/maildir/bsd/lhost-postfix-51.eml
|
521
|
+
- set-of-emails/maildir/bsd/lhost-postfix-52.eml
|
522
|
+
- set-of-emails/maildir/bsd/lhost-postfix-53.eml
|
523
|
+
- set-of-emails/maildir/bsd/lhost-postfix-54.eml
|
524
|
+
- set-of-emails/maildir/bsd/lhost-postfix-55.eml
|
525
|
+
- set-of-emails/maildir/bsd/lhost-postfix-56.eml
|
526
|
+
- set-of-emails/maildir/bsd/lhost-postfix-57.eml
|
527
|
+
- set-of-emails/maildir/bsd/lhost-postfix-58.eml
|
528
|
+
- set-of-emails/maildir/bsd/lhost-postfix-59.eml
|
529
|
+
- set-of-emails/maildir/bsd/lhost-postfix-60.eml
|
530
|
+
- set-of-emails/maildir/bsd/lhost-postfix-61.eml
|
531
|
+
- set-of-emails/maildir/bsd/lhost-postfix-62.eml
|
532
|
+
- set-of-emails/maildir/bsd/lhost-postfix-63.eml
|
533
|
+
- set-of-emails/maildir/bsd/lhost-postfix-64.eml
|
534
|
+
- set-of-emails/maildir/bsd/lhost-postfix-65.eml
|
535
|
+
- set-of-emails/maildir/bsd/lhost-powermta-01.eml
|
536
|
+
- set-of-emails/maildir/bsd/lhost-powermta-02.eml
|
537
|
+
- set-of-emails/maildir/bsd/lhost-powermta-03.eml
|
538
|
+
- set-of-emails/maildir/bsd/lhost-qmail-01.eml
|
539
|
+
- set-of-emails/maildir/bsd/lhost-qmail-02.eml
|
540
|
+
- set-of-emails/maildir/bsd/lhost-qmail-03.eml
|
541
|
+
- set-of-emails/maildir/bsd/lhost-qmail-04.eml
|
542
|
+
- set-of-emails/maildir/bsd/lhost-qmail-05.eml
|
543
|
+
- set-of-emails/maildir/bsd/lhost-qmail-06.eml
|
544
|
+
- set-of-emails/maildir/bsd/lhost-qmail-07.eml
|
545
|
+
- set-of-emails/maildir/bsd/lhost-qmail-08.eml
|
546
|
+
- set-of-emails/maildir/bsd/lhost-qmail-09.eml
|
547
|
+
- set-of-emails/maildir/bsd/lhost-qmail-10.eml
|
548
|
+
- set-of-emails/maildir/bsd/lhost-receivingses-01.eml
|
549
|
+
- set-of-emails/maildir/bsd/lhost-receivingses-02.eml
|
550
|
+
- set-of-emails/maildir/bsd/lhost-receivingses-03.eml
|
551
|
+
- set-of-emails/maildir/bsd/lhost-receivingses-04.eml
|
552
|
+
- set-of-emails/maildir/bsd/lhost-receivingses-05.eml
|
553
|
+
- set-of-emails/maildir/bsd/lhost-receivingses-06.eml
|
554
|
+
- set-of-emails/maildir/bsd/lhost-receivingses-07.eml
|
555
|
+
- set-of-emails/maildir/bsd/lhost-sendgrid-01.eml
|
556
|
+
- set-of-emails/maildir/bsd/lhost-sendgrid-02.eml
|
557
|
+
- set-of-emails/maildir/bsd/lhost-sendgrid-03.eml
|
558
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-01.eml
|
559
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-02.eml
|
560
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-03.eml
|
561
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-04.eml
|
562
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-05.eml
|
563
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-06.eml
|
564
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-07.eml
|
565
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-08.eml
|
566
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-09.eml
|
567
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-10.eml
|
568
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-11.eml
|
569
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-12.eml
|
570
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-13.eml
|
571
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-14.eml
|
572
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-15.eml
|
573
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-16.eml
|
574
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-17.eml
|
575
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-18.eml
|
576
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-19.eml
|
577
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-20.eml
|
578
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-21.eml
|
579
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-22.eml
|
580
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-24.eml
|
581
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-25.eml
|
582
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-26.eml
|
583
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-27.eml
|
584
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-28.eml
|
585
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-29.eml
|
586
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-30.eml
|
587
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-31.eml
|
588
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-32.eml
|
589
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-33.eml
|
590
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-34.eml
|
591
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-35.eml
|
592
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-36.eml
|
593
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-37.eml
|
594
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-38.eml
|
595
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-39.eml
|
596
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-40.eml
|
597
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-41.eml
|
598
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-42.eml
|
599
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-43.eml
|
600
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-44.eml
|
601
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-45.eml
|
602
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-46.eml
|
603
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-47.eml
|
604
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-48.eml
|
605
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-49.eml
|
606
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-50.eml
|
607
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-51.eml
|
608
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-52.eml
|
609
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-53.eml
|
610
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-54.eml
|
611
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-55.eml
|
612
|
+
- set-of-emails/maildir/bsd/lhost-sendmail-56.eml
|
613
|
+
- set-of-emails/maildir/bsd/lhost-surfcontrol-01.eml
|
614
|
+
- set-of-emails/maildir/bsd/lhost-surfcontrol-02.eml
|
615
|
+
- set-of-emails/maildir/bsd/lhost-surfcontrol-03.eml
|
616
|
+
- set-of-emails/maildir/bsd/lhost-v5sendmail-01.eml
|
617
|
+
- set-of-emails/maildir/bsd/lhost-v5sendmail-02.eml
|
618
|
+
- set-of-emails/maildir/bsd/lhost-v5sendmail-03.eml
|
619
|
+
- set-of-emails/maildir/bsd/lhost-v5sendmail-04.eml
|
620
|
+
- set-of-emails/maildir/bsd/lhost-v5sendmail-05.eml
|
621
|
+
- set-of-emails/maildir/bsd/lhost-v5sendmail-06.eml
|
622
|
+
- set-of-emails/maildir/bsd/lhost-v5sendmail-07.eml
|
623
|
+
- set-of-emails/maildir/bsd/lhost-verizon-01.eml
|
624
|
+
- set-of-emails/maildir/bsd/lhost-verizon-02.eml
|
625
|
+
- set-of-emails/maildir/bsd/lhost-x1-01.eml
|
626
|
+
- set-of-emails/maildir/bsd/lhost-x1-02.eml
|
627
|
+
- set-of-emails/maildir/bsd/lhost-x2-01.eml
|
628
|
+
- set-of-emails/maildir/bsd/lhost-x2-02.eml
|
629
|
+
- set-of-emails/maildir/bsd/lhost-x2-03.eml
|
630
|
+
- set-of-emails/maildir/bsd/lhost-x2-04.eml
|
631
|
+
- set-of-emails/maildir/bsd/lhost-x2-05.eml
|
632
|
+
- set-of-emails/maildir/bsd/lhost-x3-01.eml
|
633
|
+
- set-of-emails/maildir/bsd/lhost-x3-02.eml
|
634
|
+
- set-of-emails/maildir/bsd/lhost-x3-03.eml
|
635
|
+
- set-of-emails/maildir/bsd/lhost-x3-05.eml
|
636
|
+
- set-of-emails/maildir/bsd/lhost-x4-01.eml
|
637
|
+
- set-of-emails/maildir/bsd/lhost-x4-08.eml
|
638
|
+
- set-of-emails/maildir/bsd/lhost-x5-01.eml
|
639
|
+
- set-of-emails/maildir/bsd/lhost-x6-01.eml
|
640
|
+
- set-of-emails/maildir/bsd/lhost-x6-02.eml
|
641
|
+
- set-of-emails/maildir/bsd/lhost-yahoo-01.eml
|
642
|
+
- set-of-emails/maildir/bsd/lhost-yahoo-02.eml
|
643
|
+
- set-of-emails/maildir/bsd/lhost-yahoo-03.eml
|
644
|
+
- set-of-emails/maildir/bsd/lhost-yahoo-04.eml
|
645
|
+
- set-of-emails/maildir/bsd/lhost-yahoo-05.eml
|
646
|
+
- set-of-emails/maildir/bsd/lhost-yahoo-06.eml
|
647
|
+
- set-of-emails/maildir/bsd/lhost-yahoo-07.eml
|
648
|
+
- set-of-emails/maildir/bsd/lhost-yahoo-08.eml
|
649
|
+
- set-of-emails/maildir/bsd/lhost-yahoo-09.eml
|
650
|
+
- set-of-emails/maildir/bsd/lhost-yahoo-10.eml
|
651
|
+
- set-of-emails/maildir/bsd/lhost-yahoo-11.eml
|
652
|
+
- set-of-emails/maildir/bsd/lhost-yahoo-12.eml
|
653
|
+
- set-of-emails/maildir/bsd/lhost-yahoo-13.eml
|
654
|
+
- set-of-emails/maildir/bsd/lhost-yahoo-14.eml
|
655
|
+
- set-of-emails/maildir/bsd/lhost-yandex-01.eml
|
656
|
+
- set-of-emails/maildir/bsd/lhost-yandex-02.eml
|
657
|
+
- set-of-emails/maildir/bsd/lhost-yandex-03.eml
|
658
|
+
- set-of-emails/maildir/bsd/lhost-zoho-01.eml
|
659
|
+
- set-of-emails/maildir/bsd/lhost-zoho-02.eml
|
660
|
+
- set-of-emails/maildir/bsd/lhost-zoho-03.eml
|
661
|
+
- set-of-emails/maildir/bsd/lhost-zoho-04.eml
|
662
|
+
- set-of-emails/maildir/bsd/lhost-zoho-05.eml
|
652
663
|
- set-of-emails/maildir/bsd/rfc3464-01.eml
|
653
664
|
- set-of-emails/maildir/bsd/rfc3464-03.eml
|
654
665
|
- set-of-emails/maildir/bsd/rfc3464-04.eml
|
655
|
-
- set-of-emails/maildir/bsd/rfc3464-05.eml
|
656
666
|
- set-of-emails/maildir/bsd/rfc3464-06.eml
|
657
667
|
- set-of-emails/maildir/bsd/rfc3464-07.eml
|
658
668
|
- set-of-emails/maildir/bsd/rfc3464-08.eml
|
@@ -668,81 +678,97 @@ files:
|
|
668
678
|
- set-of-emails/maildir/bsd/rfc3464-38.eml
|
669
679
|
- set-of-emails/maildir/bsd/rfc3464-39.eml
|
670
680
|
- set-of-emails/maildir/bsd/rfc3464-40.eml
|
671
|
-
- set-of-emails/maildir/bsd/rfc3464-41.eml
|
672
681
|
- set-of-emails/maildir/bsd/rfc3834-01.eml
|
673
682
|
- set-of-emails/maildir/bsd/rfc3834-02.eml
|
683
|
+
- set-of-emails/maildir/bsd/rfc3834-03.eml
|
684
|
+
- set-of-emails/maildir/bsd/rfc3834-04.eml
|
685
|
+
- set-of-emails/maildir/bsd/rhost-cox-01.eml
|
674
686
|
- set-of-emails/maildir/bsd/rhost-exchange-online-01.eml
|
675
687
|
- set-of-emails/maildir/bsd/rhost-exchange-online-02.eml
|
676
688
|
- set-of-emails/maildir/bsd/rhost-exchange-online-03.eml
|
677
689
|
- set-of-emails/maildir/bsd/rhost-franceptt-01.eml
|
678
690
|
- set-of-emails/maildir/bsd/rhost-franceptt-02.eml
|
679
691
|
- set-of-emails/maildir/bsd/rhost-franceptt-03.eml
|
692
|
+
- set-of-emails/maildir/bsd/rhost-franceptt-04.eml
|
693
|
+
- set-of-emails/maildir/bsd/rhost-franceptt-05.eml
|
694
|
+
- set-of-emails/maildir/bsd/rhost-franceptt-06.eml
|
695
|
+
- set-of-emails/maildir/bsd/rhost-franceptt-07.eml
|
696
|
+
- set-of-emails/maildir/bsd/rhost-franceptt-08.eml
|
697
|
+
- set-of-emails/maildir/bsd/rhost-franceptt-10.eml
|
698
|
+
- set-of-emails/maildir/bsd/rhost-franceptt-11.eml
|
680
699
|
- set-of-emails/maildir/bsd/rhost-godaddy-02.eml
|
681
700
|
- set-of-emails/maildir/bsd/rhost-godaddy-03.eml
|
682
701
|
- set-of-emails/maildir/bsd/rhost-google-apps-01.eml
|
683
702
|
- set-of-emails/maildir/bsd/rhost-google-apps-02.eml
|
703
|
+
- set-of-emails/maildir/bsd/rhost-iua-01.eml
|
684
704
|
- set-of-emails/maildir/bsd/rhost-kddi-01.eml
|
685
705
|
- set-of-emails/maildir/bsd/rhost-kddi-02.eml
|
706
|
+
- set-of-emails/maildir/bsd/rhost-spectrum-01.eml
|
686
707
|
- set-of-emails/maildir/bsd/rhost-tencentqq-01.eml
|
687
708
|
- set-of-emails/maildir/bsd/rhost-tencentqq-02.eml
|
688
709
|
- set-of-emails/maildir/bsd/rhost-tencentqq-03.eml
|
689
710
|
- set-of-emails/maildir/dos/arf-01.eml
|
690
|
-
- set-of-emails/maildir/dos/
|
691
|
-
- set-of-emails/maildir/dos/
|
692
|
-
- set-of-emails/maildir/dos/
|
693
|
-
- set-of-emails/maildir/dos/
|
694
|
-
- set-of-emails/maildir/dos/
|
695
|
-
- set-of-emails/maildir/dos/
|
696
|
-
- set-of-emails/maildir/dos/
|
697
|
-
- set-of-emails/maildir/dos/
|
698
|
-
- set-of-emails/maildir/dos/
|
699
|
-
- set-of-emails/maildir/dos/
|
700
|
-
- set-of-emails/maildir/dos/
|
701
|
-
- set-of-emails/maildir/dos/
|
702
|
-
- set-of-emails/maildir/dos/
|
703
|
-
- set-of-emails/maildir/dos/
|
704
|
-
- set-of-emails/maildir/dos/
|
705
|
-
- set-of-emails/maildir/dos/
|
706
|
-
- set-of-emails/maildir/dos/
|
707
|
-
- set-of-emails/maildir/dos/
|
708
|
-
- set-of-emails/maildir/dos/
|
709
|
-
- set-of-emails/maildir/dos/
|
710
|
-
- set-of-emails/maildir/dos/
|
711
|
-
- set-of-emails/maildir/dos/
|
712
|
-
- set-of-emails/maildir/dos/
|
713
|
-
- set-of-emails/maildir/dos/
|
714
|
-
- set-of-emails/maildir/dos/
|
715
|
-
- set-of-emails/maildir/dos/
|
716
|
-
- set-of-emails/maildir/dos/
|
717
|
-
- set-of-emails/maildir/dos/
|
718
|
-
- set-of-emails/maildir/dos/
|
719
|
-
- set-of-emails/maildir/dos/
|
720
|
-
- set-of-emails/maildir/dos/
|
721
|
-
- set-of-emails/maildir/dos/
|
722
|
-
- set-of-emails/maildir/dos/
|
723
|
-
- set-of-emails/maildir/dos/
|
724
|
-
- set-of-emails/maildir/dos/
|
725
|
-
- set-of-emails/maildir/dos/
|
726
|
-
- set-of-emails/maildir/dos/
|
727
|
-
- set-of-emails/maildir/dos/
|
728
|
-
- set-of-emails/maildir/dos/
|
729
|
-
- set-of-emails/maildir/dos/
|
730
|
-
- set-of-emails/maildir/dos/
|
731
|
-
- set-of-emails/maildir/dos/
|
732
|
-
- set-of-emails/maildir/dos/
|
733
|
-
- set-of-emails/maildir/dos/
|
734
|
-
- set-of-emails/maildir/dos/
|
735
|
-
- set-of-emails/maildir/dos/
|
736
|
-
- set-of-emails/maildir/dos/
|
737
|
-
- set-of-emails/maildir/dos/
|
738
|
-
- set-of-emails/maildir/dos/
|
739
|
-
- set-of-emails/maildir/dos/
|
740
|
-
- set-of-emails/maildir/dos/
|
711
|
+
- set-of-emails/maildir/dos/lhost-activehunter-01.eml
|
712
|
+
- set-of-emails/maildir/dos/lhost-amavis-01.eml
|
713
|
+
- set-of-emails/maildir/dos/lhost-amazonses-01.eml
|
714
|
+
- set-of-emails/maildir/dos/lhost-amazonworkmail-01.eml
|
715
|
+
- set-of-emails/maildir/dos/lhost-aol-01.eml
|
716
|
+
- set-of-emails/maildir/dos/lhost-apachejames-01.eml
|
717
|
+
- set-of-emails/maildir/dos/lhost-barracuda-01.eml
|
718
|
+
- set-of-emails/maildir/dos/lhost-bigfoot-01.eml
|
719
|
+
- set-of-emails/maildir/dos/lhost-biglobe-01.eml
|
720
|
+
- set-of-emails/maildir/dos/lhost-courier-01.eml
|
721
|
+
- set-of-emails/maildir/dos/lhost-domino-01.eml
|
722
|
+
- set-of-emails/maildir/dos/lhost-einsundeins-01.eml
|
723
|
+
- set-of-emails/maildir/dos/lhost-exchange-01.eml
|
724
|
+
- set-of-emails/maildir/dos/lhost-exchange2003-01.eml
|
725
|
+
- set-of-emails/maildir/dos/lhost-exchange2007-01.eml
|
726
|
+
- set-of-emails/maildir/dos/lhost-exim-01.eml
|
727
|
+
- set-of-emails/maildir/dos/lhost-ezweb-01.eml
|
728
|
+
- set-of-emails/maildir/dos/lhost-facebook-01.eml
|
729
|
+
- set-of-emails/maildir/dos/lhost-gmail-01.eml
|
730
|
+
- set-of-emails/maildir/dos/lhost-gmx-01.eml
|
731
|
+
- set-of-emails/maildir/dos/lhost-googlegroups-01.eml
|
732
|
+
- set-of-emails/maildir/dos/lhost-gsuite-01.eml
|
733
|
+
- set-of-emails/maildir/dos/lhost-imailserver-01.eml
|
734
|
+
- set-of-emails/maildir/dos/lhost-interscanmss-01.eml
|
735
|
+
- set-of-emails/maildir/dos/lhost-kddi-01.eml
|
736
|
+
- set-of-emails/maildir/dos/lhost-mailfoundry-01.eml
|
737
|
+
- set-of-emails/maildir/dos/lhost-mailmarshalsmtp-01.eml
|
738
|
+
- set-of-emails/maildir/dos/lhost-mailru-01.eml
|
739
|
+
- set-of-emails/maildir/dos/lhost-mcafee-01.eml
|
740
|
+
- set-of-emails/maildir/dos/lhost-messagelabs-01.eml
|
741
|
+
- set-of-emails/maildir/dos/lhost-messagingserver-01.eml
|
742
|
+
- set-of-emails/maildir/dos/lhost-mfilter-01.eml
|
743
|
+
- set-of-emails/maildir/dos/lhost-mxlogic-01.eml
|
744
|
+
- set-of-emails/maildir/dos/lhost-notes-01.eml
|
745
|
+
- set-of-emails/maildir/dos/lhost-office365-01.eml
|
746
|
+
- set-of-emails/maildir/dos/lhost-opensmtpd-01.eml
|
747
|
+
- set-of-emails/maildir/dos/lhost-outlook-01.eml
|
748
|
+
- set-of-emails/maildir/dos/lhost-postfix-01.eml
|
749
|
+
- set-of-emails/maildir/dos/lhost-powermta-01.eml
|
750
|
+
- set-of-emails/maildir/dos/lhost-qmail-01.eml
|
751
|
+
- set-of-emails/maildir/dos/lhost-receivingses-01.eml
|
752
|
+
- set-of-emails/maildir/dos/lhost-sendgrid-01.eml
|
753
|
+
- set-of-emails/maildir/dos/lhost-sendmail-01.eml
|
754
|
+
- set-of-emails/maildir/dos/lhost-surfcontrol-01.eml
|
755
|
+
- set-of-emails/maildir/dos/lhost-v5sendmail-01.eml
|
756
|
+
- set-of-emails/maildir/dos/lhost-verizon-01.eml
|
757
|
+
- set-of-emails/maildir/dos/lhost-x1-01.eml
|
758
|
+
- set-of-emails/maildir/dos/lhost-x2-01.eml
|
759
|
+
- set-of-emails/maildir/dos/lhost-x3-01.eml
|
760
|
+
- set-of-emails/maildir/dos/lhost-x4-01.eml
|
761
|
+
- set-of-emails/maildir/dos/lhost-x5-01.eml
|
762
|
+
- set-of-emails/maildir/dos/lhost-x6-01.eml
|
763
|
+
- set-of-emails/maildir/dos/lhost-yahoo-01.eml
|
764
|
+
- set-of-emails/maildir/dos/lhost-yandex-01.eml
|
765
|
+
- set-of-emails/maildir/dos/lhost-zoho-01.eml
|
741
766
|
- set-of-emails/maildir/dos/rfc3464-01.eml
|
742
767
|
- set-of-emails/maildir/dos/rfc3834-01.eml
|
743
768
|
- set-of-emails/maildir/dos/rhost-exchange-online-01.eml
|
744
769
|
- set-of-emails/maildir/dos/rhost-franceptt-01.eml
|
745
770
|
- set-of-emails/maildir/dos/rhost-google-apps-01.eml
|
771
|
+
- set-of-emails/maildir/dos/rhost-iua-01.eml
|
746
772
|
- set-of-emails/maildir/dos/rhost-kddi-01.eml
|
747
773
|
- set-of-emails/maildir/dos/rhost-tencentqq-01.eml
|
748
774
|
- set-of-emails/maildir/err/make-test-01.eml
|
@@ -783,62 +809,67 @@ files:
|
|
783
809
|
- set-of-emails/maildir/err/make-test-36.eml
|
784
810
|
- set-of-emails/maildir/err/make-test-37.eml
|
785
811
|
- set-of-emails/maildir/mac/arf-01.eml
|
786
|
-
- set-of-emails/maildir/mac/
|
787
|
-
- set-of-emails/maildir/mac/
|
788
|
-
- set-of-emails/maildir/mac/
|
789
|
-
- set-of-emails/maildir/mac/
|
790
|
-
- set-of-emails/maildir/mac/
|
791
|
-
- set-of-emails/maildir/mac/
|
792
|
-
- set-of-emails/maildir/mac/
|
793
|
-
- set-of-emails/maildir/mac/
|
794
|
-
- set-of-emails/maildir/mac/
|
795
|
-
- set-of-emails/maildir/mac/
|
796
|
-
- set-of-emails/maildir/mac/
|
797
|
-
- set-of-emails/maildir/mac/
|
798
|
-
- set-of-emails/maildir/mac/
|
799
|
-
- set-of-emails/maildir/mac/
|
800
|
-
- set-of-emails/maildir/mac/
|
801
|
-
- set-of-emails/maildir/mac/
|
802
|
-
- set-of-emails/maildir/mac/
|
803
|
-
- set-of-emails/maildir/mac/
|
804
|
-
- set-of-emails/maildir/mac/
|
805
|
-
- set-of-emails/maildir/mac/
|
806
|
-
- set-of-emails/maildir/mac/
|
807
|
-
- set-of-emails/maildir/mac/
|
808
|
-
- set-of-emails/maildir/mac/
|
809
|
-
- set-of-emails/maildir/mac/
|
810
|
-
- set-of-emails/maildir/mac/
|
811
|
-
- set-of-emails/maildir/mac/
|
812
|
-
- set-of-emails/maildir/mac/
|
813
|
-
- set-of-emails/maildir/mac/
|
814
|
-
- set-of-emails/maildir/mac/
|
815
|
-
- set-of-emails/maildir/mac/
|
816
|
-
- set-of-emails/maildir/mac/
|
817
|
-
- set-of-emails/maildir/mac/
|
818
|
-
- set-of-emails/maildir/mac/
|
819
|
-
- set-of-emails/maildir/mac/
|
820
|
-
- set-of-emails/maildir/mac/
|
821
|
-
- set-of-emails/maildir/mac/
|
822
|
-
- set-of-emails/maildir/mac/
|
823
|
-
- set-of-emails/maildir/mac/
|
824
|
-
- set-of-emails/maildir/mac/
|
825
|
-
- set-of-emails/maildir/mac/
|
826
|
-
- set-of-emails/maildir/mac/
|
827
|
-
- set-of-emails/maildir/mac/
|
828
|
-
- set-of-emails/maildir/mac/
|
829
|
-
- set-of-emails/maildir/mac/
|
830
|
-
- set-of-emails/maildir/mac/
|
831
|
-
- set-of-emails/maildir/mac/
|
832
|
-
- set-of-emails/maildir/mac/
|
833
|
-
- set-of-emails/maildir/mac/
|
834
|
-
- set-of-emails/maildir/mac/
|
835
|
-
- set-of-emails/maildir/mac/
|
836
|
-
- set-of-emails/maildir/mac/
|
812
|
+
- set-of-emails/maildir/mac/lhost-activehunter-01.eml
|
813
|
+
- set-of-emails/maildir/mac/lhost-amavis-01.eml
|
814
|
+
- set-of-emails/maildir/mac/lhost-amazonses-01.eml
|
815
|
+
- set-of-emails/maildir/mac/lhost-amazonworkmail-01.eml
|
816
|
+
- set-of-emails/maildir/mac/lhost-aol-01.eml
|
817
|
+
- set-of-emails/maildir/mac/lhost-apachejames-01.eml
|
818
|
+
- set-of-emails/maildir/mac/lhost-barracuda-01.eml
|
819
|
+
- set-of-emails/maildir/mac/lhost-bigfoot-01.eml
|
820
|
+
- set-of-emails/maildir/mac/lhost-biglobe-01.eml
|
821
|
+
- set-of-emails/maildir/mac/lhost-courier-01.eml
|
822
|
+
- set-of-emails/maildir/mac/lhost-domino-01.eml
|
823
|
+
- set-of-emails/maildir/mac/lhost-einsundeins-01.eml
|
824
|
+
- set-of-emails/maildir/mac/lhost-exchange-01.eml
|
825
|
+
- set-of-emails/maildir/mac/lhost-exchange2003-01.eml
|
826
|
+
- set-of-emails/maildir/mac/lhost-exchange2007-01.eml
|
827
|
+
- set-of-emails/maildir/mac/lhost-exim-01.eml
|
828
|
+
- set-of-emails/maildir/mac/lhost-ezweb-01.eml
|
829
|
+
- set-of-emails/maildir/mac/lhost-facebook-01.eml
|
830
|
+
- set-of-emails/maildir/mac/lhost-gmail-01.eml
|
831
|
+
- set-of-emails/maildir/mac/lhost-gmx-01.eml
|
832
|
+
- set-of-emails/maildir/mac/lhost-googlegroups-01.eml
|
833
|
+
- set-of-emails/maildir/mac/lhost-gsuite-01.eml
|
834
|
+
- set-of-emails/maildir/mac/lhost-imailserver-01.eml
|
835
|
+
- set-of-emails/maildir/mac/lhost-interscanmss-01.eml
|
836
|
+
- set-of-emails/maildir/mac/lhost-kddi-01.eml
|
837
|
+
- set-of-emails/maildir/mac/lhost-mailfoundry-01.eml
|
838
|
+
- set-of-emails/maildir/mac/lhost-mailmarshalsmtp-01.eml
|
839
|
+
- set-of-emails/maildir/mac/lhost-mailru-01.eml
|
840
|
+
- set-of-emails/maildir/mac/lhost-mcafee-01.eml
|
841
|
+
- set-of-emails/maildir/mac/lhost-messagelabs-01.eml
|
842
|
+
- set-of-emails/maildir/mac/lhost-messagingserver-01.eml
|
843
|
+
- set-of-emails/maildir/mac/lhost-mfilter-01.eml
|
844
|
+
- set-of-emails/maildir/mac/lhost-mxlogic-01.eml
|
845
|
+
- set-of-emails/maildir/mac/lhost-notes-01.eml
|
846
|
+
- set-of-emails/maildir/mac/lhost-office365-01.eml
|
847
|
+
- set-of-emails/maildir/mac/lhost-opensmtpd-01.eml
|
848
|
+
- set-of-emails/maildir/mac/lhost-outlook-01.eml
|
849
|
+
- set-of-emails/maildir/mac/lhost-postfix-01.eml
|
850
|
+
- set-of-emails/maildir/mac/lhost-powermta-01.eml
|
851
|
+
- set-of-emails/maildir/mac/lhost-qmail-01.eml
|
852
|
+
- set-of-emails/maildir/mac/lhost-receivingses-01.eml
|
853
|
+
- set-of-emails/maildir/mac/lhost-sendgrid-01.eml
|
854
|
+
- set-of-emails/maildir/mac/lhost-sendmail-01.eml
|
855
|
+
- set-of-emails/maildir/mac/lhost-surfcontrol-01.eml
|
856
|
+
- set-of-emails/maildir/mac/lhost-v5sendmail-01.eml
|
857
|
+
- set-of-emails/maildir/mac/lhost-verizon-01.eml
|
858
|
+
- set-of-emails/maildir/mac/lhost-x1-01.eml
|
859
|
+
- set-of-emails/maildir/mac/lhost-x2-01.eml
|
860
|
+
- set-of-emails/maildir/mac/lhost-x3-01.eml
|
861
|
+
- set-of-emails/maildir/mac/lhost-x4-01.eml
|
862
|
+
- set-of-emails/maildir/mac/lhost-x5-01.eml
|
863
|
+
- set-of-emails/maildir/mac/lhost-x6-01.eml
|
864
|
+
- set-of-emails/maildir/mac/lhost-yahoo-01.eml
|
865
|
+
- set-of-emails/maildir/mac/lhost-yandex-01.eml
|
866
|
+
- set-of-emails/maildir/mac/lhost-zoho-01.eml
|
837
867
|
- set-of-emails/maildir/mac/rfc3464-01.eml
|
838
868
|
- set-of-emails/maildir/mac/rfc3834-01.eml
|
839
869
|
- set-of-emails/maildir/mac/rhost-exchange-online-01.eml
|
840
870
|
- set-of-emails/maildir/mac/rhost-franceptt-01.eml
|
841
871
|
- set-of-emails/maildir/mac/rhost-google-apps-01.eml
|
872
|
+
- set-of-emails/maildir/mac/rhost-iua-01.eml
|
842
873
|
- set-of-emails/maildir/mac/rhost-kddi-01.eml
|
843
874
|
- set-of-emails/maildir/mac/rhost-tencentqq-01.eml
|
844
875
|
- set-of-emails/maildir/not/is-not-bounce-01.eml
|
@@ -868,8 +899,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
868
899
|
- !ruby/object:Gem::Version
|
869
900
|
version: '0'
|
870
901
|
requirements: []
|
871
|
-
|
872
|
-
rubygems_version: 2.6.14
|
902
|
+
rubygems_version: 3.0.3
|
873
903
|
signing_key:
|
874
904
|
specification_version: 4
|
875
905
|
summary: Mail Analyzing Interface
|