Processed: aiccu
Processing commands for cont...@bugs.debian.org: > package aiccu Limiting to bugs with field 'package' containing at least one of 'aiccu' Limit currently set to 'package':'aiccu' > tag 531003 + pending Bug #531003 [aiccu] tunnel does not survive suspend Added tag(s) pending. > stop Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Processed: notfound 338488 in 0.6.0-1, notfound 338488 in 1.2-1
Processing commands for cont...@bugs.debian.org: > # Automatically generated email from bts, devscripts version 2.10.35lenny7 > notfound 338488 0.6.0-1 Bug #338488 [esmtp] esmtp: Bcc-only appears to fail Ignoring request to alter found versions of bug #338488 to the same values previously set > notfound 338488 1.2-1 Bug #338488 [esmtp] esmtp: Bcc-only appears to fail Ignoring request to alter found versions of bug #338488 to the same values previously set > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#563260: /etc/cron.daily/htdig generates lock-related error message
Package: htdig Version: 1:3.2.0b6-8 Severity: normal htdig seems to be installed as part of KDE. I've never changed any htdig configs. However, each morning, I have this email from cron in my box: /etc/cron.daily/htdig: /etc/cron.daily/htdig: line 26: 10138 Terminated lockfile-touch /var/run/htdig.cron -- System Information: Debian Release: 5.0.3 APT prefers stable APT policy: (500, 'stable') Architecture: amd64 (x86_64) Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages htdig depends on: ii debconf [debconf-2.0] 1.5.24Debian configuration management sy ii libc6 2.7-18GNU C Library: Shared libraries ii libgcc11:4.3.2-1.1 GCC support library ii libstdc++6 4.3.2-1.1 The GNU Standard C++ Library v3 ii lockfile-progs 0.1.11-0.1Programs for locking and unlocking ii perl 5.10.0-19lenny2 Larry Wall's Practical Extraction ii zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime htdig recommends no packages. Versions of packages htdig suggests: ii apache2-mpm-prefork [htt 2.2.9-10+lenny6 Apache HTTP Server - traditional n pn htdig-doc (no description available) -- debconf information: htdig/run-rundig: false htdig/generate-databases: true -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
libspiff 1.0.0-3 MIGRATED to testing
FYI: The status of the libspiff source package in Debian's testing distribution has changed. Previous version: 1.0.0-2 Current version: 1.0.0-3 -- This email is automatically generated once a day. As the installation of new packages into testing happens multiple times a day you will receive later changes on the next day. See http://release.debian.org/testing-watch/ for more information. -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#563270: grepmail: options to parse mbox in reverse order and to stop after a while
Package: grepmail Version: 5.3033-4 Severity: wishlist Hi, For date-based searches, if there was an option to search the input from bottom to top, and/or to stop after reaching a specified number of hits, it would be significantly faster than what we get now. For example: % ls -l randommbox -rw--- 1 joy joy 29640019 2010-01-01 12:32 randommbox % time grepmail -d 'since 5 days ago' randommbox | grep -c ^Date: 23 grepmail -d 'since 5 days ago' randommbox 14,88s user 0,31s system 99% cpu 15,201 total grep -c ^Date: 0,00s user 0,00s system 0% cpu 15,200 total % time tail -1 randommbox | grepmail -d 'since 5 days ago' | grep -c Date: 23 tail -1 randommbox 0,00s user 0,00s system 0% cpu 0,946 total grepmail -d 'since 5 days ago' 0,92s user 0,07s system 98% cpu 1,007 total grep -c Date: 0,00s user 0,00s system 0% cpu 1,005 total The trouble with the tail(1) above is that it's just a guess. -- 2. That which causes joy or happiness. -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#563272: libtic.so is a dangling symlink
Package: lib64ncurses5-dev Version: 5.7+20090803-2 Severity: serious at least on sparc, the symlink in /usr/lib64 must point to /lib64. -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#563272: libtic.so is a dangling symlink
tags 563272 + patch thanks On 2010-01-01 18:23 +0100, Matthias Klose wrote: > Package: lib64ncurses5-dev > Version: 5.7+20090803-2 > Severity: serious > > at least on sparc, the symlink in /usr/lib64 must point to /lib64. Indeed, and not only on sparc. This is due to a typo in debian/rules, here is a fix for it: --8<---cut here---start->8--- diff --git a/debian/rules b/debian/rules index 0f1567e..79168cd 100755 --- a/debian/rules +++ b/debian/rules @@ -343,7 +343,7 @@ ifneq ($(build_32),) endif ifneq ($(build_64),) ln -sf /lib64/libncurses.so.$(soname) debian/$(package-dev-64)/usr/lib64/libncurses.so - ln -sf /lib64/libtic.so.$(soname) debian/$(package-dev-64)/usr/lib64/tic.so + ln -sf /lib64/libtic.so.$(soname) debian/$(package-dev-64)/usr/lib64/libtic.so endif # By tradition, we provide -lcurses and -ltermcap. --8<---cut here---end--->8--- Cheers, Sven -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Processed: Re: Bug#563272: libtic.so is a dangling symlink
Processing commands for cont...@bugs.debian.org: > tags 563272 + patch Bug #563272 [lib64ncurses5-dev] libtic.so is a dangling symlink Added tag(s) patch. > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#560044: sun-java6-plugin: Confirm this bug
Package: sun-java6-plugin Version: 6-16-1 Severity: normal Just to confirm that this plugin does not work if IPV6 only networking is turned on. -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.32-trunk-686 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages sun-java6-plugin depends on: ii epiphany-browser 2.29.3-1 Intuitive GNOME web browser ii iceape-browser2.0-1 Iceape Navigator (Internet browser ii iceweasel 3.5.6-1lightweight web browser based on M ii libasound21.0.21a-1 shared library for ALSA applicatio ii libx11-6 2:1.3.2-1 X11 client-side library ii libxext6 2:1.0.4-1 X11 miscellaneous extension librar ii libxi62:1.2.1-2 X11 Input extension library ii libxtst6 2:1.0.3-1 X11 Testing -- Resource extension ii sun-java6-bin 6-16-1 Sun Java(TM) Runtime Environment ( sun-java6-plugin recommends no packages. sun-java6-plugin suggests no packages. -- no debconf information -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#563349: esmtp: [INTL:ru] Russian debconf templates translation update
Package: esmtp Version: 1.2-1 Severity: wishlist Tags: l10n patch Russian debconf templates translation update is attached. -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 2.6.30-2-amd64 (SMP w/4 CPU cores) Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash # translation of esmtp_1.2-1_ru.po to Russian # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Yuri Kozlov , 2009, 2010. msgid "" msgstr "" "Project-Id-Version: esmtp 1.2-1\n" "Report-Msgid-Bugs-To: es...@packages.debian.org\n" "POT-Creation-Date: 2009-12-26 15:14+0100\n" "PO-Revision-Date: 2010-01-02 10:01+0300\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Automatically overwrite configuration files?" msgstr "Перезаписать файлы настройки автоматически?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "The mail configuration file /etc/esmtprc can be automatically updated on " "each upgrade with the information supplied to the debconf database. If you " "do not want this to happen (i.e., you want to maintain control of this file " "yourself) then unset this option to prevent the program touching this file." msgstr "" "Главный файл настройки, /etc/esmtprc, может быть обновлён автоматически при " "каждом обновлении версии пакета согласно информации из базы данных debconf. " "Если вы не хотите этого (т.е., вы выполняете настройку вручную), то ответьте " "отрицательно, чтобы этот процесс не изменил данный файл." #. Type: string #. Description #: ../templates:2001 #| msgid "SMTP server hostname" msgid "SMTP server hostname:" msgstr "Имя хоста сервера SMTP:" #. Type: string #. Description #: ../templates:3001 #| msgid "SMTP server port number" msgid "SMTP server port number:" msgstr "Номер порта сервера SMTP:" #. Type: string #. Description #: ../templates:4001 #| msgid "Authentication username" msgid "Authentication username:" msgstr "Имя пользователя для аутентификации:" #. Type: string #. Description #: ../templates:4001 msgid "" "This is the username to be given to the mailhub if authentication is " "required by the SMTP server." msgstr "" "Данное имя пользователя будет посылаться, если сервер SMTP требует пройти " "аутентификацию." #. Type: string #. Description #: ../templates:4001 msgid "" "Do NOT set the username and password on the system configuration file unless " "you are the sole user of this machine. Esmtp is not run with suid " "privileges therefore the system configuration file must be readable by " "everyone. If your SMTP server requires authorization and you are not the " "only user then accept the default options in the system configuration file " "for local delivery and specify your personal SMTP account details in the " "user configuration file." msgstr "" "НЕ ЗАДАВАЙТЕ имя пользователя и пароль в системном файле настройки, если вы " "не единственный пользователь данной машины. Esmtp не работает с правами " "suid, поэтому системный файл настройки доступен на чтение всем. Если ваш " "сервер SMTP требует авторизации и вы не единственный пользователь, то " "примите настройки по умолчанию в системном файле настройки для локальной " "доставки, и укажите значения своей собственной учётной записи SMTP в " "пользовательском файле настройки." #. Type: password #. Description #: ../templates:5001 #| msgid "Authentication password" msgid "Authentication password:" msgstr "Пароль для аутентификации:" #. Type: password #. Description #: ../templates:5001 msgid "" "This is the password to be given to the mailhub if authentication is " "required by the SMTP server." msgstr "" "Данный пароль будет посылаться, если сервер SMTP требует пройти " "аутентификацию." #. Type: select #. Choices #: ../templates:6001 msgid "enabled" msgstr "да" #. Type: select #. Choices #: ../templates:6001 msgid "disabled" msgstr "нет" #. Type: select #. Choices #: ../templates:6001 msgid "required" msgstr "обязательно" #. Type: select #. Description #: ../templates:6002 msgid "Whether to use the Starttls extension" msgstr "Использовать расширение Starttls:" #. Type: password #. Description #: ../templates:7001 #| msgid "Certificate passphrase" msgid "Certificate passphrase:" msgstr "Ключевая фраза к сертификату:" #. Type: password #. Description #: ../templates:7001 msgid " This is the certificate passphrase for the StartTLS extension." msgstr "Это ключевая фраза для расширения StartTLS." #. Type: select #. Choices #: ../templates:8001 msgid "none" msgstr "нет" #. Type: select #. Choices #:
Bug#563349: esmtp: [INTL:ru] Russian debconf templates translation update
Hi Yuri Many thanks for your updated translation. it will be integrated after deadline for updating debconf translation request. Bests Salvatore signature.asc Description: Digital signature