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,36 @@
|
|
1
|
+
From: E500_SMTP_Mail_Service@lerctr.org
|
2
|
+
To: <macarthur1975-bounces@lerctr.org>
|
3
|
+
Subject: Returned Mail - Error During Delivery
|
4
|
+
Date: Wed, 20 Nov 2002 19:58:47 -0500 (EST)
|
5
|
+
X-Virus-Scanned: by amavisd-milter (http://amavis.org/)
|
6
|
+
|
7
|
+
------ Failed Recipients ------
|
8
|
+
|
9
|
+
<acinsp1@midsouth.rr.com>: Requested action not taken: mailbox unavailable. [SMTP Error Code 550]
|
10
|
+
-------- Returned Mail --------
|
11
|
+
|
12
|
+
Received: from tnmx01.mgw.rr.com(24.165.200.11) by tnav01.midsouth.rr.com via csmap
|
13
|
+
id 26013; Wed, 20 Nov 2002 19:58:47 -0500 (EST)
|
14
|
+
Received: from lerami.lerctr.org (lerami.lerctr.org [207.158.72.11])
|
15
|
+
by tnmx01.mgw.rr.com (8.12.5/8.12.5) with ESMTP id gAL0wLBM020447
|
16
|
+
for <acinsp1@midsouth.rr.com>; Wed, 20 Nov 2002 19:58:21 -0500 (EST)
|
17
|
+
Received: from lerami.lerctr.org (localhost [127.0.0.1])
|
18
|
+
by lerami.lerctr.org (8.12.6/8.12.6/20020902/$Revision: 5940 $) with ESMTP id gAL0wHwV016400
|
19
|
+
for <acinsp1@midsouth.rr.com>; Wed, 20 Nov 2002 18:58:18 -0600 (CST)
|
20
|
+
MIME-Version: 1.0
|
21
|
+
Content-Type: text/plain; charset="us-ascii"
|
22
|
+
Content-Transfer-Encoding: 7bit
|
23
|
+
Subject: You have been unsubscribed from the MacArthur1975 mailing list
|
24
|
+
From: macarthur1975-bounces@lerctr.org
|
25
|
+
To: acinsp1@midsouth.rr.com
|
26
|
+
Message-ID: <mailman.0.1037840296.16399.macarthur1975@lerctr.org>
|
27
|
+
Date: Wed, 20 Nov 2002 18:58:16 -0600
|
28
|
+
Precedence: bulk
|
29
|
+
X-BeenThere: macarthur1975@lerctr.org
|
30
|
+
X-Mailman-Version: 2.1b4
|
31
|
+
List-Id: MacArthur Class of 1975 Discussion <macarthur1975.lerctr.org>
|
32
|
+
X-List-Administrivia: yes
|
33
|
+
Sender: macarthur1975-bounces@lerctr.org
|
34
|
+
Errors-To: macarthur1975-bounces@lerctr.org
|
35
|
+
X-Virus-Scanned: by amavisd-milter (http://amavis.org/)
|
36
|
+
|
@@ -0,0 +1,109 @@
|
|
1
|
+
Received: from tele-punt-22.mail.demon.net ([194.217.242.7])
|
2
|
+
by mail.python.org with esmtp (Exim 4.05)
|
3
|
+
id 18GwM4-0000D4-00
|
4
|
+
for mailman-users-admin@python.org; Wed, 27 Nov 2002 02:11:28 -0500
|
5
|
+
Received: from root by tele-punt-22.mail.demon.net with local (Exim 2.12 #1)
|
6
|
+
id 18GwLf-0003ka-00
|
7
|
+
for mailman-users-admin@python.org; Wed, 27 Nov 2002 07:11:03 +0000
|
8
|
+
Subject: Mail delivery failure
|
9
|
+
Message-Id: <E18GwLf-0003ka-00@tele-punt-22.mail.demon.net>
|
10
|
+
From: Mail Delivery System <Mailer-Daemon@tele-punt-22.mail.demon.net>
|
11
|
+
To: mailman-users-admin@python.org
|
12
|
+
Date: Wed, 27 Nov 2002 07:11:03 +0000
|
13
|
+
X-Spam-Status: No, hits=-2.5 required=5.0
|
14
|
+
tests=FROM_MAILER_DAEMON,MAILER_DAEMON,MAILTO_WITH_SUBJ,SPAM_PHRASE_03_05
|
15
|
+
X-Spam-Level:
|
16
|
+
|
17
|
+
This message was created automatically by mail delivery
|
18
|
+
software. A message that you sent could not be delivered
|
19
|
+
to all of its recipients.
|
20
|
+
|
21
|
+
The following message, addressed to 'james@jeborall.demon.co.uk',
|
22
|
+
failed because it has not been collected after 30 days
|
23
|
+
|
24
|
+
Here is a copy of the first part of the message, including
|
25
|
+
all headers.
|
26
|
+
|
27
|
+
---- START OF RETURNED MESSAGE ----
|
28
|
+
Received: from punt-2.mail.demon.net by mailstore for james@jeborall.demon.co.uk
|
29
|
+
id 1035738253:20:01723:229; Sun, 27 Oct 2002 17:04:13 GMT
|
30
|
+
Received: from mail.python.org ([12.155.117.29]) by punt-2.mail.demon.net
|
31
|
+
id aa2004462; 27 Oct 2002 17:02 GMT
|
32
|
+
Received: from localhost.localdomain ([127.0.0.1] helo=mail.python.org)
|
33
|
+
by mail.python.org with esmtp (Exim 4.05)
|
34
|
+
id 185qn2-0007ru-00; Sun, 27 Oct 2002 12:01:28 -0500
|
35
|
+
Date: Sun, 27 Oct 2002 12:00:04 -0500
|
36
|
+
Message-ID: <20021027170004.27298.9909.Mailman@mail.python.org>
|
37
|
+
From: mailman-users-request@python.org
|
38
|
+
Subject: Mailman-Users digest, Vol 1 #2344 - 14 msgs
|
39
|
+
Reply-to: mailman-users@python.org
|
40
|
+
X-Mailer: Mailman v2.0.13 (101270)
|
41
|
+
MIME-version: 1.0
|
42
|
+
Content-type: multipart/mixed; boundary=10.0.11.1.506.27298.1035738004.364.17787
|
43
|
+
To: mailman-users@python.org
|
44
|
+
Sender: mailman-users-admin@python.org
|
45
|
+
Errors-To: mailman-users-admin@python.org
|
46
|
+
X-BeenThere: mailman-users@python.org
|
47
|
+
X-Mailman-Version: 2.0.13 (101270)
|
48
|
+
Precedence: bulk
|
49
|
+
List-Help: <mailto:mailman-users-request@python.org?subject=help>
|
50
|
+
List-Post: <mailto:mailman-users@python.org>
|
51
|
+
List-Subscribe: <http://mail.python.org/mailman/listinfo/mailman-users>,
|
52
|
+
<mailto:mailman-users-request@python.org?subject=subscribe>
|
53
|
+
List-Id: Mailman mailing list management users <mailman-users.python.org>
|
54
|
+
List-Unsubscribe: <http://mail.python.org/mailman/listinfo/mailman-users>,
|
55
|
+
<mailto:mailman-users-request@python.org?subject=unsubscribe>
|
56
|
+
List-Archive: <http://mail.python.org/pipermail/mailman-users/>
|
57
|
+
|
58
|
+
--10.0.11.1.506.27298.1035738004.364.17787
|
59
|
+
Content-type: text/plain; charset=us-ascii
|
60
|
+
Content-description: Masthead (Mailman-Users digest, Vol 1 #2344)
|
61
|
+
|
62
|
+
Send Mailman-Users mailing list submissions to
|
63
|
+
mailman-users@python.org
|
64
|
+
|
65
|
+
To subscribe or unsubscribe via the World Wide Web, visit
|
66
|
+
http://mail.python.org/mailman/listinfo/mailman-users
|
67
|
+
or, via email, send a message with subject or body 'help' to
|
68
|
+
mailman-users-request@python.org
|
69
|
+
|
70
|
+
You can reach the person managing the list at
|
71
|
+
mailman-users-admin@python.org
|
72
|
+
|
73
|
+
When replying, please edit your Subject line so it is more specific
|
74
|
+
than "Re: Contents of Mailman-Users digest..."
|
75
|
+
|
76
|
+
|
77
|
+
--10.0.11.1.506.27298.1035738004.364.17787
|
78
|
+
Content-type: text/plain; charset=us-ascii
|
79
|
+
Content-description: Today's Topics (14 msgs)
|
80
|
+
|
81
|
+
Today's Topics:
|
82
|
+
|
83
|
+
1. RELEASED Mailman 2.1 beta 4 (Barry A. Warsaw)
|
84
|
+
2. bin/arch not working (Aparajita Fishman)
|
85
|
+
3. Can't receive mail (Aparajita Fishman)
|
86
|
+
4. I have the same problem with the list not sending mail..but
|
87
|
+
getting confirmations... (jared sanders)
|
88
|
+
5. Re: RELEASED Mailman 2.1 beta 4 (Jeremy Portzer)
|
89
|
+
6. Re: I have the same problem with the list not sending mail..but getting confirmations... (Aparajita Fishman)
|
90
|
+
7. 2.1b4 problem (Fuzzy)
|
91
|
+
8. inetd doesn't start mailman...? (Nick Arnett)
|
92
|
+
9. Re: rejecting non-subscriber postings (G. Armour Van Horn)
|
93
|
+
10. Re: No public lists? (Armando Soto Baeza)
|
94
|
+
11. Re: No public lists? (Armando Soto Baeza)
|
95
|
+
12. Re: I have the same problem with the list not sending mail..but getting confirmations... (Armando Soto Baeza)
|
96
|
+
13. Re: Can't subscribe via web (Armando Soto Baeza)
|
97
|
+
|
98
|
+
--10.0.11.1.506.27298.1035738004.364.17787
|
99
|
+
Content-type: multipart/digest; boundary="__--__--"
|
100
|
+
|
101
|
+
--__--__--
|
102
|
+
|
103
|
+
Message: 1
|
104
|
+
MIME-Version: 1.0
|
105
|
+
Content-Type: text/plain; charset=us-ascii
|
106
|
+
Content-Transfer-Encoding: 7bit
|
107
|
+
Message-ID: <15802.52753.139705.927733@gargle.gargle.HOWL>
|
108
|
+
---- MESSAGE TRUNCATED ----
|
109
|
+
|
@@ -0,0 +1,149 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@sb7.songbird.com>
|
2
|
+
Received: from SMTP-GATEWAY01.intra.home.dk (smtp-gateway01.intra.home.dk
|
3
|
+
[193.28.149.58])
|
4
|
+
by sb7.songbird.com (8.12.11/8.12.11) with SMTP id k2RI7T7e026491
|
5
|
+
for <gpc-talk-bounces@grizz.org>; Mon, 27 Mar 2006 10:07:30 -0800
|
6
|
+
Date: Mon, 27 Mar 2006 20:06:53 +0200
|
7
|
+
In-Reply-To: <mailman.2721.1143482819.1567.gpc-talk@grizz.org>
|
8
|
+
From: Mail Delivery Subsystem <mailer-daemon@SMTP-GATEWAY01.intra.home.dk>
|
9
|
+
To: <gpc-talk-bounces@grizz.org>
|
10
|
+
Subject: Returned mail: The results of your email commands. Reason: 550 5.1.1
|
11
|
+
User unknown
|
12
|
+
Message-ID: <smtp442829A200-A7C-442829BD-51831@[10.0.0.108]>
|
13
|
+
MIME-Version: 1.0
|
14
|
+
Content-Type: multipart/report;
|
15
|
+
boundary="--=_smtp442829A200.A7C.2824.1811939338"
|
16
|
+
X-SongbirdInformation: support@songbird.com for more information
|
17
|
+
X-Songbird: Clean
|
18
|
+
X-Songbird-From:
|
19
|
+
|
20
|
+
This message is in MIME format.
|
21
|
+
|
22
|
+
----=_smtp442829A200.A7C.2824.1811939338
|
23
|
+
Content-Type: text/plain
|
24
|
+
|
25
|
+
The original mail was received at Mon Mar 27 18:06:29 2006 GMT from sb7.songbird.com (208.184.79.137)
|
26
|
+
|
27
|
+
YOUR MAIL WAS NOT DELIVERED TO ALL RECIPIENTS!
|
28
|
+
|
29
|
+
----- The following addresses had permanent fatal errors -----
|
30
|
+
<artboardregistration@home.dk>
|
31
|
+
|
32
|
+
----- Transcript of the session follows -----
|
33
|
+
550 5.1.1 User unknown
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
The non-delivered message is attached to this message.
|
38
|
+
|
39
|
+
----=_smtp442829A200.A7C.2824.1811939338
|
40
|
+
Content-Type: message/delivery-status;
|
41
|
+
name="details.txt"
|
42
|
+
Content-Disposition: attachment;
|
43
|
+
filename="details.txt"
|
44
|
+
Content-Transfer-Encoding: Quoted-Printable
|
45
|
+
|
46
|
+
Reporting-MTA: dns; SMTP-GATEWAY01.intra.home.dk
|
47
|
+
Received-From-MTA: dns; sb7.songbird.com (208.184.79.137)
|
48
|
+
Arrival-Date: Mon Mar 27 18:06:29 2006 GMT
|
49
|
+
|
50
|
+
Final-Recipient: <artboardregistration@home.dk>
|
51
|
+
Action: failed
|
52
|
+
Remote-MTA: MRT; 10.0.0.103
|
53
|
+
Diagnostic-Code: SMTP; 550 5.1.1 User unknown
|
54
|
+
Last-Attempt-Date: Mon Mar 27 18:06:53 2006 GMT
|
55
|
+
|
56
|
+
----=_smtp442829A200.A7C.2824.1811939338
|
57
|
+
Content-Type: message/rfc822
|
58
|
+
|
59
|
+
Received: from (sb7.songbird.com [208.184.79.137])
|
60
|
+
with SMTP; Mon, 27 Mar 2006 18:06:27 -0000
|
61
|
+
(envelope-from <gpc-talk-bounces@grizz.org>)
|
62
|
+
Received: from sb7.songbird.com (sb7.songbird.com [127.0.0.1])
|
63
|
+
by sb7.songbird.com (8.12.11/8.12.11) with ESMTP id k2RI7087026411
|
64
|
+
for <artboardregistration@home.dk>; Mon, 27 Mar 2006 10:07:00 -0800
|
65
|
+
Subject: The results of your email commands
|
66
|
+
From: gpc-talk-bounces@grizz.org
|
67
|
+
To: artboardregistration@home.dk
|
68
|
+
MIME-Version: 1.0
|
69
|
+
Content-Type: multipart/mixed; boundary="===============1150126487=="
|
70
|
+
Message-ID: <mailman.2721.1143482819.1567.gpc-talk@grizz.org>
|
71
|
+
Date: Mon, 27 Mar 2006 10:06:59 -0800
|
72
|
+
Precedence: bulk
|
73
|
+
X-BeenThere: gpc-talk@grizz.org
|
74
|
+
X-Mailman-Version: 2.1.5
|
75
|
+
List-Id: Grizzly Peak Cyclists general discussion list <gpc-talk.grizz.org>
|
76
|
+
X-List-Administrivia: yes
|
77
|
+
Sender: gpc-talk-bounces@grizz.org
|
78
|
+
Errors-To: gpc-talk-bounces@grizz.org
|
79
|
+
X-SongbirdInformation: support@songbird.com for more information
|
80
|
+
X-Songbird: Clean
|
81
|
+
X-Songbird-From: gpc-talk-bounces@grizz.org
|
82
|
+
|
83
|
+
--===============1150126487==
|
84
|
+
Content-Type: text/plain; charset="us-ascii"
|
85
|
+
MIME-Version: 1.0
|
86
|
+
Content-Transfer-Encoding: 7bit
|
87
|
+
|
88
|
+
The results of your email command are provided below. Attached is your
|
89
|
+
original message.
|
90
|
+
|
91
|
+
- Results:
|
92
|
+
Ignoring non-text/plain MIME parts
|
93
|
+
artboardregistration@home.dk is not a member of the GPC-talk mailing list
|
94
|
+
|
95
|
+
- Unprocessed:
|
96
|
+
Re:
|
97
|
+
|
98
|
+
- Done.
|
99
|
+
|
100
|
+
|
101
|
+
--===============1150126487==
|
102
|
+
Content-Type: message/rfc822
|
103
|
+
MIME-Version: 1.0
|
104
|
+
|
105
|
+
Return-Path: <gpc-talk-unsubscribe@grizz.org>
|
106
|
+
Received: from email2desk.com (bl5-223-133.dsl.telepac.pt [82.154.223.133])
|
107
|
+
by sb7.songbird.com (8.12.11/8.12.11) with SMTP id k2RI6OZT026269
|
108
|
+
for <gpc-talk-unsubscribe@grizz.org>; Mon, 27 Mar 2006 10:06:40 -0800
|
109
|
+
Received: from 213.226.165.165
|
110
|
+
(SquirrelMail authenticated user artboardregistration@home.dk);
|
111
|
+
by email2desk.com with HTTP; Mon, 27 Mar 2006 18:05:12 +0000
|
112
|
+
Message-Id: <5JcF2k.squirrel@213.226.165.165>
|
113
|
+
Date: Mon, 27 Mar 2006 18:05:12 +0000
|
114
|
+
Subject: Re:
|
115
|
+
From: "Octavio" <artboardregistration@home.dk>
|
116
|
+
To: gpc-talk-unsubscribe@grizz.org
|
117
|
+
User-Agent: SquirrelMail/1.4.3a
|
118
|
+
X-Mailer: SquirrelMail/1.4.3a
|
119
|
+
MIME-Version: 1.0
|
120
|
+
Content-Type: text/html; charset=iso-8859-1
|
121
|
+
Content-Transfer-Encoding: 8bit
|
122
|
+
X-Priority: 3 (Normal)
|
123
|
+
Importance: Normal
|
124
|
+
X-SongbirdInformation: support@songbird.com for more information
|
125
|
+
X-Songbird: Clean
|
126
|
+
X-Songbird-From: gpc-talk-unsubscribe@grizz.org
|
127
|
+
|
128
|
+
<html>
|
129
|
+
<body>
|
130
|
+
Good morning,<br><br>
|
131
|
+
We would like to offer everything for your health from our Canadian online store!<br><br>
|
132
|
+
- All meds are FDA-approved!<br>
|
133
|
+
- No prescription required!<br>
|
134
|
+
- Worldwide shippinq!<br>
|
135
|
+
- 24/7 Customer support!<br><br>
|
136
|
+
<a href="http://gnlqgn.ulcercod.biz/?35917758">Just have a Iook at our site</a><br><br>
|
137
|
+
Best reqards,<br>
|
138
|
+
Octavio<br><br><br>
|
139
|
+
_____________________________________________________<br>
|
140
|
+
Remove <a href="http://gnlqgn.ulcercod.biz/?35917758">here</a><br>
|
141
|
+
_____________________________________________________
|
142
|
+
</body>
|
143
|
+
</html>
|
144
|
+
|
145
|
+
|
146
|
+
--===============1150126487==--
|
147
|
+
----=_smtp442829A200.A7C.2824.1811939338--
|
148
|
+
|
149
|
+
|
@@ -0,0 +1,65 @@
|
|
1
|
+
Received: from acsnt26.acsnet.net (acsnt26.acsnet.net [64.57.128.126])
|
2
|
+
by sb7.songbird.com (8.12.11/8.12.11) with ESMTP id k0M5iW8p014625
|
3
|
+
for <gpc-talk-bounces@grizz.org>; Sat, 21 Jan 2006 21:44:32 -0800
|
4
|
+
Received: from mail pickup service by acsnt26.acsnet.net with Microsoft
|
5
|
+
SMTPSVC; Sat, 21 Jan 2006 21:40:13 -0800
|
6
|
+
x-ReceivedDate: 1/21/2006 9:40:12 PM send off later
|
7
|
+
x-Original-RecipientList: SMTP:midica@banknbr.com;
|
8
|
+
Accept-Status: Accept
|
9
|
+
x-Original-To: "midica@banknbr.com" <midica@banknbr.com>
|
10
|
+
Thread-Topic: Non-Delivery: Your message to GPC-talk awaits moderator approval
|
11
|
+
Content-Class: urn:content-classes:message
|
12
|
+
Received: from sb7.songbird.com ([208.184.79.137]) by acsnt26.acsnet.net with
|
13
|
+
Microsoft SMTPSVC(5.0.2195.6713); Sat, 21 Jan 2006 21:40:12 -0800
|
14
|
+
Received: from sb7.songbird.com (sb7.songbird.com [127.0.0.1]) by
|
15
|
+
sb7.songbird.com (8.12.11/8.12.11) with ESMTP id k0M5ZXVc012945
|
16
|
+
for <midica@banknbr.com>; Sat, 21 Jan 2006 21:35:33 -0800
|
17
|
+
MIME-Version: 1.0
|
18
|
+
Content-Type: text/plain;
|
19
|
+
charset="us-ascii"
|
20
|
+
Message-ID: <118901c61f16$50a88200$7e803940@ACSNET.NET>
|
21
|
+
Subject: Non-Delivery: Your message to GPC-talk awaits moderator approval
|
22
|
+
From: <admin@banknbr.com>
|
23
|
+
X-Mailer: Microsoft CDO for Windows 2000
|
24
|
+
To: <gpc-talk-bounces@grizz.org>
|
25
|
+
Date: Sat, 21 Jan 2006 21:40:12 -0800
|
26
|
+
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441
|
27
|
+
Precedence: bulk
|
28
|
+
X-BeenThere: gpc-talk@grizz.org
|
29
|
+
X-Mailman-Version: 2.1.5
|
30
|
+
List-Id: Grizzly Peak Cyclists general discussion list <gpc-talk.grizz.org>
|
31
|
+
X-List-Administrivia: yes
|
32
|
+
Sender: <gpc-talk-bounces@grizz.org>
|
33
|
+
Errors-To: gpc-talk-bounces@grizz.org
|
34
|
+
X-Songbird: Found to be clean, Found to be clean
|
35
|
+
X-OriginalArrivalTime: 22 Jan 2006 05:40:12.0491 (UTC)
|
36
|
+
FILETIME=[5060F1B0:01C61F16]
|
37
|
+
X-SongbirdInformation: support@songbird.com for more information
|
38
|
+
X-Songbird-From: gpc-talk-bounces@grizz.org
|
39
|
+
Content-Transfer-Encoding: 8bit
|
40
|
+
X-MIME-Autoconverted: from quoted-printable to 8bit by sb7.songbird.com id
|
41
|
+
k0M5iW8p014625
|
42
|
+
|
43
|
+
--- Non-Delivery Report ---
|
44
|
+
The email below could not be delivered to the following user:
|
45
|
+
|
46
|
+
"midica@banknbr.com" <midica@banknbr.com>
|
47
|
+
|
48
|
+
Old message:
|
49
|
+
|
50
|
+
Your mail to 'GPC-talk' with the subject
|
51
|
+
|
52
|
+
Pre-approved Application #02413 Sat, 21 Jan 2006 23:34:37 -0600
|
53
|
+
|
54
|
+
Is being held until the list moderator can review it for approval.
|
55
|
+
|
56
|
+
The reason it is being held:
|
57
|
+
|
58
|
+
Post by non-member to a members-only list
|
59
|
+
|
60
|
+
Either the message will get posted to the list, or you will receive
|
61
|
+
notification of the moderator's decision. If you would like to cancel
|
62
|
+
this posting, please visit the following URL:
|
63
|
+
|
64
|
+
http://www.grizz.org/mailman/confirm/gpc-talk/a0dcd54d09c36132e01bd2f76e1de63b18189aac
|
65
|
+
|
@@ -0,0 +1,145 @@
|
|
1
|
+
From VM Fri Feb 9 13:30:31 2001
|
2
|
+
Return-Path: <python-list-admin@python.org>
|
3
|
+
Delivered-To: xxxxxx@zzzz.org
|
4
|
+
Received: from digicool.com (host15.digitalcreations.d.subnet.rcn.com [208.59.6.15])
|
5
|
+
by mail.zzzz.org (Postfix) with ESMTP id 3B39FD37AC
|
6
|
+
for <yyyyy@zzzz.org>; Thu, 8 Feb 2001 06:57:08 -0500 (EST)
|
7
|
+
Received: from <python-list-admin@python.org>
|
8
|
+
by digicool.com (CommuniGate Pro RULES 3.3.2)
|
9
|
+
with RULES id 1450267; Thu, 08 Feb 2001 06:59:26 -0500
|
10
|
+
Received: from ns2.digicool.com ([216.164.72.2] verified)
|
11
|
+
by digicool.com (CommuniGate Pro SMTP 3.3.2)
|
12
|
+
with ESMTP id 1450266 for yyyyy@mail.digicool.com; Thu, 08 Feb 2001 06:59:21 -0500
|
13
|
+
Received: from mail.python.org (mail.python.org [63.102.49.29])
|
14
|
+
by ns2.digicool.com (8.9.3/8.9.3) with ESMTP id GAA16165
|
15
|
+
for <yyyyy@digicool.com>; Thu, 8 Feb 2001 06:57:51 -0500
|
16
|
+
Received: from localhost.localdomain ([127.0.0.1] helo=mail.python.org)
|
17
|
+
by mail.python.org with esmtp (Exim 3.21 #1)
|
18
|
+
id 14Qphy-0000Sk-00
|
19
|
+
for yyyyy@digicool.com; Thu, 08 Feb 2001 06:57:54 -0500
|
20
|
+
Received: from [212.55.105.23] (helo=proxy.ggggg.com)
|
21
|
+
by mail.python.org with esmtp (Exim 3.21 #1)
|
22
|
+
id 14Qpgv-0000O4-00
|
23
|
+
for python-list-admin@python.org; Thu, 08 Feb 2001 06:56:49 -0500
|
24
|
+
Received: by proxy.ggggg.com (Postfix on SuSE Linux 6.4 (i386)) via BOUNCE
|
25
|
+
id 7EA84D1046; Thu, 8 Feb 2001 14:00:07 +0100 (CET)
|
26
|
+
MIME-Version: 1.0
|
27
|
+
Content-Type: multipart/mixed;
|
28
|
+
boundary="11D14D1045.981637207/proxy.ggggg.com"
|
29
|
+
Message-Id: <20010208130007.7EA84D1046@proxy.ggggg.com>
|
30
|
+
Precedence: bulk
|
31
|
+
List-Help: <mailto:python-list-request@python.org?subject=help>
|
32
|
+
List-Post: <mailto:python-list@python.org>
|
33
|
+
List-Subscribe: <http://mail.python.org/mailman/listinfo/python-list>,
|
34
|
+
<mailto:python-list-request@python.org?subject=subscribe>
|
35
|
+
List-Id: General discussion list for the Python programming language <python-list.python.org>
|
36
|
+
List-Unsubscribe: <http://mail.python.org/mailman/listinfo/python-list>,
|
37
|
+
<mailto:python-list-request@python.org?subject=unsubscribe>
|
38
|
+
List-Archive: <http://mail.python.org/pipermail/python-list/>
|
39
|
+
From: MAILER-DAEMON@proxy.ggggg.com (Mail Delivery System)
|
40
|
+
Sender: python-list-owner@python.org
|
41
|
+
To: python-list-admin@python.org
|
42
|
+
Subject: Undelivered Mail Returned to Sender
|
43
|
+
Date: Thu, 8 Feb 2001 14:00:07 +0100 (CET)
|
44
|
+
X-Autogenerated: Mirror
|
45
|
+
X-Mirrored-by: <python-list-admin@python.org>
|
46
|
+
X-BeenThere: python-list@python.org
|
47
|
+
X-Mailman-Version: 2.0.1 (101270)
|
48
|
+
|
49
|
+
This is a MIME-encapsulated message.
|
50
|
+
|
51
|
+
--11D14D1045.981637207/proxy.ggggg.com
|
52
|
+
Content-Description: Notification
|
53
|
+
Content-Type: text/plain
|
54
|
+
|
55
|
+
This is the Postfix on SuSE Linux 6.4 (i386) program at host proxy.ggggg.com.
|
56
|
+
|
57
|
+
I'm sorry to have to inform you that the message returned
|
58
|
+
below could not be delivered to one or more destinations.
|
59
|
+
|
60
|
+
For further assistance, please contact <postmaster@proxy.ggggg.com>
|
61
|
+
|
62
|
+
If you do so, please include this problem report. You can
|
63
|
+
delete your own text from the message returned below.
|
64
|
+
|
65
|
+
The Postfix on SuSE Linux 6.4 (i386) program
|
66
|
+
|
67
|
+
<ttttt@ggggg.com>: Command died with status 17: "/usr/sbin/amavis". Command
|
68
|
+
output: Can't use an undefined value as a symbol reference at
|
69
|
+
/usr/sbin/amavis line 1178.
|
70
|
+
|
71
|
+
|
72
|
+
--11D14D1045.981637207/proxy.ggggg.com
|
73
|
+
Content-Description: Undelivered Message
|
74
|
+
Content-Type: message/rfc822
|
75
|
+
|
76
|
+
Received: from mail.i-s-o.net (mail.i-s-o.net [212.55.96.66])
|
77
|
+
by proxy.ggggg.com (Postfix on SuSE Linux 6.4 (i386)) with SMTP id 11D14D1045
|
78
|
+
for <ttttt@ggggg.com>; Thu, 8 Feb 2001 14:00:06 +0100 (CET)
|
79
|
+
Received: (qmail 14297 invoked by uid 0); 8 Feb 2001 11:56:43 -0000
|
80
|
+
Received: from mail.python.org (63.102.49.29)
|
81
|
+
by mail.i-s-o.net with SMTP; 8 Feb 2001 11:56:43 -0000
|
82
|
+
Received: from localhost.localdomain ([127.0.0.1] helo=mail.python.org)
|
83
|
+
by mail.python.org with esmtp (Exim 3.21 #1)
|
84
|
+
id 14QpgG-0000Lg-00; Thu, 08 Feb 2001 06:56:08 -0500
|
85
|
+
Received: from [194.183.224.20] (helo=relay.ppppp.net)
|
86
|
+
by mail.python.org with esmtp (Exim 3.21 #1)
|
87
|
+
id 14QpeE-0000DS-00
|
88
|
+
for python-list@python.org; Thu, 08 Feb 2001 06:54:03 -0500
|
89
|
+
Received: from hercule.ppppp.be (hercule.ppppp.be [194.183.229.151])
|
90
|
+
by relay.ppppp.net (8.11.0/8.11.0) with ESMTP id f18Bruv05655
|
91
|
+
for <python-list@python.org>; Thu, 8 Feb 2001 12:53:56 +0100 (MET)
|
92
|
+
From: Gregoire Welraeds <greg@ppppp.be>
|
93
|
+
X-Sender: gwelr@localhost
|
94
|
+
To: Python Mailling list <python-list@python.org>
|
95
|
+
Subject: None assigment
|
96
|
+
Message-ID: <Pine.BSF.4.21.0102081248050.4685-100000@localhost>
|
97
|
+
MIME-Version: 1.0
|
98
|
+
Content-Type: TEXT/PLAIN; charset=US-ASCII
|
99
|
+
Sender: python-list-admin@python.org
|
100
|
+
Errors-To: python-list-admin@python.org
|
101
|
+
X-BeenThere: python-list@python.org
|
102
|
+
X-Mailman-Version: 2.0.1 (101270)
|
103
|
+
Precedence: bulk
|
104
|
+
List-Help: <mailto:python-list-request@python.org?subject=help>
|
105
|
+
List-Post: <mailto:python-list@python.org>
|
106
|
+
List-Subscribe: <http://mail.python.org/mailman/listinfo/python-list>,
|
107
|
+
<mailto:python-list-request@python.org?subject=subscribe>
|
108
|
+
List-Id: General discussion list for the Python programming language <python-list.python.org>
|
109
|
+
List-Unsubscribe: <http://mail.python.org/mailman/listinfo/python-list>,
|
110
|
+
<mailto:python-list-request@python.org?subject=unsubscribe>
|
111
|
+
List-Archive: <http://mail.python.org/pipermail/python-list/>
|
112
|
+
Date: Thu, 8 Feb 2001 12:54:00 +0100 (CET)
|
113
|
+
|
114
|
+
|
115
|
+
While playing a bit with python 2.0, I found that I can assign some value
|
116
|
+
to None
|
117
|
+
|
118
|
+
EG: None= 2
|
119
|
+
|
120
|
+
which I found to be very pernicious because then the following, for
|
121
|
+
example, won't work any more:
|
122
|
+
|
123
|
+
>>> b= filter(None, [1,2,'',3])
|
124
|
+
|
125
|
+
Bug or feature ?
|
126
|
+
|
127
|
+
If it is a feature (I suppose it is not a bug :), what is the interest of
|
128
|
+
this ?
|
129
|
+
|
130
|
+
Ppppp Development team
|
131
|
+
-------------------------------------------------------------------------------
|
132
|
+
Ppppp Technologies sa/nv Tel: +32-2-6409194
|
133
|
+
Rue Tenbosch, 9 Fax: +32-2-6403154
|
134
|
+
B-1000 Brussels general information: info@ppppp.net
|
135
|
+
BELGIUM technical information: helpdesk@ppppp.net
|
136
|
+
URL: http://www.ppppp.be/
|
137
|
+
-------------------------------------------------------------------------------
|
138
|
+
|
139
|
+
|
140
|
+
--
|
141
|
+
http://mail.python.org/mailman/listinfo/python-list
|
142
|
+
|
143
|
+
--11D14D1045.981637207/proxy.ggggg.com--
|
144
|
+
|
145
|
+
|