From draymndchx at yahoo.co.jp Wed May 3 11:59:43 2017 From: draymndchx at yahoo.co.jp (Chien Kuo) Date: Wed, 03 May 2017 12:59:43 +0100 Subject: Business Proposition Message-ID: <9ada9f422ef26577589dfb32b2fdaf59@kury.cz> -- I am Vice Chairman of Hang Seng Bank, I have Important Matter to Discuss with you concerning my late client, Died without a NEXT OF KIN. Send me your private email for full details information. email me at (chienkraymond at gmail.com) Regards Dr.Raymond Chien Kuo Fung From 1356719 at bugs.launchpad.net Wed May 3 19:11:08 2017 From: 1356719 at bugs.launchpad.net (Launchpad Bug Tracker) Date: Wed, 03 May 2017 19:11:08 -0000 Subject: [Bug 1356719] Re: Incorrect "ALLO" command handling, can't upload file References: <20140814055908.28236.84410.malonedeb@chaenomeles.canonical.com> Message-ID: <20170503191108.13369.28433.malone@chaenomeles.canonical.com> Status changed to 'Confirmed' because the bug affects multiple users. ** Changed in: proftpd-dfsg (Ubuntu) Status: New => Confirmed -- You received this bug notification because you are a member of ProFTPD Maintainance Team, which is subscribed to proftpd-dfsg in Ubuntu. https://bugs.launchpad.net/bugs/1356719 Title: Incorrect "ALLO" command handling, can't upload file Status in proftpd-dfsg package in Ubuntu: Confirmed Bug description: File cannot be uploaded with error "552 xxxxxx: No space left on device", but there are enough free space to upload file: lftp ftp at localhost:/incoming> put 111.file ---> TYPE I <--- 200 Type set to I ---> PASV <--- 227 Entering Passive Mode (127,0,0,1,178,244). ---- Connecting data socket to (127.0.0.1) port 45812 ---> ALLO 4559208448 <--- 552 4559208448: No space left on device ---> STOR 111.file ---> ABOR put: Access failed: 552 4559208448: No space left on device (111.file) $ df -k / Filesystem 1K-blocks Used Available Use% Mounted on /dev/mapper/xubuntu--vg-root 952960924 508509592 396020640 57% / # proftpd debug level 5 log fragment: 2014-08-13 20:49:57,425 host proftpd[17989] host (localhost[127.0.0.1]): dispatching CMD command 'ALLO 4559208448' to mod_xfer 2014-08-13 20:49:57,425 host proftpd[17989] host (localhost[127.0.0.1]): ALLO requested 4559208448 bytes, only 396020652 bytes available on '/incoming' # Versions $ lsb_release -rd Description: Ubuntu 14.04.1 LTS Release: 14.04 $ apt-cache policy proftpd-basic proftpd-basic: Installed: 1.3.5~rc3-2.1ubuntu2 Candidate: 1.3.5~rc3-2.1ubuntu2 Version table: *** 1.3.5~rc3-2.1ubuntu2 0 500 http://ua.archive.ubuntu.com/ubuntu/ trusty/universe amd64 Packages 100 /var/lib/dpkg/status ### Problem caused by following code: http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/trusty/proftpd-dfsg/trusty/view/head:/modules/mod_xfer.c 2371: res = pr_fs_getsize2((char *) path, &avail_sz); ..... 2381: if (requested_sz > avail_sz) { But function pr_fs_getsize2 retunrs avail_sz is in kilobytes, while requested_sz in bytes. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/proftpd-dfsg/+bug/1356719/+subscriptions From 1356719 at bugs.launchpad.net Wed May 3 19:12:03 2017 From: 1356719 at bugs.launchpad.net (Kovalkov Dmitrii) Date: Wed, 03 May 2017 19:12:03 -0000 Subject: [Bug 1356719] Re: Incorrect "ALLO" command handling, can't upload file References: <20140814055908.28236.84410.malonedeb@chaenomeles.canonical.com> Message-ID: <20170503191203.3776.26893.malone@soybean.canonical.com> # cat /etc/os-release NAME="Ubuntu" VERSION="14.04.5 LTS, Trusty Tahr" ID=ubuntu ID_LIKE=debian PRETTY_NAME="Ubuntu 14.04.5 LTS" VERSION_ID="14.04" HOME_URL="http://www.ubuntu.com/" SUPPORT_URL="http://help.ubuntu.com/" BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/" # apt-cache policy proftpd-basic proftpd-basic: Installed: 1.3.5~rc3-2.1ubuntu2.2 Candidate: 1.3.5~rc3-2.1ubuntu2.2 Version table: *** 1.3.5~rc3-2.1ubuntu2.2 0 500 http://archive.ubuntu.com/ubuntu/ trusty-updates/universe amd64 Packages 100 /var/lib/dpkg/status 1.3.5~rc3-2.1ubuntu2.1 0 500 http://security.ubuntu.com/ubuntu/ trusty-security/universe amd64 Packages 1.3.5~rc3-2.1ubuntu2 0 500 http://archive.ubuntu.com/ubuntu/ trusty/universe amd64 Packages Not solved. -- You received this bug notification because you are a member of ProFTPD Maintainance Team, which is subscribed to proftpd-dfsg in Ubuntu. https://bugs.launchpad.net/bugs/1356719 Title: Incorrect "ALLO" command handling, can't upload file Status in proftpd-dfsg package in Ubuntu: Confirmed Bug description: File cannot be uploaded with error "552 xxxxxx: No space left on device", but there are enough free space to upload file: lftp ftp at localhost:/incoming> put 111.file ---> TYPE I <--- 200 Type set to I ---> PASV <--- 227 Entering Passive Mode (127,0,0,1,178,244). ---- Connecting data socket to (127.0.0.1) port 45812 ---> ALLO 4559208448 <--- 552 4559208448: No space left on device ---> STOR 111.file ---> ABOR put: Access failed: 552 4559208448: No space left on device (111.file) $ df -k / Filesystem 1K-blocks Used Available Use% Mounted on /dev/mapper/xubuntu--vg-root 952960924 508509592 396020640 57% / # proftpd debug level 5 log fragment: 2014-08-13 20:49:57,425 host proftpd[17989] host (localhost[127.0.0.1]): dispatching CMD command 'ALLO 4559208448' to mod_xfer 2014-08-13 20:49:57,425 host proftpd[17989] host (localhost[127.0.0.1]): ALLO requested 4559208448 bytes, only 396020652 bytes available on '/incoming' # Versions $ lsb_release -rd Description: Ubuntu 14.04.1 LTS Release: 14.04 $ apt-cache policy proftpd-basic proftpd-basic: Installed: 1.3.5~rc3-2.1ubuntu2 Candidate: 1.3.5~rc3-2.1ubuntu2 Version table: *** 1.3.5~rc3-2.1ubuntu2 0 500 http://ua.archive.ubuntu.com/ubuntu/ trusty/universe amd64 Packages 100 /var/lib/dpkg/status ### Problem caused by following code: http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/trusty/proftpd-dfsg/trusty/view/head:/modules/mod_xfer.c 2371: res = pr_fs_getsize2((char *) path, &avail_sz); ..... 2381: if (requested_sz > avail_sz) { But function pr_fs_getsize2 retunrs avail_sz is in kilobytes, while requested_sz in bytes. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/proftpd-dfsg/+bug/1356719/+subscriptions From hille42 at web.de Mon May 29 19:35:13 2017 From: hille42 at web.de (Hilmar =?UTF-8?Q?Preu=C3=9Fe?=) Date: Mon, 29 May 2017 21:35:13 +0200 Subject: Bug#787434: not fixed In-Reply-To: <19c9e8ae-79b1-178f-ae41-c5bb808ed405@conemu.de> References: <9f4f8dc7-091a-5bc4-7d94-c1f15f5b88c4@conemu.de> <264bb326-d62f-8666-6850-62ad38e8959b@web.de> <19c9e8ae-79b1-178f-ae41-c5bb808ed405@conemu.de> Message-ID: On 29.05.2017 14:22, debian-bugtracker at conemu.de wrote: > Am 05.09.2016 um 13:22 schrieb Hilmar Preu?e: Hi, >> I have test packages on https://freeshell.de/~hille42/proftpd/ . >> >> There are far from being finished, they just contain the patch. Could >> you test if they solve the problem? > > finally i tested your packages containing the patch. > The issue is gone using the package > proftpd-basic_1.3.5-1.1+deb8u2_amd64.deb you built. > > It would be very nice to have this in the next point-release or even > earlier. > I'm afraid it is to late now. Currently the release date for Debian stretch is 207-06-17, i.e. in less than 3 weeks. There won't be a point release any more. I suggest to use my fixed packages until stretch is released and then upgrade ASAP. Thanks, Hilmar -- http://www.hilmar-preusse.de.vu/ #206401 http://counter.li.org From service at chronopost.fr Tue May 30 07:22:25 2017 From: service at chronopost.fr (service at chronopost.fr) Date: 30 May 2017 00:22:25 -0700 Subject: Suivi Votre Colis -chronopost Message-ID: <20170530002225.64F2D438E5EC6417@chronopost.fr> To proceed to confirm your account information please follow the instructions that will be required: -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: chrono.jpg Type: image/jpeg Size: 2877 bytes Desc: not available URL: