sisimai 4.16.0-java
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of sisimai might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/.gitignore +12 -0
- data/.rspec +2 -0
- data/.rubocop.yml +182 -0
- data/.travis.yml +18 -0
- data/ANALYTICAL-PRECISION +56 -0
- data/Changes +36 -0
- data/Developers.mk +129 -0
- data/Gemfile +15 -0
- data/LICENSE +25 -0
- data/Makefile +70 -0
- data/README.md +361 -0
- data/Rakefile +12 -0
- data/Repository.mk +69 -0
- data/appveyor.yml +23 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lib/sisimai.rb +95 -0
- data/lib/sisimai/address.rb +224 -0
- data/lib/sisimai/arf.rb +338 -0
- data/lib/sisimai/data.rb +409 -0
- data/lib/sisimai/data/json.rb +40 -0
- data/lib/sisimai/data/yaml.rb +32 -0
- data/lib/sisimai/datetime.rb +511 -0
- data/lib/sisimai/mail.rb +82 -0
- data/lib/sisimai/mail/maildir.rb +82 -0
- data/lib/sisimai/mail/mbox.rb +69 -0
- data/lib/sisimai/mail/stdin.rb +53 -0
- data/lib/sisimai/mda.rb +152 -0
- data/lib/sisimai/message.rb +525 -0
- data/lib/sisimai/mime.rb +127 -0
- data/lib/sisimai/msp.rb +54 -0
- data/lib/sisimai/msp/de/einsundeins.rb +174 -0
- data/lib/sisimai/msp/de/gmx.rb +197 -0
- data/lib/sisimai/msp/jp/biglobe.rb +179 -0
- data/lib/sisimai/msp/jp/ezweb.rb +292 -0
- data/lib/sisimai/msp/jp/kddi.rb +195 -0
- data/lib/sisimai/msp/ru/mailru.rb +306 -0
- data/lib/sisimai/msp/ru/yandex.rb +241 -0
- data/lib/sisimai/msp/uk/messagelabs.rb +250 -0
- data/lib/sisimai/msp/us/amazonses.rb +248 -0
- data/lib/sisimai/msp/us/amazonworkmail.rb +224 -0
- data/lib/sisimai/msp/us/aol.rb +234 -0
- data/lib/sisimai/msp/us/bigfoot.rb +243 -0
- data/lib/sisimai/msp/us/facebook.rb +306 -0
- data/lib/sisimai/msp/us/google.rb +357 -0
- data/lib/sisimai/msp/us/office365.rb +273 -0
- data/lib/sisimai/msp/us/outlook.rb +242 -0
- data/lib/sisimai/msp/us/receivingses.rb +247 -0
- data/lib/sisimai/msp/us/sendgrid.rb +257 -0
- data/lib/sisimai/msp/us/verizon.rb +311 -0
- data/lib/sisimai/msp/us/yahoo.rb +178 -0
- data/lib/sisimai/msp/us/zoho.rb +198 -0
- data/lib/sisimai/mta.rb +54 -0
- data/lib/sisimai/mta/activehunter.rb +155 -0
- data/lib/sisimai/mta/apachejames.rb +194 -0
- data/lib/sisimai/mta/courier.rb +307 -0
- data/lib/sisimai/mta/domino.rb +209 -0
- data/lib/sisimai/mta/exchange.rb +314 -0
- data/lib/sisimai/mta/exim.rb +549 -0
- data/lib/sisimai/mta/imailserver.rb +227 -0
- data/lib/sisimai/mta/interscanmss.rb +167 -0
- data/lib/sisimai/mta/mailfoundry.rb +173 -0
- data/lib/sisimai/mta/mailmarshalsmtp.rb +206 -0
- data/lib/sisimai/mta/mcafee.rb +201 -0
- data/lib/sisimai/mta/messagingserver.rb +241 -0
- data/lib/sisimai/mta/mfilter.rb +190 -0
- data/lib/sisimai/mta/mxlogic.rb +283 -0
- data/lib/sisimai/mta/notes.rb +206 -0
- data/lib/sisimai/mta/opensmtpd.rb +225 -0
- data/lib/sisimai/mta/postfix.rb +306 -0
- data/lib/sisimai/mta/qmail.rb +335 -0
- data/lib/sisimai/mta/sendmail.rb +317 -0
- data/lib/sisimai/mta/surfcontrol.rb +193 -0
- data/lib/sisimai/mta/userdefined.rb +148 -0
- data/lib/sisimai/mta/v5sendmail.rb +232 -0
- data/lib/sisimai/mta/x1.rb +156 -0
- data/lib/sisimai/mta/x2.rb +157 -0
- data/lib/sisimai/mta/x3.rb +171 -0
- data/lib/sisimai/mta/x4.rb +365 -0
- data/lib/sisimai/mta/x5.rb +208 -0
- data/lib/sisimai/order.rb +220 -0
- data/lib/sisimai/reason.rb +234 -0
- data/lib/sisimai/reason/blocked.rb +105 -0
- data/lib/sisimai/reason/contenterror.rb +53 -0
- data/lib/sisimai/reason/exceedlimit.rb +60 -0
- data/lib/sisimai/reason/expired.rb +53 -0
- data/lib/sisimai/reason/filtered.rb +98 -0
- data/lib/sisimai/reason/hasmoved.rb +45 -0
- data/lib/sisimai/reason/hostunknown.rb +79 -0
- data/lib/sisimai/reason/mailboxfull.rb +118 -0
- data/lib/sisimai/reason/mailererror.rb +55 -0
- data/lib/sisimai/reason/mesgtoobig.rb +82 -0
- data/lib/sisimai/reason/networkerror.rb +58 -0
- data/lib/sisimai/reason/norelaying.rb +71 -0
- data/lib/sisimai/reason/notaccept.rb +63 -0
- data/lib/sisimai/reason/onhold.rb +45 -0
- data/lib/sisimai/reason/rejected.rb +101 -0
- data/lib/sisimai/reason/securityerror.rb +72 -0
- data/lib/sisimai/reason/spamdetected.rb +172 -0
- data/lib/sisimai/reason/suspend.rb +58 -0
- data/lib/sisimai/reason/systemerror.rb +69 -0
- data/lib/sisimai/reason/systemfull.rb +45 -0
- data/lib/sisimai/reason/toomanyconn.rb +73 -0
- data/lib/sisimai/reason/userunknown.rb +194 -0
- data/lib/sisimai/rfc2606.rb +24 -0
- data/lib/sisimai/rfc3464.rb +497 -0
- data/lib/sisimai/rfc3834.rb +150 -0
- data/lib/sisimai/rfc5322.rb +204 -0
- data/lib/sisimai/rhost.rb +47 -0
- data/lib/sisimai/rhost/googleapps.rb +237 -0
- data/lib/sisimai/smtp.rb +58 -0
- data/lib/sisimai/smtp/reply.rb +84 -0
- data/lib/sisimai/smtp/status.rb +758 -0
- data/lib/sisimai/string.rb +65 -0
- data/lib/sisimai/time.rb +11 -0
- data/lib/sisimai/version.rb +4 -0
- data/set-of-emails/README.md +35 -0
- data/set-of-emails/mailbox/mbox-0 +2467 -0
- data/set-of-emails/mailbox/mbox-1 +71 -0
- data/set-of-emails/maildir/bsd/README.md +261 -0
- data/set-of-emails/maildir/bsd/activehunter-01.eml +54 -0
- data/set-of-emails/maildir/bsd/activehunter-02.eml +53 -0
- data/set-of-emails/maildir/bsd/apachejames-01.eml +46 -0
- data/set-of-emails/maildir/bsd/arf-01.eml +66 -0
- data/set-of-emails/maildir/bsd/arf-02.eml +68 -0
- data/set-of-emails/maildir/bsd/arf-03.eml +56 -0
- data/set-of-emails/maildir/bsd/arf-04.eml +89 -0
- data/set-of-emails/maildir/bsd/arf-05.eml +82 -0
- data/set-of-emails/maildir/bsd/arf-06.eml +166 -0
- data/set-of-emails/maildir/bsd/arf-07.eml +59 -0
- data/set-of-emails/maildir/bsd/arf-08.eml +103 -0
- data/set-of-emails/maildir/bsd/arf-09.eml +104 -0
- data/set-of-emails/maildir/bsd/arf-10.eml +56 -0
- data/set-of-emails/maildir/bsd/arf-11.eml +37 -0
- data/set-of-emails/maildir/bsd/arf-12.eml +40 -0
- data/set-of-emails/maildir/bsd/arf-13.eml +76 -0
- data/set-of-emails/maildir/bsd/arf-14.eml +333 -0
- data/set-of-emails/maildir/bsd/arf-15.eml +66 -0
- data/set-of-emails/maildir/bsd/courier-01.eml +79 -0
- data/set-of-emails/maildir/bsd/courier-02.eml +83 -0
- data/set-of-emails/maildir/bsd/courier-03.eml +85 -0
- data/set-of-emails/maildir/bsd/courier-04.eml +87 -0
- data/set-of-emails/maildir/bsd/de-einsundeins-01.eml +38 -0
- data/set-of-emails/maildir/bsd/de-gmx-01.eml +52 -0
- data/set-of-emails/maildir/bsd/de-gmx-02.eml +51 -0
- data/set-of-emails/maildir/bsd/de-gmx-03.eml +56 -0
- data/set-of-emails/maildir/bsd/de-gmx-04.eml +51 -0
- data/set-of-emails/maildir/bsd/domino-01.eml +33 -0
- data/set-of-emails/maildir/bsd/domino-02.eml +83 -0
- data/set-of-emails/maildir/bsd/exchange-01.eml +31 -0
- data/set-of-emails/maildir/bsd/exchange-02.eml +67 -0
- data/set-of-emails/maildir/bsd/exchange-03.eml +52 -0
- data/set-of-emails/maildir/bsd/exchange-04.eml +28 -0
- data/set-of-emails/maildir/bsd/exchange-05.eml +56 -0
- data/set-of-emails/maildir/bsd/exchange-06.eml +151 -0
- data/set-of-emails/maildir/bsd/exim-01.eml +46 -0
- data/set-of-emails/maildir/bsd/exim-02.eml +41 -0
- data/set-of-emails/maildir/bsd/exim-03.eml +42 -0
- data/set-of-emails/maildir/bsd/exim-04.eml +46 -0
- data/set-of-emails/maildir/bsd/exim-05.eml +49 -0
- data/set-of-emails/maildir/bsd/exim-06.eml +44 -0
- data/set-of-emails/maildir/bsd/exim-07.eml +28 -0
- data/set-of-emails/maildir/bsd/exim-08.eml +42 -0
- data/set-of-emails/maildir/bsd/exim-09.eml +169 -0
- data/set-of-emails/maildir/bsd/exim-10.eml +718 -0
- data/set-of-emails/maildir/bsd/exim-11.eml +718 -0
- data/set-of-emails/maildir/bsd/exim-12.eml +75 -0
- data/set-of-emails/maildir/bsd/exim-13.eml +145 -0
- data/set-of-emails/maildir/bsd/exim-14.eml +32 -0
- data/set-of-emails/maildir/bsd/exim-15.eml +49 -0
- data/set-of-emails/maildir/bsd/exim-16.eml +98 -0
- data/set-of-emails/maildir/bsd/exim-17.eml +50 -0
- data/set-of-emails/maildir/bsd/exim-18.eml +96 -0
- data/set-of-emails/maildir/bsd/exim-19.eml +52 -0
- data/set-of-emails/maildir/bsd/exim-20.eml +159 -0
- data/set-of-emails/maildir/bsd/exim-21.eml +150 -0
- data/set-of-emails/maildir/bsd/exim-22.eml +50 -0
- data/set-of-emails/maildir/bsd/exim-23.eml +57 -0
- data/set-of-emails/maildir/bsd/exim-24.eml +107 -0
- data/set-of-emails/maildir/bsd/exim-25.eml +18 -0
- data/set-of-emails/maildir/bsd/exim-26.eml +111 -0
- data/set-of-emails/maildir/bsd/exim-27.eml +120 -0
- data/set-of-emails/maildir/bsd/exim-28.eml +148 -0
- data/set-of-emails/maildir/bsd/google-apps-01.eml +66 -0
- data/set-of-emails/maildir/bsd/imailserver-01.eml +27 -0
- data/set-of-emails/maildir/bsd/imailserver-02.eml +36 -0
- data/set-of-emails/maildir/bsd/imailserver-03.eml +28 -0
- data/set-of-emails/maildir/bsd/imailserver-04.eml +15 -0
- data/set-of-emails/maildir/bsd/imailserver-05.eml +92 -0
- data/set-of-emails/maildir/bsd/imailserver-06.eml +29 -0
- data/set-of-emails/maildir/bsd/interscanmss-01.eml +49 -0
- data/set-of-emails/maildir/bsd/interscanmss-02.eml +259 -0
- data/set-of-emails/maildir/bsd/jp-biglobe-01.eml +43 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-01.eml +36 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-02.eml +65 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-03.eml +35 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-04.eml +38 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-05.eml +38 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-06.eml +33 -0
- data/set-of-emails/maildir/bsd/jp-kddi-01.eml +49 -0
- data/set-of-emails/maildir/bsd/jp-kddi-02.eml +54 -0
- data/set-of-emails/maildir/bsd/jp-kddi-03.eml +54 -0
- data/set-of-emails/maildir/bsd/mailfoundry-01.eml +50 -0
- data/set-of-emails/maildir/bsd/mailfoundry-02.eml +49 -0
- data/set-of-emails/maildir/bsd/mailmarshalsmtp-01.eml +43 -0
- data/set-of-emails/maildir/bsd/mcafee-01.eml +63 -0
- data/set-of-emails/maildir/bsd/mcafee-02.eml +65 -0
- data/set-of-emails/maildir/bsd/mcafee-03.eml +59 -0
- data/set-of-emails/maildir/bsd/messagingserver-01.eml +102 -0
- data/set-of-emails/maildir/bsd/messagingserver-02.eml +72 -0
- data/set-of-emails/maildir/bsd/messagingserver-03.eml +70 -0
- data/set-of-emails/maildir/bsd/messagingserver-04.eml +102 -0
- data/set-of-emails/maildir/bsd/messagingserver-05.eml +98 -0
- data/set-of-emails/maildir/bsd/messagingserver-06.eml +101 -0
- data/set-of-emails/maildir/bsd/messagingserver-07.eml +129 -0
- data/set-of-emails/maildir/bsd/mfilter-01.eml +49 -0
- data/set-of-emails/maildir/bsd/mfilter-02.eml +48 -0
- data/set-of-emails/maildir/bsd/mfilter-03.eml +43 -0
- data/set-of-emails/maildir/bsd/mxlogic-01.eml +47 -0
- data/set-of-emails/maildir/bsd/mxlogic-02.eml +44 -0
- data/set-of-emails/maildir/bsd/mxlogic-03.eml +46 -0
- data/set-of-emails/maildir/bsd/notes-01.eml +42 -0
- data/set-of-emails/maildir/bsd/notes-02.eml +42 -0
- data/set-of-emails/maildir/bsd/notes-03.eml +38 -0
- data/set-of-emails/maildir/bsd/notes-04.eml +181 -0
- data/set-of-emails/maildir/bsd/opensmtpd-01.eml +33 -0
- data/set-of-emails/maildir/bsd/opensmtpd-02.eml +33 -0
- data/set-of-emails/maildir/bsd/opensmtpd-03.eml +36 -0
- data/set-of-emails/maildir/bsd/opensmtpd-04.eml +40 -0
- data/set-of-emails/maildir/bsd/opensmtpd-05.eml +36 -0
- data/set-of-emails/maildir/bsd/postfix-01.eml +60 -0
- data/set-of-emails/maildir/bsd/postfix-02.eml +78 -0
- data/set-of-emails/maildir/bsd/postfix-03.eml +71 -0
- data/set-of-emails/maildir/bsd/postfix-04.eml +89 -0
- data/set-of-emails/maildir/bsd/postfix-05.eml +78 -0
- data/set-of-emails/maildir/bsd/postfix-06.eml +72 -0
- data/set-of-emails/maildir/bsd/postfix-07.eml +74 -0
- data/set-of-emails/maildir/bsd/postfix-08.eml +78 -0
- data/set-of-emails/maildir/bsd/postfix-09.eml +76 -0
- data/set-of-emails/maildir/bsd/postfix-10.eml +73 -0
- data/set-of-emails/maildir/bsd/postfix-11.eml +86 -0
- data/set-of-emails/maildir/bsd/postfix-12.eml +71 -0
- data/set-of-emails/maildir/bsd/postfix-13.eml +81 -0
- data/set-of-emails/maildir/bsd/postfix-14.eml +68 -0
- data/set-of-emails/maildir/bsd/postfix-15.eml +69 -0
- data/set-of-emails/maildir/bsd/postfix-16.eml +73 -0
- data/set-of-emails/maildir/bsd/postfix-17.eml +68 -0
- data/set-of-emails/maildir/bsd/postfix-18.eml +121 -0
- data/set-of-emails/maildir/bsd/postfix-19.eml +105 -0
- data/set-of-emails/maildir/bsd/postfix-20.eml +231 -0
- data/set-of-emails/maildir/bsd/postfix-21.eml +60 -0
- data/set-of-emails/maildir/bsd/qmail-01.eml +40 -0
- data/set-of-emails/maildir/bsd/qmail-02.eml +35 -0
- data/set-of-emails/maildir/bsd/qmail-03.eml +22 -0
- data/set-of-emails/maildir/bsd/qmail-04.eml +31 -0
- data/set-of-emails/maildir/bsd/qmail-05.eml +31 -0
- data/set-of-emails/maildir/bsd/qmail-06.eml +39 -0
- data/set-of-emails/maildir/bsd/qmail-07.eml +22 -0
- data/set-of-emails/maildir/bsd/qmail-08.eml +23 -0
- data/set-of-emails/maildir/bsd/qmail-09.eml +103 -0
- data/set-of-emails/maildir/bsd/rfc3464-01.eml +60 -0
- data/set-of-emails/maildir/bsd/rfc3464-02.eml +43 -0
- data/set-of-emails/maildir/bsd/rfc3464-03.eml +40 -0
- data/set-of-emails/maildir/bsd/rfc3464-04.eml +50 -0
- data/set-of-emails/maildir/bsd/rfc3464-05.eml +63 -0
- data/set-of-emails/maildir/bsd/rfc3464-06.eml +48 -0
- data/set-of-emails/maildir/bsd/rfc3464-07.eml +88 -0
- data/set-of-emails/maildir/bsd/rfc3464-08.eml +70 -0
- data/set-of-emails/maildir/bsd/rfc3464-09.eml +93 -0
- data/set-of-emails/maildir/bsd/rfc3464-10.eml +467 -0
- data/set-of-emails/maildir/bsd/rfc3464-11.eml +1171 -0
- data/set-of-emails/maildir/bsd/rfc3464-12.eml +101 -0
- data/set-of-emails/maildir/bsd/rfc3464-13.eml +131 -0
- data/set-of-emails/maildir/bsd/rfc3464-14.eml +121 -0
- data/set-of-emails/maildir/bsd/rfc3464-15.eml +144 -0
- data/set-of-emails/maildir/bsd/rfc3464-16.eml +36 -0
- data/set-of-emails/maildir/bsd/rfc3464-17.eml +109 -0
- data/set-of-emails/maildir/bsd/rfc3464-18.eml +149 -0
- data/set-of-emails/maildir/bsd/rfc3464-19.eml +65 -0
- data/set-of-emails/maildir/bsd/rfc3464-20.eml +145 -0
- data/set-of-emails/maildir/bsd/rfc3464-21.eml +146 -0
- data/set-of-emails/maildir/bsd/rfc3464-22.eml +105 -0
- data/set-of-emails/maildir/bsd/rfc3464-23.eml +21 -0
- data/set-of-emails/maildir/bsd/rfc3464-24.eml +27 -0
- data/set-of-emails/maildir/bsd/rfc3464-25.eml +33 -0
- data/set-of-emails/maildir/bsd/rfc3464-26.eml +98 -0
- data/set-of-emails/maildir/bsd/rfc3464-27.eml +180 -0
- data/set-of-emails/maildir/bsd/rfc3464-28.eml +122 -0
- data/set-of-emails/maildir/bsd/rfc3834-01.eml +37 -0
- data/set-of-emails/maildir/bsd/rfc3834-02.eml +51 -0
- data/set-of-emails/maildir/bsd/rfc3834-03.eml +33 -0
- data/set-of-emails/maildir/bsd/ru-mailru-01.eml +54 -0
- data/set-of-emails/maildir/bsd/ru-mailru-02.eml +54 -0
- data/set-of-emails/maildir/bsd/ru-mailru-03.eml +62 -0
- data/set-of-emails/maildir/bsd/ru-mailru-04.eml +54 -0
- data/set-of-emails/maildir/bsd/ru-yandex-01.eml +102 -0
- data/set-of-emails/maildir/bsd/ru-yandex-02.eml +113 -0
- data/set-of-emails/maildir/bsd/ru-yandex-03.eml +101 -0
- data/set-of-emails/maildir/bsd/sendmail-01.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-02.eml +82 -0
- data/set-of-emails/maildir/bsd/sendmail-03.eml +76 -0
- data/set-of-emails/maildir/bsd/sendmail-04.eml +63 -0
- data/set-of-emails/maildir/bsd/sendmail-05.eml +64 -0
- data/set-of-emails/maildir/bsd/sendmail-06.eml +67 -0
- data/set-of-emails/maildir/bsd/sendmail-07.eml +65 -0
- data/set-of-emails/maildir/bsd/sendmail-08.eml +62 -0
- data/set-of-emails/maildir/bsd/sendmail-09.eml +60 -0
- data/set-of-emails/maildir/bsd/sendmail-10.eml +82 -0
- data/set-of-emails/maildir/bsd/sendmail-11.eml +60 -0
- data/set-of-emails/maildir/bsd/sendmail-12.eml +62 -0
- data/set-of-emails/maildir/bsd/sendmail-13.eml +66 -0
- data/set-of-emails/maildir/bsd/sendmail-14.eml +64 -0
- data/set-of-emails/maildir/bsd/sendmail-15.eml +60 -0
- data/set-of-emails/maildir/bsd/sendmail-16.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-17.eml +68 -0
- data/set-of-emails/maildir/bsd/sendmail-18.eml +64 -0
- data/set-of-emails/maildir/bsd/sendmail-19.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-20.eml +120 -0
- data/set-of-emails/maildir/bsd/sendmail-21.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-22.eml +73 -0
- data/set-of-emails/maildir/bsd/sendmail-23.eml +137 -0
- data/set-of-emails/maildir/bsd/sendmail-24.eml +66 -0
- data/set-of-emails/maildir/bsd/sendmail-25.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-26.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-27.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-28.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-29.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-30.eml +68 -0
- data/set-of-emails/maildir/bsd/sendmail-31.eml +80 -0
- data/set-of-emails/maildir/bsd/sendmail-32.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-33.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-34.eml +75 -0
- data/set-of-emails/maildir/bsd/sendmail-35.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-36.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-37.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-38.eml +167 -0
- data/set-of-emails/maildir/bsd/surfcontrol-01.eml +79 -0
- data/set-of-emails/maildir/bsd/surfcontrol-02.eml +70 -0
- data/set-of-emails/maildir/bsd/surfcontrol-03.eml +70 -0
- data/set-of-emails/maildir/bsd/uk-messagelabs-01.eml +76 -0
- data/set-of-emails/maildir/bsd/us-amazonses-01.eml +59 -0
- data/set-of-emails/maildir/bsd/us-amazonses-02.eml +177 -0
- data/set-of-emails/maildir/bsd/us-amazonses-03.eml +55 -0
- data/set-of-emails/maildir/bsd/us-amazonses-04.eml +55 -0
- data/set-of-emails/maildir/bsd/us-amazonworkmail-01.eml +156 -0
- data/set-of-emails/maildir/bsd/us-amazonworkmail-02.eml +160 -0
- data/set-of-emails/maildir/bsd/us-amazonworkmail-03.eml +161 -0
- data/set-of-emails/maildir/bsd/us-amazonworkmail-04.eml +156 -0
- data/set-of-emails/maildir/bsd/us-amazonworkmail-05.eml +157 -0
- data/set-of-emails/maildir/bsd/us-aol-01.eml +1258 -0
- data/set-of-emails/maildir/bsd/us-aol-02.eml +1257 -0
- data/set-of-emails/maildir/bsd/us-aol-03.eml +1264 -0
- data/set-of-emails/maildir/bsd/us-aol-04.eml +1260 -0
- data/set-of-emails/maildir/bsd/us-bigfoot-01.eml +64 -0
- data/set-of-emails/maildir/bsd/us-facebook-01.eml +40 -0
- data/set-of-emails/maildir/bsd/us-facebook-02.eml +42 -0
- data/set-of-emails/maildir/bsd/us-google-01.eml +70 -0
- data/set-of-emails/maildir/bsd/us-google-02.eml +50 -0
- data/set-of-emails/maildir/bsd/us-google-03.eml +51 -0
- data/set-of-emails/maildir/bsd/us-google-04.eml +82 -0
- data/set-of-emails/maildir/bsd/us-google-05.eml +50 -0
- data/set-of-emails/maildir/bsd/us-google-06.eml +56 -0
- data/set-of-emails/maildir/bsd/us-google-07.eml +42 -0
- data/set-of-emails/maildir/bsd/us-google-08.eml +59 -0
- data/set-of-emails/maildir/bsd/us-google-09.eml +76 -0
- data/set-of-emails/maildir/bsd/us-google-10.eml +69 -0
- data/set-of-emails/maildir/bsd/us-google-11.eml +68 -0
- data/set-of-emails/maildir/bsd/us-google-12.eml +76 -0
- data/set-of-emails/maildir/bsd/us-google-13.eml +79 -0
- data/set-of-emails/maildir/bsd/us-google-14.eml +304 -0
- data/set-of-emails/maildir/bsd/us-office365-01.eml +102 -0
- data/set-of-emails/maildir/bsd/us-outlook-01.eml +72 -0
- data/set-of-emails/maildir/bsd/us-outlook-02.eml +72 -0
- data/set-of-emails/maildir/bsd/us-outlook-03.eml +72 -0
- data/set-of-emails/maildir/bsd/us-outlook-04.eml +79 -0
- data/set-of-emails/maildir/bsd/us-outlook-05.eml +85 -0
- data/set-of-emails/maildir/bsd/us-outlook-06.eml +75 -0
- data/set-of-emails/maildir/bsd/us-outlook-07.eml +70 -0
- data/set-of-emails/maildir/bsd/us-receivingses-01.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-02.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-03.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-04.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-05.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-06.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-07.eml +74 -0
- data/set-of-emails/maildir/bsd/us-sendgrid-01.eml +95 -0
- data/set-of-emails/maildir/bsd/us-sendgrid-02.eml +98 -0
- data/set-of-emails/maildir/bsd/us-sendgrid-03.eml +100 -0
- data/set-of-emails/maildir/bsd/us-verizon-01.eml +31 -0
- data/set-of-emails/maildir/bsd/us-yahoo-01.eml +78 -0
- data/set-of-emails/maildir/bsd/us-yahoo-02.eml +79 -0
- data/set-of-emails/maildir/bsd/us-yahoo-03.eml +93 -0
- data/set-of-emails/maildir/bsd/us-yahoo-04.eml +94 -0
- data/set-of-emails/maildir/bsd/us-yahoo-05.eml +94 -0
- data/set-of-emails/maildir/bsd/us-zoho-01.eml +40 -0
- data/set-of-emails/maildir/bsd/us-zoho-02.eml +38 -0
- data/set-of-emails/maildir/bsd/us-zoho-03.eml +37 -0
- data/set-of-emails/maildir/bsd/us-zoho-04.eml +47 -0
- data/set-of-emails/maildir/bsd/us-zoho-05.eml +37 -0
- data/set-of-emails/maildir/bsd/v5sendmail-01.eml +24 -0
- data/set-of-emails/maildir/bsd/v5sendmail-02.eml +26 -0
- data/set-of-emails/maildir/bsd/v5sendmail-03.eml +29 -0
- data/set-of-emails/maildir/bsd/v5sendmail-04.eml +29 -0
- data/set-of-emails/maildir/bsd/v5sendmail-05.eml +42 -0
- data/set-of-emails/maildir/bsd/v5sendmail-06.eml +28 -0
- data/set-of-emails/maildir/bsd/v5sendmail-07.eml +35 -0
- data/set-of-emails/maildir/bsd/x1-01.eml +61 -0
- data/set-of-emails/maildir/bsd/x1-02.eml +62 -0
- data/set-of-emails/maildir/bsd/x2-01.eml +41 -0
- data/set-of-emails/maildir/bsd/x2-02.eml +46 -0
- data/set-of-emails/maildir/bsd/x2-03.eml +34 -0
- data/set-of-emails/maildir/bsd/x2-04.eml +0 -0
- data/set-of-emails/maildir/bsd/x2-05.eml +98 -0
- data/set-of-emails/maildir/bsd/x3-01.eml +61 -0
- data/set-of-emails/maildir/bsd/x3-02.eml +64 -0
- data/set-of-emails/maildir/bsd/x3-03.eml +59 -0
- data/set-of-emails/maildir/bsd/x3-04.eml +106 -0
- data/set-of-emails/maildir/bsd/x4-01.eml +92 -0
- data/set-of-emails/maildir/bsd/x4-02.eml +112 -0
- data/set-of-emails/maildir/bsd/x4-03.eml +245 -0
- data/set-of-emails/maildir/bsd/x4-04.eml +81 -0
- data/set-of-emails/maildir/bsd/x4-05.eml +121 -0
- data/set-of-emails/maildir/bsd/x4-06.eml +32 -0
- data/set-of-emails/maildir/bsd/x4-07.eml +153 -0
- data/set-of-emails/maildir/bsd/x5-01.eml +155 -0
- data/set-of-emails/maildir/dos/activehunter-01.eml +54 -0
- data/set-of-emails/maildir/dos/apachejames-01.eml +46 -0
- data/set-of-emails/maildir/dos/arf-01.eml +66 -0
- data/set-of-emails/maildir/dos/courier-01.eml +79 -0
- data/set-of-emails/maildir/dos/de-einsundeins-01.eml +38 -0
- data/set-of-emails/maildir/dos/de-gmx-01.eml +52 -0
- data/set-of-emails/maildir/dos/domino-01.eml +33 -0
- data/set-of-emails/maildir/dos/exchange-01.eml +31 -0
- data/set-of-emails/maildir/dos/exim-01.eml +46 -0
- data/set-of-emails/maildir/dos/google-apps-01.eml +66 -0
- data/set-of-emails/maildir/dos/imailserver-01.eml +27 -0
- data/set-of-emails/maildir/dos/interscanmss-01.eml +49 -0
- data/set-of-emails/maildir/dos/jp-biglobe-01.eml +43 -0
- data/set-of-emails/maildir/dos/jp-ezweb-01.eml +36 -0
- data/set-of-emails/maildir/dos/jp-kddi-01.eml +49 -0
- data/set-of-emails/maildir/dos/mailfoundry-01.eml +50 -0
- data/set-of-emails/maildir/dos/mailmarshalsmtp-01.eml +43 -0
- data/set-of-emails/maildir/dos/mcafee-01.eml +63 -0
- data/set-of-emails/maildir/dos/messagingserver-01.eml +102 -0
- data/set-of-emails/maildir/dos/mfilter-01.eml +49 -0
- data/set-of-emails/maildir/dos/mxlogic-01.eml +47 -0
- data/set-of-emails/maildir/dos/notes-01.eml +42 -0
- data/set-of-emails/maildir/dos/opensmtpd-01.eml +33 -0
- data/set-of-emails/maildir/dos/postfix-01.eml +60 -0
- data/set-of-emails/maildir/dos/qmail-01.eml +40 -0
- data/set-of-emails/maildir/dos/rfc3464-01.eml +59 -0
- data/set-of-emails/maildir/dos/rfc3834-01.eml +37 -0
- data/set-of-emails/maildir/dos/ru-mailru-01.eml +54 -0
- data/set-of-emails/maildir/dos/ru-yandex-01.eml +102 -0
- data/set-of-emails/maildir/dos/sendmail-01.eml +69 -0
- data/set-of-emails/maildir/dos/surfcontrol-01.eml +79 -0
- data/set-of-emails/maildir/dos/uk-messagelabs-01.eml +76 -0
- data/set-of-emails/maildir/dos/us-amazonses-01.eml +59 -0
- data/set-of-emails/maildir/dos/us-aol-01.eml +1258 -0
- data/set-of-emails/maildir/dos/us-bigfoot-01.eml +64 -0
- data/set-of-emails/maildir/dos/us-facebook-01.eml +40 -0
- data/set-of-emails/maildir/dos/us-google-01.eml +70 -0
- data/set-of-emails/maildir/dos/us-outlook-01.eml +72 -0
- data/set-of-emails/maildir/dos/us-receivingses-01.eml +74 -0
- data/set-of-emails/maildir/dos/us-sendgrid-01.eml +95 -0
- data/set-of-emails/maildir/dos/us-verizon-01.eml +31 -0
- data/set-of-emails/maildir/dos/us-yahoo-01.eml +78 -0
- data/set-of-emails/maildir/dos/us-zoho-01.eml +40 -0
- data/set-of-emails/maildir/dos/v5sendmail-01.eml +24 -0
- data/set-of-emails/maildir/dos/x1-01.eml +61 -0
- data/set-of-emails/maildir/dos/x2-01.eml +41 -0
- data/set-of-emails/maildir/dos/x3-01.eml +61 -0
- data/set-of-emails/maildir/dos/x4-01.eml +90 -0
- data/set-of-emails/maildir/dos/x5-01.eml +155 -0
- data/set-of-emails/maildir/err/make-test-01.eml +70 -0
- data/set-of-emails/maildir/err/make-test-02.eml +70 -0
- data/set-of-emails/maildir/err/make-test-03.eml +64 -0
- data/set-of-emails/maildir/err/make-test-04.eml +64 -0
- data/set-of-emails/maildir/err/make-test-05.eml +66 -0
- data/set-of-emails/maildir/err/make-test-06.eml +118 -0
- data/set-of-emails/maildir/err/make-test-07.eml +26 -0
- data/set-of-emails/maildir/err/make-test-08.eml +67 -0
- data/set-of-emails/maildir/err/make-test-09.eml +55 -0
- data/set-of-emails/maildir/err/make-test-10.eml +69 -0
- data/set-of-emails/maildir/err/make-test-11.eml +64 -0
- data/set-of-emails/maildir/err/make-test-12.eml +66 -0
- data/set-of-emails/maildir/err/make-test-13.eml +67 -0
- data/set-of-emails/maildir/err/make-test-14.eml +66 -0
- data/set-of-emails/maildir/err/make-test-15.eml +70 -0
- data/set-of-emails/maildir/err/make-test-16.eml +68 -0
- data/set-of-emails/maildir/err/make-test-17.eml +68 -0
- data/set-of-emails/maildir/err/make-test-18.eml +68 -0
- data/set-of-emails/maildir/err/make-test-19.eml +69 -0
- data/set-of-emails/maildir/err/make-test-20.eml +67 -0
- data/set-of-emails/maildir/err/make-test-21.eml +69 -0
- data/set-of-emails/maildir/err/make-test-22.eml +66 -0
- data/set-of-emails/maildir/err/make-test-23.eml +70 -0
- data/set-of-emails/maildir/err/make-test-24.eml +69 -0
- data/set-of-emails/maildir/err/make-test-25.eml +67 -0
- data/set-of-emails/maildir/err/make-test-26.eml +69 -0
- data/set-of-emails/maildir/err/make-test-27.eml +69 -0
- data/set-of-emails/maildir/err/make-test-28.eml +66 -0
- data/set-of-emails/maildir/err/make-test-29.eml +68 -0
- data/set-of-emails/maildir/err/make-test-30.eml +68 -0
- data/set-of-emails/maildir/err/make-test-31.eml +80 -0
- data/set-of-emails/maildir/err/make-test-32.eml +66 -0
- data/set-of-emails/maildir/err/make-test-33.eml +68 -0
- data/set-of-emails/maildir/err/make-test-34.eml +56 -0
- data/set-of-emails/maildir/err/make-test-35.eml +59 -0
- data/set-of-emails/maildir/err/make-test-36.eml +53 -0
- data/set-of-emails/maildir/err/make-test-37.eml +62 -0
- data/set-of-emails/maildir/mac/activehunter-01.eml +1 -2
- data/set-of-emails/maildir/mac/apachejames-01.eml +1 -4
- data/set-of-emails/maildir/mac/arf-01.eml +1 -3
- data/set-of-emails/maildir/mac/courier-01.eml +1 -6
- data/set-of-emails/maildir/mac/de-einsundeins-01.eml +1 -1
- data/set-of-emails/maildir/mac/de-gmx-01.eml +1 -1
- data/set-of-emails/maildir/mac/domino-01.eml +1 -0
- data/set-of-emails/maildir/mac/exchange-01.eml +1 -0
- data/set-of-emails/maildir/mac/exim-01.eml +1 -1
- data/set-of-emails/maildir/mac/google-apps-01.eml +1 -4
- data/set-of-emails/maildir/mac/imailserver-01.eml +1 -0
- data/set-of-emails/maildir/mac/interscanmss-01.eml +1 -2
- data/set-of-emails/maildir/mac/jp-biglobe-01.eml +1 -2
- data/set-of-emails/maildir/mac/jp-ezweb-01.eml +1 -1
- data/set-of-emails/maildir/mac/jp-kddi-01.eml +1 -2
- data/set-of-emails/maildir/mac/mailfoundry-01.eml +1 -2
- data/set-of-emails/maildir/mac/mailmarshalsmtp-01.eml +1 -2
- data/set-of-emails/maildir/mac/mcafee-01.eml +1 -4
- data/set-of-emails/maildir/mac/messagingserver-01.eml +1 -4
- data/set-of-emails/maildir/mac/mfilter-01.eml +1 -3
- data/set-of-emails/maildir/mac/mxlogic-01.eml +1 -1
- data/set-of-emails/maildir/mac/notes-01.eml +1 -2
- data/set-of-emails/maildir/mac/opensmtpd-01.eml +1 -0
- data/set-of-emails/maildir/mac/postfix-01.eml +1 -3
- data/set-of-emails/maildir/mac/qmail-01.eml +1 -1
- data/set-of-emails/maildir/mac/rfc3464-01.eml +1 -4
- data/set-of-emails/maildir/mac/rfc3834-01.eml +1 -0
- data/set-of-emails/maildir/mac/ru-mailru-01.eml +1 -1
- data/set-of-emails/maildir/mac/ru-yandex-01.eml +1 -4
- data/set-of-emails/maildir/mac/sendmail-01.eml +1 -4
- data/set-of-emails/maildir/mac/surfcontrol-01.eml +1 -5
- data/set-of-emails/maildir/mac/uk-messagelabs-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-amazonses-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-aol-01.eml +1 -15
- data/set-of-emails/maildir/mac/us-bigfoot-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-facebook-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-google-01.eml +1 -1
- data/set-of-emails/maildir/mac/us-outlook-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-receivingses-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-sendgrid-01.eml +1 -3
- data/set-of-emails/maildir/mac/us-verizon-01.eml +1 -2
- data/set-of-emails/maildir/mac/us-yahoo-01.eml +1 -1
- data/set-of-emails/maildir/mac/us-zoho-01.eml +1 -2
- data/set-of-emails/maildir/mac/v5sendmail-01.eml +1 -0
- data/set-of-emails/maildir/mac/x1-01.eml +1 -4
- data/set-of-emails/maildir/mac/x2-01.eml +1 -1
- data/set-of-emails/maildir/mac/x3-01.eml +1 -3
- data/set-of-emails/maildir/mac/x4-01.eml +1 -2
- data/set-of-emails/maildir/mac/x5-01.eml +1 -8
- data/set-of-emails/maildir/not/is-not-bounce-01.eml +25 -0
- data/set-of-emails/to-be-debugged-because/reason-is-onhold/onhold-0001.eml +85 -0
- data/set-of-emails/to-be-debugged-because/reason-is-undefined/undefined-0002.eml +27 -0
- data/set-of-emails/to-be-debugged-because/reason-is-undefined/undefined-0003.eml +78 -0
- data/set-of-emails/to-be-debugged-because/sisimai-cannot-parse-yet/cannot-parse-this-email-0002.eml +25 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-01.eml +79 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-02.eml +72 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-03.eml +68 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/no-message-id-from-pr-150.eml +75 -0
- data/set-of-emails/to-be-parsed-for-test/README.md +20 -0
- data/sisimai-java.gemspec +29 -0
- data/sisimai.gemspec +28 -0
- metadata +680 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 407f1eade20e33177ff6973ab8815726abe1df99
|
4
|
+
data.tar.gz: 4fc42549e34a53cb636a5fc6a24868eae51ca458
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b444968d17790e809d9e5389fbfe6c06b50466adf651753bd735235af4760915861fd8ee5d5dd9649cc588a7a4f06deb729886650977ccff6e9dcd6f61b9299e
|
7
|
+
data.tar.gz: be2828ed40478c3dd32e6c67f5e58b27d50164f84a7204e6a42d2180ddedde827e63a856b8b84542498e33dc3526ec66a8934824316cd31b18edf1819312deb2
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,182 @@
|
|
1
|
+
AllCops:
|
2
|
+
DisplayCopNames: true
|
3
|
+
Exclude:
|
4
|
+
- 'bin/*'
|
5
|
+
- 'tmp/*'
|
6
|
+
- 'Rakefile'
|
7
|
+
- 'spec/*'
|
8
|
+
- 'lib/sisimai/mta/userdefined.rb'
|
9
|
+
|
10
|
+
# Offense count: 14
|
11
|
+
# Configuration parameters: AllowSafeAssignment.
|
12
|
+
Lint/AssignmentInCondition:
|
13
|
+
Enabled: false
|
14
|
+
|
15
|
+
Metrics/AbcSize:
|
16
|
+
Max: 30
|
17
|
+
|
18
|
+
Metrics/CyclomaticComplexity:
|
19
|
+
Enabled: false
|
20
|
+
|
21
|
+
# Configuration parameters: AllowURI, URISchemes.
|
22
|
+
Metrics/LineLength:
|
23
|
+
Max: 144
|
24
|
+
Exclude:
|
25
|
+
- 'spec/*'
|
26
|
+
|
27
|
+
# Configuration parameters: CountComments.
|
28
|
+
Metrics/MethodLength:
|
29
|
+
Enabled: false
|
30
|
+
|
31
|
+
# Configuration parameters: CountComments.
|
32
|
+
Metrics/ModuleLength:
|
33
|
+
Max: 512
|
34
|
+
|
35
|
+
Metrics/PerceivedComplexity:
|
36
|
+
Enabled: false
|
37
|
+
|
38
|
+
Style/AsciiComments:
|
39
|
+
Exclude:
|
40
|
+
- 'lib/sisimai/mta/*.rb'
|
41
|
+
- 'lib/sisimai/msp/ru/*.rb'
|
42
|
+
|
43
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
44
|
+
Style/ClassAndModuleChildren:
|
45
|
+
EnforcedStyle: nested
|
46
|
+
Exclude:
|
47
|
+
- 'lib/sisimai/datetime.rb'
|
48
|
+
- 'lib/sisimai/rfc5322.rb'
|
49
|
+
- 'lib/sisimai/rhost.rb'
|
50
|
+
- 'lib/sisimai/string.rb'
|
51
|
+
- 'lib/sisimai/msp/*/*.rb'
|
52
|
+
|
53
|
+
Style/ClassVars:
|
54
|
+
Enabled: false
|
55
|
+
|
56
|
+
Style/ConstantName:
|
57
|
+
Enabled: false
|
58
|
+
|
59
|
+
# Cop supports --auto-correct.
|
60
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
61
|
+
Style/EmptyLinesAroundBlockBody:
|
62
|
+
Enabled: false
|
63
|
+
|
64
|
+
# Cop supports --auto-correct.
|
65
|
+
# Configuration parameters: AllowAdjacentOneLineDefs.
|
66
|
+
Style/EmptyLineBetweenDefs:
|
67
|
+
Exclude:
|
68
|
+
- 'lib/sisimai.rb'
|
69
|
+
- 'lib/sisimai/mta.rb'
|
70
|
+
- 'lib/sisimai/msp.rb'
|
71
|
+
- 'lib/sisimai/mta/*'
|
72
|
+
- 'lib/sisimai/msp/*/*'
|
73
|
+
- 'lib/sisimai/rfc3463.rb'
|
74
|
+
- 'lib/sisimai/rfc3834.rb'
|
75
|
+
|
76
|
+
# Cop supports --auto-correct.
|
77
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
78
|
+
Style/EmptyLinesAroundClassBody:
|
79
|
+
Enabled: false
|
80
|
+
|
81
|
+
# Cop supports --auto-correct.
|
82
|
+
Style/EmptyLinesAroundMethodBody:
|
83
|
+
Enabled: false
|
84
|
+
|
85
|
+
# Cop supports --auto-correct.
|
86
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
87
|
+
Style/EmptyLinesAroundModuleBody:
|
88
|
+
Enabled: false
|
89
|
+
|
90
|
+
# Cop supports --auto-correct.
|
91
|
+
# Configuration parameters: AllowForAlignment.
|
92
|
+
Style/ExtraSpacing:
|
93
|
+
Enabled: false
|
94
|
+
|
95
|
+
# Configuration parameters: Exclude.
|
96
|
+
Style/FileName:
|
97
|
+
Exclude:
|
98
|
+
- 'spec/*_spec.rb'
|
99
|
+
|
100
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
101
|
+
Style/FormatString:
|
102
|
+
EnforcedStyle: sprintf
|
103
|
+
|
104
|
+
Style/HashSyntax:
|
105
|
+
Enabled: false
|
106
|
+
|
107
|
+
# Cop supports --auto-correct.
|
108
|
+
Style/LeadingCommentSpace:
|
109
|
+
Enabled: false
|
110
|
+
|
111
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
112
|
+
Style/MethodName:
|
113
|
+
Enabled: false
|
114
|
+
|
115
|
+
# Cop supports --auto-correct.
|
116
|
+
Style/NumericLiterals:
|
117
|
+
Enabled: false
|
118
|
+
|
119
|
+
# Cop supports --auto-correct.
|
120
|
+
# Configuration parameters: PreferredDelimiters.
|
121
|
+
Style/PercentLiteralDelimiters:
|
122
|
+
Enabled: false
|
123
|
+
PreferredDelimiters:
|
124
|
+
'%r': '[]{}()||'
|
125
|
+
'%w': '[]'
|
126
|
+
|
127
|
+
# Configuration parameters: NamePrefix, NamePrefixBlacklist, NameWhitelist.
|
128
|
+
Style/PredicateName:
|
129
|
+
Enabled: false
|
130
|
+
|
131
|
+
# Cop supports --auto-correct.
|
132
|
+
# Configuration parameters: AllowMultipleReturnValues.
|
133
|
+
Style/RedundantReturn:
|
134
|
+
Enabled: false
|
135
|
+
|
136
|
+
Style/RedundantSelf:
|
137
|
+
Enabled: false
|
138
|
+
|
139
|
+
# Cop supports --auto-correct.
|
140
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles, AllowInnerSlashes.
|
141
|
+
Style/RegexpLiteral:
|
142
|
+
Enabled: false
|
143
|
+
|
144
|
+
# Cop supports --auto-correct.
|
145
|
+
# Configuration parameters: AllowIfMethodIsEmpty.
|
146
|
+
Style/SingleLineMethods:
|
147
|
+
AllowIfMethodIsEmpty: true
|
148
|
+
Exclude:
|
149
|
+
- 'lib/sisimai.rb'
|
150
|
+
- 'lib/sisimai/mta.rb'
|
151
|
+
- 'lib/sisimai/msp.rb'
|
152
|
+
- 'lib/sisimai/mta/*'
|
153
|
+
- 'lib/sisimai/msp/*/*'
|
154
|
+
- 'lib/sisimai/rfc3464.rb'
|
155
|
+
- 'lib/sisimai/rfc3834.rb'
|
156
|
+
- 'lib/sisimai/reason/*.rb'
|
157
|
+
|
158
|
+
# Cop supports --auto-correct.
|
159
|
+
Style/SpaceAfterComma:
|
160
|
+
Exclude:
|
161
|
+
- "spec/*"
|
162
|
+
|
163
|
+
# Cop supports --auto-correct.
|
164
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
165
|
+
Style/TrailingBlankLines:
|
166
|
+
Enabled: false
|
167
|
+
|
168
|
+
# Cop supports --auto-correct.
|
169
|
+
# Configuration parameters: EnforcedStyleForMultiline, SupportedStyles.
|
170
|
+
Style/TrailingComma:
|
171
|
+
Enabled: false
|
172
|
+
EnforcedStyleForMultiline: comma
|
173
|
+
|
174
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
175
|
+
Style/VariableName:
|
176
|
+
Enabled: false
|
177
|
+
|
178
|
+
# Cop supports --auto-correct.
|
179
|
+
Style/UnneededPercentQ:
|
180
|
+
Exclude:
|
181
|
+
- 'spec/*'
|
182
|
+
|
data/.travis.yml
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
language: ruby
|
2
|
+
rvm:
|
3
|
+
- 2.1.1
|
4
|
+
- 2.2.2
|
5
|
+
- 2.2.4
|
6
|
+
- 2.3.0
|
7
|
+
- jruby-9.0.4.0
|
8
|
+
before_install:
|
9
|
+
script:
|
10
|
+
- rake spec
|
11
|
+
sudo: false
|
12
|
+
notifications:
|
13
|
+
recipients:
|
14
|
+
- azumakuniyuki+travis-ci.org@gmail.com
|
15
|
+
email:
|
16
|
+
on_success: change
|
17
|
+
on_failure: always
|
18
|
+
|
@@ -0,0 +1,56 @@
|
|
1
|
+
bounceHammer 2.7.13p3
|
2
|
+
MTA MODULE NAME CAN PARSE RATIO NOTES
|
3
|
+
-------------------------------------------------------------------------------
|
4
|
+
MTA::Activehunter ....... 0/0014 0.0000 TransWARE Active!hunter
|
5
|
+
MTA::ApacheJames ........ 0/0006 0.0000 Java Apache Mail Enterprise Server
|
6
|
+
MTA::Courier ............ 14/0016 0.8750 Courier MTA
|
7
|
+
MTA::Domino ............. 7/0015 0.4667 IBM Domino Server
|
8
|
+
MTA::Exchange ........... 1/0051 0.0196 Microsoft Exchange Server
|
9
|
+
MTA::Exim ............... 141/0171 0.8246 Exim
|
10
|
+
MTA::IMailServer ........ 0/0045 0.0000 IPSWITCH IMail Server
|
11
|
+
MTA::InterScanMSS ....... 0/0009 0.0000 Trend Micro InterScan Messaging Security Suite
|
12
|
+
MTA::MXLogic ............ 0/0014 0.0000 McAfee SaaS
|
13
|
+
MTA::MailFoundry ........ 0/0007 0.0000 MailFoundry
|
14
|
+
MTA::MailMarshalSMTP .... 0/0003 0.0000 Trustwave Secure Email Gateway
|
15
|
+
MTA::McAfee ............. 0/0010 0.0000 McAfee Email Appliance
|
16
|
+
MTA::MessagingServer .... 19/0022 0.8636 Oracle Communications Messaging Server
|
17
|
+
MTA::Notes .............. 0/0012 0.0000 Lotus Notes
|
18
|
+
MTA::OpenSMTPD .......... 5/0023 0.2174 OpenSMTPD
|
19
|
+
MTA::Postfix ............ 161/0179 0.8994 Postfix
|
20
|
+
MTA::Sendmail ........... 257/0243 1.0000 V8Sendmail: /usr/sbin/sendmail
|
21
|
+
MTA::SurfControl ........ 6/0008 0.7500 WebSense SurfControl
|
22
|
+
MTA::V5sendmail ......... 0/0386 0.0000 Sendmail version 5
|
23
|
+
MTA::X1 ................. 0/0007 0.0000 Unknown MTA #1
|
24
|
+
MTA::X2 ................. 0/0069 0.0000 Unknown MTA #2
|
25
|
+
MTA::X3 ................. 0/0012 0.0000 Unknown MTA #3
|
26
|
+
MTA::X4 ................. 0/0029 0.0000 Unknown MTA #4 qmail clones
|
27
|
+
MTA::X5 ................. 3/0003 1.0000 Unknown MTA #5
|
28
|
+
MTA::mFILTER ............ 0/0010 0.0000 Digital Arts m-FILTER
|
29
|
+
MTA::qmail .............. 51/0078 0.6538 qmail
|
30
|
+
MSP::DE::EinsUndEins .... 0/0003 0.0000 1&1: http://www.1and1.de
|
31
|
+
MSP::DE::GMX ............ 0/0010 0.0000 GMX: http://www.gmx.net
|
32
|
+
MSP::JP::Biglobe ........ 0/0007 0.0000 BIGLOBE: http://www.biglobe.ne.jp
|
33
|
+
MSP::JP::EZweb .......... 130/0125 1.0000 au EZweb: http://www.au.kddi.com/mobile/
|
34
|
+
MSP::JP::KDDI ........... 6/0006 1.0000 au by KDDI: http://www.au.kddi.com
|
35
|
+
MSP::RU::MailRu ......... 4/0014 0.2857 @mail.ru: https://mail.ru
|
36
|
+
MSP::RU::Yandex ......... 4/0007 0.5714 Yandex.Mail: http://www.yandex.ru
|
37
|
+
MSP::UK::MessageLabs .... 2/0002 1.0000 Symantec.cloud http://www.messagelabs.com
|
38
|
+
MSP::US::AmazonSES ...... 18/0018 1.0000 Amazon SES(Sending): http://aws.amazon.com/ses/
|
39
|
+
MSP::US::AmazonWorkMail . 6/0010 0.6000 Amazon WorkMail: https://aws.amazon.com/workmail/
|
40
|
+
MSP::US::Aol ............ 18/0021 0.8571 Aol Mail: http://www.aol.com
|
41
|
+
MSP::US::Bigfoot ........ 2/0002 1.0000 Bigfoot: http://www.bigfoot.com
|
42
|
+
MSP::US::Facebook ....... 3/0003 1.0000 Facebook: https://www.facebook.com
|
43
|
+
MSP::US::Google ......... 0/0058 0.0000 Google Gmail: https://mail.google.com
|
44
|
+
MSP::US::Office365 ...... 6/0007 0.8571 Microsoft Office 365: http://office.microsoft.com/
|
45
|
+
MSP::US::Outlook ........ 19/0021 0.9048 Microsoft Outlook.com: https://www.outlook.com/
|
46
|
+
MSP::US::ReceivingSES ... 0/0007 0.0000 Amazon SES(Receiving): http://aws.amazon.com/ses/
|
47
|
+
MSP::US::SendGrid ....... 0/0012 0.0000 SendGrid: http://sendgrid.com/
|
48
|
+
MSP::US::Verizon ........ 3/0003 1.0000 Verizon Wireless: http://www.verizonwireless.com
|
49
|
+
MSP::US::Yahoo .......... 0/0009 0.0000 Yahoo! MAIL: https://www.yahoo.com
|
50
|
+
MSP::US::Zoho ........... 0/0011 0.0000 Zoho Mail: https://www.zoho.com
|
51
|
+
ARF ..................... 9/0050 0.1800 Abuse Feedback Reporting Format
|
52
|
+
RFC3464 ................. 130/0273 0.4762 Fallback Module for MTAs
|
53
|
+
RFC3834 ................. 0/0004 0.0000 Detector for auto replied message
|
54
|
+
-------------------------------------------------------------------------------
|
55
|
+
bounceHammer 2.7.13p3 1025/2125 0.4824
|
56
|
+
Sisimai 4.16.0 2125/2125 1.0000
|
data/Changes
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
Revision history for Ruby version of Sisimai
|
2
|
+
|
3
|
+
4.16.0 Thu, 18 Feb 2016 13:49:01 +0900 (JST)
|
4
|
+
- Implement new reason "delivered". Sisimai set "delivered" to the reason
|
5
|
+
when the value of Status: field in a bounce message begins with "2". This
|
6
|
+
feature is optional and is not enabled by default.
|
7
|
+
- Implement new method Sisimai.engine. the method returns the list of MTA
|
8
|
+
and MSP module list implemented in Sisimai.
|
9
|
+
- Fix serious bug (`gem install` fails on JRuby environment) in Gemfile and
|
10
|
+
sisimai.gemspec. This bug is reported at issue #46 and pull-request #47.
|
11
|
+
Thanks to @hiroyuki-sato and all the people who helped for resolving this
|
12
|
+
issue on https://github.com/rubygems/rubygems/issues/1492.
|
13
|
+
|
14
|
+
4.15.1 Wed, 17 Feb 2016 01:36:45 +0900 (JST)
|
15
|
+
- Fix serious bug `gem install sisimai` fails on JRuby, reported at issue
|
16
|
+
#46. Thanks to @hiroyuki-sato.
|
17
|
+
|
18
|
+
4.15.0 Sat, 13 Feb 2016 12:40:15 +0900 (JST)
|
19
|
+
- Beginning with this version, Sisimai requires Oj(MRI) or JrJackson(JRuby)
|
20
|
+
for encoding parsed data to JSON string more faster (about 10%-20% faster
|
21
|
+
than before). Implemented at pull-request #44 and discussed in issue #42.
|
22
|
+
Thanks to @hiroyuki-sato.
|
23
|
+
- Implement new MTA/MSP module "Sisimai::MSP::US::AmazonWorkMail" to parse
|
24
|
+
bounce mails via Amazon WorkMail. The module and test codes are imported
|
25
|
+
from https://github.com/sisimai/p5-Sisimai/pull/162.
|
26
|
+
- Implement new MTA/MSP module "Sisimai::MSP::US::Office365" to parse error
|
27
|
+
mails via Microsoft Office 365. The module, test codes, and sample emails
|
28
|
+
are imported from https://github.com/sisimai/p5-Sisimai/pull/164.
|
29
|
+
- New method Sisimai::Address#to_s to get a email address as String, it is
|
30
|
+
implemented at pull-request #39. Thanks to @hiroyuki-sato.
|
31
|
+
- Almost all of the class variables are removed for resolving issue #40 and
|
32
|
+
merged pull-request #43, thanks to @hiroyuki-sato.
|
33
|
+
|
34
|
+
4.14.2 Wed, 3 Feb 2016 13:29:17 +0900 (JST)
|
35
|
+
- The first release of rb-Sisimai.
|
36
|
+
|
data/Developers.mk
ADDED
@@ -0,0 +1,129 @@
|
|
1
|
+
# p5-Sisimai/Developers.mk
|
2
|
+
# ____ _ _
|
3
|
+
# | _ \ _____ _____| | ___ _ __ ___ _ __ ___ _ __ ___ | | __
|
4
|
+
# | | | |/ _ \ \ / / _ \ |/ _ \| '_ \ / _ \ '__/ __| | '_ ` _ \| |/ /
|
5
|
+
# | |_| | __/\ V / __/ | (_) | |_) | __/ | \__ \_| | | | | | <
|
6
|
+
# |____/ \___| \_/ \___|_|\___/| .__/ \___|_| |___(_)_| |_| |_|_|\_\
|
7
|
+
# |_|
|
8
|
+
# -----------------------------------------------------------------------------
|
9
|
+
SHELL := /bin/sh
|
10
|
+
HERE := $(shell pwd)
|
11
|
+
NAME := Sisimai
|
12
|
+
RUBY := ruby
|
13
|
+
MKDIR := mkdir -p
|
14
|
+
LS := ls -1
|
15
|
+
CP := cp
|
16
|
+
RM := rm -f
|
17
|
+
|
18
|
+
BH_LATESTVER := 2.7.13p3
|
19
|
+
MBOXPARSERV0 := /usr/local/bouncehammer/bin/mailboxparser -T
|
20
|
+
PERL_SISIMAI := p5-Sisimai
|
21
|
+
PRECISIONTAB := ANALYTICAL-PRECISION
|
22
|
+
BENCHMARKDIR := tmp/benchmark
|
23
|
+
PARSERLOGDIR := var/log
|
24
|
+
MTAMODULEDIR := lib/sisimai/mta
|
25
|
+
MSPMODULEDIR := lib/sisimai/msp
|
26
|
+
MTARELATIVES := ARF rfc3464 rfc3834
|
27
|
+
EMAIL_PARSER := sbin/emparser
|
28
|
+
BENCHMARKEMP := sbin/mp
|
29
|
+
VELOCITYTEST := tmp/emails-for-velocity-measurement
|
30
|
+
BENCHMARKSET := tmp/sample
|
31
|
+
SET_OF_EMAIL := set-of-emails
|
32
|
+
PRIVATEMAILS := $(SET_OF_EMAIL)/private
|
33
|
+
PUBLICEMAILS := $(SET_OF_EMAIL)/maildir/bsd
|
34
|
+
DOSFORMATSET := $(SET_OF_EMAIL)/maildir/dos
|
35
|
+
MACFORMATSET := $(SET_OF_EMAIL)/maildir/mac
|
36
|
+
INDEX_LENGTH := 24
|
37
|
+
DESCR_LENGTH := 48
|
38
|
+
BH_CAN_PARSE := courier exim messagingserver postfix sendmail surfcontrol x5 \
|
39
|
+
jp-ezweb jp-kddi ru-yandex uk-messagelabs us-amazonses us-aol \
|
40
|
+
us-bigfoot us-facebook us-outlook us-verizon
|
41
|
+
|
42
|
+
# -----------------------------------------------------------------------------
|
43
|
+
.PHONY: clean
|
44
|
+
|
45
|
+
private-sample:
|
46
|
+
$(RM) -r ./$(PRIVATEMAILS)
|
47
|
+
$(CP) -vRp ../$(PERL_SISIMAI)/$(PRIVATEMAILS) $(SET_OF_EMAIL)
|
48
|
+
|
49
|
+
precision-table:
|
50
|
+
cat ../$(PERL_SISIMAI)/$(PRECISIONTAB) | sed \
|
51
|
+
-e 's/MTA::qmail/MTA::Qmail/g' \
|
52
|
+
-e 's/MTA::mFILTER/MTA::MFILTER/g' > $(PRECISIONTAB)
|
53
|
+
|
54
|
+
update-sample-emails:
|
55
|
+
for v in `find $(PUBLICEMAILS) -name '*-01.eml' -type f`; do \
|
56
|
+
f="`basename $$v`" ;\
|
57
|
+
nkf -Lw $$v > $(DOSFORMATSET)/$$f ;\
|
58
|
+
nkf -Lm $$v > $(MACFORMATSET)/$$f ;\
|
59
|
+
done
|
60
|
+
|
61
|
+
sample:
|
62
|
+
for v in `$(LS) ./$(MTAMODULEDIR)/*.rb | grep -v userdefined`; do \
|
63
|
+
MTA=`echo $$v | cut -d/ -f5 | tr '[A-Z]' '[a-z]' | sed 's/.rb//g'` ;\
|
64
|
+
$(MKDIR) $(BENCHMARKSET)/$$MTA ;\
|
65
|
+
$(CP) $(PUBLICEMAILS)/$$MTA-*.eml $(BENCHMARKSET)/$$MTA/ ;\
|
66
|
+
$(CP) $(PRIVATEMAILS)/$$MTA/* $(BENCHMARKSET)/$$MTA/ ;\
|
67
|
+
done
|
68
|
+
for c in `$(LS) ./$(MSPMODULEDIR)`; do \
|
69
|
+
for v in `$(LS) ./$(MSPMODULEDIR)/$$c/*.rb`; do \
|
70
|
+
DIR=`echo $$c | tr '[A-Z]' '[a-z]' | tr -d '/'` ;\
|
71
|
+
MSP="`echo $$v | cut -d/ -f6 | tr '[A-Z]' '[a-z]' | sed 's/.rb//g'`" ;\
|
72
|
+
$(MKDIR) $(BENCHMARKSET)/$$DIR-$$MSP ;\
|
73
|
+
$(CP) $(PUBLICEMAILS)/$$DIR-$$MSP-*.eml $(BENCHMARKSET)/$$DIR-$$MSP/ ;\
|
74
|
+
$(CP) $(PRIVATEMAILS)/$$DIR-$$MSP/* $(BENCHMARKSET)/$$DIR-$$MSP/ ;\
|
75
|
+
done ;\
|
76
|
+
done
|
77
|
+
for v in arf rfc3464 rfc3834; do \
|
78
|
+
$(MKDIR) $(BENCHMARKSET)/$$v ;\
|
79
|
+
$(CP) $(PUBLICEMAILS)/$$v*.eml $(BENCHMARKSET)/$$v/ ;\
|
80
|
+
$(CP) $(PRIVATEMAILS)/$$v/* $(BENCHMARKSET)/$$v/ ;\
|
81
|
+
done
|
82
|
+
|
83
|
+
profile: benchmark-mbox
|
84
|
+
$(RUBY) -rprofile $(EMAIL_PARSER) $(BENCHMARKDIR) > /dev/null
|
85
|
+
|
86
|
+
velocity-measurement:
|
87
|
+
@ $(MKDIR) $(VELOCITYTEST)
|
88
|
+
@ for v in $(BH_CAN_PARSE); do \
|
89
|
+
$(CP) $(PUBLICEMAILS)/$$v-*.eml $(VELOCITYTEST)/; \
|
90
|
+
$(CP) $(PRIVATEMAILS)/$$v/*.eml $(VELOCITYTEST)/; \
|
91
|
+
done
|
92
|
+
@ echo -------------------------------------------------------------------
|
93
|
+
@ echo `$(LS) $(VELOCITYTEST) | wc -l` emails in $(VELOCITYTEST)
|
94
|
+
@ echo -n 'Calculating the velocity of 1000 mails: multiply by '
|
95
|
+
@ echo "scale=4; 1000 / `$(LS) $(VELOCITYTEST) | wc -l`" | bc
|
96
|
+
@ echo -n 'Calculating the velocity of 2000 mails: multiply by '
|
97
|
+
@ echo "scale=4; 2000 / `$(LS) $(VELOCITYTEST) | wc -l`" | bc
|
98
|
+
@ echo -------------------------------------------------------------------
|
99
|
+
@ echo 'Sisimai(1)' $(BENCHMARKEMP)
|
100
|
+
@ n=1; while [ $$n -le 5 ]; do \
|
101
|
+
/usr/bin/time $(BENCHMARKEMP) $(VELOCITYTEST) > /dev/null ;\
|
102
|
+
sleep 1; \
|
103
|
+
n=`expr $$n + 1`; \
|
104
|
+
done
|
105
|
+
@ echo -------------------------------------------------------------------
|
106
|
+
@ echo bounceHammer $(BH_LATESTVER)
|
107
|
+
@ n=1; while [ $$n -le 5 ]; do \
|
108
|
+
/usr/bin/time $(MBOXPARSERV0) -Fjson $(VELOCITYTEST) > /dev/null ;\
|
109
|
+
sleep 1; \
|
110
|
+
n=`expr $$n + 1`; \
|
111
|
+
done
|
112
|
+
|
113
|
+
benchmark-mbox: sample
|
114
|
+
$(MKDIR) -p $(BENCHMARKDIR)
|
115
|
+
$(CP) `find $(BENCHMARKSET) -type f` $(BENCHMARKDIR)/
|
116
|
+
|
117
|
+
loc:
|
118
|
+
@ for v in `find lib -type f -name '*.rb'`; do \
|
119
|
+
x=`wc -l $$v | awk '{ print $$1 }'`; \
|
120
|
+
z=`grep -E '^\s*#|^$$' $$v | wc -l | awk '{ print $$1 }'`; \
|
121
|
+
echo "$$x - $$z" | bc ;\
|
122
|
+
done | awk '{ s += $$1 } END { print s }'
|
123
|
+
|
124
|
+
clean:
|
125
|
+
$(RM) -r ./$(BENCHMARKSET)
|
126
|
+
$(RM) -r ./$(BENCHMARKDIR)
|
127
|
+
$(RM) -f tmp/subject-list tmp/senders-list
|
128
|
+
|
129
|
+
|