From oracle at provocation.net Thu Feb 2 15:42:01 2012 From: oracle at provocation.net (Zenon Panoussis) Date: Thu, 02 Feb 2012 14:42:01 -0000 Subject: [Bug 925502] [NEW] VAR_PREFIX should be runtime-configurable References: <20120202144201.14270.76216.malonedeb@chaenomeles.canonical.com> Message-ID: <20120202144201.14270.76216.malonedeb@chaenomeles.canonical.com> Public bug reported: While there are many good and even pressing reasons to put the list files someplace other than in /var/lib/mailman, VAR_PREFIX is a compile- time option that cannot be set in mm_cfg. As a result, you have to choose *either* the benefits of moving the list files out of /var/lib *or* the benefits of running a distro with automatic updates; you can't have both. RFE: please make VAR_PREFIX configurable from mm_cfg.py. See also https://bugzilla.redhat.com/show_bug.cgi?id=786822 ** Affects: mailman Importance: Undecided Status: New -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/925502 Title: VAR_PREFIX should be runtime-configurable To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/925502/+subscriptions From 925559 at bugs.launchpad.net Thu Feb 2 17:20:52 2012 From: 925559 at bugs.launchpad.net (benste) Date: Thu, 02 Feb 2012 16:20:52 -0000 Subject: [Bug 925559] [NEW] Mailman Masterrunner keeps locks after force References: <20120202162052.27068.75526.malonedeb@soybean.canonical.com> Message-ID: <20120202162052.27068.75526.malonedeb@soybean.canonical.com> Public bug reported: I've existed Mailman just closing my terminal which didn't stop it properly. Since a8 I'm getting a message to use --force to start it which doesn't delete the locks directory hence doesn't start it. benste at benste-vpc-sb1c5e:~/Projects/Mailman/mailman-3.0.0a8$ bin/mailman start --force usage: mailman [-h] [-v] [-C CONFIG] {help,aliases,create,import21,info,inject,lists,members,qfile,remove,reopen,restart,start,status,stop,unshunt,version,withlist} ... mailman: error: A previous run of GNU Mailman did not exit cleanly. Try using --force. Deleting all files in ./locks enables me to start it again. ** Affects: mailman Importance: Undecided Status: New -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/925559 Title: Mailman Masterrunner keeps locks after force To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/925559/+subscriptions From 925559 at bugs.launchpad.net Thu Feb 2 17:40:57 2012 From: 925559 at bugs.launchpad.net (Barry Warsaw) Date: Thu, 02 Feb 2012 16:40:57 -0000 Subject: [Bug 925559] Re: Mailman Masterrunner keeps locks after force References: <20120202162052.27068.75526.malonedeb@soybean.canonical.com> Message-ID: <20120202164057.8529.9085.launchpad@gac.canonical.com> ** Tags added: mailman3 -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/925559 Title: Mailman Masterrunner keeps locks after force To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/925559/+subscriptions From mark at msapiro.net Thu Feb 2 21:23:48 2012 From: mark at msapiro.net (Mark Sapiro) Date: Thu, 02 Feb 2012 20:23:48 -0000 Subject: [Bug 925502] Re: VAR_PREFIX should be runtime-configurable References: <20120202144201.14270.76216.malonedeb@chaenomeles.canonical.com> Message-ID: <20120202202348.12012.79127.malone@chaenomeles.canonical.com> VAR_PREFIX is configurable in mm_cfg.py. The problem is that 22 other directories/files are defined directly or indirectly in Defaults.py following the definition of VAR_PREFIX. mm_cfg.py imports everything from Defaults and then allows you to override any of the imported values. Simply changing VAR_PREFIX in mm_cfg.py doesn't change the definitions of these other 22 variables already defined in Defaults.py. If you redefine VAR_PREFIX in mm_cfg .py, you need to copy all the dependent definitions after that as follows: VAR_PREFIX = 'new/value' LIST_DATA_DIR = os.path.join(VAR_PREFIX, 'lists') LOG_DIR = os.path.join(VAR_PREFIX, 'logs') LOCK_DIR = os.path.join(VAR_PREFIX, 'locks') DATA_DIR = os.path.join(VAR_PREFIX, 'data') SPAM_DIR = os.path.join(VAR_PREFIX, 'spam') PUBLIC_ARCHIVE_FILE_DIR = os.path.join(VAR_PREFIX, 'archives', 'public') PRIVATE_ARCHIVE_FILE_DIR = os.path.join(VAR_PREFIX, 'archives', 'private') QUEUE_DIR = os.path.join(VAR_PREFIX, 'qfiles') INQUEUE_DIR = os.path.join(QUEUE_DIR, 'in') OUTQUEUE_DIR = os.path.join(QUEUE_DIR, 'out') CMDQUEUE_DIR = os.path.join(QUEUE_DIR, 'commands') BOUNCEQUEUE_DIR = os.path.join(QUEUE_DIR, 'bounces') NEWSQUEUE_DIR = os.path.join(QUEUE_DIR, 'news') ARCHQUEUE_DIR = os.path.join(QUEUE_DIR, 'archive') SHUNTQUEUE_DIR = os.path.join(QUEUE_DIR, 'shunt') VIRGINQUEUE_DIR = os.path.join(QUEUE_DIR, 'virgin') BADQUEUE_DIR = os.path.join(QUEUE_DIR, 'bad') RETRYQUEUE_DIR = os.path.join(QUEUE_DIR, 'retry') MAILDIR_DIR = os.path.join(QUEUE_DIR, 'maildir') PIDFILE = os.path.join(DATA_DIR, 'master-qrunner.pid') SITE_PW_FILE = os.path.join(DATA_DIR, 'adm.pw') LISTCREATOR_PW_FILE = os.path.join(DATA_DIR, 'creator.pw') ** Changed in: mailman Importance: Undecided => Wishlist ** Changed in: mailman Status: New => Invalid ** Changed in: mailman Assignee: (unassigned) => Mark Sapiro (msapiro) -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/925502 Title: VAR_PREFIX should be runtime-configurable To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/925502/+subscriptions From oracle at provocation.net Thu Feb 2 23:30:52 2012 From: oracle at provocation.net (Zenon Panoussis) Date: Thu, 02 Feb 2012 22:30:52 -0000 Subject: [Bug 925502] Re: VAR_PREFIX should be runtime-configurable References: <20120202144201.14270.76216.malonedeb@chaenomeles.canonical.com> Message-ID: <20120202223052.8426.15393.malone@gac.canonical.com> Mark, thanks for this meticulous list in comment #1. It is a solution to the problem, albeit a cumbersome one. Based on what you wrote, I am assuming that mailman first reads Defaults.py and then reads mm_cfg.py, so that the latter overrides the variables that happen to be set in both. If that is so, then the elegant way to allow any variable in mm_cfg.py to override Defaults.py, would be to reverse the order in which the two files are read. In other words, first read mm_cfg.py and set all the variables in it. Then run through Defaults.py conditionally: if var is unset, then set, else skip. The end result would be that you can set VAR_PREFIX or any other variable with children in mm_cfg.py and still leave the children definitions in Defaults.py untouched as long as they just follow their parent. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/925502 Title: VAR_PREFIX should be runtime-configurable To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/925502/+subscriptions From mark at msapiro.net Fri Feb 3 02:35:03 2012 From: mark at msapiro.net (Mark Sapiro) Date: Fri, 03 Feb 2012 01:35:03 -0000 Subject: [Bug 925502] Re: VAR_PREFIX should be runtime-configurable References: <20120202144201.14270.76216.malonedeb@chaenomeles.canonical.com> Message-ID: <20120203013503.12214.31474.malone@chaenomeles.canonical.com> Various Mailman modules get the settings via the Python statement from Mailman import mm_cfg This causes Python to read mm_cfg.py and execute all the statements therein. The first executable statement in mm_cfg.py, at least as distributed, is from Defaults import * This causes Python to read Defaults.py and execute all the statements therein and then make every name from that module available in the current namespace. Thus, at this point, everything defined in Defaults.py is available with its default value. Python then continues to execute the remaining statements in mm_cfg.py which normally serve to redefine some of the defaults. If the order were reversed, i.e. if the from Defaults import * statement were at the end of mm_cfg.py instead of the beginning, all the default definitions would override anything previously set in mm_cfg.py which obviously wouldn't work. Additionally, It would also cause any statements in mm_cfg.py which depend on definitions in Defaults.py such as the helper functions add_virtualhost() to fail. To do what you suggest in the way you suggest would require implementing a special purpose Python parser within Mailman to read Defaults .py and set only those things which were unset. Also, the problem of the helper functions being undefined at mm_cfg.py time would still exist. This is not a viable approach. If we were doing this from scratch, we could split Defaults.py into two pieces, one which set all the direct variables and one which set all those things defined in terms of things set in the first piece. Then mm_cfg.py could import all the definitions from the first part at the beginning and all those from the second part at the end, but this is not viable for two reasons. It would break every installation with an existing mm_cfg.py, i.e. every existing installation. It would make it impossible to override any of the things defined in the second part. If you can come up with a patch to do what you want that would work in all cases and not break any existing mm_cfg.py files, I would consider it. In the mean time, you have the solution in comment #1. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/925502 Title: VAR_PREFIX should be runtime-configurable To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/925502/+subscriptions From noreply at launchpad.net Tue Feb 7 06:58:09 2012 From: noreply at launchpad.net (noreply at launchpad.net) Date: Tue, 07 Feb 2012 05:58:09 -0000 Subject: [Branch ~mailman-coders/mailman.client/trunk] Rev 23: - added a `get` method to the settings class to support more dictionary-like behaviour Message-ID: <20120207055809.1376.50687.launchpad@ackee.canonical.com> ------------------------------------------------------------ revno: 23 committer: Florian Fuchs branch nick: mailman.client timestamp: Tue 2012-02-07 06:55:59 +0100 message: - added a `get` method to the settings class to support more dictionary-like behaviour modified: mailman/client/_client.py mailman/client/docs/using.txt -- lp:mailman.client https://code.launchpad.net/~mailman-coders/mailman.client/trunk Your team Mailman Coders is subscribed to branch lp:mailman.client. To unsubscribe from this branch go to https://code.launchpad.net/~mailman-coders/mailman.client/trunk/+edit-subscription -------------- next part -------------- A non-text attachment was scrubbed... Name: revision-diff.txt Type: text/x-diff Size: 973 bytes Desc: not available URL: From ubuntu at fachschaft.physik.uni-bielefeld.de Tue Feb 7 18:20:48 2012 From: ubuntu at fachschaft.physik.uni-bielefeld.de (fs-physik-bielefeld) Date: Tue, 07 Feb 2012 17:20:48 -0000 Subject: [Bug 558106] Re: A MemberAdaptor for LDAP-based membership References: <20100408090607.1687.22727.launchpad@loganberry.canonical.com> Message-ID: <20120207172048.21374.69263.malone@gac.canonical.com> First of all, thanks for your work, it really helped me out. I also hacked a little modification, to support cacertfile and reqcert (for ldaps:// connections). If you like it, take it. ** Patch added: "LDAPMemberships.diff" https://bugs.launchpad.net/mailman/+bug/558106/+attachment/2722078/+files/LDAPMemberships.diff -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/558106 Title: A MemberAdaptor for LDAP-based membership To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/558106/+subscriptions From 837700 at bugs.launchpad.net Wed Feb 8 20:55:04 2012 From: 837700 at bugs.launchpad.net (Barry Warsaw) Date: Wed, 08 Feb 2012 19:55:04 -0000 Subject: [Bug 837700] Re: Issues with users subscribed via their preferred address References: <20110830211945.6463.36296.malonedeb@chaenomeles.canonical.com> Message-ID: <20120208195504.27916.72782.malone@wampee.canonical.com> Some thoughts: First, this should not cause problems with multiple deliveries since MM creates a set of recipient addresses for the message, which filters out duplicates. As for Member.__repr__() perhaps something like this (untested): def __repr__(self): if self._address is None: subscription = 'preferred={0}'.format(self._user.preferred_address) else: subscription = self._address return ''.format( subscription, self.mailing_list, self.role) Can you try that and see what you think? As for #1, I'm not sure it's a problem given the above, but if it does prove to be so, I can think of a few alternatives. Maybe the user should be disallowed from subscribing when an address they control is already subscribed with the same role. It's theoretically possible that an address could come under the control of the user after the fact, and that would be difficult to catch. Another possibility would be to convert the existing address-based subscription to a user-based subscription, but that might clobber the address that they actually want to get delivery on. E.g. they're subscribed with anne at example.com but their preferred is aperson at example.com. Any other ideas? I think if this is a problem, in the face of ambiguity, refuse to guess (i.e. disallow those double subscriptions). -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/837700 Title: Issues with users subscribed via their preferred address To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/837700/+subscriptions From wunderlich_barb at msn.com Sat Feb 11 00:07:34 2012 From: wunderlich_barb at msn.com (Barb Wunderlich) Date: Fri, 10 Feb 2012 23:07:34 -0000 Subject: [Bug 930462] [NEW] mailman unsubscribing people References: <20120210230734.14295.62822.malonedeb@wampee.canonical.com> Message-ID: <20120210230734.14295.62822.malonedeb@wampee.canonical.com> Public bug reported: CRITICAL!!!! Today 2/10/12) at 3:10 p.m. CST, the mailman software started unsubscribing people to our mailing list - PURRS1 mailing list. They receive a message from purrs1-bounces at purrsnaperville.org and are then deleted from the mailing list. Beofre this we had over 2000 addresses in our mailing list, now we are down to 776. I contacted LunarPages.Com who hosts our website, but they said we need to contact you about this problem. Please help ASAP. ** Affects: mailman Importance: Undecided Status: New -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/930462 Title: mailman unsubscribing people To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/930462/+subscriptions From mark at msapiro.net Sat Feb 11 04:17:20 2012 From: mark at msapiro.net (Mark Sapiro) Date: Sat, 11 Feb 2012 03:17:20 -0000 Subject: [Bug 930462] Re: mailman unsubscribing people References: <20120210230734.14295.62822.malonedeb@wampee.canonical.com> Message-ID: <20120211031720.14750.60743.malone@gac.canonical.com> The members were almost certainly unsubscribed by Mailman's bounce processing. Your hosting provider can review Mailman's 'bounce' log to verify this and can examine the logs of the outgoing MTA to possibly find out more. You can review your list's bounce processing settings for appropriateness and ensure that all the owner notifications are turned on so that you will receive notification when a member's delivery is disabled by bounce and before the member is removed. Without additional information to indicate that this is actually a bug and not a result of normal bounce processing, I can only assume that this is not a bug. ** Changed in: mailman Status: New => Incomplete ** Changed in: mailman Assignee: (unassigned) => Mark Sapiro (msapiro) -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/930462 Title: mailman unsubscribing people To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/930462/+subscriptions From wunderlich_barb at msn.com Sat Feb 11 15:35:32 2012 From: wunderlich_barb at msn.com (Barb Wunderlich) Date: Sat, 11 Feb 2012 14:35:32 -0000 Subject: [Bug 930462] Re: mailman unsubscribing people References: <20120210230734.14295.62822.malonedeb@wampee.canonical.com> <20120211031720.14750.60743.malone@gac.canonical.com> Message-ID: Hi. We think it was bounceprocessing but there is an errror in it..all those emails did not bounce back..reading down it appears that lunarpages says we hit some quota that may have caused the error..we are switching to constant contact once this is fixed. Please note the following email string and the two attachments and see if this helps.Thanks. Barb -----Original Message----- From: mailman at purrsnaperville.org Sender: mailman-bounces at zeus.lunarpages.com Date: Fri, 10 Feb 2012 13:10:23 To: Subject: Bounce action notification This is a Mailman mailing list bounce action notice: List: Purrs1 Member: jtgauza at yahoo.com Action: Subscription disabled. Reason: Excessive or fatal bounces. The triggering bounce notice is attached below. Questions? Contact the Mailman site administrator at mailman at purrsnaperville.org. --Forwarded Message Attachment-- Date: Fri, 10 Feb 2012 20:55:28 +0000 From: MAILER-DAEMON at yahoo.com To: purrs1-bounces at purrsnaperville.org Subject: Delivery failure Message from yahoo.com. Unable to deliver message to the following address(es). : This user doesn't have a yahoo.com account (aromano7987 at yahoo.com) [0] : Sorry your message to jtgauza at yahoo.com cannot be delivered. This account has been disabled or discontinued [#102]. : This user doesn't have a yahoo.com account (prettykittykittty99 at yahoo.com) [0] : This user doesn't have a yahoo.com account (tvillacci88 at yahoo.com) [0] : Sorry your message to valeriecintron at yahoo.com cannot be delivered. This account has been disabled or discontinued [#102]. --- Original message follows. The original message is over 5K. Message truncated. Return-Path: Received-SPF: none (domain of purrsnaperville.org does not designate permitted sender hosts) X-YMailISG: _CdUgx0WLDsTDSeWY4k7nS1nvdZu35lmn3nF3vfQe_ZPSgjU ZLjLeL.b3gH0Yt6qj9GG3g94IKj0YOv0mH39M5zbUeyLRZ9WZwYxtqg8U5B5 qVqX2IXaZPCY2X_bMCculeqi8ZlyJUrUR_N3a6YIp54o8vJTrWg2LCP8PS93 VdJXjdnEEq6XyFPdkn3rIEv6ME.sNPwKiMg4gFWCpCGcsk.IiEPZ48bko2Zf R1RcWZmQ2hrFcEc7tgPqxtaI8QUW3MqF3wKVDIngYbs_OGokIeztgk73H1cj wDBE.cDUyi2jioEd9S2YwICZkE95UW2X0L2crpZkVsCHY.7iY4H3BblyEk1O EY9rwC61SvvLnuSIagyRqKJbB2qBfuk3busWeqBJzv6M3wwK.bdEUl_eBDmB e4XkfHvMVtPmt.pxtQCQqTrIVVYCIFNomaumYkgCb9T4rZ5yy.mQbZo4p2mF x6mY7opbrUBN2rEFGMoOFll58QEMzGfa4ZFPigQ77YHmBKiVkCy3w6_qaBA0 lOdzi9K2NQnzwJ4cMJrh5udnJMQ_eKeOy7DbQavtS2zJVUiypL5BH8I7CalB StoqBxZzo3_U1FM9_ByiTWb26RjFI89LYaS23yU.kn4ADPert81_AbbF3YxM PU3ySCEJJ3Ocfic2noomfdh2D6b5yFedV0PiTbyi.tZpl5AlBatxP2OFJx6a OBeum77B1H1Hh5L5YccPRl34opeZ0j6aS7ulHYXP6.s3BhJezxS9IHpRiDDW _yYEP02TUhs96T9yoyGRk1s64apEmtIUeJ3IaddeFljABP_8jv8K5scOqEd_ HfEHAvr46C3fVy2C6a_KuKihPvuct24x0fwGxP_g4JVdnqG71hsGlxHQepwD C.2riMO0iMa1FJItU8l1DU_e3xwOU4Dqno6XV.KhZhYJb8_6WkAnSCfdn1Ep T0DzVf_A7KFldqAyKDQXe8FG5xvmRsto3S1MBTTSYQaFUipaiwHidtYsH2rj _L.tPuINApf4g.nLAfabQZCtNRj0O7BaLtXwMnnYDXKsHr4Fwn0jpQgVspVo pMievipShk529qeIggPzf4uQvi2908ak3lpGlbh3XP8a.EA7eL2da3Cc30pL L9v7l4zuvI3iIWy93IkyhfRWvjVWB_nxQEe.LtiPR4jk_mhcf61LO7_knOoy pLxwLEa3HJcsNvu.sQPE66RwH1M5BRJuFRpsLUfttG9kiFzaUkgTTQItI2Ch u8CQuQ5rYlJU7BAbcr2AIl00od.4HsK7liJRyD9tKs57rowOJzwgDmQrAoCl 3ZljbviW416TOALTDY6XqdoW19bBMWzs4YXYhEiG4SY548yautNCETosR8l9 ptT.VxMDBKmhkQ_k6.bdSgacplbbWN_csMEx_ndzg5cqV4u22.1dBruM6hEX fmHHA9BQpGt3VSknQx9Yij_DgtXPUn0Wl3E7r8S3.MSrTiHx17AcDLeGebCi 5HA2O9Vda_s_zjmGQcyMtR8.1p3r1qzj_Zc3_gGzvpKPokEhA8mvDi_zsj_W l_HUebytB7i8oHH39JFLlUS2YTqwyO6o3TADdC7ISvXu9Zb0PNOWzUiZi9c6 gmgWB4eQp9MUoz_y8rgv.utkdhwt0__ua421.iTco.nNylK.sGmowXiK.ZIG HOY8W0G4AcK5hWdHaeHxivoDccqQ98M3ml4C7YqPhBb.AirEAD2Jt1pn1Fhk NtdTs5zR0CtNPifBSX7IjknY2WRi9czxTBuulGxb X-Originating-IP: [67.210.126.165] Authentication-Results: mta1055.mail.sp2.yahoo.com from=purrsnaperville.org; domainkeys=fail (bad syntax); from=yahoo.com; dkim=permerror (bad sig) Received: from 127.0.0.1 (EHLO zeus.lunarpages.com) (67.210.126.165) by mta1055.mail.sp2.yahoo.com with SMTP; Fri, 10 Feb 2012 12:55:16 -0800 Received: from localhost ([127.0.0.1] helo=zeus.lunarpages.com) by zeus.lunarpages.com with esmtp (Exim 4.69) (envelope-from ) id 1RvxUd-00019A-VO; Fri, 10 Feb 2012 12:54:55 -0800 X-Yahoo *** MESSAGE TRUNCATED *** c="http://b.scorecardresearch.com/b?c1=2&c2=3000001&c3=&c4=wlhotm&c5=&c6=&c15=&cv=1.3&cj=1" style="display:none" width="0" height="0" alt="" /> > Date: Sat, 11 Feb 2012 03:17:20 +0000 > From: mark at msapiro.net > To: wunderlich_barb at msn.com > Subject: [Bug 930462] Re: mailman unsubscribing people > > The members were almost certainly unsubscribed by Mailman's bounce > processing. Your hosting provider can review Mailman's 'bounce' log to > verify this and can examine the logs of the outgoing MTA to possibly > find out more. > > You can review your list's bounce processing settings for > appropriateness and ensure that all the owner notifications are turned > on so that you will receive notification when a member's delivery is > disabled by bounce and before the member is removed. > > Without additional information to indicate that this is actually a bug > and not a result of normal bounce processing, I can only assume that > this is not a bug. > > ** Changed in: mailman > Status: New => Incomplete > > ** Changed in: mailman > Assignee: (unassigned) => Mark Sapiro (msapiro) > > -- > You received this bug notification because you are subscribed to the bug > report. > https://bugs.launchpad.net/bugs/930462 > > Title: > mailman unsubscribing people > > Status in GNU Mailman: > Incomplete > > Bug description: > CRITICAL!!!! > Today 2/10/12) at 3:10 p.m. CST, the mailman software started unsubscribing people to our mailing list - PURRS1 mailing list. They receive a message from purrs1-bounces at purrsnaperville.org and are then deleted from the mailing list. Beofre this we had over 2000 addresses in our mailing list, now we are down to 776. > I contacted LunarPages.Com who hosts our website, but they said we need to contact you about this problem. Please help ASAP. > > To manage notifications about this bug go to: > https://bugs.launchpad.net/mailman/+bug/930462/+subscriptions ** Attachment added: "Delivery failure2.msg" https://bugs.launchpad.net/bugs/930462/+attachment/2731593/+files/Delivery%20failure2.msg ** Attachment added: "Delivery failure.msg" https://bugs.launchpad.net/bugs/930462/+attachment/2731594/+files/Delivery%20failure.msg -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/930462 Title: mailman unsubscribing people To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/930462/+subscriptions From wunderlich_barb at msn.com Sat Feb 11 15:38:30 2012 From: wunderlich_barb at msn.com (Barb Wunderlich) Date: Sat, 11 Feb 2012 14:38:30 -0000 Subject: [Bug 930462] FW: Bug 930462 - mailman unsubscribing References: <20120210230734.14295.62822.malonedeb@wampee.canonical.com> Message-ID: Here's another email string. Also, we'd like to know if mailman has a backup of our email subscription list from Thursday 2/9/12 or earlier before any of this occurred. We would want to have it restored as we think we lost around 1700 emails. Thanks. Barb Subject: Fw: Bounce action notification To: wunderlich_barb at msn.com From: rachaelresk at yahoo.com Date: Sat, 11 Feb 2012 14:17:20 +0000 This has the quota at the end too Sent via BlackBerry by AT&T -----Original Message----- From: mailman at purrsnaperville.org Sender: mailman-bounces at zeus.lunarpages.com Date: Fri, 10 Feb 2012 13:10:24 To: Subject: Bounce action notification This is a Mailman mailing list bounce action notice: List: Purrs1 Member: mdhas3 at aol.com Action: Subscription disabled. Reason: Excessive or fatal bounces. The triggering bounce notice is attached below. Questions? Contact the Mailman site administrator at mailman at purrsnaperville.org. --Forwarded Message Attachment-- From: Mailer-Daemon at zeus.lunarpages.com To: purrs1-bounces at purrsnaperville.org Subject: Mail delivery failed: returning message to sender Date: Fri, 10 Feb 2012 20:56:15 +0000 This message was created automatically by mail delivery software. A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed: enj-eternily at rocketmail.com SMTP error from remote mail server after end of data: host mta3.am0.yahoodns.net [98.137.54.238]: 554 delivery error: dd This user doesn't have a rocketmail.com account (enj-eternily at rocketmail.com) [-15] - mta1069.mail.sp2.yahoo.com NBall at firstam.com SMTP error from remote mail server after RCPT TO:: host MX2.firstam.iphmx.com [68.232.135.97]: 550 #5.1.0 Address rejected. d.beeken at new.rr.com SMTP error from remote mail server after RCPT TO:: host hrndva-smtpin01.mail.rr.com [71.74.56.243]: 550 5.1.1 - Invalid mailbox: d.beeken at new.rr.com mdhas at aol.com SMTP error from remote mail server after RCPT TO:: host mailin-02.mx.aol.com [205.188.190.1]: 550 5.1.1 : Recipient address rejected: aol.com mdtrealy at aol.com SMTP error from remote mail server after RCPT TO:: host mailin-02.mx.aol.com [205.188.103.1]: 550 5.1.1 : Recipient address rejected: aol.com h4launch at aol.com SMTP error from remote mail server after RCPT TO:: host mailin-02.mx.aol.com [64.12.90.65]: 550 5.1.1 : Recipient address rejected: aol.com terry-thacker at hotmail.com SMTP error from remote mail server after RCPT TO:: host mx1.hotmail.com [65.54.188.94]: 550 Requested action not taken: mailbox unavailable jklloyd at wowway.com SMTP error from remote mail server after RCPT TO:: host mx01.wow.synacor.com [64.8.70.204]: 550 5.1.1 Recipient jklloyd at wowway.com does not exist here Feberweom9948 at wowway.com SMTP error from remote mail server after RCPT TO:: host mx01.wow.synacor.com [64.8.70.204]: 550 5.1.1 Recipient Feberweom9948 at wowway.com does not exist here jberghofer at wowway.com SMTP error from remote mail server after RCPT TO:: host mx01.wow.synacor.com [64.8.70.204]: 550 5.1.1 Recipient jberghofer at wowway.com does not exist here jmgniackk at gmail.com SMTP error from remote mail server after RCPT TO:: host gmail-smtp-in.l.google.com [74.125.53.26]: 550-5.1.1 The email account that you tried to reach does not exist. Please try 550-5.1.1 double-checking the recipient's email address for typos or 550-5.1.1 unnecessary spaces. Learn more at 550 5.1.1 http://support.google.com/mail/bin/answer.py?answer=6596 y4si4101986pbb.127 inbaker647 at gmail.com SMTP error from remote mail server after RCPT TO:: host gmail-smtp-in.l.google.com [74.125.53.26]: 550-5.1.1 The email account that you tried to reach does not exist. Please try 550-5.1.1 double-checking the recipient's email address for typos or 550-5.1.1 unnecessary spaces. Learn more at 550 5.1.1 http://support.google.com/mail/bin/answer.py?answer=6596 y4si4101986pbb.127 jazapp96 at gmail.com SMTP error from remote mail server after RCPT TO:: host gmail-smtp-in.l.google.com [74.125.53.26]: 550-5.1.1 The email account that you tried to reach does not exist. Please try 550-5.1.1 double-checking the recipient's email address for typos or 550-5.1.1 unnecessary spaces. Learn more at 550 5.1.1 http://support.google.com/mail/bin/answer.py?answer=6596 y4si4101986pbb.127 niehayette at hotmail.com SMTP error from remote mail server after RCPT TO:: host mx3.hotmail.com [65.55.37.72]: 550 Requested action not taken: mailbox unavailable amy345us at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. jacquelyn_beth at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. natalieedwards at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. bumble531 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. jboulder at wowway.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. carmanda8286 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. imfallin4him at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. steveragsdale99 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. dyanawise at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. lgrivett at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. nala621 at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. darbooth at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. flyakite77 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. marie.erik at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. christianmacdonnell at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. anth8320 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. llambajian at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. meg2242 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. wish4it at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. torressamantha38 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. ryan at ronniegsales.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. bsheller at lodgistica.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. myoungbrown at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. lmscarna at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. samuel.shea at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. thesumans at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. loretta.ashley at us.mcd.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. a.boege at mchsi.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. earlball at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. catluver78 at cs.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. jonryanmarc3 at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. gfest at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. mandstravel at wowway.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. m.smithservies at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. kzcraig2 at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. bs.betty357 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. gbroad at wideopenwest.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. classicalpiano.waldron at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. suarezcrew83 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. bmederich at dykema.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. mgbrown75 at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Jtech26 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. bridget.bowen at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. ERIC.MEETER at grace.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. megand63 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. sheila at wetnose.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. jgilbert at thedilly.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. cocoa7175 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. shielsmieh at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. lisazbrozek at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. kimberly000 at ameritech.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. geargal60 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. jalley86 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. lukatcontreras at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. allgood7 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. bhejna at plainfieldpd.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. nikisells at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. tickerxtunexup at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. pumas_609 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. mtmama4 at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Meridith.bell at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. sue.ranus at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. bob_guzman at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Kendra.stock at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. kroderick at mac.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. barb at megandy.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. retana426 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. rcgrandy at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. johnsen1141 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. mplobo22 at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. the_mam22 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. trollkeep_kitty_haven at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Irishprincess8381 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. tdisch0728 at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. barenraci at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. sndrech at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. keenzxlilxtura at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. weathercoldsmith at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. shaheryarhasans at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. statsman11 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. rcb923 at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. dabestcheer at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. wwrrnvll4 at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Chris.Haring-Clausen at hmhpub.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. rplacek at mail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. celeste1985 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. ssanchez106 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. taramwalters at wowway.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. talha.shah at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. kathleenkirk17 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. gph8078 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. kristingehrels at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. lweber0326 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. john.wheeler at exeloncorp.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. pgoop2750 at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. dane442 at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. jhart at chemtechservicesinc.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. alreadygone731 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. katil82441 at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. dot.kaiser at harrisbank.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. candw01 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. k9oz at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. imnumbr10 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. scranscorp at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Melz_oioioi at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. jpdnavarro at mac.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. mollyglana at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. stuffinstoo at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. contraditionaw at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. AshleyRSwindell at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. mdhas3 at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. megan at sdsmarket.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. proudpitbullmom at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. victoria_bunch at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. mermaid7c at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. cherrolb at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. cierullo at live.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. jessica.kubit at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. bernadette.a.mcmahon at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. suztb at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. susantleo at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. candice_beeler at concentra.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. akgaudio at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Mildred.Singer at comed.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. grapex420 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. silva.elizabethann at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. icemn16 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. rysjimmy1994 at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. mkc at cbmic.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. tljanik at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. sue.lee at alcatel-lucent.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. shanstar3245 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. debstorrs at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. kevinsun94 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. anithasmakam at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. ingtic11 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. k.smith at schoolkidz.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. pattimarchese at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. sarahehenrickson at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. lyork_ at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. christine at haldernet.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Marathongirl13 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. sharpd25 at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. lovexpeacexvball at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. hpetrovich at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. kmtregl at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. cellarguy1 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. angela.surprenant at fordhtc.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. m_best44 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. vabowers at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Sabine.Miller at uscellular.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. hans.weckerie at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. cpo at driven2win.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. kapijancwski at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. hogrider1937 at msn.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. dragonmasterk at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. lessacat at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. anngeee at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. wunderlich_barb at msn.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. katherine6789 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Erik.Jurgensen at eby-brown.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. amusic450 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. kellyscrittercare at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. tyreseaph at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. guitarbryce at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. kara.kaisershot at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. sep0906 at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. johnadavis1988 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. clboucek at msn.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Kathy.goldberg at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. labs.2007 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. vickiec19 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. heb7001 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. kcswier at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. afurio at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. sbjanicki at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. amculpepper at integrysenergy.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. adair578 at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. samiam3131 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. xlgan at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. jundonnally at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. mopher13 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. psychomunhay at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. bumblebee0704 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. lmproka at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. chelleeyore23 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. bstaszak at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. angelica3337 at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. jan.arnone at transguard.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. cindyrapley at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Jason at tailsinc.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. GAN1 at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. nanocharat at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. syd.kernica at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. angherika at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. uchitturi at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. phsh03 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. rikku_1124 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Ckburgan60 at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. thooker_1 at msn.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. forjamie at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. gosia04 at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. mjgillen08 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. pjordan at flavorchem.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. mayhem600cc at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. rorylstanley1 at msn.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. laura.grandt at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. terri.kelly at jpmchase.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. heatherharsen at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. sue at karensgang.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Valerie at 60yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. kmmarshall at email.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. enigmajosh at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. hnc407 at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. frmahaffey at fedex.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. abaureis at johncrane.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. dimitra_souleles at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. debruce at frontier.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. srsnel at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. bonilla.j at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. ginaamolina at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. margaretjoray at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. airplanejane at msn.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. youhadmeatmeow at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. dan.otte at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. martinanthonyschilling at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. AILEEN.BERRIOS at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. olsondick at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. meyer.kimber at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. jc_hosier at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. amy at tailsinc.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. amy at tavolino.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. turnerhms2000bms at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. margven35 at me.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. jmfenster at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. marianwerle at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. laureljolly at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. kerri.mathews at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. bebrightannie at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. sherylbernth at msn.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. freycom at wideopenwest.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. finns7 at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. karen.dady at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. mbeezhold at aaahawk.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. jessiste_tannin at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. aarcanon at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. bmota2525 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. redqueendoll at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. lstone at stny.rr.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. vyolet80 at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Gelqueen1 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. carianne.burnley at petsapalooza.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. petgirl81 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. ingrid.braze at opco.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. ameao8 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. jrot6049 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. xinlin.yu at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. hur_wilson at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. xxmbalesxx at aim.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. omnijess at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. canderson42290 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. dmnielsen at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. bdelcarlo at wooddale.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. atchette at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. sabojanette at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. chelleme at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. ann_arf at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Melissag260 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. kfinfrock at ikon.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. mateo430 at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. lmh2307 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. wendygrace at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. rmueller531 at wowway.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. randyandleanne at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. peterpanbamandstuff at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. mcthompson at williamblair.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. nnhsmanager at embarqmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. bradenfox1 at aim.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. lisantim63 at msn.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. amy.teerman at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. penelope.constanta at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Darrell.houston at me.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. shannonspetsitting at juno.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Eakie22 at gotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. mmcross1 at juno.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. gardengal502 at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. MKuehne at imo-online.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. jmategrano at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Airliner2112 at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. voss at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. junfamily2003 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. jason2010 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. kharth at wowway.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. aaj1967 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. ngtrader at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. vanessa.kgg at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. huskychamps at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. amcarter58 at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. lmw9610 at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. cabgx1 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. lynncarter at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. mhaskins630 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. tshimenetto at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. jmoy25 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. youchr at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. holli.thurston at bairdwarner.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. jmadams1981 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. krburkhamer at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. hrsjan at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. sgliesmann at wideopenwest.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. designsbygabriella at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. loving.lex at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. animalprograms at hamiltonhumane.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. classy908 at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. jeaniner88 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. chogs08 at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. djandconnie at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. pprcreek at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. micvoss at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. kowalczyks00 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Timothy.Weber at parsons.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. francisavillegas at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. dunhavn at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. spoorsJ at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. wendyjo5 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. mwrothe at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. 737kptan at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. mimiy8 at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. rmd312 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. terry at aryacommunications.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. debnbella at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. nancie54 at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. amyhatfield at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. jkopecky at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. brittany.swantek at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. j.mcguigan at mchsi.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. saj33 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. cdiamond at rue-noir.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. jessica.lynn.smith at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. blafratta at laborlawyers.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. princess1975 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Jrot60490 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. llbgiz at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. mjmcpa2001 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. ojenjen79 at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. ginazi27 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. contradictionaw at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Katie.mattix at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. tensmom at wowway.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. heather at thumbtackjobs0.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. connect at priteshgupta.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. c_foster_24 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. krife1074 at msn.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. velfarreeclipse at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. eabenfield at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. catheyruiz007 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. johna.lindstrom at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. seren29 at aol.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. hheflincwo3 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. pinkey_40411 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. t.dattalo at mail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Snowiebear1 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Reice4 at wowway.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. joshicca at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. hoerider1937 at msn.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. teenie.misfeldt at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. scottbrady3 at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. verocruiz at msn.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Christysinger1 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. info at designyblackbird.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. larson0625 at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Alexandra.schuetze at bmwna.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Cromwell_emily at yahoo.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. nikkichi74 at gmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. gator4954 at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. jessa_vemm at hotmail.com Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded. Terry at aryacommunicatoins.com The mail server could not deliver mail to terry at aryacommunicatoins.com. The account or domain may not exist, they may be blacklisted, or missing the proper dns entries. ------ This is a copy of the message, including all the headers. ------ Return-path: Received: from localhost ([127.0.0.1] helo=zeus.lunarpages.com) by zeus.lunarpages.com with esmtp (Exim 4.69) (envelope-from ) id 1RvxUd-00019A-VO; Fri, 10 Feb 2012 12:54:55 -0800 X-Yahoo-Newman-Property: ymail-3 X-Yahoo-Newman-Id: 381429.45488.bm at omp1053.mail.ne1.yahoo.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1328907262; bh=3ehlM5nmuODAxNMEC2mE4B7u/AIJsGAMrDpwTmSDbIo=; h=X-YMail-OSG:Received:X-Mailer:Message-ID:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type; b=fpWB0ofAx0W+5567q6bf8/AeJ2NG20BwQbCCy3eQfNsnAsNkZ6aLZ0OJb5ImssmrhlCPM6UKpQFryIbXpnAE/SY7rxpt9dBmaRZOdh5XD1g2zZxCx2TINzzMPdWnbLiqR3tlH8cmRESEIPTqN5d/OpmnDBCHoVlYKDNxEEMIWrc= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Mailer:Message-ID:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type; b=sByeB9Xnu730joSSUZTwAcrS4NhM0OLcGwg2nnrLyJwXU4D22BWZWxYM3+ZjiJnlOzeD4oe0ZO7LMEzMCH+1j1Y94//xIc9kEbtvFiHMvLFIsvLze1cR63paOS+MmUynEDYO2JwJtZ27MEIt1EzMZOvt7gL8TFrLb99fd8vYOKg=; X-YMail-OSG: vWci99gVM1n8_jci3ziKN_IahKnibC2LYpXI5sePD4eqmeV gQWH1AHv6swOgK4DQQDdrK4VCHmQSgegtQ8e3FumHCN73eQnVqE_R.tYIkmF z0e0i6ZDKflC2iKXErXsBIWHFA6V9dlj0YSGV5I7nHwX.Dt1bX3nCHsL0wJs DAeiIH83fSt8ZqegW.XBhywqZejkGfG18awHaDf6tYCzlitvM7oNkfD4dH4T VENyLEHkamspc1Xfgbdp14S_0JM0Naw3mDBiCANkSIbDRtZxG_GngRI4hC9v P3XUHmOR0._RVi27KMuolGplc9oEP6warl16__SqBGsCaErnPtLv_2WCc4s2 Nc0gqdkFZG0nsk1fqj5KhW1uM_Z74.EzMHrRy75ovpjZVoaFnMXL68_6ksRl kowgqtiYC2KR7yZQ8x3PgNaydqMxScIPg_F9oEsN_EDW5XYVKQnUmeI9eXtm FZLowl40TpJ1HHgcxcYTJ4mxwGbszCfxV7KxnspQ_AiFj.luDAkVmniaV3FI qe4QnD31.8hfZfcgKSBWdiiwN.dZd7EM7u72h4RmBpMYLkvrQSvJAJvkT3Vz iVtPgHCEjjJZqKvYOjTRtRMACIsW2rFzaDkCCakqFWg-- X-Mailer: YahooMailWebService/0.8.116.338427 Date: Fri, 10 Feb 2012 12:54:22 -0800 (PST) To: "purrs1 at purrsnaperville.org" MIME-Version: 1.0 X-Spam-Status: No, score=-1.7 X-Spam-Score: -16 X-Spam-Bar: - X-Ham-Report: Spam detection software, running on the system "zeus.lunarpages.com", has identified this incoming email as possible spam. The original message has been attached to this so you can view it (if it isn't spam) or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Hi everyone. This weekend is Petsmart Charities BIG ADOPTION EVENT. We will have over 40 cats and kittens to choose from. Come on down!! (quickly. we expect to be busy) THIS Saturday and Sunday 11-4 Naperville Petsmart (Rt 59 and 111th) <--most kittens (including 1 Maine Coon kitten).. Siamese Aurora Petsmart (Rt 59 and Liberty.. near Guitar Center/across from Meijer).<---long hair kittens and 1 Maine Coon kitten and all Maine Coon adults. (we will be at PETCO Sunday 12-3 too) http://purrsnaperville.petfinder.com http://www.facebook.com/purrsnaperville Questions/need suggestions??.. get a LIVE PERSON all day and all weekend. upto the minute up dates.. 630-815-4520 Among the cats featured 1. Four Maine Coon adults- all BIG and male 2. 2 Maine Coon kittens- 1 male .. 1 female.. 2. Seal point Siamese DECLAW 3. Cream point Siamese male <1 year 5. Russian blue female 6. OVER 10 KITTENS.. long hair and short hair.. all colors. orange, tabby, tabby with white, white, white with grey, Maine Coon, long hair, orange and white 7. 4 front paw declaws 8. 4 paw declaw-male 9. Senior girl who was the greeter cat at a nursing home locally (famous kitty!) 10.many others.. all colors.. types.. personalities.. calico.. LONG HAIR and short... pairs...good with dogs.. good with cats.. good with kids (even young kids). and dog like We know our cats too so just come on down and we will direct you where you need to go THIS Saturday and Sunday 11-4 Naperville Petsmart (Rt 59 and 111th) <--most kittens (including 1 Maine Coon kitten).. Siamese Aurora Petsmart (Rt 59 and Liberty.. near Guitar Center/across from Meijer).. long hair kittens and 1 Maine Coon kitten and all Maine Coon adults. :) [...] Content analysis details: (-1.7 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at http://www.dnswl.org/, no trust [98.138.229.167 listed in list.dnswl.org] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (youhadmeatmeow[at]yahoo.com) 1.5 SUBJ_ALL_CAPS Subject is all capitals -1.3 RP_MATCHES_RCVD Envelope sender domain matches handover relay domain -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] 0.0 HTML_MESSAGE BODY: HTML included in message X-Spam-Flag: NO X-Mailman-Approved-At: Fri, 10 Feb 2012 12:54:52 -0800 Message-ID: From: purrs1 at purrsnaperville.org Subject: [PURRS] BIG CAT ADOPTION EVENT THIS WEEKEND!! X-BeenThere: purrs1 at purrsnaperville.org X-Mailman-Version: 2.1.14-1 Precedence: list Reply-To: youhadmeatmeow at yahoo.com List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: multipart/mixed; boundary="===============1019145435==" Errors-To: purrs1-bounces at purrsnaperville.org Sender: purrs1-bounces at purrsnaperville.org X-ACL-Warn: { --===============1019145435== Content-Type: multipart/alternative; boundary="-1263564687-1932331698-1328907262=:26418" ---1263564687-1932331698-1328907262=:26418 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Hi everyone.=0A=A0=0AThis weekend is Petsmart Charities BIG ADOPTION EVENT.= We will have over 40 cats and kittens to choose from. Come on down!! (quic= kly. we expect to be busy)=0A=A0=0ATHIS Saturday=A0 and Sunday 11-4=0ANaper= ville Petsmart (Rt 59 and 111th) <--most kittens (including 1 Maine Coon ki= tten).. Siamese=0AAurora Petsmart (Rt 59 and Liberty.. near Guitar Center/a= cross from Meijer).<---long hair kittens and 1 Maine Coon kitten and all Ma= ine Coon adults.=0A(we will be at PETCO Sunday 12-3 too) =0A=A0=0Ahttp://pu= rrsnaperville.petfinder.com=0Ahttp://www.facebook.com/purrsnaperville=0A=A0= =0AQuestions/need suggestions??.. get a LIVE PERSON all day and all weekend= . upto the minute up dates.. 630-815-4520=0A=A0=0AAmong the cats featured= =0A1. Four Maine Coon adults- all BIG and male=0A2. 2 Maine Coon kittens- 1= male .. 1 female..=0A2. Seal point Siamese DECLAW=0A3. Cream point Siamese= male <1 year=0A5. Russian blue female=0A6. OVER 10 KITTENS.. long hair and= short hair.. all colors. orange, tabby, tabby with white, white, white wit= h grey, Maine Coon, long hair,orange and white=0A7. 4 front paw=A0declaws= =0A8. 4 paw declaw-male =0A9. Senior girl who was the greeter cat at a nurs= ing home locally (famous kitty!)=0A10.many others.. all colors.. types.. pe= rsonalities.. calico.. LONG HAIR and short... pairs...good with dogs.. good= with cats.. good with kids (even young kids). and dog like=0A=A0=0AWe know= our=A0=A0cats too so just come on down and we will direct you where you ne= ed to go=0A=A0=0ATHIS Saturday=A0 and Sunday 11-4=0ANaperville Petsmart (Rt= 59 and 111th) <--most kittens (including 1 Maine Coon kitten).. Siamese=0A= Aurora Petsmart (Rt 59 and Liberty.. near Guitar Center/across from Meijer)= .. long hair kittens and 1 Maine Coon kitten and all Maine Coon adults.=0A= =A0=0A:)=0A=0ARachael ---1263564687-1932331698-1328907262=:26418 Content-Type: text/html; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable
Hi everyone.
 
