Report forwarded to debian-bugs-dist@lists.debian.org, Michael Beattie <mjb@debian.org>:
Bug#100028; Package ppp.   debian-bugs-dist@lists.debian.orgMichael Beattie  Subject: Bug#100028: pppd fails to terminate while executing connect script Reply-To: Daniel Ginsburg , 100028@bugs.debian.org Resent-From: Daniel Ginsburg Orignal-Sender: Daniel Ginsburg Resent-To: debian-bugs-dist@lists.debian.org Resent-CC: Michael Beattie Resent-Date: Fri, 08 Jun 2001 02:03:02 GMT Resent-Message-ID: Resent-Sender: owner@bugs.debian.org X-Debian-PR-Message: report 100028 X-Debian-PR-Package: ppp X-Debian-PR-Keywords: patch sid X-Loop: owner@bugs.debian.org Received: via spool by submit@bugs.debian.org id=B.991963274540 (code B ref -1); Fri, 08 Jun 2001 02:03:02 GMT Date: Fri, 8 Jun 2001 05:20:15 +0400 From: Daniel Ginsburg To: Debian Bug Tracking System Message-ID: <20010608052015.A1788@rain> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.3.18i X-Reportbug-Version: 1.17 Sender: Daniel Ginsburg Delivered-To: submit@bugs.debian.org Package: ppp Version: 2.4.1-1 Severity: normal Tags: patch sid If options 'persist' and 'holdoff 0' are set ppp fails to terminate on SIGTERM. It only kills connect script, restarts it immediately and continue running. When connection established pppd terminates ok on SIGTERM/SIGINT. The nature of problem is pppd's SIGTERM/SIGINT handler sets flag but fails to check it in main loop when no connection established yet and holdoff period is 0. The fix is one line. Corrected debian/patches/017_main.c.diff: --- ppp-2.4.1.orig/pppd/main.c Tue Mar 13 08:56:19 2001 +++ ppp-2.4.1/pppd/main.c Fri Jun 8 00:25:46 2001 @@ -548,6 +548,7 @@ pidfilename[0] = 0; } + handle_events(); if (!persist || (maxfail > 0 && unsuccess >= maxfail)) break; @@ -1778,7 +1779,8 @@ dbuf.dsize = vlen; if (tdb_store(pppdb, key, dbuf, TDB_REPLACE)) error("tdb_store failed: %s", tdb_error(pppdb)); - + free(vbuf); + } /* -- System Information Debian Release: testing/unstable Architecture: i386 Kernel: Linux rain 2.4.1 #1 ðÎÄ íÁÒ 19 21:34:46 MSK 2001 i586 Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R Versions of packages ppp depends on: ii libc6 2.2.3-5 GNU C Library: Shared libraries an ii libpam-modules 0.72-24 Pluggable Authentication Modules f ii libpam0g 0.72-24 Pluggable Authentication Modules l ii netbase 4.05 Basic TCP/IP networking system ii sysvinit 2.78-4 System-V like init. -- dg   Acknowledgement sent to Daniel Ginsburg <dg@warpsolutions.com>:
New Bug report received and forwarded. Copy sent to Michael Beattie <mjb@debian.org>.   -t  From: owner@bugs.debian.org (Debian Bug Tracking System) To: Daniel Ginsburg Subject: Bug#100028: Acknowledgement (pppd fails to terminate while executing connect script) Message-ID: In-Reply-To: <20010608052015.A1788@rain> References: <20010608052015.A1788@rain> X-Debian-PR-Message: ack 100028 Thank you for the problem report you have sent regarding Debian. This is an automatically generated reply, to let you know your message has been received. It is being forwarded to the developers mailing list for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): Michael Beattie If you wish to submit further information on your problem, please send it to 100028@bugs.debian.org (and *not* to submit@bugs.debian.org). Please do not reply to the address at the top of this message, unless you wish to report a problem with the Bug-tracking system. Darren Benham (administrator, Debian Bugs database)   Received: (at submit) by bugs.debian.org; 8 Jun 2001 01:21:14 +0000 From dginsburg@mail.ru Thu Jun 07 20:21:14 2001 Return-path: Received: from gnome01.sovam.com [::ffff:194.67.1.179] by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 158AxZ-0008NC-00; Thu, 07 Jun 2001 20:21:09 -0500 Received: from ts16-a163.dial.sovam.com ([195.239.3.163]:41483 "EHLO rain" ident: "NO-IDENT-SERVICE[2]" whoson: "dbg@online.ru" smtp-auth: TLS-CIPHER: TLS-PEER: ) by gnome01.sovam.com with ESMTP id ; Fri, 8 Jun 2001 05:20:18 +0400 Received: from dg by rain with local (Exim 3.22 #1 (Debian)) id 158Awi-0000XZ-00; Fri, 08 Jun 2001 05:20:16 +0400 Date: Fri, 8 Jun 2001 05:20:15 +0400 From: Daniel Ginsburg To: Debian Bug Tracking System Subject: pppd fails to terminate while executing connect script Message-ID: <20010608052015.A1788@rain> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.3.18i X-Reportbug-Version: 1.17 Sender: Daniel Ginsburg Delivered-To: submit@bugs.debian.org Package: ppp Version: 2.4.1-1 Severity: normal Tags: patch sid If options 'persist' and 'holdoff 0' are set ppp fails to terminate on SIGTERM. It only kills connect script, restarts it immediately and continue running. When connection established pppd terminates ok on SIGTERM/SIGINT. The nature of problem is pppd's SIGTERM/SIGINT handler sets flag but fails to check it in main loop when no connection established yet and holdoff period is 0. The fix is one line. Corrected debian/patches/017_main.c.diff: --- ppp-2.4.1.orig/pppd/main.c Tue Mar 13 08:56:19 2001 +++ ppp-2.4.1/pppd/main.c Fri Jun 8 00:25:46 2001 @@ -548,6 +548,7 @@ pidfilename[0] = 0; } + handle_events(); if (!persist || (maxfail > 0 && unsuccess >= maxfail)) break; @@ -1778,7 +1779,8 @@ dbuf.dsize = vlen; if (tdb_store(pppdb, key, dbuf, TDB_REPLACE)) error("tdb_store failed: %s", tdb_error(pppdb)); - + free(vbuf); + } /* -- System Information Debian Release: testing/unstable Architecture: i386 Kernel: Linux rain 2.4.1 #1 ðÎÄ íÁÒ 19 21:34:46 MSK 2001 i586 Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R Versions of packages ppp depends on: ii libc6 2.2.3-5 GNU C Library: Shared libraries an ii libpam-modules 0.72-24 Pluggable Authentication Modules f ii libpam0g 0.72-24 Pluggable Authentication Modules l ii netbase 4.05 Basic TCP/IP networking system ii sysvinit 2.78-4 System-V like init. -- dg   Reply sent to Michael Beattie <mjb@debian.org>:
You have taken responsibility.   -t  From: owner@bugs.debian.org (Debian Bug Tracking System) To: Michael Beattie Bcc: debian-bugs-closed@lists.debian.org Subject: Bug#100028: marked as done (pppd fails to terminate while executing connect script) Message-ID: In-Reply-To: References: <20010608052015.A1788@rain> X-Debian-PR-Message: closed 100028 Your message dated Sat, 16 Jun 2001 14:58:20 -0400 with message-id and subject line Bug#100028: fixed in ppp 2.4.1-2 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Darren Benham (administrator, Debian Bugs database) -------------------------------------- Received: (at submit) by bugs.debian.org; 8 Jun 2001 01:21:14 +0000 From dginsburg@mail.ru Thu Jun 07 20:21:14 2001 Return-path: Received: from gnome01.sovam.com [::ffff:194.67.1.179] by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 158AxZ-0008NC-00; Thu, 07 Jun 2001 20:21:09 -0500 Received: from ts16-a163.dial.sovam.com ([195.239.3.163]:41483 "EHLO rain" ident: "NO-IDENT-SERVICE[2]" whoson: "dbg@online.ru" smtp-auth: TLS-CIPHER: TLS-PEER: ) by gnome01.sovam.com with ESMTP id ; Fri, 8 Jun 2001 05:20:18 +0400 Received: from dg by rain with local (Exim 3.22 #1 (Debian)) id 158Awi-0000XZ-00; Fri, 08 Jun 2001 05:20:16 +0400 Date: Fri, 8 Jun 2001 05:20:15 +0400 From: Daniel Ginsburg To: Debian Bug Tracking System Subject: pppd fails to terminate while executing connect script Message-ID: <20010608052015.A1788@rain> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.3.18i X-Reportbug-Version: 1.17 Sender: Daniel Ginsburg Delivered-To: submit@bugs.debian.org Package: ppp Version: 2.4.1-1 Severity: normal Tags: patch sid If options 'persist' and 'holdoff 0' are set ppp fails to terminate on SIGTERM. It only kills connect script, restarts it immediately and continue running. When connection established pppd terminates ok on SIGTERM/SIGINT. The nature of problem is pppd's SIGTERM/SIGINT handler sets flag but fails to check it in main loop when no connection established yet and holdoff period is 0. The fix is one line. Corrected debian/patches/017_main.c.diff: --- ppp-2.4.1.orig/pppd/main.c Tue Mar 13 08:56:19 2001 +++ ppp-2.4.1/pppd/main.c Fri Jun 8 00:25:46 2001 @@ -548,6 +548,7 @@ pidfilename[0] = 0; } + handle_events(); if (!persist || (maxfail > 0 && unsuccess >= maxfail)) break; @@ -1778,7 +1779,8 @@ dbuf.dsize = vlen; if (tdb_store(pppdb, key, dbuf, TDB_REPLACE)) error("tdb_store failed: %s", tdb_error(pppdb)); - + free(vbuf); + } /* -- System Information Debian Release: testing/unstable Architecture: i386 Kernel: Linux rain 2.4.1 #1 ðÎÄ íÁÒ 19 21:34:46 MSK 2001 i586 Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R Versions of packages ppp depends on: ii libc6 2.2.3-5 GNU C Library: Shared libraries an ii libpam-modules 0.72-24 Pluggable Authentication Modules f ii libpam0g 0.72-24 Pluggable Authentication Modules l ii netbase 4.05 Basic TCP/IP networking system ii sysvinit 2.78-4 System-V like init. -- dg --------------------------------------- Received: (at 100028-close) by bugs.debian.org; 16 Jun 2001 19:17:36 +0000 From troup@auric.debian.org Sat Jun 16 14:17:35 2001 Return-path: Received: from auric.debian.org [::ffff:206.246.226.45] by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 15BLZf-0000su-00; Sat, 16 Jun 2001 14:17:35 -0500 Received: from troup by auric.debian.org with local (Exim 3.12 1 (Debian)) id 15BLH2-0000c5-00; Sat, 16 Jun 2001 14:58:20 -0400 From: Michael Beattie To: 100028-close@bugs.debian.org X-Katie: $Revision: 1.44 $ Subject: Bug#100028: fixed in ppp 2.4.1-2 Message-Id: Sender: James Troup Date: Sat, 16 Jun 2001 14:58:20 -0400 Delivered-To: 100028-close@bugs.debian.org We believe that the bug you reported is fixed in the latest version of ppp, which has been installed in the Debian FTP archive: ppp_2.4.1-2_i386.deb to pool/main/p/ppp/ppp_2.4.1-2_i386.deb ppp-udeb_2.4.1-2_i386.udeb to pool/main/p/ppp/ppp-udeb_2.4.1-2_i386.udeb ppp_2.4.1-2.dsc to pool/main/p/ppp/ppp_2.4.1-2.dsc ppp_2.4.1-2.diff.gz to pool/main/p/ppp/ppp_2.4.1-2.diff.gz A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 100028@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Michael Beattie (supplier of updated ppp package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmaster@debian.org) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.7 Date: Sat, 16 Jun 2001 06:24:35 +1200 Source: ppp Binary: ppp ppp-udeb Architecture: source i386 Version: 2.4.1-2 Distribution: unstable Urgency: low Maintainer: Michael Beattie Changed-By: Michael Beattie Description: ppp - Point-to-Point Protocol (PPP) daemon. ppp-udeb - Point-to-Point Protocol (PPP) daemon. (udeb) Closes: 88844 94682 100028 Changes: ppp (2.4.1-2) unstable; urgency=low . * Using fixed debhelper, update-modules now only gets called if it is actally available. (Closes: #94682) * Removed start-stop-daemon call in prerm, dh_installinit does this now. * removed suidunregister calls in postrm (oops) * Added pppoe patch, we can now use kernel mode pppoe :> - Paul says he's working on a better patch for 2.4.2, but I want pppoe for my own purposes... go figure. (Closes: #88844) * Added patch from Daniel Ginsburg for signal handling bug. (Closes: #100028) Files: a4758c1eaa89d80ca15830661d9b6da0 608 net standard ppp_2.4.1-2.dsc f454a844c22591cfca3672f3be943762 65687 net standard ppp_2.4.1-2.diff.gz 6a11c8308e5a79aa04eecf29721f3631 252910 net standard ppp_2.4.1-2_i386.deb d81eecf9657db7aefc33f81951cb0e86 90418 debian-installer standard ppp-udeb_2.4.1-2_i386.udeb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (GNU/Linux) Comment: Michael Beattie iEYEARECAAYFAjsrfugACgkQBSsR1azesLO1mgCeJROdxHFUbE9vBhoA9mnsFaz7 zXEAnA8plbhbGuAW7NjFSr4sH30Gjf2H =DHUo -----END PGP SIGNATURE-----   Notification sent to Daniel Ginsburg <dg@warpsolutions.com>:
Bug acknowledged by developer.   -t  From: owner@bugs.debian.org (Debian Bug Tracking System) To: Daniel Ginsburg Subject: Bug#100028 acknowledged by developer (Bug#100028: fixed in ppp 2.4.1-2) Message-ID: In-Reply-To: <20010608052015.A1788@rain> References: <20010608052015.A1788@rain> X-Debian-PR-Message: they-closed 100028 This is an automatic notification regarding your Bug report #100028: pppd fails to terminate while executing connect script, which was filed against the ppp package. It has been closed by one of the developers, namely Michael Beattie . Their explanation is attached below. If this explanation is unsatisfactory and you have not received a better one in a separate message then please contact the developer directly, or email 100028@bugs.debian.org or me. Darren Benham (administrator, Debian Bugs database) Received: (at 100028-close) by bugs.debian.org; 16 Jun 2001 19:17:36 +0000 From troup@auric.debian.org Sat Jun 16 14:17:35 2001 Return-path: Received: from auric.debian.org [::ffff:206.246.226.45] by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 15BLZf-0000su-00; Sat, 16 Jun 2001 14:17:35 -0500 Received: from troup by auric.debian.org with local (Exim 3.12 1 (Debian)) id 15BLH2-0000c5-00; Sat, 16 Jun 2001 14:58:20 -0400 From: Michael Beattie To: 100028-close@bugs.debian.org X-Katie: $Revision: 1.44 $ Subject: Bug#100028: fixed in ppp 2.4.1-2 Message-Id: Sender: James Troup Date: Sat, 16 Jun 2001 14:58:20 -0400 Delivered-To: 100028-close@bugs.debian.org We believe that the bug you reported is fixed in the latest version of ppp, which has been installed in the Debian FTP archive: ppp_2.4.1-2_i386.deb to pool/main/p/ppp/ppp_2.4.1-2_i386.deb ppp-udeb_2.4.1-2_i386.udeb to pool/main/p/ppp/ppp-udeb_2.4.1-2_i386.udeb ppp_2.4.1-2.dsc to pool/main/p/ppp/ppp_2.4.1-2.dsc ppp_2.4.1-2.diff.gz to pool/main/p/ppp/ppp_2.4.1-2.diff.gz A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 100028@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Michael Beattie (supplier of updated ppp package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmaster@debian.org) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.7 Date: Sat, 16 Jun 2001 06:24:35 +1200 Source: ppp Binary: ppp ppp-udeb Architecture: source i386 Version: 2.4.1-2 Distribution: unstable Urgency: low Maintainer: Michael Beattie Changed-By: Michael Beattie Description: ppp - Point-to-Point Protocol (PPP) daemon. ppp-udeb - Point-to-Point Protocol (PPP) daemon. (udeb) Closes: 88844 94682 100028 Changes: ppp (2.4.1-2) unstable; urgency=low . * Using fixed debhelper, update-modules now only gets called if it is actally available. (Closes: #94682) * Removed start-stop-daemon call in prerm, dh_installinit does this now. * removed suidunregister calls in postrm (oops) * Added pppoe patch, we can now use kernel mode pppoe :> - Paul says he's working on a better patch for 2.4.2, but I want pppoe for my own purposes... go figure. (Closes: #88844) * Added patch from Daniel Ginsburg for signal handling bug. (Closes: #100028) Files: a4758c1eaa89d80ca15830661d9b6da0 608 net standard ppp_2.4.1-2.dsc f454a844c22591cfca3672f3be943762 65687 net standard ppp_2.4.1-2.diff.gz 6a11c8308e5a79aa04eecf29721f3631 252910 net standard ppp_2.4.1-2_i386.deb d81eecf9657db7aefc33f81951cb0e86 90418 debian-installer standard ppp-udeb_2.4.1-2_i386.udeb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (GNU/Linux) Comment: Michael Beattie iEYEARECAAYFAjsrfugACgkQBSsR1azesLO1mgCeJROdxHFUbE9vBhoA9mnsFaz7 zXEAnA8plbhbGuAW7NjFSr4sH30Gjf2H =DHUo -----END PGP SIGNATURE-----   Received: (at 100028-close) by bugs.debian.org; 16 Jun 2001 19:17:36 +0000 From troup@auric.debian.org Sat Jun 16 14:17:35 2001 Return-path: Received: from auric.debian.org [::ffff:206.246.226.45] by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 15BLZf-0000su-00; Sat, 16 Jun 2001 14:17:35 -0500 Received: from troup by auric.debian.org with local (Exim 3.12 1 (Debian)) id 15BLH2-0000c5-00; Sat, 16 Jun 2001 14:58:20 -0400 From: Michael Beattie To: 100028-close@bugs.debian.org X-Katie: $Revision: 1.44 $ Subject: Bug#100028: fixed in ppp 2.4.1-2 Message-Id: Sender: James Troup Date: Sat, 16 Jun 2001 14:58:20 -0400 Delivered-To: 100028-close@bugs.debian.org We believe that the bug you reported is fixed in the latest version of ppp, which has been installed in the Debian FTP archive: ppp_2.4.1-2_i386.deb to pool/main/p/ppp/ppp_2.4.1-2_i386.deb ppp-udeb_2.4.1-2_i386.udeb to pool/main/p/ppp/ppp-udeb_2.4.1-2_i386.udeb ppp_2.4.1-2.dsc to pool/main/p/ppp/ppp_2.4.1-2.dsc ppp_2.4.1-2.diff.gz to pool/main/p/ppp/ppp_2.4.1-2.diff.gz A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 100028@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Michael Beattie (supplier of updated ppp package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmaster@debian.org) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.7 Date: Sat, 16 Jun 2001 06:24:35 +1200 Source: ppp Binary: ppp ppp-udeb Architecture: source i386 Version: 2.4.1-2 Distribution: unstable Urgency: low Maintainer: Michael Beattie Changed-By: Michael Beattie Description: ppp - Point-to-Point Protocol (PPP) daemon. ppp-udeb - Point-to-Point Protocol (PPP) daemon. (udeb) Closes: 88844 94682 100028 Changes: ppp (2.4.1-2) unstable; urgency=low . * Using fixed debhelper, update-modules now only gets called if it is actally available. (Closes: #94682) * Removed start-stop-daemon call in prerm, dh_installinit does this now. * removed suidunregister calls in postrm (oops) * Added pppoe patch, we can now use kernel mode pppoe :> - Paul says he's working on a better patch for 2.4.2, but I want pppoe for my own purposes... go figure. (Closes: #88844) * Added patch from Daniel Ginsburg for signal handling bug. (Closes: #100028) Files: a4758c1eaa89d80ca15830661d9b6da0 608 net standard ppp_2.4.1-2.dsc f454a844c22591cfca3672f3be943762 65687 net standard ppp_2.4.1-2.diff.gz 6a11c8308e5a79aa04eecf29721f3631 252910 net standard ppp_2.4.1-2_i386.deb d81eecf9657db7aefc33f81951cb0e86 90418 debian-installer standard ppp-udeb_2.4.1-2_i386.udeb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (GNU/Linux) Comment: Michael Beattie iEYEARECAAYFAjsrfugACgkQBSsR1azesLO1mgCeJROdxHFUbE9vBhoA9mnsFaz7 zXEAnA8plbhbGuAW7NjFSr4sH30Gjf2H =DHUo -----END PGP SIGNATURE-----   Bug reopened, originator not changed. Request was from Michael Beattie <mike@ethernal.org> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 4 Jul 2001 05:38:57 +0000 From mike@ethernal.org Wed Jul 04 00:38:57 2001 Return-path: Received: from smtp4.ihug.co.nz [::ffff:203.109.252.5] by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 15HfNE-0001dK-00; Wed, 04 Jul 2001 00:38:52 -0500 Received: from aeon.ethernal.org (p25-max1.dun.ihug.co.nz [203.173.236.25]) by smtp4.ihug.co.nz (8.9.3/8.9.3/Debian 8.9.3-21) with ESMTP id RAA30616; Wed, 4 Jul 2001 17:38:36 +1200 X-Authentication-Warning: smtp4.ihug.co.nz: Host p25-max1.dun.ihug.co.nz [203.173.236.25] claimed to be aeon.ethernal.org Received: from relativity.ethernal.org ([192.168.0.10]) by aeon.ethernal.org with esmtp (Exim 3.12 #1 (Debian)) id 15HfN1-0007ew-00; Wed, 04 Jul 2001 17:38:39 +1200 Received: from omnic by relativity.ethernal.org with local (Exim 3.22 #1 (Debian)) id 15HfN4-0001yh-00; Wed, 04 Jul 2001 17:38:42 +1200 Date: Wed, 4 Jul 2001 17:38:42 +1200 From: Michael Beattie To: control@bugs.debian.org, Daniel Ginsburg Subject: bug not that easy to fix. Message-ID: <20010704173842.A7578@relativity.ethernal.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.18i Delivered-To: control@bugs.debian.org reopen 100028 thanks Daniel, that patch you supplied causes MAJOR breakage on configurations not using holdoff 0, so I'm afraid its gonna hit the back burner till I get some spare time in a week or two. in the meantime, I dont see why you cant use a holdoff of 2 or 3 seconds. Mike. -- Michael Beattie (mike@ethernal.org) ----------------------------------------------------------------------------- hmm, anyone good with SQL here? err.. sees.. we usually ask you :-/ ----------------------------------------------------------------------------- Debian GNU/Linux.... Ooohh You are missing out!   Tags added: pending Request was from Thomas Hood <jdthood@yahoo.co.uk> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 17 Jul 2003 14:31:24 +0000 From jdthood@yahoo.co.uk Thu Jul 17 09:31:22 2003 Return-path: Received: from mars.mj.nl [81.91.1.49] by master.debian.org with smtp (Exim 3.35 1 (Debian)) id 19d9n0-0006LM-00; Thu, 17 Jul 2003 09:31:22 -0500 Received: (qmail 8436 invoked from network); 17 Jul 2003 14:31:21 -0000 Received: from 81-91-5-95-customer.mjdsl.nl (HELO thanatos.localdomain) (81.91.5.95) by www.mj.nl with SMTP; 17 Jul 2003 14:31:21 -0000 Received: from localhost (localhost [127.0.0.1]) by thanatos.localdomain (Postfix) with ESMTP id 7D0C910D608 for ; Thu, 17 Jul 2003 16:31:20 +0200 (CEST) Subject: pending fixes From: Thomas Hood To: control@bugs.debian.org Content-Type: text/plain Message-Id: <1058452279.27535.82.camel@localhost> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.3 Date: 17 Jul 2003 16:31:20 +0200 Content-Transfer-Encoding: 7bit Delivered-To: control@bugs.debian.org X-Spam-Status: No, hits=-2.0 required=4.0 tests=BAYES_01,USER_AGENT_XIMIAN version=2.53-bugs.debian.org_2003_06_27 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.53-bugs.debian.org_2003_06_27 (1.174.2.15-2003-03-30-exp) tags 175480 pending tags 86076 pending tags 100028 pending tags 125697 pending tags 163262 pending tags 171200 pending tags 180720 pending tags 182103 pending thanks These bugs are fixed in a patched version of ppp that Russell announced a while ago.   Tags added: upstream, help Request was from md@Linux.IT (Marco d'Itri) to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 24 Aug 2003 13:14:46 +0000 From md@linux.it Sun Aug 24 08:14:36 2003 Return-path: Received: from attila.bofh.it [213.92.8.2] by master.debian.org with esmtp (Exim 3.35 1 (Debian)) id 19quhY-0005iK-00; Sun, 24 Aug 2003 08:14:36 -0500 Received: by attila.bofh.it (Postfix, from userid 10) id 9C7E45F7CA; Sun, 24 Aug 2003 15:14:35 +0200 (CEST) Received: by wonderland.linux.it (Postfix, from userid 1001) id 9EDB91CE64; Sun, 24 Aug 2003 15:12:55 +0200 (CEST) To: control@bugs.debian.org Subject: remove bogus pending tags Message-Id: <20030824131255.9EDB91CE64@wonderland.linux.it> Date: Sun, 24 Aug 2003 15:12:55 +0200 (CEST) From: md@Linux.IT (Marco d'Itri) Delivered-To: control@bugs.debian.org X-Spam-Status: No, hits=-1.0 required=4.0 tests=BAYES_20 version=2.53-bugs.debian.org_2003_8_17 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.53-bugs.debian.org_2003_8_17 (1.174.2.15-2003-03-30-exp) tag 86076 upstream help -pending tag 100028 upstream help -pending tag 177885 upstream help -pending   Tags removed: pending Request was from Marco d'Itri <md@linux.it> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 24 Aug 2003 13:22:35 +0000 From md@linux.it Sun Aug 24 08:22:33 2003 Return-path: Received: from attila.bofh.it [213.92.8.2] by master.debian.org with esmtp (Exim 3.35 1 (Debian)) id 19qupF-00075J-00; Sun, 24 Aug 2003 08:22:33 -0500 Received: by attila.bofh.it (Postfix, from userid 10) id 0D8F95F73F; Sun, 24 Aug 2003 15:22:33 +0200 (CEST) Received: by wonderland.linux.it (Postfix, from userid 1001) id 5260B1BE97; Sun, 24 Aug 2003 15:22:26 +0200 (CEST) From: Marco d'Itri To: control@bugs.debian.org Subject: tagging 86076, tagging 100028, tagging 177885 Date: Sun, 24 Aug 2003 15:22:26 +0200 Message-Id: <20030824132226.5260B1BE97@wonderland.linux.it> Delivered-To: control@bugs.debian.org X-Spam-Status: No, hits=-1.0 required=4.0 tests=BAYES_01 version=2.53-bugs.debian.org_2003_8_17 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.53-bugs.debian.org_2003_8_17 (1.174.2.15-2003-03-30-exp) tag 86076 - pending tag 100028 - pending tag 177885 - pending   Tags added: help, upstream, patch, sid Request was from Marco d'Itri <md@Linux.IT> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 24 Aug 2003 18:26:23 +0000 From md@linux.it Sun Aug 24 13:26:21 2003 Return-path: Received: from attila.bofh.it [213.92.8.2] by master.debian.org with esmtp (Exim 3.35 1 (Debian)) id 19qzZF-0005MV-00; Sun, 24 Aug 2003 13:26:21 -0500 Received: by attila.bofh.it (Postfix, from userid 10) id 804C25F71A; Sun, 24 Aug 2003 20:26:20 +0200 (CEST) Received: by wonderland.linux.it (Postfix, from userid 1001) id 4377F1BE1D; Sun, 24 Aug 2003 20:26:15 +0200 (CEST) Date: Sun, 24 Aug 2003 20:26:15 +0200 From: Marco d'Itri To: control@bugs.debian.org Subject: add tags Message-ID: <20030824182615.GA12601@wonderland.linux.it> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.4i Delivered-To: control@bugs.debian.org X-Spam-Status: No, hits=-3.0 required=4.0 tests=BAYES_20,USER_AGENT_MUTT version=2.53-bugs.debian.org_2003_8_17 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.53-bugs.debian.org_2003_8_17 (1.174.2.15-2003-03-30-exp) tag 14331 upstream help tag 22284 help upstream patch tag 58896 help tag 75371 help upstream tag 75797 help tag 76084 help upstream tag 88535 help upstream tag 100028 help upstream - patch - sid tag 141466 help upstream tag 167450 upstream wontfix - sid tag 167691 help upstream tag 172376 help upstream tag 202735 help upstream severity 203620 minor tag 203620 help upstream tag 207023 patch tag 78251 help upstream tag 102876 help upstream tag 150348 help upstream tag 191689 upstream tag 20547 help upstream tag 25434 help upstream tag 63205 help tag 162163 help upstream -- ciao, | Marco | [1429 prNLuGsUqX22E]   Tags removed: patch Request was from Thomas Hood <jdthood@aglu.demon.nl> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 16 Nov 2004 09:01:16 +0000 From jdthood@aglu.demon.nl Tue Nov 16 01:01:16 2004 Return-path: Received: from mailservice.tudelft.nl [130.161.131.5] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1CTzD9-0002x5-00; Tue, 16 Nov 2004 01:01:16 -0800 Received: from localhost (localhost [127.0.0.1]) by rav.antivirus (Postfix) with ESMTP id C63F7802B1; Tue, 16 Nov 2004 10:00:44 +0100 (CET) Received: from localhost (x118.decis.nl [130.161.177.118]) by mx4.tudelft.nl (Postfix) with ESMTP id 48F29802AC; Tue, 16 Nov 2004 10:00:44 +0100 (CET) Received: from localhost.demon.nl (localhost.tudelft.nl [127.0.0.1]) by localhost (Postfix) with ESMTP id 8C31810D5D9; Tue, 16 Nov 2004 10:00:09 +0100 (CET) Subject: patch no good From: Thomas Hood To: 100028-quiet@bugs.debian.org Content-Type: text/plain Message-Id: <1100595608.20956.362.camel@thanatos> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Tue, 16 Nov 2004 10:00:08 +0100 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at tudelft.nl Delivered-To: control@bugs.debian.org X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-5.0 required=4.0 tests=BAYES_00,VALID_BTS_CONTROL autolearn=no version=2.60-bugs.debian.org_2004_03_25 X-Spam-Level: tags 100028 - patch tags 100028 - sid thanks The current pppd does not have the patch applied, so I guess the bug remains. However, Michael Beattie says that the patch supplied by Daniel Ginsburg causes major breakage, so a new solution is needed.   Tags removed: sid Request was from Thomas Hood <jdthood@aglu.demon.nl> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 16 Nov 2004 09:01:16 +0000 From jdthood@aglu.demon.nl Tue Nov 16 01:01:16 2004 Return-path: Received: from mailservice.tudelft.nl [130.161.131.5] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1CTzD9-0002x5-00; Tue, 16 Nov 2004 01:01:16 -0800 Received: from localhost (localhost [127.0.0.1]) by rav.antivirus (Postfix) with ESMTP id C63F7802B1; Tue, 16 Nov 2004 10:00:44 +0100 (CET) Received: from localhost (x118.decis.nl [130.161.177.118]) by mx4.tudelft.nl (Postfix) with ESMTP id 48F29802AC; Tue, 16 Nov 2004 10:00:44 +0100 (CET) Received: from localhost.demon.nl (localhost.tudelft.nl [127.0.0.1]) by localhost (Postfix) with ESMTP id 8C31810D5D9; Tue, 16 Nov 2004 10:00:09 +0100 (CET) Subject: patch no good From: Thomas Hood To: 100028-quiet@bugs.debian.org Content-Type: text/plain Message-Id: <1100595608.20956.362.camel@thanatos> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Tue, 16 Nov 2004 10:00:08 +0100 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at tudelft.nl Delivered-To: control@bugs.debian.org X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-5.0 required=4.0 tests=BAYES_00,VALID_BTS_CONTROL autolearn=no version=2.60-bugs.debian.org_2004_03_25 X-Spam-Level: tags 100028 - patch tags 100028 - sid thanks The current pppd does not have the patch applied, so I guess the bug remains. However, Michael Beattie says that the patch supplied by Daniel Ginsburg causes major breakage, so a new solution is needed.   Information stored:
Bug#100028; Package ppp.   -t  X-Loop: owner@bugs.debian.org Subject: Bug#100028: patch no good Reply-To: Thomas Hood , 100028-quiet@bugs.debian.org Resent-From: Thomas Hood Resent-To: Resent-Date: Tue, 16 Nov 2004 09:18:08 UTC Resent-Message-ID: Resent-Sender: owner@bugs.debian.org X-Debian-PR-Message: report 100028 X-Debian-PR-Package: ppp X-Debian-PR-Keywords: upstream help Received: via spool by 100028-quiet@bugs.debian.org id=Q100028.110059567611508 (code Q ref 100028); Tue, 16 Nov 2004 09:18:08 UTC Received: (at 100028-quiet) by bugs.debian.org; 16 Nov 2004 09:01:16 +0000 Received: from mailservice.tudelft.nl [130.161.131.5] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1CTzD9-0002x5-00; Tue, 16 Nov 2004 01:01:16 -0800 Received: from localhost (localhost [127.0.0.1]) by rav.antivirus (Postfix) with ESMTP id C63F7802B1; Tue, 16 Nov 2004 10:00:44 +0100 (CET) Received: from localhost (x118.decis.nl [130.161.177.118]) by mx4.tudelft.nl (Postfix) with ESMTP id 48F29802AC; Tue, 16 Nov 2004 10:00:44 +0100 (CET) Received: from localhost.demon.nl (localhost.tudelft.nl [127.0.0.1]) by localhost (Postfix) with ESMTP id 8C31810D5D9; Tue, 16 Nov 2004 10:00:09 +0100 (CET) From: Thomas Hood To: 100028-quiet@bugs.debian.org Content-Type: text/plain Message-Id: <1100595608.20956.362.camel@thanatos> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Tue, 16 Nov 2004 10:00:08 +0100 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at tudelft.nl Delivered-To: 100028-quiet@bugs.debian.org X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-5.0 required=4.0 tests=BAYES_00,VALID_BTS_CONTROL autolearn=no version=2.60-bugs.debian.org_2004_03_25 X-Spam-Level: X-CrossAssassin-Score: 2 tags 100028 - patch tags 100028 - sid thanks The current pppd does not have the patch applied, so I guess the bug remains. However, Michael Beattie says that the patch supplied by Daniel Ginsburg causes major breakage, so a new solution is needed.   Acknowledgement sent to Thomas Hood <jdthood@aglu.demon.nl>:
Extra info received and filed, but not forwarded.   -t  X-Loop: owner@bugs.debian.org From: owner@bugs.debian.org (Debian Bug Tracking System) To: Thomas Hood Subject: Bug#100028: Info received and FILED only (was patch no good) Message-ID: In-Reply-To: <1100595608.20956.362.camel@thanatos> References: <1100595608.20956.362.camel@thanatos> Precedence: bulk X-Debian-PR-Message: ack-info-quiet 100028 X-Debian-PR-Package: ppp X-Debian-PR-Keywords: upstream help Reply-To: 100028-quiet@bugs.debian.org Thank you for the additional information you have supplied regarding this problem report. It has NOT been forwarded to the package maintainers, but will accompany the original report in the Bug tracking system. Please ensure that you yourself have sent a copy of the additional information to any relevant developers or mailing lists. If you wish to continue to submit further information on your problem, please send it to 100028-quiet@bugs.debian.org, as before. Please do not reply to the address at the top of this message, unless you wish to report a problem with the Bug-tracking system. Debian bug tracking system administrator (administrator, Debian Bugs database)   Received: (at 100028-quiet) by bugs.debian.org; 16 Nov 2004 09:01:16 +0000 From jdthood@aglu.demon.nl Tue Nov 16 01:01:16 2004 Return-path: Received: from mailservice.tudelft.nl [130.161.131.5] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1CTzD9-0002x5-00; Tue, 16 Nov 2004 01:01:16 -0800 Received: from localhost (localhost [127.0.0.1]) by rav.antivirus (Postfix) with ESMTP id C63F7802B1; Tue, 16 Nov 2004 10:00:44 +0100 (CET) Received: from localhost (x118.decis.nl [130.161.177.118]) by mx4.tudelft.nl (Postfix) with ESMTP id 48F29802AC; Tue, 16 Nov 2004 10:00:44 +0100 (CET) Received: from localhost.demon.nl (localhost.tudelft.nl [127.0.0.1]) by localhost (Postfix) with ESMTP id 8C31810D5D9; Tue, 16 Nov 2004 10:00:09 +0100 (CET) Subject: patch no good From: Thomas Hood To: 100028-quiet@bugs.debian.org Content-Type: text/plain Message-Id: <1100595608.20956.362.camel@thanatos> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Tue, 16 Nov 2004 10:00:08 +0100 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at tudelft.nl Delivered-To: 100028-quiet@bugs.debian.org X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-5.0 required=4.0 tests=BAYES_00,VALID_BTS_CONTROL autolearn=no version=2.60-bugs.debian.org_2004_03_25 X-Spam-Level: X-CrossAssassin-Score: 2 tags 100028 - patch tags 100028 - sid thanks The current pppd does not have the patch applied, so I guess the bug remains. However, Michael Beattie says that the patch supplied by Daniel Ginsburg causes major breakage, so a new solution is needed.   Changed Bug title. Request was from Thomas Hood <jdthood@yahoo.co.uk> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 17 Nov 2004 20:12:27 +0000 From jdthood@yahoo.co.uk Wed Nov 17 12:12:27 2004 Return-path: Received: from post-22.mail.nl.demon.net [194.159.73.192] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1CUWAF-00064b-00; Wed, 17 Nov 2004 12:12:27 -0800 Received: from aglu.demon.nl ([82.161.38.140]:64897 helo=localhost) by post-22.mail.nl.demon.net with esmtp (Exim 4.34) id 1CUWAE-000PVF-5q for control@bugs.debian.org; Wed, 17 Nov 2004 20:12:26 +0000 Received: by localhost (Postfix, from userid 1001) id E49BA10D5D9; Wed, 17 Nov 2004 21:07:48 +0100 (CET) From: Thomas Hood To: control@bugs.debian.org Subject: retitle 100028 to pppd with "persist" and "holdoff 0" options does not exit on a SIGTERM received prior to connection Date: Wed, 17 Nov 2004 21:07:48 +0100 X-BTS-Version: 2.8.5 Message-Id: <20041117200748.E49BA10D5D9@localhost> X-BadReturnPath: jdthood@localhost rewritten as jdthood@yahoo.co.uk using "From" header Delivered-To: control@bugs.debian.org X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-3.0 required=4.0 tests=BAYES_00 autolearn=no version=2.60-bugs.debian.org_2004_03_25 X-Spam-Level: # Automatically generated email from bts, devscripts version 2.8.5 retitle 100028 pppd with "persist" and "holdoff 0" options does not exit on a SIGTERM received prior to connection   Bug reopened, originator not changed. Request was from Frans Pop <elendil@planet.nl> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 30 Jun 2008 12:01:34 +0000 From elendil@planet.nl Mon Jun 30 12:01:34 2008 X-Spam-Checker-Version: SpamAssassin 3.1.4-bugs.debian.org_2005_01_02 (2006-07-26) on rietz.debian.org X-Spam-Level: X-Spam-Status: No, score=-5.9 required=4.0 tests=BAYES_00,FORGED_RCVD_HELO, VALID_BTS_CONTROL autolearn=no version=3.1.4-bugs.debian.org_2005_01_02 Return-path: Received: from cpsmtpo-eml06.kpnxchange.com ([213.75.38.155]) by rietz.debian.org with esmtp (Exim 4.63) (envelope-from ) id 1KDI4b-0003aR-Pt for control@bugs.debian.org; Mon, 30 Jun 2008 12:01:34 +0000 Received: from cpsmtp-eml105.kpnxchange.com ([213.75.84.105]) by cpsmtpo-eml06.kpnxchange.com with Microsoft SMTPSVC(6.0.3790.1830); Mon, 30 Jun 2008 14:01:27 +0200 Received: from faramir.fjphome.nl ([84.85.147.182]) by cpsmtp-eml105.kpnxchange.com with Microsoft SMTPSVC(6.0.3790.1830); Mon, 30 Jun 2008 14:01:27 +0200 From: Frans Pop To: Debian BTS Control Subject: Reopen bugs closed by spam Date: Mon, 30 Jun 2008 14:01:24 +0200 User-Agent: KMail/1.9.9 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200806301401.24957.elendil@planet.nl> X-OriginalArrivalTime: 30 Jun 2008 12:01:27.0533 (UTC) FILETIME=[069CD9D0:01C8DAA9] Delivered-To: control@bugs.debian.org reopen 100028 reopen 238840   Information stored:
Bug#100028; Package ppp.   -t  X-Loop: owner@bugs.debian.org Subject: Bug#100028: She will be delighted with you Reply-To: deblasio , 100028-quiet@bugs.debian.org Resent-From: deblasio Resent-To: Resent-Date: Fri, 05 Sep 2008 02:21:05 +0000 Resent-Message-ID: Resent-Sender: owner@bugs.debian.org X-Debian-PR-Message: followup 100028 X-Debian-PR-Package: ppp X-Debian-PR-Keywords: upstream help X-Debian-PR-Source: ppp Received: via spool by 100028-quiet@bugs.debian.org id=Q100028.12205811025776 (code Q ref 100028); Fri, 05 Sep 2008 02:21:05 +0000 Received: (at 100028-quiet) by bugs.debian.org; 5 Sep 2008 02:18:22 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rietz.debian.org X-Spam-Level: * X-Spam-Status: No, score=1.0 required=4.0 tests=GENDER autolearn=no version=3.2.3-bugs.debian.org_2005_01_02 Received: from [123.108.182.70] by rietz.debian.org with esmtp (Exim 4.63) (envelope-from ) id 1KbQtx-0001Pe-Ts for 100028-quiet@bugs.debian.org; Fri, 05 Sep 2008 02:18:22 +0000 Message-ID: <300DDB3B.26F8FBA5@23rdstcatharines.com> Date: Fri, 5 Sep 2008 11:18:19 +0900 From: deblasio User-Agent: Thunderbird 2.0.0.14 (Windows/20080421) MIME-Version: 1.0 To: 100028-quiet@bugs.debian.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Get rock-solid erections every single night http://www.heredip.com/   Acknowledgement sent to deblasio <ire-part_1970@23rdstcatharines.com>:
Extra info received and filed, but not forwarded.   -t  Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.420 (Entity 5.420) Content-Type: text/plain; charset=utf-8 X-Loop: owner@bugs.debian.org From: owner@bugs.debian.org (Debian Bug Tracking System) To: deblasio Subject: Bug#100028: Info received and FILED only (She will be delighted with you) Message-ID: References: <300DDB3B.26F8FBA5@23rdstcatharines.com> X-Debian-PR-Message: ack-info-quiet 100028 X-Debian-PR-Package: ppp X-Debian-PR-Keywords: upstream help X-Debian-PR-Source: ppp Reply-To: 100028-quiet@bugs.debian.org Thank you for the additional information you have supplied regarding this Bug report. This is an automatically generated reply to let you know your message has been received. Your message has not been forwarded to the package maintainers or other interested parties; you should ensure that the developers are aware of the problem you have entered into the system - preferably quoting the Bug reference number, #100028. If you wish to submit further information on this problem, please send it to 100028-quiet@bugs.debian.org, as before. Please do not send mail to owner@bugs.debian.org unless you wish to report a problem with the Bug-tracking system. --=20 100028: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=3D100028 Debian Bug Tracking System Contact owner@bugs.debian.org with problems   Received: (at 100028-quiet) by bugs.debian.org; 5 Sep 2008 02:18:22 +0000 From ire-part_1970@23rdstcatharines.com Fri Sep 05 02:18:22 2008 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rietz.debian.org X-Spam-Level: * X-Spam-Status: No, score=1.0 required=4.0 tests=GENDER autolearn=no version=3.2.3-bugs.debian.org_2005_01_02 Return-path: Received: from [123.108.182.70] by rietz.debian.org with esmtp (Exim 4.63) (envelope-from ) id 1KbQtx-0001Pe-Ts for 100028-quiet@bugs.debian.org; Fri, 05 Sep 2008 02:18:22 +0000 Message-ID: <300DDB3B.26F8FBA5@23rdstcatharines.com> Date: Fri, 5 Sep 2008 11:18:19 +0900 From: deblasio User-Agent: Thunderbird 2.0.0.14 (Windows/20080421) MIME-Version: 1.0 To: 100028-quiet@bugs.debian.org Subject: She will be delighted with you Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Get rock-solid erections every single night http://www.heredip.com/   Information stored:
Bug#100028; Package ppp.   -t  X-Loop: owner@bugs.debian.org Subject: Bug#100028: Got ED? Think About Your Prostate Reply-To: "kendrick glendon" , 100028-quiet@bugs.debian.org Resent-From: "kendrick glendon" Resent-To: Resent-Date: Fri, 05 Sep 2008 10:27:09 +0000 Resent-Message-ID: Resent-Sender: owner@bugs.debian.org X-Debian-PR-Message: followup 100028 X-Debian-PR-Package: ppp X-Debian-PR-Keywords: upstream help X-Debian-PR-Source: ppp Received: via spool by 100028-quiet@bugs.debian.org id=Q100028.122061034627243 (code Q ref 100028); Fri, 05 Sep 2008 10:27:09 +0000 Received: (at 100028-quiet) by bugs.debian.org; 5 Sep 2008 10:25:46 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rietz.debian.org X-Spam-Level: X-Spam-Status: No, score=0.0 required=4.0 tests=none autolearn=ham version=3.2.3-bugs.debian.org_2005_01_02 Received: from adsl-dc-20016.adsl.wanadoo.nl ([81.70.30.22]) by rietz.debian.org with esmtp (Exim 4.63) (envelope-from ) id 1KbYVe-0006w3-8m for 100028-quiet@bugs.debian.org; Fri, 05 Sep 2008 10:25:46 +0000 Message-ID: <64040.sharra@gamaliel> Date: Fri, 05 Sep 2008 08:38:21 +0000 From: "kendrick glendon" User-Agent: Thunderbird 2.0.0.12 (Windows/20080213) MIME-Version: 1.0 To: "my brother" <100028-quiet@bugs.debian.org> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 7bit Meds Coupon http://appreciationbat.com   Acknowledgement sent to "kendrick glendon" <info@kiss24.ch> :
Extra info received and filed, but not forwarded.   -t  Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.420 (Entity 5.420) Content-Type: text/plain; charset=utf-8 X-Loop: owner@bugs.debian.org From: owner@bugs.debian.org (Debian Bug Tracking System) To: "kendrick glendon" Subject: Bug#100028: Info received and FILED only (Got ED? Think About Your Prostate) Message-ID: References: <64040.sharra@gamaliel> X-Debian-PR-Message: ack-info-quiet 100028 X-Debian-PR-Package: ppp X-Debian-PR-Keywords: upstream help X-Debian-PR-Source: ppp Reply-To: 100028-quiet@bugs.debian.org Thank you for the additional information you have supplied regarding this Bug report. This is an automatically generated reply to let you know your message has been received. Your message has not been forwarded to the package maintainers or other interested parties; you should ensure that the developers are aware of the problem you have entered into the system - preferably quoting the Bug reference number, #100028. If you wish to submit further information on this problem, please send it to 100028-quiet@bugs.debian.org, as before. Please do not send mail to owner@bugs.debian.org unless you wish to report a problem with the Bug-tracking system. --=20 100028: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=3D100028 Debian Bug Tracking System Contact owner@bugs.debian.org with problems   Received: (at 100028-quiet) by bugs.debian.org; 5 Sep 2008 10:25:46 +0000 From info@kiss24.ch Fri Sep 05 10:25:46 2008 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rietz.debian.org X-Spam-Level: X-Spam-Status: No, score=0.0 required=4.0 tests=none autolearn=ham version=3.2.3-bugs.debian.org_2005_01_02 Return-path: Received: from adsl-dc-20016.adsl.wanadoo.nl ([81.70.30.22]) by rietz.debian.org with esmtp (Exim 4.63) (envelope-from ) id 1KbYVe-0006w3-8m for 100028-quiet@bugs.debian.org; Fri, 05 Sep 2008 10:25:46 +0000 Message-ID: <64040.sharra@gamaliel> Date: Fri, 05 Sep 2008 08:38:21 +0000 From: "kendrick glendon" User-Agent: Thunderbird 2.0.0.12 (Windows/20080213) MIME-Version: 1.0 To: "my brother" <100028-quiet@bugs.debian.org> Subject: Got ED? Think About Your Prostate Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 7bit Meds Coupon http://appreciationbat.com