sisimai 4.14.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of sisimai might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/.gitignore +12 -0
- data/.rspec +2 -0
- data/.rubocop.yml +165 -0
- data/.travis.yml +21 -0
- data/ANALYTICAL-PRECISION +54 -0
- data/Changes +5 -0
- data/Developers.mk +129 -0
- data/Gemfile +9 -0
- data/LICENSE +26 -0
- data/Makefile +56 -0
- data/README.md +300 -0
- data/Rakefile +7 -0
- data/Repository.mk +69 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lib/sisimai.rb +60 -0
- data/lib/sisimai/address.rb +218 -0
- data/lib/sisimai/arf.rb +343 -0
- data/lib/sisimai/data.rb +413 -0
- data/lib/sisimai/data/json.rb +36 -0
- data/lib/sisimai/data/yaml.rb +32 -0
- data/lib/sisimai/datetime.rb +518 -0
- data/lib/sisimai/mail.rb +82 -0
- data/lib/sisimai/mail/maildir.rb +85 -0
- data/lib/sisimai/mail/mbox.rb +69 -0
- data/lib/sisimai/mail/stdin.rb +52 -0
- data/lib/sisimai/mda.rb +152 -0
- data/lib/sisimai/message.rb +510 -0
- data/lib/sisimai/mime.rb +127 -0
- data/lib/sisimai/msp.rb +54 -0
- data/lib/sisimai/msp/de/einsundeins.rb +174 -0
- data/lib/sisimai/msp/de/gmx.rb +197 -0
- data/lib/sisimai/msp/jp/biglobe.rb +179 -0
- data/lib/sisimai/msp/jp/ezweb.rb +292 -0
- data/lib/sisimai/msp/jp/kddi.rb +195 -0
- data/lib/sisimai/msp/ru/mailru.rb +306 -0
- data/lib/sisimai/msp/ru/yandex.rb +241 -0
- data/lib/sisimai/msp/uk/messagelabs.rb +250 -0
- data/lib/sisimai/msp/us/amazonses.rb +248 -0
- data/lib/sisimai/msp/us/aol.rb +234 -0
- data/lib/sisimai/msp/us/bigfoot.rb +243 -0
- data/lib/sisimai/msp/us/facebook.rb +306 -0
- data/lib/sisimai/msp/us/google.rb +357 -0
- data/lib/sisimai/msp/us/outlook.rb +243 -0
- data/lib/sisimai/msp/us/receivingses.rb +247 -0
- data/lib/sisimai/msp/us/sendgrid.rb +257 -0
- data/lib/sisimai/msp/us/verizon.rb +311 -0
- data/lib/sisimai/msp/us/yahoo.rb +178 -0
- data/lib/sisimai/msp/us/zoho.rb +198 -0
- data/lib/sisimai/mta.rb +55 -0
- data/lib/sisimai/mta/activehunter.rb +155 -0
- data/lib/sisimai/mta/apachejames.rb +194 -0
- data/lib/sisimai/mta/courier.rb +307 -0
- data/lib/sisimai/mta/domino.rb +209 -0
- data/lib/sisimai/mta/exchange.rb +314 -0
- data/lib/sisimai/mta/exim.rb +549 -0
- data/lib/sisimai/mta/imailserver.rb +227 -0
- data/lib/sisimai/mta/interscanmss.rb +167 -0
- data/lib/sisimai/mta/mailfoundry.rb +173 -0
- data/lib/sisimai/mta/mailmarshalsmtp.rb +206 -0
- data/lib/sisimai/mta/mcafee.rb +201 -0
- data/lib/sisimai/mta/messagingserver.rb +241 -0
- data/lib/sisimai/mta/mfilter.rb +190 -0
- data/lib/sisimai/mta/mxlogic.rb +283 -0
- data/lib/sisimai/mta/notes.rb +206 -0
- data/lib/sisimai/mta/opensmtpd.rb +225 -0
- data/lib/sisimai/mta/postfix.rb +306 -0
- data/lib/sisimai/mta/qmail.rb +335 -0
- data/lib/sisimai/mta/sendmail.rb +317 -0
- data/lib/sisimai/mta/surfcontrol.rb +193 -0
- data/lib/sisimai/mta/userdefined.rb +148 -0
- data/lib/sisimai/mta/v5sendmail.rb +232 -0
- data/lib/sisimai/mta/x1.rb +156 -0
- data/lib/sisimai/mta/x2.rb +157 -0
- data/lib/sisimai/mta/x3.rb +171 -0
- data/lib/sisimai/mta/x4.rb +365 -0
- data/lib/sisimai/mta/x5.rb +208 -0
- data/lib/sisimai/order.rb +217 -0
- data/lib/sisimai/reason.rb +235 -0
- data/lib/sisimai/reason/blocked.rb +105 -0
- data/lib/sisimai/reason/contenterror.rb +53 -0
- data/lib/sisimai/reason/exceedlimit.rb +60 -0
- data/lib/sisimai/reason/expired.rb +53 -0
- data/lib/sisimai/reason/filtered.rb +98 -0
- data/lib/sisimai/reason/hasmoved.rb +45 -0
- data/lib/sisimai/reason/hostunknown.rb +74 -0
- data/lib/sisimai/reason/mailboxfull.rb +118 -0
- data/lib/sisimai/reason/mailererror.rb +55 -0
- data/lib/sisimai/reason/mesgtoobig.rb +77 -0
- data/lib/sisimai/reason/networkerror.rb +57 -0
- data/lib/sisimai/reason/norelaying.rb +71 -0
- data/lib/sisimai/reason/notaccept.rb +63 -0
- data/lib/sisimai/reason/onhold.rb +45 -0
- data/lib/sisimai/reason/rejected.rb +101 -0
- data/lib/sisimai/reason/securityerror.rb +72 -0
- data/lib/sisimai/reason/spamdetected.rb +172 -0
- data/lib/sisimai/reason/suspend.rb +58 -0
- data/lib/sisimai/reason/systemerror.rb +69 -0
- data/lib/sisimai/reason/systemfull.rb +45 -0
- data/lib/sisimai/reason/toomanyconn.rb +73 -0
- data/lib/sisimai/reason/userunknown.rb +194 -0
- data/lib/sisimai/rfc2606.rb +24 -0
- data/lib/sisimai/rfc3464.rb +497 -0
- data/lib/sisimai/rfc3834.rb +150 -0
- data/lib/sisimai/rfc5322.rb +204 -0
- data/lib/sisimai/rhost.rb +47 -0
- data/lib/sisimai/rhost/googleapps.rb +237 -0
- data/lib/sisimai/smtp.rb +58 -0
- data/lib/sisimai/smtp/reply.rb +81 -0
- data/lib/sisimai/smtp/status.rb +755 -0
- data/lib/sisimai/string.rb +65 -0
- data/lib/sisimai/time.rb +11 -0
- data/lib/sisimai/version.rb +4 -0
- data/set-of-emails/README.md +35 -0
- data/set-of-emails/mailbox/mbox-0 +2467 -0
- data/set-of-emails/mailbox/mbox-1 +71 -0
- data/set-of-emails/maildir/bsd/README.md +261 -0
- data/set-of-emails/maildir/bsd/activehunter-01.eml +54 -0
- data/set-of-emails/maildir/bsd/activehunter-02.eml +53 -0
- data/set-of-emails/maildir/bsd/apachejames-01.eml +46 -0
- data/set-of-emails/maildir/bsd/arf-01.eml +66 -0
- data/set-of-emails/maildir/bsd/arf-02.eml +68 -0
- data/set-of-emails/maildir/bsd/arf-03.eml +56 -0
- data/set-of-emails/maildir/bsd/arf-04.eml +89 -0
- data/set-of-emails/maildir/bsd/arf-05.eml +82 -0
- data/set-of-emails/maildir/bsd/arf-06.eml +166 -0
- data/set-of-emails/maildir/bsd/arf-07.eml +59 -0
- data/set-of-emails/maildir/bsd/arf-08.eml +103 -0
- data/set-of-emails/maildir/bsd/arf-09.eml +104 -0
- data/set-of-emails/maildir/bsd/arf-10.eml +56 -0
- data/set-of-emails/maildir/bsd/arf-11.eml +37 -0
- data/set-of-emails/maildir/bsd/arf-12.eml +40 -0
- data/set-of-emails/maildir/bsd/arf-13.eml +76 -0
- data/set-of-emails/maildir/bsd/arf-14.eml +333 -0
- data/set-of-emails/maildir/bsd/arf-15.eml +66 -0
- data/set-of-emails/maildir/bsd/courier-01.eml +79 -0
- data/set-of-emails/maildir/bsd/courier-02.eml +83 -0
- data/set-of-emails/maildir/bsd/courier-03.eml +85 -0
- data/set-of-emails/maildir/bsd/courier-04.eml +87 -0
- data/set-of-emails/maildir/bsd/de-einsundeins-01.eml +38 -0
- data/set-of-emails/maildir/bsd/de-gmx-01.eml +52 -0
- data/set-of-emails/maildir/bsd/de-gmx-02.eml +51 -0
- data/set-of-emails/maildir/bsd/de-gmx-03.eml +56 -0
- data/set-of-emails/maildir/bsd/de-gmx-04.eml +51 -0
- data/set-of-emails/maildir/bsd/domino-01.eml +33 -0
- data/set-of-emails/maildir/bsd/domino-02.eml +83 -0
- data/set-of-emails/maildir/bsd/exchange-01.eml +31 -0
- data/set-of-emails/maildir/bsd/exchange-02.eml +67 -0
- data/set-of-emails/maildir/bsd/exchange-03.eml +52 -0
- data/set-of-emails/maildir/bsd/exchange-04.eml +28 -0
- data/set-of-emails/maildir/bsd/exchange-05.eml +56 -0
- data/set-of-emails/maildir/bsd/exchange-06.eml +151 -0
- data/set-of-emails/maildir/bsd/exim-01.eml +46 -0
- data/set-of-emails/maildir/bsd/exim-02.eml +41 -0
- data/set-of-emails/maildir/bsd/exim-03.eml +42 -0
- data/set-of-emails/maildir/bsd/exim-04.eml +46 -0
- data/set-of-emails/maildir/bsd/exim-05.eml +49 -0
- data/set-of-emails/maildir/bsd/exim-06.eml +44 -0
- data/set-of-emails/maildir/bsd/exim-07.eml +28 -0
- data/set-of-emails/maildir/bsd/exim-08.eml +42 -0
- data/set-of-emails/maildir/bsd/exim-09.eml +169 -0
- data/set-of-emails/maildir/bsd/exim-10.eml +718 -0
- data/set-of-emails/maildir/bsd/exim-11.eml +718 -0
- data/set-of-emails/maildir/bsd/exim-12.eml +75 -0
- data/set-of-emails/maildir/bsd/exim-13.eml +145 -0
- data/set-of-emails/maildir/bsd/exim-14.eml +32 -0
- data/set-of-emails/maildir/bsd/exim-15.eml +49 -0
- data/set-of-emails/maildir/bsd/exim-16.eml +98 -0
- data/set-of-emails/maildir/bsd/exim-17.eml +50 -0
- data/set-of-emails/maildir/bsd/exim-18.eml +96 -0
- data/set-of-emails/maildir/bsd/exim-19.eml +52 -0
- data/set-of-emails/maildir/bsd/exim-20.eml +159 -0
- data/set-of-emails/maildir/bsd/exim-21.eml +150 -0
- data/set-of-emails/maildir/bsd/exim-22.eml +50 -0
- data/set-of-emails/maildir/bsd/exim-23.eml +57 -0
- data/set-of-emails/maildir/bsd/exim-24.eml +107 -0
- data/set-of-emails/maildir/bsd/exim-25.eml +18 -0
- data/set-of-emails/maildir/bsd/exim-26.eml +111 -0
- data/set-of-emails/maildir/bsd/exim-27.eml +120 -0
- data/set-of-emails/maildir/bsd/exim-28.eml +148 -0
- data/set-of-emails/maildir/bsd/google-apps-01.eml +66 -0
- data/set-of-emails/maildir/bsd/imailserver-01.eml +27 -0
- data/set-of-emails/maildir/bsd/imailserver-02.eml +36 -0
- data/set-of-emails/maildir/bsd/imailserver-03.eml +28 -0
- data/set-of-emails/maildir/bsd/imailserver-04.eml +15 -0
- data/set-of-emails/maildir/bsd/imailserver-05.eml +92 -0
- data/set-of-emails/maildir/bsd/imailserver-06.eml +29 -0
- data/set-of-emails/maildir/bsd/interscanmss-01.eml +49 -0
- data/set-of-emails/maildir/bsd/interscanmss-02.eml +259 -0
- data/set-of-emails/maildir/bsd/jp-biglobe-01.eml +43 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-01.eml +36 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-02.eml +65 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-03.eml +35 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-04.eml +38 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-05.eml +38 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-06.eml +33 -0
- data/set-of-emails/maildir/bsd/jp-kddi-01.eml +49 -0
- data/set-of-emails/maildir/bsd/jp-kddi-02.eml +54 -0
- data/set-of-emails/maildir/bsd/jp-kddi-03.eml +54 -0
- data/set-of-emails/maildir/bsd/mailfoundry-01.eml +50 -0
- data/set-of-emails/maildir/bsd/mailfoundry-02.eml +49 -0
- data/set-of-emails/maildir/bsd/mailmarshalsmtp-01.eml +43 -0
- data/set-of-emails/maildir/bsd/mcafee-01.eml +63 -0
- data/set-of-emails/maildir/bsd/mcafee-02.eml +65 -0
- data/set-of-emails/maildir/bsd/mcafee-03.eml +59 -0
- data/set-of-emails/maildir/bsd/messagingserver-01.eml +102 -0
- data/set-of-emails/maildir/bsd/messagingserver-02.eml +72 -0
- data/set-of-emails/maildir/bsd/messagingserver-03.eml +70 -0
- data/set-of-emails/maildir/bsd/messagingserver-04.eml +102 -0
- data/set-of-emails/maildir/bsd/messagingserver-05.eml +98 -0
- data/set-of-emails/maildir/bsd/messagingserver-06.eml +101 -0
- data/set-of-emails/maildir/bsd/messagingserver-07.eml +129 -0
- data/set-of-emails/maildir/bsd/mfilter-01.eml +49 -0
- data/set-of-emails/maildir/bsd/mfilter-02.eml +48 -0
- data/set-of-emails/maildir/bsd/mfilter-03.eml +43 -0
- data/set-of-emails/maildir/bsd/mxlogic-01.eml +47 -0
- data/set-of-emails/maildir/bsd/mxlogic-02.eml +44 -0
- data/set-of-emails/maildir/bsd/mxlogic-03.eml +46 -0
- data/set-of-emails/maildir/bsd/notes-01.eml +42 -0
- data/set-of-emails/maildir/bsd/notes-02.eml +42 -0
- data/set-of-emails/maildir/bsd/notes-03.eml +38 -0
- data/set-of-emails/maildir/bsd/notes-04.eml +181 -0
- data/set-of-emails/maildir/bsd/opensmtpd-01.eml +33 -0
- data/set-of-emails/maildir/bsd/opensmtpd-02.eml +33 -0
- data/set-of-emails/maildir/bsd/opensmtpd-03.eml +36 -0
- data/set-of-emails/maildir/bsd/opensmtpd-04.eml +40 -0
- data/set-of-emails/maildir/bsd/opensmtpd-05.eml +36 -0
- data/set-of-emails/maildir/bsd/postfix-01.eml +60 -0
- data/set-of-emails/maildir/bsd/postfix-02.eml +78 -0
- data/set-of-emails/maildir/bsd/postfix-03.eml +71 -0
- data/set-of-emails/maildir/bsd/postfix-04.eml +89 -0
- data/set-of-emails/maildir/bsd/postfix-05.eml +78 -0
- data/set-of-emails/maildir/bsd/postfix-06.eml +72 -0
- data/set-of-emails/maildir/bsd/postfix-07.eml +74 -0
- data/set-of-emails/maildir/bsd/postfix-08.eml +78 -0
- data/set-of-emails/maildir/bsd/postfix-09.eml +76 -0
- data/set-of-emails/maildir/bsd/postfix-10.eml +73 -0
- data/set-of-emails/maildir/bsd/postfix-11.eml +86 -0
- data/set-of-emails/maildir/bsd/postfix-12.eml +71 -0
- data/set-of-emails/maildir/bsd/postfix-13.eml +81 -0
- data/set-of-emails/maildir/bsd/postfix-14.eml +68 -0
- data/set-of-emails/maildir/bsd/postfix-15.eml +69 -0
- data/set-of-emails/maildir/bsd/postfix-16.eml +73 -0
- data/set-of-emails/maildir/bsd/postfix-17.eml +68 -0
- data/set-of-emails/maildir/bsd/postfix-18.eml +121 -0
- data/set-of-emails/maildir/bsd/postfix-19.eml +105 -0
- data/set-of-emails/maildir/bsd/postfix-20.eml +231 -0
- data/set-of-emails/maildir/bsd/postfix-21.eml +60 -0
- data/set-of-emails/maildir/bsd/qmail-01.eml +40 -0
- data/set-of-emails/maildir/bsd/qmail-02.eml +35 -0
- data/set-of-emails/maildir/bsd/qmail-03.eml +22 -0
- data/set-of-emails/maildir/bsd/qmail-04.eml +31 -0
- data/set-of-emails/maildir/bsd/qmail-05.eml +31 -0
- data/set-of-emails/maildir/bsd/qmail-06.eml +39 -0
- data/set-of-emails/maildir/bsd/qmail-07.eml +22 -0
- data/set-of-emails/maildir/bsd/qmail-08.eml +23 -0
- data/set-of-emails/maildir/bsd/qmail-09.eml +103 -0
- data/set-of-emails/maildir/bsd/rfc3464-01.eml +60 -0
- data/set-of-emails/maildir/bsd/rfc3464-02.eml +43 -0
- data/set-of-emails/maildir/bsd/rfc3464-03.eml +40 -0
- data/set-of-emails/maildir/bsd/rfc3464-04.eml +50 -0
- data/set-of-emails/maildir/bsd/rfc3464-05.eml +63 -0
- data/set-of-emails/maildir/bsd/rfc3464-06.eml +48 -0
- data/set-of-emails/maildir/bsd/rfc3464-07.eml +88 -0
- data/set-of-emails/maildir/bsd/rfc3464-08.eml +70 -0
- data/set-of-emails/maildir/bsd/rfc3464-09.eml +93 -0
- data/set-of-emails/maildir/bsd/rfc3464-10.eml +467 -0
- data/set-of-emails/maildir/bsd/rfc3464-11.eml +1171 -0
- data/set-of-emails/maildir/bsd/rfc3464-12.eml +101 -0
- data/set-of-emails/maildir/bsd/rfc3464-13.eml +131 -0
- data/set-of-emails/maildir/bsd/rfc3464-14.eml +121 -0
- data/set-of-emails/maildir/bsd/rfc3464-15.eml +144 -0
- data/set-of-emails/maildir/bsd/rfc3464-16.eml +36 -0
- data/set-of-emails/maildir/bsd/rfc3464-17.eml +109 -0
- data/set-of-emails/maildir/bsd/rfc3464-18.eml +149 -0
- data/set-of-emails/maildir/bsd/rfc3464-19.eml +65 -0
- data/set-of-emails/maildir/bsd/rfc3464-20.eml +145 -0
- data/set-of-emails/maildir/bsd/rfc3464-21.eml +146 -0
- data/set-of-emails/maildir/bsd/rfc3464-22.eml +105 -0
- data/set-of-emails/maildir/bsd/rfc3464-23.eml +21 -0
- data/set-of-emails/maildir/bsd/rfc3464-24.eml +27 -0
- data/set-of-emails/maildir/bsd/rfc3464-25.eml +33 -0
- data/set-of-emails/maildir/bsd/rfc3464-26.eml +98 -0
- data/set-of-emails/maildir/bsd/rfc3464-27.eml +180 -0
- data/set-of-emails/maildir/bsd/rfc3834-01.eml +37 -0
- data/set-of-emails/maildir/bsd/rfc3834-02.eml +51 -0
- data/set-of-emails/maildir/bsd/rfc3834-03.eml +33 -0
- data/set-of-emails/maildir/bsd/ru-mailru-01.eml +54 -0
- data/set-of-emails/maildir/bsd/ru-mailru-02.eml +54 -0
- data/set-of-emails/maildir/bsd/ru-mailru-03.eml +62 -0
- data/set-of-emails/maildir/bsd/ru-mailru-04.eml +54 -0
- data/set-of-emails/maildir/bsd/ru-yandex-01.eml +102 -0
- data/set-of-emails/maildir/bsd/ru-yandex-02.eml +113 -0
- data/set-of-emails/maildir/bsd/ru-yandex-03.eml +101 -0
- data/set-of-emails/maildir/bsd/sendmail-01.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-02.eml +82 -0
- data/set-of-emails/maildir/bsd/sendmail-03.eml +76 -0
- data/set-of-emails/maildir/bsd/sendmail-04.eml +63 -0
- data/set-of-emails/maildir/bsd/sendmail-05.eml +64 -0
- data/set-of-emails/maildir/bsd/sendmail-06.eml +67 -0
- data/set-of-emails/maildir/bsd/sendmail-07.eml +65 -0
- data/set-of-emails/maildir/bsd/sendmail-08.eml +62 -0
- data/set-of-emails/maildir/bsd/sendmail-09.eml +60 -0
- data/set-of-emails/maildir/bsd/sendmail-10.eml +82 -0
- data/set-of-emails/maildir/bsd/sendmail-11.eml +60 -0
- data/set-of-emails/maildir/bsd/sendmail-12.eml +62 -0
- data/set-of-emails/maildir/bsd/sendmail-13.eml +66 -0
- data/set-of-emails/maildir/bsd/sendmail-14.eml +64 -0
- data/set-of-emails/maildir/bsd/sendmail-15.eml +60 -0
- data/set-of-emails/maildir/bsd/sendmail-16.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-17.eml +68 -0
- data/set-of-emails/maildir/bsd/sendmail-18.eml +64 -0
- data/set-of-emails/maildir/bsd/sendmail-19.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-20.eml +120 -0
- data/set-of-emails/maildir/bsd/sendmail-21.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-22.eml +73 -0
- data/set-of-emails/maildir/bsd/sendmail-23.eml +137 -0
- data/set-of-emails/maildir/bsd/sendmail-24.eml +66 -0
- data/set-of-emails/maildir/bsd/sendmail-25.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-26.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-27.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-28.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-29.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-30.eml +68 -0
- data/set-of-emails/maildir/bsd/sendmail-31.eml +80 -0
- data/set-of-emails/maildir/bsd/sendmail-32.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-33.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-34.eml +75 -0
- data/set-of-emails/maildir/bsd/sendmail-35.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-36.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-37.eml +71 -0
- data/set-of-emails/maildir/bsd/surfcontrol-01.eml +79 -0
- data/set-of-emails/maildir/bsd/surfcontrol-02.eml +70 -0
- data/set-of-emails/maildir/bsd/surfcontrol-03.eml +70 -0
- data/set-of-emails/maildir/bsd/uk-messagelabs-01.eml +76 -0
- data/set-of-emails/maildir/bsd/us-amazonses-01.eml +59 -0
- data/set-of-emails/maildir/bsd/us-amazonses-02.eml +177 -0
- data/set-of-emails/maildir/bsd/us-amazonses-03.eml +55 -0
- data/set-of-emails/maildir/bsd/us-amazonses-04.eml +55 -0
- data/set-of-emails/maildir/bsd/us-aol-01.eml +1258 -0
- data/set-of-emails/maildir/bsd/us-aol-02.eml +1257 -0
- data/set-of-emails/maildir/bsd/us-aol-03.eml +1264 -0
- data/set-of-emails/maildir/bsd/us-aol-04.eml +1260 -0
- data/set-of-emails/maildir/bsd/us-bigfoot-01.eml +64 -0
- data/set-of-emails/maildir/bsd/us-facebook-01.eml +40 -0
- data/set-of-emails/maildir/bsd/us-facebook-02.eml +42 -0
- data/set-of-emails/maildir/bsd/us-google-01.eml +70 -0
- data/set-of-emails/maildir/bsd/us-google-02.eml +50 -0
- data/set-of-emails/maildir/bsd/us-google-03.eml +51 -0
- data/set-of-emails/maildir/bsd/us-google-04.eml +82 -0
- data/set-of-emails/maildir/bsd/us-google-05.eml +50 -0
- data/set-of-emails/maildir/bsd/us-google-06.eml +56 -0
- data/set-of-emails/maildir/bsd/us-google-07.eml +42 -0
- data/set-of-emails/maildir/bsd/us-google-08.eml +59 -0
- data/set-of-emails/maildir/bsd/us-google-09.eml +76 -0
- data/set-of-emails/maildir/bsd/us-google-10.eml +69 -0
- data/set-of-emails/maildir/bsd/us-google-11.eml +68 -0
- data/set-of-emails/maildir/bsd/us-google-12.eml +76 -0
- data/set-of-emails/maildir/bsd/us-google-13.eml +79 -0
- data/set-of-emails/maildir/bsd/us-google-14.eml +304 -0
- data/set-of-emails/maildir/bsd/us-outlook-01.eml +72 -0
- data/set-of-emails/maildir/bsd/us-outlook-02.eml +72 -0
- data/set-of-emails/maildir/bsd/us-outlook-03.eml +72 -0
- data/set-of-emails/maildir/bsd/us-outlook-04.eml +79 -0
- data/set-of-emails/maildir/bsd/us-outlook-05.eml +85 -0
- data/set-of-emails/maildir/bsd/us-outlook-06.eml +75 -0
- data/set-of-emails/maildir/bsd/us-outlook-07.eml +70 -0
- data/set-of-emails/maildir/bsd/us-receivingses-01.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-02.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-03.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-04.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-05.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-06.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-07.eml +74 -0
- data/set-of-emails/maildir/bsd/us-sendgrid-01.eml +95 -0
- data/set-of-emails/maildir/bsd/us-sendgrid-02.eml +98 -0
- data/set-of-emails/maildir/bsd/us-sendgrid-03.eml +100 -0
- data/set-of-emails/maildir/bsd/us-verizon-01.eml +31 -0
- data/set-of-emails/maildir/bsd/us-yahoo-01.eml +78 -0
- data/set-of-emails/maildir/bsd/us-yahoo-02.eml +79 -0
- data/set-of-emails/maildir/bsd/us-yahoo-03.eml +93 -0
- data/set-of-emails/maildir/bsd/us-yahoo-04.eml +94 -0
- data/set-of-emails/maildir/bsd/us-yahoo-05.eml +94 -0
- data/set-of-emails/maildir/bsd/us-zoho-01.eml +40 -0
- data/set-of-emails/maildir/bsd/us-zoho-02.eml +38 -0
- data/set-of-emails/maildir/bsd/us-zoho-03.eml +37 -0
- data/set-of-emails/maildir/bsd/us-zoho-04.eml +47 -0
- data/set-of-emails/maildir/bsd/us-zoho-05.eml +37 -0
- data/set-of-emails/maildir/bsd/v5sendmail-01.eml +24 -0
- data/set-of-emails/maildir/bsd/v5sendmail-02.eml +26 -0
- data/set-of-emails/maildir/bsd/v5sendmail-03.eml +29 -0
- data/set-of-emails/maildir/bsd/v5sendmail-04.eml +29 -0
- data/set-of-emails/maildir/bsd/v5sendmail-05.eml +42 -0
- data/set-of-emails/maildir/bsd/v5sendmail-06.eml +28 -0
- data/set-of-emails/maildir/bsd/v5sendmail-07.eml +35 -0
- data/set-of-emails/maildir/bsd/x1-01.eml +61 -0
- data/set-of-emails/maildir/bsd/x1-02.eml +62 -0
- data/set-of-emails/maildir/bsd/x2-01.eml +41 -0
- data/set-of-emails/maildir/bsd/x2-02.eml +46 -0
- data/set-of-emails/maildir/bsd/x2-03.eml +34 -0
- data/set-of-emails/maildir/bsd/x2-04.eml +0 -0
- data/set-of-emails/maildir/bsd/x2-05.eml +98 -0
- data/set-of-emails/maildir/bsd/x3-01.eml +61 -0
- data/set-of-emails/maildir/bsd/x3-02.eml +64 -0
- data/set-of-emails/maildir/bsd/x3-03.eml +59 -0
- data/set-of-emails/maildir/bsd/x3-04.eml +106 -0
- data/set-of-emails/maildir/bsd/x4-01.eml +92 -0
- data/set-of-emails/maildir/bsd/x4-02.eml +112 -0
- data/set-of-emails/maildir/bsd/x4-03.eml +245 -0
- data/set-of-emails/maildir/bsd/x4-04.eml +81 -0
- data/set-of-emails/maildir/bsd/x4-05.eml +121 -0
- data/set-of-emails/maildir/bsd/x4-06.eml +32 -0
- data/set-of-emails/maildir/bsd/x4-07.eml +153 -0
- data/set-of-emails/maildir/bsd/x5-01.eml +155 -0
- data/set-of-emails/maildir/dos/activehunter-01.eml +54 -0
- data/set-of-emails/maildir/dos/apachejames-01.eml +46 -0
- data/set-of-emails/maildir/dos/arf-01.eml +66 -0
- data/set-of-emails/maildir/dos/courier-01.eml +79 -0
- data/set-of-emails/maildir/dos/de-einsundeins-01.eml +38 -0
- data/set-of-emails/maildir/dos/de-gmx-01.eml +52 -0
- data/set-of-emails/maildir/dos/domino-01.eml +33 -0
- data/set-of-emails/maildir/dos/exchange-01.eml +31 -0
- data/set-of-emails/maildir/dos/exim-01.eml +46 -0
- data/set-of-emails/maildir/dos/google-apps-01.eml +66 -0
- data/set-of-emails/maildir/dos/imailserver-01.eml +27 -0
- data/set-of-emails/maildir/dos/interscanmss-01.eml +49 -0
- data/set-of-emails/maildir/dos/jp-biglobe-01.eml +43 -0
- data/set-of-emails/maildir/dos/jp-ezweb-01.eml +36 -0
- data/set-of-emails/maildir/dos/jp-kddi-01.eml +49 -0
- data/set-of-emails/maildir/dos/mailfoundry-01.eml +50 -0
- data/set-of-emails/maildir/dos/mailmarshalsmtp-01.eml +43 -0
- data/set-of-emails/maildir/dos/mcafee-01.eml +63 -0
- data/set-of-emails/maildir/dos/messagingserver-01.eml +102 -0
- data/set-of-emails/maildir/dos/mfilter-01.eml +49 -0
- data/set-of-emails/maildir/dos/mxlogic-01.eml +47 -0
- data/set-of-emails/maildir/dos/notes-01.eml +42 -0
- data/set-of-emails/maildir/dos/opensmtpd-01.eml +33 -0
- data/set-of-emails/maildir/dos/postfix-01.eml +60 -0
- data/set-of-emails/maildir/dos/qmail-01.eml +40 -0
- data/set-of-emails/maildir/dos/rfc3464-01.eml +59 -0
- data/set-of-emails/maildir/dos/rfc3834-01.eml +37 -0
- data/set-of-emails/maildir/dos/ru-mailru-01.eml +54 -0
- data/set-of-emails/maildir/dos/ru-yandex-01.eml +102 -0
- data/set-of-emails/maildir/dos/sendmail-01.eml +69 -0
- data/set-of-emails/maildir/dos/surfcontrol-01.eml +79 -0
- data/set-of-emails/maildir/dos/uk-messagelabs-01.eml +76 -0
- data/set-of-emails/maildir/dos/us-amazonses-01.eml +59 -0
- data/set-of-emails/maildir/dos/us-aol-01.eml +1258 -0
- data/set-of-emails/maildir/dos/us-bigfoot-01.eml +64 -0
- data/set-of-emails/maildir/dos/us-facebook-01.eml +40 -0
- data/set-of-emails/maildir/dos/us-google-01.eml +70 -0
- data/set-of-emails/maildir/dos/us-outlook-01.eml +72 -0
- data/set-of-emails/maildir/dos/us-receivingses-01.eml +74 -0
- data/set-of-emails/maildir/dos/us-sendgrid-01.eml +95 -0
- data/set-of-emails/maildir/dos/us-verizon-01.eml +31 -0
- data/set-of-emails/maildir/dos/us-yahoo-01.eml +78 -0
- data/set-of-emails/maildir/dos/us-zoho-01.eml +40 -0
- data/set-of-emails/maildir/dos/v5sendmail-01.eml +24 -0
- data/set-of-emails/maildir/dos/x1-01.eml +61 -0
- data/set-of-emails/maildir/dos/x2-01.eml +41 -0
- data/set-of-emails/maildir/dos/x3-01.eml +61 -0
- data/set-of-emails/maildir/dos/x4-01.eml +90 -0
- data/set-of-emails/maildir/dos/x5-01.eml +155 -0
- data/set-of-emails/maildir/err/make-test-01.eml +70 -0
- data/set-of-emails/maildir/err/make-test-02.eml +70 -0
- data/set-of-emails/maildir/err/make-test-03.eml +64 -0
- data/set-of-emails/maildir/err/make-test-04.eml +64 -0
- data/set-of-emails/maildir/err/make-test-05.eml +66 -0
- data/set-of-emails/maildir/err/make-test-06.eml +118 -0
- data/set-of-emails/maildir/err/make-test-07.eml +26 -0
- data/set-of-emails/maildir/err/make-test-08.eml +67 -0
- data/set-of-emails/maildir/err/make-test-09.eml +55 -0
- data/set-of-emails/maildir/err/make-test-10.eml +69 -0
- data/set-of-emails/maildir/err/make-test-11.eml +64 -0
- data/set-of-emails/maildir/err/make-test-12.eml +66 -0
- data/set-of-emails/maildir/err/make-test-13.eml +67 -0
- data/set-of-emails/maildir/err/make-test-14.eml +66 -0
- data/set-of-emails/maildir/err/make-test-15.eml +70 -0
- data/set-of-emails/maildir/err/make-test-16.eml +68 -0
- data/set-of-emails/maildir/err/make-test-17.eml +68 -0
- data/set-of-emails/maildir/err/make-test-18.eml +68 -0
- data/set-of-emails/maildir/err/make-test-19.eml +69 -0
- data/set-of-emails/maildir/err/make-test-20.eml +67 -0
- data/set-of-emails/maildir/err/make-test-21.eml +69 -0
- data/set-of-emails/maildir/err/make-test-22.eml +66 -0
- data/set-of-emails/maildir/err/make-test-23.eml +70 -0
- data/set-of-emails/maildir/err/make-test-24.eml +69 -0
- data/set-of-emails/maildir/err/make-test-25.eml +67 -0
- data/set-of-emails/maildir/err/make-test-26.eml +69 -0
- data/set-of-emails/maildir/err/make-test-27.eml +69 -0
- data/set-of-emails/maildir/err/make-test-28.eml +66 -0
- data/set-of-emails/maildir/err/make-test-29.eml +68 -0
- data/set-of-emails/maildir/err/make-test-30.eml +68 -0
- data/set-of-emails/maildir/err/make-test-31.eml +80 -0
- data/set-of-emails/maildir/err/make-test-32.eml +66 -0
- data/set-of-emails/maildir/err/make-test-33.eml +68 -0
- data/set-of-emails/maildir/err/make-test-34.eml +56 -0
- data/set-of-emails/maildir/err/make-test-35.eml +59 -0
- data/set-of-emails/maildir/err/make-test-36.eml +53 -0
- data/set-of-emails/maildir/err/make-test-37.eml +62 -0
- data/set-of-emails/maildir/mac/activehunter-01.eml +1 -2
- data/set-of-emails/maildir/mac/apachejames-01.eml +1 -4
- data/set-of-emails/maildir/mac/arf-01.eml +1 -3
- data/set-of-emails/maildir/mac/courier-01.eml +1 -6
- data/set-of-emails/maildir/mac/de-einsundeins-01.eml +1 -1
- data/set-of-emails/maildir/mac/de-gmx-01.eml +1 -1
- data/set-of-emails/maildir/mac/domino-01.eml +1 -0
- data/set-of-emails/maildir/mac/exchange-01.eml +1 -0
- data/set-of-emails/maildir/mac/exim-01.eml +1 -1
- data/set-of-emails/maildir/mac/google-apps-01.eml +1 -4
- data/set-of-emails/maildir/mac/imailserver-01.eml +1 -0
- data/set-of-emails/maildir/mac/interscanmss-01.eml +1 -2
- data/set-of-emails/maildir/mac/jp-biglobe-01.eml +1 -2
- data/set-of-emails/maildir/mac/jp-ezweb-01.eml +1 -1
- data/set-of-emails/maildir/mac/jp-kddi-01.eml +1 -2
- data/set-of-emails/maildir/mac/mailfoundry-01.eml +1 -2
- data/set-of-emails/maildir/mac/mailmarshalsmtp-01.eml +1 -2
- data/set-of-emails/maildir/mac/mcafee-01.eml +1 -4
- data/set-of-emails/maildir/mac/messagingserver-01.eml +1 -4
- data/set-of-emails/maildir/mac/mfilter-01.eml +1 -3
- data/set-of-emails/maildir/mac/mxlogic-01.eml +1 -1
- data/set-of-emails/maildir/mac/notes-01.eml +1 -2
- data/set-of-emails/maildir/mac/opensmtpd-01.eml +1 -0
- data/set-of-emails/maildir/mac/postfix-01.eml +1 -3
- data/set-of-emails/maildir/mac/qmail-01.eml +1 -1
- data/set-of-emails/maildir/mac/rfc3464-01.eml +1 -4
- data/set-of-emails/maildir/mac/rfc3834-01.eml +1 -0
- data/set-of-emails/maildir/mac/ru-mailru-01.eml +1 -1
- data/set-of-emails/maildir/mac/ru-yandex-01.eml +1 -4
- data/set-of-emails/maildir/mac/sendmail-01.eml +1 -4
- data/set-of-emails/maildir/mac/surfcontrol-01.eml +1 -5
- data/set-of-emails/maildir/mac/uk-messagelabs-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-amazonses-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-aol-01.eml +1 -15
- data/set-of-emails/maildir/mac/us-bigfoot-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-facebook-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-google-01.eml +1 -1
- data/set-of-emails/maildir/mac/us-outlook-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-receivingses-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-sendgrid-01.eml +1 -3
- data/set-of-emails/maildir/mac/us-verizon-01.eml +1 -2
- data/set-of-emails/maildir/mac/us-yahoo-01.eml +1 -1
- data/set-of-emails/maildir/mac/us-zoho-01.eml +1 -2
- data/set-of-emails/maildir/mac/v5sendmail-01.eml +1 -0
- data/set-of-emails/maildir/mac/x1-01.eml +1 -4
- data/set-of-emails/maildir/mac/x2-01.eml +1 -1
- data/set-of-emails/maildir/mac/x3-01.eml +1 -3
- data/set-of-emails/maildir/mac/x4-01.eml +1 -2
- data/set-of-emails/maildir/mac/x5-01.eml +1 -8
- data/set-of-emails/maildir/not/is-not-bounce-01.eml +25 -0
- data/set-of-emails/to-be-debugged-because/reason-is-onhold/onhold-0001.eml +85 -0
- data/set-of-emails/to-be-debugged-because/reason-is-undefined/undefined-0002.eml +27 -0
- data/set-of-emails/to-be-debugged-because/reason-is-undefined/undefined-0003.eml +78 -0
- data/set-of-emails/to-be-debugged-because/sisimai-cannot-parse-yet/cannot-parse-this-email-0002.eml +25 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-01.eml +79 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-02.eml +72 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-03.eml +68 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/no-message-id-from-pr-150.eml +75 -0
- data/set-of-emails/to-be-parsed-for-test/README.md +20 -0
- data/sisimai.gemspec +25 -0
- metadata +647 -0
@@ -0,0 +1,47 @@
|
|
1
|
+
Delivered-To: shironeko@zoho.example.com
|
2
|
+
Received: from mail.zoho.com by mx.zohomail.com
|
3
|
+
with SMTP id 1418384998133136.34553510826618; Fri, 12 Dec 2014 03:49:58 -0800 (PST)
|
4
|
+
Date: Fri, 12 Dec 2014 03:49:58 -0800
|
5
|
+
From: mailer-daemon@mail.zoho.com
|
6
|
+
To: shironeko@zoho.example.com
|
7
|
+
Message-ID: <14a3e557ec8.cc5b10c6521251802.-8795066362223423466@zohomail.com>
|
8
|
+
Subject: Mail Delivery Status Notification (Delay)
|
9
|
+
MIME-Version: 1.0
|
10
|
+
Content-Type: multipart/mixed;
|
11
|
+
boundary="----=_Part_2353_2119764107.1418384998087"
|
12
|
+
User-Agent: Zoho Mail
|
13
|
+
X-Mailer: Zoho Mail
|
14
|
+
X-ZohoMail: Si CHF_MF_NL SS_10 UW48 UB48 FMWL UW48 UB48 SGR3_1_09124_50
|
15
|
+
X-Zoho-Virus-Status: 2
|
16
|
+
|
17
|
+
|
18
|
+
------=_Part_2353_2119764107.1418384998087
|
19
|
+
Content-Type: text/plain; charset="UTF-8"
|
20
|
+
Content-Transfer-Encoding: 7bit
|
21
|
+
|
22
|
+
This message was created automatically by mail delivery system.
|
23
|
+
|
24
|
+
THIS IS A WARNING MESSAGE ONLY.
|
25
|
+
|
26
|
+
YOU DO NOT NEED TO RESEND YOUR MESSAGE.
|
27
|
+
|
28
|
+
The original message was received at Fri, 12 Dec 2014 03:49:58 -0800
|
29
|
+
from shironeko@zoho.example.com [shironeko@zoho.example.com]
|
30
|
+
|
31
|
+
----- The following addresses had fatal errors -----
|
32
|
+
[Status: Error, Address: <kijitora@6kaku.example.co.jp>, ResponseCode 421, , Host not reachable.]
|
33
|
+
|
34
|
+
Message will be retried for 4 more day(s)
|
35
|
+
|
36
|
+
----- Transcript of session follows -----
|
37
|
+
|
38
|
+
Received:from mail.zoho.com by mx.zohomail.com
|
39
|
+
with SMTP id 1418381459307794.7899025594404; Fri, 12 Dec 2014 02:50:59 -0800 (PST)
|
40
|
+
Message-ID:<14a3e1f7f3c.110ef7cb910716.7530578479836940184@zoho.example.com>
|
41
|
+
Date:Fri, 12 Dec 2014 10:50:59 +0000
|
42
|
+
From:"zoho.com" <shironeko@zoho.example.com>
|
43
|
+
User-Agent:Zoho Mail
|
44
|
+
To:<kijitora@6kaku.example.co.jp>
|
45
|
+
Subject:Nyaaaan
|
46
|
+
Content-Type:text/plain; charset="UTF-8"
|
47
|
+
------=_Part_2353_2119764107.1418384998087--
|
@@ -0,0 +1,37 @@
|
|
1
|
+
Delivered-To: shironeko@zoho.example.com
|
2
|
+
Received: from mail.zoho.example.com by mx.zohomail.com
|
3
|
+
with SMTP id 1418731442271490.4979180745652; Tue, 16 Dec 2014 04:04:02 -0800 (PST)
|
4
|
+
Date: Tue, 16 Dec 2014 04:04:02 -0800
|
5
|
+
From: mailer-daemon@mail.zoho.com
|
6
|
+
To: shironeko@zoho.example.com
|
7
|
+
Message-ID: <14a52fbd033.e2a26d1e-1995616429.8083495253999061172@zohomail.com>
|
8
|
+
Subject: Undelivered Mail Returned to Sender
|
9
|
+
MIME-Version: 1.0
|
10
|
+
Content-Type: multipart/mixed;
|
11
|
+
boundary="----=_Part_5023_623662185.1418731442226"
|
12
|
+
User-Agent: Zoho Mail
|
13
|
+
X-Mailer: Zoho Mail
|
14
|
+
X-ZohoMail: Si CHF_MF_NL SS_10 UW48 UB48 FMWL UW48 UB48 SGR3_1_09124_43
|
15
|
+
X-Zoho-Virus-Status: 2
|
16
|
+
|
17
|
+
|
18
|
+
------=_Part_5023_623662185.1418731442226
|
19
|
+
Content-Type: text/plain; charset="UTF-8"
|
20
|
+
Content-Transfer-Encoding: 7bit
|
21
|
+
|
22
|
+
This message was created automatically by mail delivery software.
|
23
|
+
A message that you sent could not be delivered to one or more of its recipients. This is a permanent error.
|
24
|
+
|
25
|
+
kijitora@7jo.example.jp Error, ERROR_CODE :421, ERROR_CODE :, Host not reachable.
|
26
|
+
|
27
|
+
|
28
|
+
Received:from mail.zoho.example.com by mx.zohomail.com
|
29
|
+
with SMTP id 1418381459307794.7899025594404; Fri, 12 Dec 2014 02:50:59 -0800 (PST)
|
30
|
+
Message-ID:<14a3e1f7f3c.110ef7cb910716.7530578479836940184@zoho.example.com>
|
31
|
+
Date:Fri, 12 Dec 2014 10:50:59 +0000
|
32
|
+
From:"Nekochan" <shironeko@zoho.example.com>
|
33
|
+
User-Agent:Zoho Mail
|
34
|
+
To:<kijitora@7jo.example.jp>
|
35
|
+
Subject:Nyaaaan
|
36
|
+
Content-Type:text/plain; charset="UTF-8"
|
37
|
+
------=_Part_5023_623662185.1418731442226--
|
@@ -0,0 +1,24 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@example.com>
|
2
|
+
Received: from mx1.example.com ([192.0.2.55])
|
3
|
+
by mx5.example.net (Post.Office MTA v3.1.2 release (FF000-0000) ID# 0-00000000000000000)
|
4
|
+
with SMTP id 00000000 for <shironeko@example.co.jp>;
|
5
|
+
Thu, 29 Apr 1998 23:34:45 -0700
|
6
|
+
Received: by mx5.example.com; (5.65/1.37) id 0000000;
|
7
|
+
Sat, 29 Apr 1995 23:34:45 +0900
|
8
|
+
Date: Sat, 29 Apr 1995 23:34:45 +0900
|
9
|
+
From: Mail Delivery Subsystem <MAILER-DAEMON@example.com>
|
10
|
+
Subject: Returned mail: Cannot send message for 4 days
|
11
|
+
Message-Id: <0000000000.0000000@mx5.example.com>
|
12
|
+
To: shironeko@example.co.jp
|
13
|
+
|
14
|
+
----- Transcript of session follows -----
|
15
|
+
421 example.com (smtp)... Deferred: Connection timed out during user open with example.com
|
16
|
+
|
17
|
+
----- Unsent message follows -----
|
18
|
+
Received: by mx9.example.com; (5.65/1.37) id 0000000;
|
19
|
+
Thu, 29 Apr 1995 23:34:45 +0900
|
20
|
+
From: shironeko@example.co.jp
|
21
|
+
To: kijitora@example.com
|
22
|
+
Subject: Nyaaan
|
23
|
+
|
24
|
+
Nyaaaaaaaaaaaaaaaan
|
@@ -0,0 +1,26 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@example.com>
|
2
|
+
Received: from mx5.example.com ([192.0.2.50])
|
3
|
+
by mx5.r.example.com (Post.Office MTA v3.1.2
|
4
|
+
release (FF000-0000) ID# 0-00000000000000000)
|
5
|
+
with SMTP id 0000000 for <shironeko@example.jp>;
|
6
|
+
Thu, 29 Apr 1998 23:34:45 +0900
|
7
|
+
Received: by mx5.example.com; (5.65/1.37) id 0000000;
|
8
|
+
Thu, 29 Sep 1998 23:34:45 +0900
|
9
|
+
Date: Thu, 29 Sep 1998 23:34:45 +0900
|
10
|
+
From: Mail Delivery Subsystem <MAILER-DAEMON@example.com>
|
11
|
+
Subject: Returned mail: Host unknown
|
12
|
+
Message-Id: <0000000000.0000000@mx5.example.com>
|
13
|
+
To: shironeko@example.jp
|
14
|
+
|
15
|
+
----- Transcript of session follows -----
|
16
|
+
550 neko.example.org (smtp)... 550 Host unknown
|
17
|
+
554 <kijitora@neko.example.org>... 550 Host unknown (Authoritative answer from name server)
|
18
|
+
|
19
|
+
----- Unsent message follows -----
|
20
|
+
Received: by mx5.example.com; (5.65/1.37) id 0000000;
|
21
|
+
Wed, 27 Sep 1998 23:34:45 +0900
|
22
|
+
From: shironeko@example.jp
|
23
|
+
To: kijitora@neko.example.org
|
24
|
+
Subject: Nyaaan
|
25
|
+
|
26
|
+
Nyaaan
|
@@ -0,0 +1,29 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@example.com>
|
2
|
+
Received: from mx5.example.com ([192.0.2.155])
|
3
|
+
by mx5.r.example.com (Post.Office MTA v3.1.2
|
4
|
+
release (FF000-0000) ID# 0-00000000000000000) with SMTP
|
5
|
+
id 0000000 for <webmaster@exampe.com>;
|
6
|
+
Thu, 28 Sep 1998 23:34:45 -0700
|
7
|
+
Received: by mx5.example.com; (5.65/1.37) id 0000000;
|
8
|
+
Thu, 29 Sep 1995 23:34:45 +0900
|
9
|
+
Date: Thu, 29 Sep 1995 23:34:45 +0900
|
10
|
+
From: Mail Delivery Subsystem <MAILER-DAEMON@example.com>
|
11
|
+
Subject: Returned mail: Deferred: Connection timed out during user open with example.org
|
12
|
+
Message-Id: <0000000000.0000000@mx5.example.com>
|
13
|
+
To: webmaster@exampe.com
|
14
|
+
|
15
|
+
----- Transcript of session follows -----
|
16
|
+
While talking to smtp.example.com:
|
17
|
+
>>> RCPT To:<kijitora@example.org>
|
18
|
+
<<< 550 <kijitora@example.org>, User Unknown
|
19
|
+
550 <kijitora@example.org>... User unknown
|
20
|
+
421 example.org (smtp)... Deferred: Connection timed out during user open with example.org
|
21
|
+
|
22
|
+
----- Unsent message follows -----
|
23
|
+
Received: by mx5.example.com; (5.65/1.37) id 0000000;
|
24
|
+
Thu, 29 Apr 1995 23:34:45 +0900
|
25
|
+
From: webmaster@exampe.com
|
26
|
+
To: kijitora@exampe.org
|
27
|
+
Subject: Nyaaan
|
28
|
+
|
29
|
+
Nyaan
|
@@ -0,0 +1,29 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@example.com>
|
2
|
+
Received: from mx8.example.com ([192.0.2.55])
|
3
|
+
by mx6.example.com (Post.Office MTA v3.1.2
|
4
|
+
release (FF000+0900) ID# 0+09000000000000000) with SMTP id 0000000
|
5
|
+
for <shironeko@example.org>;
|
6
|
+
Thu, 29 Apr 1999 23:34:45 +0900
|
7
|
+
Received: by mx8.example.com; (5.65/1.37) id 0000000;
|
8
|
+
Thu, 29 Apr 1999 23:34:45 +0900
|
9
|
+
Date: Thu, 29 Apr 1999 23:34:45 +0900
|
10
|
+
From: Mail Delivery Subsystem <MAILER-DAEMON@example.com>
|
11
|
+
Subject: Returned mail: Deferred: Host Name Lookup Failure
|
12
|
+
Message-Id: <0000000000.0000000@mx8.example.com>
|
13
|
+
To: shironeko@example.org
|
14
|
+
|
15
|
+
----- Transcript of session follows -----
|
16
|
+
550 example.ed.jp (smtp)... 550 Host unknown
|
17
|
+
554 <kijitora@example.ed.jp>... 550 Host unknown (Authoritative answer from name server)
|
18
|
+
550 example.ac.jp (smtp)... 550 Host unknown
|
19
|
+
554 <mikeneko@example.ac.jp>... 550 Host unknown (Authoritative answer from name server)
|
20
|
+
250 example.ad.jp (smtp)... 250 Deferred
|
21
|
+
|
22
|
+
----- Unsent message follows -----
|
23
|
+
Received: by mx8.example.com; (5.65/1.36) id 0000000;
|
24
|
+
Thu, 29 Apr 1999 23:34:45 +0900
|
25
|
+
From: shironeko@example.org
|
26
|
+
To: kijitora@example.ed.jp
|
27
|
+
Subject: Nyaaaaaan
|
28
|
+
|
29
|
+
Nyaaan
|
@@ -0,0 +1,42 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@example.com>
|
2
|
+
Received: from mx2.example.com ([192.0.2.89])
|
3
|
+
by mx4.example.net (Post.Office MTA v3.1.2
|
4
|
+
release (FF000-0000) ID# 0-00000000000000000)
|
5
|
+
with SMTP id 0000000 for <shironeko@example.jp>;
|
6
|
+
Thu, 29 Apr 1999 23:34:45 +0900
|
7
|
+
Received: by mx5.example.com; (5.65/1.37) id 0000000;
|
8
|
+
Thu, 29 Apr 1999 23:34:45 +0900
|
9
|
+
Date: Thu, 29 Apr 1999 23:34:45 +0900
|
10
|
+
From: Mail Delivery Subsystem <MAILER-DAEMON@example.com>
|
11
|
+
Subject: Returned mail: User unknown
|
12
|
+
Message-Id: <0000000000.0000000@example.com>
|
13
|
+
To: shironeko@example.jp
|
14
|
+
|
15
|
+
----- Transcript of session follows -----
|
16
|
+
While talking to example.edu:
|
17
|
+
>>> DATA
|
18
|
+
<<< 550 Your E-Mail is redundant. You cannot send E-Mail to yourself (shironeko@example.jp).
|
19
|
+
421 example.edu (smtp)... Deferred: Connection reset by peer during result wait with example.edu
|
20
|
+
554 <kijitora@example.edu>... Remote protocol error: Connection reset by peer during result wait with example.edu
|
21
|
+
550 example.or.jp (smtp)... 550 Host unknown
|
22
|
+
554 <kuroneko@example.or.jp>... 550 Host unknown (Authoritative answer from name server)
|
23
|
+
550 example.org (smtp)... 550 Host unknown
|
24
|
+
554 <kijitora@example.org>... 550 Host unknown (Authoritative answer from name server)
|
25
|
+
While talking to smtp.example.com:
|
26
|
+
>>> QUIT
|
27
|
+
<<< 421 dns.example.org Sorry, unable to contact destination SMTP daemon.
|
28
|
+
421 smtp.example.org (smtp)... Deferred: Connection reset by peer during greeting wait with smtp.example.org
|
29
|
+
While talking to mail.example.co.jp:
|
30
|
+
>>> RCPT To:<mikeneko@example.co.jp>
|
31
|
+
<<< 550 Requested User Mailbox not found. No such user here.
|
32
|
+
550 <mikeneko@example.co.jp>... User unknown
|
33
|
+
|
34
|
+
----- Unsent message follows -----
|
35
|
+
Received: by dns.example.com; (5.65/1.37) id 0000000;
|
36
|
+
Thu, 29 Apr 1999 23:34:45 +0900
|
37
|
+
From: shironeko@example.jp
|
38
|
+
To: kijitora@example.org
|
39
|
+
Subject: Nyaan
|
40
|
+
|
41
|
+
Nyaaaan
|
42
|
+
|
@@ -0,0 +1,28 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@example.net>
|
2
|
+
Received: from mx1.example.net ([192.0.2.120])
|
3
|
+
by mx9.example.net (Post.Office MTA v3.1.2 release (FF000+0900)
|
4
|
+
ID# 0+09000000000000000) with SMTP id 0000000 for <shironeko@example.jp>;
|
5
|
+
Thu, 29 Apr 1999 23:34:45 +0900
|
6
|
+
Received: by mx1.example.net; (5.65/1.37) id 0000000; Thu, 29 Apr 1999 23:34:45 +0900
|
7
|
+
Date: Thu, 29 Apr 1999 23:34:45 +0900
|
8
|
+
From: Mail Delivery Subsystem <MAILER-DAEMON@example.net>
|
9
|
+
Subject: Returned mail: Deferred: Connection timed out during user open with example.org
|
10
|
+
Message-Id: <0000000000.0000000@mx1.example.net>
|
11
|
+
To: shironeko@example.jp
|
12
|
+
|
13
|
+
----- Transcript of session follows -----
|
14
|
+
While talking to mx.example.edu:
|
15
|
+
>>> MAIL From:<shironeko@example.jp>
|
16
|
+
<<< 550 Insecure Mail Relay
|
17
|
+
554 <kijitora@example.edu>... Remote protocol error
|
18
|
+
421 example.org (smtp)... Deferred: Connection timed out during user open with example.org
|
19
|
+
|
20
|
+
----- Unsent message follows -----
|
21
|
+
Received: by mx1.example.net; (5.65/1.37) id 0000000;
|
22
|
+
Thu, 29 Apr 1999 23:34:45 +0900
|
23
|
+
From: shironeko@example.jp
|
24
|
+
To: kijitora@example.edu
|
25
|
+
Subject: Nyaaaaan
|
26
|
+
|
27
|
+
Nyaaaan
|
28
|
+
|
@@ -0,0 +1,35 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@example.com>
|
2
|
+
Received: from mx8.example.com ([192.0.2.59])
|
3
|
+
by mx4.example.com (Post.Office MTA v3.1.2 release (FF000+0900)
|
4
|
+
ID# 0+09000000000000000) with SMTP id 0000000
|
5
|
+
for <shironeko@example.co.jp>;
|
6
|
+
Thu, 29 Apr 1999 23:34:45 +0900
|
7
|
+
Received: by mx8.example.com; (5.65/1.37) id 0000000;
|
8
|
+
Thu, 29 Apr 1999 23:34:45 +0900
|
9
|
+
Date: Thu, 29 Apr 1999 23:34:45 +0900
|
10
|
+
From: Mail Delivery Subsystem <MAILER-DAEMON@example.com>
|
11
|
+
Subject: Returned mail: User unknown
|
12
|
+
Message-Id: <00000000000.0000000@x8.example.com>
|
13
|
+
To: shironeko@example.co.jp
|
14
|
+
|
15
|
+
----- Transcript of session follows -----
|
16
|
+
While talking to mailin1.example.org:
|
17
|
+
>>> MAIL From:<shironeko@example.co.jp>
|
18
|
+
<<< 501 <shironeko@example.co.jp>... no access from mail server [192.0.2.55] which is an open relay.
|
19
|
+
554 <kijitora@example.org>... Remote protocol error
|
20
|
+
550 example.org (smtp)... 550 Host unknown
|
21
|
+
554 <mikeneko@example.org>... 550 Host unknown (Authoritative answer from name server)
|
22
|
+
While talking to smtp.example.edu:
|
23
|
+
>>> RCPT To:<hachiware@example.edu>
|
24
|
+
<<< 550 <hachiware@example.edu>... User unknown
|
25
|
+
550 <hachiware@example.edu>... User unknown
|
26
|
+
|
27
|
+
----- Unsent message follows -----
|
28
|
+
Received: by mx8.example.com; (5.65/1.37) id 0000000;
|
29
|
+
Thu, 29 Apr 1999 23:34:45 +0900
|
30
|
+
From: shironeko@example.co.jp
|
31
|
+
To: kijitora@example.org
|
32
|
+
Subject: Nyaaaaaan
|
33
|
+
|
34
|
+
Nyaaaaan
|
35
|
+
|
@@ -0,0 +1,61 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from mx4.kyoto.example.co.jp (mx4.kyoto.example.co.jp [192.0.2.25])
|
3
|
+
by 9jo.example.jp (V8/cf) with ESMTP id 00000000000000
|
4
|
+
for <shironeko@example.jp>; Thu, 29 Apr 2010 23:34:45 +0900
|
5
|
+
Received: from relay5.1jo.example.co.jp (host [192.0.2.220])
|
6
|
+
by mx4.kyoto.example.co.jp (Postfix) with SMTP id 00000000000
|
7
|
+
for <shironeko@example.jp>; Thu, 29 Apr 2010 23:34:45 +0900 (JST)
|
8
|
+
Received: By OpenMail Mailer;Thu, 29 Apr 2010 23:34:45 +0900 (JST)
|
9
|
+
From: "Mail Deliver System" <MAILER-DAEMON@9jo.example.jp>
|
10
|
+
To: shironeko@example.jp
|
11
|
+
Subject: Returned Mail: User unknown
|
12
|
+
Date: Thu, 29 Apr 2010 23:34:45 +0900 (JST)
|
13
|
+
Content-Type: multipart/mixed; boundary="---fff000000000000000000000"
|
14
|
+
Message-Id: <20100429233445.00000000000@mx4.kyoto.example.co.jp>
|
15
|
+
|
16
|
+
This is a multi-part message in MIME format.
|
17
|
+
|
18
|
+
-----fff000000000000000000000
|
19
|
+
Content-Type: text/plain;
|
20
|
+
charset="iso-2022-jp"
|
21
|
+
|
22
|
+
The original message was received at Thu, 29 Apr 2010 23:34:45 +0900 (JST)
|
23
|
+
from shironeko@example.jp
|
24
|
+
|
25
|
+
---The following addresses had delivery errors---
|
26
|
+
|
27
|
+
kijitora@example.co.jp [User unknown]
|
28
|
+
|
29
|
+
|
30
|
+
-----fff000000000000000000000
|
31
|
+
Received: from 192.0.2.250
|
32
|
+
by relay5.1jo.example.co.jp with Mail2000 ESMTP Server V4.49
|
33
|
+
(envelope-from <shironeko@example.jp>); Thu, 29 Apr 2010 23:34:45 +0900 (JST)
|
34
|
+
Return-Path: <shironeko@example.jp>
|
35
|
+
Received: from relay1.kyoto.example.co.jp (r1.1jo.example.co.jp [127.0.0.1])
|
36
|
+
by r4.kyoto.example.co.jp (Postfix) with ESMTP id 00000000000
|
37
|
+
for <kijitora@example.co.jp>; Thu, 29 Apr 2010 23:34:45 +0900 (JST)
|
38
|
+
Received: from x3.relay.example.co.jp (unknown [192.0.2.4])
|
39
|
+
by karasuma.kyoto.example.co.jp (Postfix) with ESMTP id 00000000000
|
40
|
+
for <kijitora@example.co.jp>; Thu, 29 Apr 2010 23:34:45 +0900 (JST)
|
41
|
+
listener: smtp3
|
42
|
+
Received: from 9jo.example.jp ([192.0.2.153])
|
43
|
+
by smptd450.example.co.jp with ESMTP; 29 Apr 2010 23:34:45 +0900
|
44
|
+
Received: from ak-powerbook-mdclxx (c0.kyoto.example.ne.jp [192.0.2.90])
|
45
|
+
(authenticated bits=0)
|
46
|
+
by 9jo.example.jp (V8/cf) with ESMTP id 00000000000000
|
47
|
+
for <kijitora@example.co.jp>; Thu, 29 Apr 2010 23:34:45 +0900
|
48
|
+
Message-Id: <000000000000000000000000000000000000@example.jp>
|
49
|
+
From: Shironeko <shironeko@example.jp>
|
50
|
+
To: kijitora@example.co.jp
|
51
|
+
Content-Type: text/plain; charset=US-ASCII; format=flowed
|
52
|
+
Content-Transfer-Encoding: 7bit
|
53
|
+
Mime-Version: 1.0 (Apple Message framework v936)
|
54
|
+
Date: Thu, 29 Apr 2010 23:34:45 +0900
|
55
|
+
X-Mailer: Apple Mail (2.936)
|
56
|
+
Subject: Nyaaaaan
|
57
|
+
|
58
|
+
Nyaan
|
59
|
+
|
60
|
+
|
61
|
+
-----fff000000000000000000000--
|
@@ -0,0 +1,62 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
X-Original-To: shironeko@example.co.jp
|
3
|
+
Delivered-To: shironeko@example.co.jp
|
4
|
+
Received: from mx4.kyoto.example.co.jp (mx4.kyoto.example.co.jp [192.0.2.25])
|
5
|
+
by 9jo.example.jp (V8/cf) with ESMTP id 00000000000000
|
6
|
+
for <shironeko@example.jp>; Thu, 29 Apr 2011 23:34:45 +0900
|
7
|
+
Received: from relay5.1jo.example.co.jp (host [192.0.2.220])
|
8
|
+
by mx4.kyoto.example.co.jp (Postfix) with SMTP id 00000000000
|
9
|
+
for <shironeko@example.jp>; Thu, 29 Apr 2011 23:34:45 +0900 (JST)
|
10
|
+
Received: By OpenMail Mailer;Thu, 29 Apr 2011 23:34:45 +0900 (JST)
|
11
|
+
From: "Mail Deliver System" <MAILER-DAEMON>
|
12
|
+
To: shironeko@example.co.jp
|
13
|
+
Subject: Returned Mail: User unknown
|
14
|
+
Content-Type: multipart/mixed; boundary="---ffffff0000000000000110300134"
|
15
|
+
Message-Id: <20110429233445.000000000000mx3.uji.example.org>
|
16
|
+
Date: Thu, 29 Apr 2011 23:34:45 +0900 (JST)
|
17
|
+
|
18
|
+
This is a multi-part message in MIME format.
|
19
|
+
|
20
|
+
-----ffffff0000000000000110300134
|
21
|
+
Content-Type: text/plain
|
22
|
+
charset="iso-2022-jp"
|
23
|
+
|
24
|
+
The original message was received at Thu, 29 Apr 2011 23:34:45 +0900 (JST)
|
25
|
+
from shironeko@example.co.jp
|
26
|
+
|
27
|
+
---The following addresses had delivery errors---
|
28
|
+
|
29
|
+
kijitora@example.org [User unknown]
|
30
|
+
|
31
|
+
-----ffffff0000000000000110300134
|
32
|
+
Received: from 192.0.2.250
|
33
|
+
by relay5.1jo.example.co.jp with Mail2000 ESMTP Server V4.49
|
34
|
+
(envelope-from <shironeko@example.jp>); Thu, 29 Apr 2010 23:34:45 +0900 (JST)
|
35
|
+
Return-Path: <shironeko@example.jp>
|
36
|
+
Received: from relay1.kyoto.example.co.jp (r1.1jo.example.co.jp [127.0.0.1])
|
37
|
+
by r4.kyoto.example.co.jp (Postfix) with ESMTP id 00000000000
|
38
|
+
for <kijitora@example.co.jp>; Thu, 29 Apr 2010 23:34:45 +0900 (JST)
|
39
|
+
Received: from x3.relay.example.co.jp (unknown [192.0.2.4])
|
40
|
+
by karasuma.kyoto.example.co.jp (Postfix) with ESMTP id 00000000000
|
41
|
+
for <kijitora@example.co.jp>; Thu, 29 Apr 2010 23:34:45 +0900 (JST)
|
42
|
+
listener: smtp3
|
43
|
+
Received: from 9jo.example.jp ([192.0.2.153])
|
44
|
+
by smptd450.example.co.jp with ESMTP; 29 Apr 2010 23:34:45 +0900
|
45
|
+
Received: from ak-powerbook-mdclxx (c0.kyoto.example.ne.jp [192.0.2.90])
|
46
|
+
(authenticated bits=0)
|
47
|
+
by 9jo.example.jp (V8/cf) with ESMTP id 00000000000000
|
48
|
+
for <kijitora@example.co.jp>; Thu, 29 Apr 2010 23:34:45 +0900
|
49
|
+
Message-Id: <000000000000000000000000000000000000@example.jp>
|
50
|
+
From: Shironeko <shironeko@example.jp>
|
51
|
+
To: kijitora@example.co.jp
|
52
|
+
Content-Type: text/plain; charset=US-ASCII; format=flowed
|
53
|
+
Content-Transfer-Encoding: 7bit
|
54
|
+
Mime-Version: 1.0 (Apple Message framework v936)
|
55
|
+
Date: Thu, 29 Apr 2010 23:34:45 +0900
|
56
|
+
X-Mailer: Apple Mail (2.936)
|
57
|
+
Subject: Nyaaaaan
|
58
|
+
|
59
|
+
Nyaan
|
60
|
+
|
61
|
+
|
62
|
+
-----fff000000000000000000000--
|
@@ -0,0 +1,41 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@mx5.example.net>
|
2
|
+
Received: from mx4.mail5.example.com (mx4.mail5.example.com [192.0.2.90])
|
3
|
+
by mx5.example.net (8.12.11/8.12.11) with SMTP id 00000000000000
|
4
|
+
for <neko@example.jp>; Thu, 9 Apr 2008 23:34:45 -0800
|
5
|
+
Date: Thu, 9 Apr 2008 23:34:45 -0800
|
6
|
+
Message-Id: <200804090000.00000000000000@mx5.example.net>
|
7
|
+
From: MAILER-DAEMON@example.co.jp
|
8
|
+
To: neko@example.jp
|
9
|
+
X-Loop: MAILER-DAEMON@example.co.jp
|
10
|
+
Subject: Delivery failure
|
11
|
+
|
12
|
+
Message from example.co.jp.
|
13
|
+
Unable to deliver message to the following address(es).
|
14
|
+
|
15
|
+
<kijitora@example.co.jp>:
|
16
|
+
This user doesn't have a example.co.jp account (kijitora@example.co.jp) [-9]
|
17
|
+
|
18
|
+
--- Original message follows.
|
19
|
+
|
20
|
+
X-Originating-IP: [192.0.2.5]
|
21
|
+
Return-Path: <neko@example.jp>
|
22
|
+
Authentication-Results: mx4.mail5.example.com
|
23
|
+
from=example.jp; domainkeys=neutral (no sig)
|
24
|
+
Received: from 192.0.2.12 (EHLO mail4.example.net) (192.0.2.12)
|
25
|
+
by mx4.mail5.example.com with SMTP; Thu, 09 Apr 2008 23:34:45 -0800
|
26
|
+
X-Originating-IP: [192.0.2.5]
|
27
|
+
Received: from localhost ([127.0.0.1] helo=[192.168.0.2])
|
28
|
+
by localhost with esmtp (Exim 4.52)
|
29
|
+
id 000000-000000-00; Thu, 09 Apr 2008 23:34:45 -0800
|
30
|
+
To: neko@example.jp
|
31
|
+
Date: Thu, 9 Apr 2008 23:34:45 -0800
|
32
|
+
Message-ID: <00000000000000000000000000000000@example.jp>
|
33
|
+
Subject: Nyaan
|
34
|
+
MIME-Version: 1.0
|
35
|
+
Content-Type: text/plain; charset="us-ascii"
|
36
|
+
Content-Transfer-Encoding: 7bit
|
37
|
+
Sender: neko@example.jp
|
38
|
+
Errors-To: neko@example.jp
|
39
|
+
From: Nyanko <neko@example.jp>
|
40
|
+
|
41
|
+
Nyaaaan
|