This weekend is Petsmart Charities BIG ADOPTION = EVENT. We will have over 40 cats and kittens to choose from. Come on down!!= (quickly. we expect to be busy)
 
THIS Saturday = ; and Sunday 11-4
Naperville Petsmart (Rt 59 and 111th) <--most kittens (including 1 Maine Coon kitten).. Siamese
Aurora Petsmart (R= t 59 and Liberty.. near Guitar Center/across from Meijer).<---l= ong hair kittens and 1 Maine Coon kitten and all Maine Coon adults.
(we will be at PETCO Sunday 12-3 too)
 
 
Questions/need sug= gestions??.. get a LIVE PERSON all day and all weekend. upto the minute up = dates.. 630-815-4520
 
Among the cats featured
1. Four Maine Coon adults- all BIG and male
2. 2 Maine Coon kittens- 1 male .. 1 female..
2. Seal point Siamese DECLAW
3. Cream point Siamese male <1 year
5. Russian blue female
6. OVER 10 KITTENS.. long hair and short hair.. = all colors. orange, tabby, tabby with white, white, white with grey, Maine = Coon, long hair,orange and white
7. 4 front paw declaws
8. 4 paw declaw-male
9. Senior girl who was the greeter cat at a nurs= ing home locally (famous kitty!)
10.many others.. all colors.. types.. personalit= ies.. calico.. LONG HAIR and short... pairs..= .good with dogs.. good with cats.. good with kids (even young kids). and do= g like
 
We know our  cats too so just = come on down and we will direct you where you need to go
 
THIS Saturday  and Sunday 11-4
Naperville Petsmart (Rt 59 and 111th) <--most= kittens (including 1 Maine Coon kitten).. Siamese
Aurora Petsmart (Rt 59 and Liberty.. near Guitar= Center/across from Meijer).. long hair kittens and 1 Maine Coon kitten and= all Maine Coon adults.
 
:)

Rachael
---1263564687-1932331698-1328907262=:26418-- --===============1019145435== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Purrs1 mailing list Purrs1 at purrsnaperville.org http://purrsnaperville.org/mailman/listinfo/purrs1_purrsnaperville.org --===============1019145435==-- -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/930462 Title: mailman unsubscribing people To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/930462/+subscriptions From mark at msapiro.net Sun Feb 12 01:56:44 2012 From: mark at msapiro.net (Mark Sapiro) Date: Sun, 12 Feb 2012 00:56:44 -0000 Subject: [Bug 930462] Re: mailman unsubscribing people References: <20120210230734.14295.62822.malonedeb@wampee.canonical.com> Message-ID: <20120212005644.14398.92075.malone@wampee.canonical.com> All of the reports in comment #2 appear to be legitimate bounces. The first 14 addresses in the notice in comment #3 also appear to be legitimate. The remaining "Domain purrsnaperville.org has exceeded the max emails per hour (400) allowed. Message discarded." messages indeed appear to be the result of a quota on outgoing mail from your domain imposed by your hosting provider. This is not a Mailman issue. Mailman has been told the address was undeliverable, so Mailman treats it as a bounce. The problem is your hosting service apparently can't support a mailman list with more than about 400 subscribers and can't support even that many if there is more than one post in an hour. This probably means it won't support anything that generates mail to more than 400 recipients in an hour. This is something you will have to discuss with your hosting provider. There is little that Mailman can do about it. See the FAQ at . There is a patch attached to that FAQ which implements throttling, but installation of that patch would have to be done by the hosting provider. Regarding backups, only the hosting provider can tell you if they made any backups and if they still have them. They would need to restore Mailman's lists/purrs1/config.pck file from an appropriate backup. ** Changed in: mailman Status: Incomplete => Invalid -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/930462 Title: mailman unsubscribing people To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/930462/+subscriptions From spet at spet.dk Mon Feb 13 11:04:57 2012 From: spet at spet.dk (Steffen Petersen) Date: Mon, 13 Feb 2012 10:04:57 -0000 Subject: [Bug 891676] Re: topics don't work with national(russian) languages References: <20111117154940.3920.84558.malonedeb@wampee.canonical.com> Message-ID: <20120213100457.15826.53364.malone@chaenomeles.canonical.com> May I add, that this affects non-national characters as well, notably brackets as used in the documentation (http://www.gnu.org/software/mailman/mailman-member/node30.html). Depending on mail client, topics such as [Networking] (as taken from the documentation) are downright impossible to define if the subject as a whole contains any characters the client decides to encode. I don't know the roadmap for 2.1.15, but I think this bug calls for a speedy release of a patched version. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/891676 Title: topics don't work with national(russian) languages To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/891676/+subscriptions From mark at msapiro.net Tue Feb 14 19:53:31 2012 From: mark at msapiro.net (Mark Sapiro) Date: Tue, 14 Feb 2012 18:53:31 -0000 Subject: [Bug 266754] Re: Add names to roster References: <20080905194238.1806.75744.launchpad@forster.canonical.com> Message-ID: <20120214185332.15414.97203.launchpad@chaenomeles.canonical.com> *** This bug is a duplicate of bug 558122 *** https://bugs.launchpad.net/bugs/558122 ** This bug has been marked a duplicate of bug 558122 Include FullName in roster views -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/266754 Title: Add names to roster To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/266754/+subscriptions From mark at msapiro.net Tue Feb 14 20:08:03 2012 From: mark at msapiro.net (Mark Sapiro) Date: Tue, 14 Feb 2012 19:08:03 -0000 Subject: [Bug 558122] Re: Include FullName in roster views References: <20100408090623.1687.54479.launchpad@loganberry.canonical.com> Message-ID: <20120214190803.15375.50156.malone@chaenomeles.canonical.com> The patch in comment #1 doesn't display well and is reversed. Here's a slightly different patch to do essentially the same thing. ** Patch added: "Patch to add real_name to roster." https://bugs.launchpad.net/mailman/+bug/558122/+attachment/2739316/+files/HTMLFormatter.patch -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/558122 Title: Include FullName in roster views To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/558122/+subscriptions From mark at msapiro.net Tue Feb 14 20:41:08 2012 From: mark at msapiro.net (Mark Sapiro) Date: Tue, 14 Feb 2012 19:41:08 -0000 Subject: [Bug 558122] Re: Include FullName in roster views References: <20100408090623.1687.54479.launchpad@loganberry.canonical.com> Message-ID: <20120214194108.15107.44720.malone@chaenomeles.canonical.com> And here's a patch which will show only the non-empty real names of the list members in the roster as text only, not as links to the member's options page. This is in response to . ** Patch added: "Patch to show only real names, not addresses and not hyperlinks in roster." https://bugs.launchpad.net/mailman/+bug/558122/+attachment/2739385/+files/HTMLFormatter.patch -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/558122 Title: Include FullName in roster views To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/558122/+subscriptions From mark at msapiro.net Tue Feb 14 20:59:41 2012 From: mark at msapiro.net (Mark Sapiro) Date: Tue, 14 Feb 2012 19:59:41 -0000 Subject: [Bug 558259] Re: Sender address cannot be detected [2.1 / 2.2] References: <20100408090841.1687.2773.launchpad@loganberry.canonical.com> Message-ID: <20120214195941.27719.24456.malone@soybean.canonical.com> *** This bug is a duplicate of bug 702516 *** https://bugs.launchpad.net/bugs/702516 Fixed as bug #702516. ** Changed in: mailman Status: New => Fix Committed ** Changed in: mailman Milestone: None => 2.1.15 ** This bug has been marked a duplicate of bug 702516 RFC 2047 encoded From: header is not correctly parsed. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/558259 Title: Sender address cannot be detected [2.1 / 2.2] To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/558259/+subscriptions From mark at msapiro.net Tue Feb 14 21:03:05 2012 From: mark at msapiro.net (Mark Sapiro) Date: Tue, 14 Feb 2012 20:03:05 -0000 Subject: [Bug 266662] Re: listinfo: cache References: <20080905194209.1806.52421.launchpad@forster.canonical.com> Message-ID: <20120214200306.14591.18357.launchpad@chaenomeles.canonical.com> ** Changed in: mailman Importance: Critical => Wishlist -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/266662 Title: listinfo: cache To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/266662/+subscriptions From mark at msapiro.net Tue Feb 14 21:04:34 2012 From: mark at msapiro.net (Mark Sapiro) Date: Tue, 14 Feb 2012 20:04:34 -0000 Subject: [Bug 265902] Re: Runs out of memory on larger (5M) messages. References: <20080905192656.27052.88697.launchpad@forster.canonical.com> Message-ID: <20120214200435.26193.21952.launchpad@gac.canonical.com> ** Changed in: mailman Importance: Critical => Wishlist -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/265902 Title: Runs out of memory on larger (5M) messages. To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/265902/+subscriptions From 266317 at bugs.launchpad.net Thu Feb 16 15:35:28 2012 From: 266317 at bugs.launchpad.net (claus) Date: Thu, 16 Feb 2012 14:35:28 -0000 Subject: [Bug 266317] Re: attachments archived even when archiving disabled References: <20080905193054.27052.86428.launchpad@forster.canonical.com> Message-ID: <20120216143528.2073.24341.malone@chaenomeles.canonical.com> I suggest marking this bug as a security issue. While testing a mailserver I came across this bug: Admins and Mailinglistadmins were not aware that years of archived attachments were stored on their server and could be accessed by an attacker gaining access to that system. They explicitly set archiving to "No" so confidential information would not be left lying around on the mailserver. => This is not expected behaviour => This can be become a very serious security issue for some users -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/266317 Title: attachments archived even when archiving disabled To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/266317/+subscriptions From syst3m.w0rm at gmail.com Fri Feb 17 15:58:03 2012 From: syst3m.w0rm at gmail.com (Aamir Khan) Date: Fri, 17 Feb 2012 14:58:03 -0000 Subject: [Bug 890675] Re: test_moderation fails on approved_at date comparison References: <20111115131254.3573.65620.malonedeb@wampee.canonical.com> Message-ID: <20120217145803.1142.76071.malone@chaenomeles.canonical.com> Why is a '-' at the end of date ? I have changed it to '+' and it works! But i don't know whether it is correct way to rectify the error. ** Patch added: "time.diff" https://bugs.launchpad.net/mailman/+bug/890675/+attachment/2749070/+files/time.diff -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/890675 Title: test_moderation fails on approved_at date comparison To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/890675/+subscriptions From amsciforum at gmail.com Fri Feb 17 16:24:31 2012 From: amsciforum at gmail.com (Stevan Harnad) Date: Fri, 17 Feb 2012 15:24:31 -0000 Subject: [Bug 934267] [NEW] mailers that generate lines with no CR/LF cause an infinitely long line on pipermail archive version References: <20120217152431.20621.6933.malonedeb@wampee.canonical.com> Message-ID: <20120217152431.20621.6933.malonedeb@wampee.canonical.com> Public bug reported: Attention Mark: From: Barry Warsaw Date: February 16, 2012 3:05:30 PM EST To: Stevan Harnad Cc: support at ecs.soton.ac.uk, Leslie Carr , Steve Hitchcock , Richard Poynder Subject: Re: infinitely long lines in mailman list archives On Jan 26, 2012, at 05:47 PM, Stevan Harnad wrote: Is there anything that can be done to make mailman lists readable when they originate from mailers that generate lines with no CR/LF? They are simply unreadable right now, and that greatly limits the visibility and useability of our pipermail lists. Happens with *at least* mac safari and firefox. http://mailman.ecs.soton.ac.uk/pipermail/goal/2012-January/000129.html This sounds like the following bug. https://bugs.launchpad.net/mailman/+bug/265931 If so, you might bring this up on the mailman-users mailing list, as it looks like the fix is fairly simple. Mark might be able to squeeze this into the 2.1.15 release. Cheers, -Barry ** Affects: mailman Importance: Undecided Status: New -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/934267 Title: mailers that generate lines with no CR/LF cause an infinitely long line on pipermail archive version To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/934267/+subscriptions From 890675 at bugs.launchpad.net Fri Feb 17 20:09:43 2012 From: 890675 at bugs.launchpad.net (Barry Warsaw) Date: Fri, 17 Feb 2012 19:09:43 -0000 Subject: [Bug 890675] Re: test_moderation fails on approved_at date comparison References: <20111115131254.3573.65620.malonedeb@wampee.canonical.com> Message-ID: <20120217190943.1038.84874.malone@chaenomeles.canonical.com> Aamir, the '-' at the end of the date is left over from trying to strip out the timezone information, which will be different everywhere you run the test suite. Because that's unpredictable data, it must be removed from the test output, or you'll get the failure as you've seen. blacktav's diff in comment #1 is the more correct fix for this problem, because it correctly strips off the +- sign, which indicates whether your timezone is east or west of UTC. Because I'm west of UTC, it's negative for me. I'm guessing your east of UTC, so that's why it is positive for you. This is definitely an easy fix, but here is my suggestion: why don't you create a branch of lp:mailman, apply blacktav's patch and run the test suite to ensure that it fixes the failure. If so, learn how to use bzr to commit the change locally, and then push your branch to Launchpad, using something like lp:~sys3mw0rm/mailman/bug-890675. Then you can use `bzr lp-propose` to submit a merge proposal into trunk. Please include a NEWS.rst file entry (see examples in that file) and please do give due credit to blacktav as well. Once you've submitted the merge proposal, I'll review it and commit it to trunk. This will give you a great opportunity to learn a bit about the code, and how we accept contributions. Ping me on IRC if you have questions. ** Changed in: mailman Status: New => Confirmed ** Changed in: mailman Importance: Undecided => Medium ** Changed in: mailman Milestone: None => 3.0.0b1 -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/890675 Title: test_moderation fails on approved_at date comparison To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/890675/+subscriptions From mark at msapiro.net Fri Feb 17 21:45:04 2012 From: mark at msapiro.net (Mark Sapiro) Date: Fri, 17 Feb 2012 20:45:04 -0000 Subject: [Bug 934267] Re: mailers that generate lines with no CR/LF cause an infinitely long line on pipermail archive version References: <20120217152431.20621.6933.malonedeb@wampee.canonical.com> Message-ID: <20120217204504.7950.46466.launchpad@gac.canonical.com> *** This bug is a duplicate of bug 266467 *** https://bugs.launchpad.net/bugs/266467 ** This bug has been marked a duplicate of bug 266467 allow message display to wrap (simple HTML provided) -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/934267 Title: mailers that generate lines with no CR/LF cause an infinitely long line on pipermail archive version To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/934267/+subscriptions From mark at msapiro.net Fri Feb 17 21:43:47 2012 From: mark at msapiro.net (Mark Sapiro) Date: Fri, 17 Feb 2012 20:43:47 -0000 Subject: [Bug 265931] Re: Formatting archives that don't have newlines References: <20080905192716.27052.9516.launchpad@forster.canonical.com> Message-ID: <20120217204348.30029.28106.launchpad@soybean.canonical.com> *** This bug is a duplicate of bug 266467 *** https://bugs.launchpad.net/bugs/266467 ** This bug has been marked a duplicate of bug 266467 allow message display to wrap (simple HTML provided) -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/265931 Title: Formatting archives that don't have newlines To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/265931/+subscriptions From syst3m.w0rm at gmail.com Sat Feb 18 01:35:24 2012 From: syst3m.w0rm at gmail.com (Aamir Khan) Date: Sat, 18 Feb 2012 00:35:24 -0000 Subject: [Merge] lp:~syst3mw0rm/mailman/bug-890675 into lp:mailman Message-ID: <20120218003519.26086.64326.launchpad@ackee.canonical.com> Aamir Khan has proposed merging lp:~syst3mw0rm/mailman/bug-890675 into lp:mailman. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~syst3mw0rm/mailman/bug-890675/+merge/93669 -- https://code.launchpad.net/~syst3mw0rm/mailman/bug-890675/+merge/93669 Your team Mailman Coders is requested to review the proposed merge of lp:~syst3mw0rm/mailman/bug-890675 into lp:mailman. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 1262 bytes Desc: not available URL: From mark at msapiro.net Sat Feb 18 03:23:34 2012 From: mark at msapiro.net (Mark Sapiro) Date: Sat, 18 Feb 2012 02:23:34 -0000 Subject: [Bug 808821] Re: Probe messages should not sent Precedence header References: <20110711145409.13440.95583.malonedeb@chaenomeles.canonical.com> Message-ID: <20120218022334.1351.21896.malone@chaenomeles.canonical.com> Fix committed for Mailman 2.1.15. See Still open for Mailman 3. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/808821 Title: Probe messages should not sent Precedence header To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/808821/+subscriptions From syst3m.w0rm at gmail.com Sat Feb 18 20:48:25 2012 From: syst3m.w0rm at gmail.com (Aamir Khan) Date: Sat, 18 Feb 2012 19:48:25 -0000 Subject: [Bug 935699] [NEW] disabled.py throws error while execution References: <20120218194825.21026.94923.malonedeb@wampee.canonical.com> Message-ID: <20120218194825.21026.94923.malonedeb@wampee.canonical.com> Public bug reported: src/mailman/bin/disabled.py throws execution while trying to execute it using python. $ python src/mailman/bin/disabled.py Traceback (most recent call last): File "src/mailman/bin/disabled.py", line 22, in from mailman import MailList File "/home/aamir/mailman-dev/mailman/src/mailman/bin/mailman.py", line 33, in from mailman.app.finder import find_components ImportError: No module named app.finder ** Affects: mailman Importance: Undecided Status: New -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/935699 Title: disabled.py throws error while execution To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/935699/+subscriptions From syst3m.w0rm at gmail.com Mon Feb 20 19:49:10 2012 From: syst3m.w0rm at gmail.com (Aamir Khan) Date: Mon, 20 Feb 2012 18:49:10 -0000 Subject: [Bug 890675] Re: test_moderation fails on approved_at date comparison References: <20111115131254.3573.65620.malonedeb@wampee.canonical.com> Message-ID: <20120220184911.5241.43953.launchpad@gac.canonical.com> ** Changed in: mailman Assignee: (unassigned) => Aamir Khan (syst3mw0rm) -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/890675 Title: test_moderation fails on approved_at date comparison To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/890675/+subscriptions From 937154 at bugs.launchpad.net Mon Feb 20 19:47:58 2012 From: 937154 at bugs.launchpad.net (Barry Warsaw) Date: Mon, 20 Feb 2012 18:47:58 -0000 Subject: [Bug 937154] [NEW] bin/disabled.py is nonfunctional References: <20120220184758.18960.44280.malonedeb@soybean.canonical.com> Message-ID: <20120220184758.18960.44280.malonedeb@soybean.canonical.com> Public bug reported: The bin/disabled.py script needs tests, documentation, and fixing in Mailman 2. ** Affects: mailman Importance: High Assignee: Barry Warsaw (barry) Status: Confirmed ** Tags: mailman3 ** Changed in: mailman Status: New => Confirmed ** Changed in: mailman Importance: Undecided => High ** Changed in: mailman Milestone: None => 3.0.0b1 -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/937154 Title: bin/disabled.py is nonfunctional To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/937154/+subscriptions From syst3m.w0rm at gmail.com Mon Feb 20 19:57:21 2012 From: syst3m.w0rm at gmail.com (Aamir Khan) Date: Mon, 20 Feb 2012 18:57:21 -0000 Subject: [Bug 935699] Re: disabled.py throws error while execution References: <20120218194825.21026.94923.malonedeb@wampee.canonical.com> Message-ID: <20120220185722.24468.46305.launchpad@chaenomeles.canonical.com> *** This bug is a duplicate of bug 937154 *** https://bugs.launchpad.net/bugs/937154 ** This bug has been marked a duplicate of bug 937154 bin/disabled.py is nonfunctional -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/935699 Title: disabled.py throws error while execution To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/935699/+subscriptions From 937154 at bugs.launchpad.net Mon Feb 20 20:18:06 2012 From: 937154 at bugs.launchpad.net (Barry Warsaw) Date: Mon, 20 Feb 2012 19:18:06 -0000 Subject: [Bug 937154] Re: bin/disabled.py is nonfunctional References: <20120220184758.18960.44280.malonedeb@soybean.canonical.com> Message-ID: <20120220191807.21883.59081.launchpad@wampee.canonical.com> ** Description changed: The bin/disabled.py script needs tests, documentation, and fixing in - Mailman 2. + Mailman 3. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/937154 Title: bin/disabled.py is nonfunctional To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/937154/+subscriptions From 938695 at bugs.launchpad.net Wed Feb 22 15:01:14 2012 From: 938695 at bugs.launchpad.net (strainu) Date: Wed, 22 Feb 2012 14:01:14 -0000 Subject: [Bug 938695] Re: [PATCH] No wrap in text emails References: <20120222140114.30090.18175.malonedeb@chaenomeles.canonical.com> Message-ID: <20120222140114.30090.54633.malone@chaenomeles.canonical.com> ** Attachment added: "Patch for HyperArch.py" https://bugs.launchpad.net/bugs/938695/+attachment/2770619/+files/preformat.patch -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/938695 Title: [PATCH] No wrap in text emails To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/938695/+subscriptions From 938695 at bugs.launchpad.net Wed Feb 22 15:01:14 2012 From: 938695 at bugs.launchpad.net (strainu) Date: Wed, 22 Feb 2012 14:01:14 -0000 Subject: [Bug 938695] [NEW] [PATCH] No wrap in text emails References: <20120222140114.30090.18175.malonedeb@chaenomeles.canonical.com> Message-ID: <20120222140114.30090.18175.malonedeb@chaenomeles.canonical.com> Public bug reported: As users of mailman in a corporate environment, we noticed that text or HTML emails sent by Outlook are not wrapped. When they arrive on mailman, the message text is automatically surrounded by
.
When someone wants to read the archive, the messages will appear with
very long lines, exceeding the width of the screen.

As a solution, we added  style="white-space:pre-wrap" to the PRE tag.
Any alternative solution is acceptable if the use of CSS is not OK.

** Affects: mailman
     Importance: Undecided
         Status: New

-- 
You received this bug notification because you are a member of Mailman
Coders, which is subscribed to GNU Mailman.
https://bugs.launchpad.net/bugs/938695

Title:
  [PATCH] No wrap in text emails

To manage notifications about this bug go to:
https://bugs.launchpad.net/mailman/+bug/938695/+subscriptions

From mark at msapiro.net  Wed Feb 22 16:37:51 2012
From: mark at msapiro.net (Mark Sapiro)
Date: Wed, 22 Feb 2012 15:37:51 -0000
Subject: [Bug 938695] Re: [PATCH] No wrap in text emails
References: <20120222140114.30090.18175.malonedeb@chaenomeles.canonical.com>
Message-ID: <20120222153752.4159.22955.launchpad@wampee.canonical.com>

*** This bug is a duplicate of bug 266467 ***
    https://bugs.launchpad.net/bugs/266467

** Changed in: mailman
       Status: New => Fix Released

** Changed in: mailman
    Milestone: None => 2.1.13rc1

** This bug has been marked a duplicate of bug 266467
   allow message display to wrap (simple HTML provided)

-- 
You received this bug notification because you are a member of Mailman
Coders, which is subscribed to GNU Mailman.
https://bugs.launchpad.net/bugs/938695

Title:
  [PATCH] No wrap in text emails

To manage notifications about this bug go to:
https://bugs.launchpad.net/mailman/+bug/938695/+subscriptions

From 685261 at bugs.launchpad.net  Sat Feb 25 23:51:28 2012
From: 685261 at bugs.launchpad.net (Barry Warsaw)
Date: Sat, 25 Feb 2012 22:51:28 -0000
Subject: [Bug 685261] Re: emailed command in subject header is ignored
References: <20101204190441.22665.47438.malonedeb@palladium.canonical.com>
Message-ID: <20120225225129.26686.15921.launchpad@soybean.canonical.com>

** Changed in: mailman/3.0
       Status: New => Confirmed

** Changed in: mailman/3.0
    Milestone: 2.1.15 => 3.0.0b1

** Changed in: mailman/3.0
     Assignee: (unassigned) => Barry Warsaw (barry)

-- 
You received this bug notification because you are a member of Mailman
Coders, which is subscribed to GNU Mailman.
https://bugs.launchpad.net/bugs/685261

Title:
  emailed command in subject header is ignored

To manage notifications about this bug go to:
https://bugs.launchpad.net/mailman/+bug/685261/+subscriptions

From 685261 at bugs.launchpad.net  Sun Feb 26 18:23:00 2012
From: 685261 at bugs.launchpad.net (Barry Warsaw)
Date: Sun, 26 Feb 2012 17:23:00 -0000
Subject: [Bug 685261] Re: emailed command in subject header is ignored
References: <20101204190441.22665.47438.malonedeb@palladium.canonical.com>
Message-ID: <20120226172301.26718.59585.launchpad@gac.canonical.com>

** Changed in: mailman/3.0
       Status: Confirmed => Fix Committed

-- 
You received this bug notification because you are a member of Mailman
Coders, which is subscribed to GNU Mailman.
https://bugs.launchpad.net/bugs/685261

Title:
  emailed command in subject header is ignored

To manage notifications about this bug go to:
https://bugs.launchpad.net/mailman/+bug/685261/+subscriptions