Bug#1059387: exim4: CVE-2023-51766

2024-01-01 Thread Dave Page

On Sun, 31 Dec 2023 13:21:09 +0100 Andreas Metzler  wrote:

> Disable CHUNKING advertisement for incoming connections.
> Disable PIPELINING advertisement for incoming connections.

It's worth noting in this bug report that these can be achieved by the 
following lines in an Exim config:


chunking_advertise_hosts =
pipelining_advertise_hosts =

Cheers,
Dave


Bug#834129: Yarn is in Buster (stable) now

2020-06-15 Thread Dave Page
Though it has been renamed to yarnpkg - see
https://packages.debian.org/buster/yarnpkg

-- 
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


Bug#952660: src:linux: macvlan multicast/broadcast regression in stretch

2020-04-07 Thread Dave Page

Hi there,

We've been able to work around this thanks to Ben's help, but are Debian 
planning on releasing an update to fix this regression caused by the 
9.12 point release?


Cheers,
Dave

--
Dave Page, Operations Team ManagerCodethink Ltd
Telephone: +44 7762 840 414   3rd Floor, Dale House, 35 Dale Street
https://www.codethink.co.uk/ Manchester, M1 2HF, United Kingdom
We respect your privacy.   See https://www.codethink.co.uk/privacy.html



Bug#928938: cronic: Add option to report on return status only

2019-05-15 Thread Dave Page

On 15/05/2019 18:40, wrote:

Hi all, Thanks for including me in the conversation. To start, I want to 
confirm that we are specifically taking about the debug-trace standard-error 
output of docker/gitlab/etc (typically activated with a -D/--debug option), and 
not the normal output of such programs?

I ask because cronic has primitive support for ignoring debug-trace output on 
standard-error via the PS4 environment variable, so maybe a new option isn't 
needed? Or maybe the PS4 mechanism needs enhancing...

Cheers - Chuck


Hi Chuck,

No, this isn't specifically-requested debug information.

A command like "gitlab-ctl registry-garbage-collect -m" produce a whole 
lot of informational-level output on STDERR while returning a 0 error 
code. There's nothing you can pass to that script which will silence 
that, and it's the recommended / supported way of performing that 
garbage collection.


Cheers,
Dave

--
Dave Page, Operations Team ManagerCodethink Ltd
Telephone: +44 7762 840 4143rd Floor Dale House, 35 Dale Street
http://www.codethink.co.uk/   Manchester M1 2HF, United Kingdom
We respect your privacy.   See https://www.codethink.co.uk/privacy.html



Bug#928938: cronic: Add option to report on return status only

2019-05-13 Thread Dave Page
Package: cronic
Version: 3-1
Severity: wishlist
Tags: patch upstream

Dear Maintainer,

An increasing number of applications we use through cron are putting
debug output on STDERR while returning 0 by default, and cannot be
quietened. Examples include docker and gitlab maintenance

We have locally patched our cronic to support an option, -r, which will
cause cronic to only generate a report if the return code is nonzero,
even if there is STDERR output. We submit it for your consideration.

-- System Information:
Debian Release: 9.9
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.9.0-9-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_GB:en (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages cronic depends on:
ii  bash  4.4-5

cronic recommends no packages.

Versions of packages cronic suggests:
ii  cron  3.0pl1-128+deb9u1

-- no debconf information
--- cronic.orig 2019-05-13 17:46:13.150590183 +0100
+++ cronic  2019-05-13 17:19:01.098080693 +0100
@@ -11,6 +11,18 @@
 ERR=$TMP/cronic.err
 TRACE=$TMP/cronic.trace
 
+CRONIC_RESULT_ONLY=""
+
+# Go over $@ to look for - parameters
+while getopts r opt; do
+  case $opt in
+r)
+  CRONIC_RESULT_ONLY="yes"
+  ;;
+  esac
+done
+shift "$((OPTIND-1))"
+
 set +e
 "$@" >$OUT 2>$TRACE
 RESULT=$?
@@ -24,7 +36,7 @@
 ERR=$TRACE
 fi
 
-if [ $RESULT -ne 0 -o -s "$ERR" ]
+if [[ -n "$CRONIC_RESULT_ONLY" && $RESULT -ne 0 ]] || [[ -z 
"$CRONIC_RESULT_ONLY" && ( $RESULT -ne 0 || -s "$ERR" ) ]]
 then
 echo "Cronic detected failure or error output for the command:"
 echo "$@"


Bug#846496: golang-go: Cannot dist-upgrade golang-go from Jessie to Stretch

2016-12-01 Thread Dave Page
Package: golang-go.tools
Version: 1:0.0~git20161028.0.b814a3b+ds-3
Severity: grave
File: golang-go
Justification: renders package unusable

Dear Maintainer,


I am in the middle of a dist-upgrade from jessie to lennie, and the
process has broken on golang-go:

Preparing to unpack .../golang-go_2%3a1.7~1_amd64.deb ...
dpkg-maintscript-helper: error: directory '/usr/lib/go' contains files
not owned by package golang-go:amd64, cannot switch to symlink
dpkg: error processing archive
/var/cache/apt/archives/golang-go_2%3a1.7~1_amd64.deb (--unpack):
 subprocess new pre-installation script returned error exit status 1
Errors were encountered while processing:
 /var/cache/apt/archives/golang-go_2%3a1.7~1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

# dpkg -S /usr/lib/go /usr/lib/go/doc
golang-go, golang-doc: /usr/lib/go
golang-doc: /usr/lib/go/doc

So it looks like having golang-doc installed alongside, breaks the
upgrade of golang-go.

Purging golang golang-go golang-doc allowed me to complete the
dist-upgrade.

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 4.6.0-0.bpo.1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages golang-go.tools depends on:
ii  golang-golang-x-tools  1:0.0~git20161028.0.b814a3b+ds-3

golang-go.tools recommends no packages.

golang-go.tools suggests no packages.

-- no debconf information



Bug#827803: Change default code size limit from 64k

2016-06-21 Thread Dave Page

Package: pnopaste
Version: 1.5-2
Severity: wishlist

Dear Maintainer,

The default paste size of 64k with silent truncation is 
counter-intuitive; many application logs etc. can easily be bigger than 
this.


It seems easy to change the "code" field from TEXT to MEDIUMTEXT, upping 
the limit to 16Mb - I suggest this would be a more appropriate setting.


Cheers,
Dave

-- System Information:
Debian Release: 8.5
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.16.0-4-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages pnopaste depends on:
ii  dbconfig-common   1.8.47+nmu3+deb8u1
ii  debconf [debconf-2.0] 1.5.56
ii  libgeo-ip-perl1.45-1
ii  libsyntax-highlight-engine-kate-perl  0.09+dfsg-1
ii  perl  5.20.2-3+deb8u5

Versions of packages pnopaste recommends:
ii  apache2 [httpd]  2.4.10-10+deb8u4

Versions of packages pnopaste suggests:
pn  pnopaste-cli  

-- debconf information:
  pnopaste/db/basepath:
  pnopaste/db/dbname: pnopaste
  pnopaste/dbconfig-remove:
  pnopaste/pgsql/changeconf: false
  pnopaste/remove-error: abort
  pnopaste/install-error: abort
  pnopaste/dbconfig-reinstall: false
  pnopaste/mysql/admin-user: root
  pnopaste/database-type: mysql
  pnopaste/dbconfig-upgrade: true
  pnopaste/db/app-user: pnopaste
  pnopaste/pgsql/authmethod-admin: ident
  pnopaste/pgsql/manualconf:
  pnopaste/internal/skip-preseed: false
  pnopaste/remote/newhost:
  pnopaste/dbconfig-install: true
  pnopaste/missing-db-package-error: abort
  pnopaste/remote/host:
  pnopaste/mysql/method: unix socket
  pnopaste/internal/reconfiguring: false
  pnopaste/pgsql/authmethod-user: password
  pnopaste/pgsql/no-empty-passwords:
  pnopaste/upgrade-backup: true
  pnopaste/purge: false
  pnopaste/passwords-do-not-match:
  pnopaste/remote/port:
  pnopaste/pgsql/admin-user: postgres
  pnopaste/pgsql/method: unix socket
  pnopaste/upgrade-error: abort

--
Dave Page, Operations Team Manager, Senior Systems Engineer, Codethink Ltd
Telephone: +44 7762 840 414  302 Ducie House, Ducie Street
http://www.codethink.co.uk/ Manchester, M1 2JW, United Kingdom



Bug#827760: Fails gracelessly when HTTP Authentication is required

2016-06-20 Thread Dave Page

Package: pnopaste-cli
Version: 1.5-2
Severity: Wishlist
Tags: patch

Using nopaste-it with our internal pnopaste, which is behind HTTP auth, 
fails with a 401 Unauthorized response.


I have added code from LWP's HEAD to prompt for a password if STDIN is a 
tty.


-- System Information:
Debian Release: 8.4
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages pnopaste-cli depends on:
ii  libwww-perl  6.08-1
ii  perl 5.20.2-3+deb8u4

pnopaste-cli recommends no packages.

Versions of packages pnopaste-cli suggests:
pn  pnopaste  

-- no debconf information

--
Dave Page, Operations Team Manager, Senior Systems Engineer, Codethink Ltd
Telephone: +44 7762 840 414  302 Ducie House, Ducie Street
http://www.codethink.co.uk/ Manchester, M1 2JW, United Kingdom

--- /usr/bin/nopaste-it	2013-10-25 10:25:49.0 +0100
+++ bin/nopaste-it	2016-06-20 16:41:56.500373252 +0100
@@ -9,6 +9,37 @@
 # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.
 
+package Pnopaste::UserAgent;
+
+use parent 'LWP::UserAgent';
+
+sub get_basic_credentials {
+my ( $self, $realm, $uri, $isproxy ) = @_;
+
+if ( ! -t STDIN ) {
+  return ();
+}
+
+# Taken by Dave Page <dave.p...@codethink.co.uk>
+# from /usr/bin/HEAD
+# Copyright 1995-1999 Gisle Aas <gi...@aas.no>
+
+my $netloc = $uri->host_port;
+print STDERR "Enter username for $realm at $netloc: ";
+my $user = ;
+chomp($user);
+return (undef, undef) unless length $user;
+print STDERR "Password: ";
+system("stty -echo");
+my $password = ;
+system("stty echo");
+print STDERR "\n";  # because we disabled echo
+chomp($password);
+return ($user, $password);
+}
+
+package main;
+
 use warnings;
 use strict;
 use Getopt::Long;
@@ -136,7 +167,7 @@
 }
 
 
-my $Agent = LWP::UserAgent->new;
+my $Agent = Pnopaste::UserAgent->new;
 # Our name ;)
 $Agent->agent('Perl Nopaste Agent ' . $Build);
 


Bug#688789: /sbin/lvcreate: lvcreate/lvremove --quiet are not quiet

2014-12-29 Thread Dave Page
Package: lvm2
Version: 2.02.111-2
Followup-For: Bug #688789

I recently had the same problem with lvcreate / lvremove. I assumed a bug in
the source and went looking to fix it.

I learned from a source comment (lib/commands/toolcontext.c:183) that there is
the -qq option for extra quietness disables the spurious output from lvcreate
and lvremove. The manpage for LVM suggests that repeating -q will also
suppress any prompts with answer 'no', which doesn't seem to match this case.

I still consider it a bug that this output is not removed by --quiet, but
that's for the Debian maintainers to decide; in the meantime, I hope that
documenting this workaround will help those who find the original bug report
after discovering this behaviour.

-- System Information:
Debian Release: 8.0
  APT prefers testing-updates
  APT policy: (500, 'testing-updates'), (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages lvm2 depends on:
ii  dmeventd  2:1.02.90-2
ii  dmsetup   2:1.02.90-2
ii  init-system-helpers   1.22
ii  initscripts   2.88dsf-58
ii  libc6 2.19-13
ii  libdevmapper-event1.02.1  2:1.02.90-2
ii  libdevmapper1.02.12:1.02.90-2
ii  libreadline5  5.2+dfsg-2
ii  libudev1  215-7
ii  lsb-base  4.1+Debian13+nmu1

lvm2 recommends no packages.

Versions of packages lvm2 suggests:
pn  thin-provisioning-tools  none

-- no debconf information


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#653510: cgi-irc not dead upstream, only resting

2012-03-21 Thread Dave Page
I have made contact with the maintainer of cgi-irc today, through #cgiirc on 
irc.blitzed.org:

15:48:23  PerfDave Anybody know whether cgi:irc is still being maintained as 
a project?
15:48:35  dg sometimes
15:48:45  dg i don't spend much time on it
15:48:56  dg and the state of the perl annoys me each time ;)
15:48:58  PerfDave Well, it's a pretty stable project :)
15:49:25  dg hmm, I recognise your nick from london.pm or somewhere ;)
15:49:27  PerfDave Just noticed that a bug report / feature request I filed 
in Debian has been closed because they think the project is unmaintained 
upstream.
15:49:57  dg ah
15:49:59  PerfDave http://bugs.debian.org/653510
15:50:36  dg bugs.debian.org seems very slow...
15:50:47  PerfDave It does, doesn't it?
15:51:48  dg weird
15:52:07  dg I'm kind of confused they decided to remove it when their 
version is older than the latest released one
15:52:09  dg but whatever

Dave
-- 
Dave Page grimo...@cultofperf.org.uk
Jabber: grimo...@jabber.earth.li



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#656163: [Pkg-mediawiki-devel] Bug#656163: mediawiki: Edit and Recent Changes broken after lenny-squeeze upgrade with PostgreSQL backend

2012-01-17 Thread Dave Page
On Tuesday 17 Jan 2012 18:19:02 Jonathan Wiltshire wrote:

 I think you are right, you almost certainly need to set $wgDBadminuser and
 $wgDBadminpassword in /etc/mediawiki/AdminSettings.php, and then run
 /usr/share/mediawiki/maintenance/update.php.

Thanks for the workaround. I think this was my fault - I found I'd installed a 
custom /etc/mediawiki/LocalSettings.php to do Drupal-style selection of 
settings based on the domain/URL being accessed (this would be a useful 
addition to the Debian package, incidentally - makes hosting multiple wikis 
off one mediawiki install on different virtual hosts very easy). This script 
was not compatible with the update.php script.

Anyway, all fixed now, sorry for troubling you and thanks for the help!

Dave
-- 
Dave Page grimo...@cultofperf.org.uk
Jabber: grimo...@jabber.earth.li



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#656163: mediawiki: Edit and Recent Changes broken after lenny-squeeze upgrade with PostgreSQL backend

2012-01-16 Thread Dave Page
Package: mediawiki
Version: 1:1.15.5-2squeeze2
Severity: important


After a lenny to squeeze dist-upgrade, my mediawiki installation is fine
for read access, but attempts to edit pages or view recent changes fail.
I infer that there has been some schema change between mediawiki 1.12.0
(lenny) and 1.15.5 (squeeze) which was not enacted by the package
upgrade.

I've tried looking on the BTS, searching on Google and asking on #debian
to find a solution to this problem, but the search results are cluttered
with similar error messages in different contexts.

I enabled $wgShowExceptionDetails = true; in LocalSettings.php to
produce the following stack traces.

Page edit:
==

A database error has occurred
Query: SELECT cl_to FROM categorylinks,page_props,page WHERE cl_from = '116' 
AND (pp_page=page_id) AND pp_propname = 'hiddencat' AND page_namespace = '14' 
AND (page_title=cl_to)
Function: Article::getHiddenCategories
Error: 1 ERROR: relation page_props does not exist

Backtrace:

#0 /usr/share/mediawiki/includes/db/Database.php(616): 
DatabasePostgres-reportQueryError('ERROR: relatio...', 1, 'SELECT cl_to ...', 
'Article::getHid...', false)
#1 /usr/share/mediawiki/includes/db/Database.php(1026): Database-query('SELECT 
cl_to ...', 'Article::getHid...')
#2 /usr/share/mediawiki/includes/Article.php(3488): Database-select(Array, 
Array, Array, 'Article::getHid...')
#3 /usr/share/mediawiki/includes/EditPage.php(1432): 
Article-getHiddenCategories()
#4 /usr/share/mediawiki/includes/EditPage.php(469): EditPage-showEditForm()
#5 /usr/share/mediawiki/includes/EditPage.php(340): EditPage-edit()
#6 /usr/share/mediawiki/includes/Wiki.php(520): EditPage-submit()
#7 /usr/share/mediawiki/includes/Wiki.php(63): 
MediaWiki-performAction(Object(OutputPage), Object(Article), Object(Title), 
Object(User), Object(WebRequest))
#8 /usr/share/mediawiki/index.php(116): MediaWiki-initialize(Object(Title), 
Object(Article), Object(OutputPage), Object(User), Object(WebRequest))
#9 {main}

Recent Changes:
===

A database error has occurred
Query: SELECT * FROM recentchanges LEFT JOIN watchlist ON ((wl_user=2 AND 
wl_title=rc_title AND wl_namespace=rc_namespace)) LEFT JOIN tag_summary ON 
((ts_rc_id=rc_id)) WHERE (rc_timestamp = '2012-01-10 00:00:00 GMT') AND rc_bot 
= '0' ORDER BY rc_timestamp DESC LIMIT 50
Function: SpecialRecentChanges::doMainQuery
Error: 1 ERROR: relation tag_summary does not exist

Backtrace:

#0 /usr/share/mediawiki/includes/db/Database.php(616): 
DatabasePostgres-reportQueryError('ERROR: relatio...', 1, 'SELECT * FROM...', 
'SpecialRecentCh...', false)
#1 /usr/share/mediawiki/includes/db/Database.php(1026): Database-query('SELECT 
* FROM...', 'SpecialRecentCh...')
#2 /usr/share/mediawiki/includes/specials/SpecialRecentchanges.php(313): 
Database-select(Array, '*', Array, 'SpecialRecentCh...', Array, Array)
#3 /usr/share/mediawiki/includes/specials/SpecialRecentchanges.php(100): 
SpecialRecentChanges-doMainQuery(Array, Object(FormOptions))
#4 /usr/share/mediawiki/includes/SpecialPage.php(559): 
SpecialRecentChanges-execute(NULL)
#5 /usr/share/mediawiki/includes/Wiki.php(239): 
SpecialPage::executePath(Object(Title))
#6 /usr/share/mediawiki/includes/Wiki.php(59): 
MediaWiki-initializeSpecialCases(Object(Title), Object(OutputPage), 
Object(WebRequest))
#7 /usr/share/mediawiki/index.php(116): MediaWiki-initialize(Object(Title), 
NULL, Object(OutputPage), Object(User), Object(WebRequest))
#8 {main}

-- System Information:
Debian Release: 6.0.3
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.38.4-kvm-hosting.org-i386-20110428
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages mediawiki depends on:
ii  apache22.2.16-6+squeeze4 Apache HTTP Server metapackage
ii  apache2-mpm-prefork [h 2.2.16-6+squeeze4 Apache HTTP Server - traditional n
ii  debconf [debconf-2.0]  1.5.36.1  Debian configuration management sy
ii  mime-support   3.48-1MIME files 'mime.types'  'mailcap
ii  php5   5.3.3-7+squeeze3  server-side, HTML-embedded scripti
ii  php5-mysql 5.3.3-7+squeeze3  MySQL module for php5
ii  php5-pgsql 5.3.3-7+squeeze3  PostgreSQL module for php5

Versions of packages mediawiki recommends:
ii  mysql-server-5.1 [mysql 5.1.49-3 MySQL database server binaries and
ii  php5-cli5.3.3-7+squeeze3 command-line interpreter for the p

Versions of packages mediawiki suggests:
ii  clamav  0.97.3+dfsg-1~lenny1 anti-virus utility for Unix - comm
ii  imagemagick 8:6.6.0.4-3  image manipulation programs
pn  mediawiki-math  none   (no description available)
ii  memcached   1.4.5-1  A high-performance memory object c
ii  php5-gd 5.3.3-7+squeeze3 GD module for php5

-- debconf information:
* mediawiki/webserver: apache2



-- 

Bug#638175: nagios-snmp-plugins: Package name inconsistent

2011-08-17 Thread Dave Page
Package: nagios-snmp-plugins
Severity: minor


The three main Nagios plugin packages in Debian are:

- nagios-plugins
- nagios-plugins-basic
- nagios-plugins-standard

It would be useful if nagios-snmp-plugins were renamed nagios-plugins-snmp for
consistency. I recently wasted a little time by searching for nagios-plugins-*
trying to find the SNMP plugins.

Dave

-- System Information:
Debian Release: 6.0.2
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#583309: xmms2-core ships with possible non-free audio file

2010-05-26 Thread Dave Page
Package: xmms2-core
Version: 0.7DrNo-5
Severity: serious
Justification: Policy 2.2.1

The package xmms2-core ships with a 26-second clip of Lament for Lost Dreams
by mind.in.a.box as /usr/share/xmms2/mind.in.a.box-lament_snipplet.ogg

The file /usr/share/doc/xmms2-core/copyright does not mention copyright
information for this music clip. I'm assuming that while it might be freely
redistributable, it probably doesn't permit derivative works and is hence not
DSFG-compliant (DSFG 3). This means that the package containing it shouldn't be
in Debian main (Policy section 2.2.1).

Either way, if this file is actually OK, then it should be clarified in the
copyright information for the package.

Cheers,

Dave

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-3-amd64 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages xmms2-core depends on:
ii  libc6 2.10.2-9   Embedded GNU C Library: Shared lib
ii  libglib2.0-0  2.24.1-1   The GLib library of C routines
ii  libsqlite3-0  3.6.23.1-2 SQLite 3 shared library

xmms2-core recommends no packages.

xmms2-core suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#569631: openvpn: OpenVPN servers should check for nsCertType = server

2010-02-12 Thread Dave Page
Package: openvpn
Version: 2.1~rc11-1
Severity: wishlist


I recently set up OpenVPN between two Lenny systems, using my own existing 
certificates generated with OpenSSL by hand.

When in server mode, OpenVPN will happily use a certificate without nsCertType 
= server. No OpenVPN client will accept that certificate.

I think that OpenVPN in server mode should check its certificate for that 
attibute or its GnuTLS equivalent, and display a warning or error if it is 
missing.

Dave

-- 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_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages openvpn depends on:
ii  debconf [debconf-2.0]   1.5.24   Debian configuration management sy
ii  libc6   2.7-18lenny2 GNU C Library: Shared libraries
ii  liblzo2-2   2.03-1   data compression library
ii  libpam0g1.0.1-5+lenny1   Pluggable Authentication Modules l
ii  libpkcs11-helper1   1.05-1   library that simplifies the intera
ii  libssl0.9.8 0.9.8g-15+lenny6 SSL shared libraries
ii  openssl-blacklist   0.4.2list of blacklisted OpenSSL RSA ke
ii  openvpn-blacklist   0.3  list of blacklisted OpenVPN RSA sh

Versions of packages openvpn recommends:
ii  net-tools 1.60-22The NET-3 networking toolkit

Versions of packages openvpn suggests:
ii  openssl 0.9.8g-15+lenny6 Secure Socket Layer (SSL) binary a
ii  resolvconf  1.42 name server information handler

-- debconf information:
  openvpn/vulnerable_prng:
  openvpn/create_tun: false



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#552319: xserver-xorg-video-intel: No direct rendering on Intel 865G - Failed to allocate texture space

2009-10-25 Thread Dave Page
Package: xserver-xorg-video-intel
Version: 2:2.3.2-2+lenny6
Severity: normal


I am using a system with a built-in Intel 865G graphics chipset, with 
xserver-xorg-video-intel. However, my system is not using direct rendering, 
which I believe this chipset and driver to be capable of:

grimo...@tandoor:~$ LIBGL_DEBUG=verbose glxinfo | head -20
libGL: XF86DRIGetClientDriverName: 1.9.0 i915 (screen 0)
libGL: OpenDriver: trying /usr/lib/dri/i915_dri.so
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 4, (OK)
drmOpenByBusid: Searching for BusID pci::00:02.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 4, (OK)
drmOpenByBusid: drmOpenMinor returns 4
drmOpenByBusid: drmGetBusid reports pci::00:02.0
libGL error: drmMap of framebuffer failed (Invalid argument)
libGL error: reverting to (slow) indirect rendering
name of display: :0.0
display: :0  screen: 0
direct rendering: No (If you want to find out why, try setting 
LIBGL_DEBUG=verbose)
server glx vendor string: SGI
server glx version string: 1.2
server glx extensions:
GLX_ARB_multisample, GLX_EXT_visual_info, GLX_EXT_visual_rating,
GLX_EXT_import_context, GLX_EXT_texture_from_pixmap, GLX_OML_swap_method,
GLX_SGI_make_current_read, GLX_SGIS_multisample, GLX_SGIX_hyperpipe,
GLX_SGIX_swap_barrier, GLX_SGIX_fbconfig, GLX_MESA_copy_sub_buffer
client glx vendor string: SGI
client glx version string: 1.4
client glx extensions:
GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context,
GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_allocate_memory,
GLX_MESA_copy_sub_buffer, GLX_MESA_swap_control,
GLX_MESA_swap_frame_usage, GLX_OML_swap_method, GLX_OML_sync_control,
GLX_SGI_make_current_read, GLX_SGI_swap_control, GLX_SGI_video_sync,
GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer,
GLX_SGIX_visual_select_group, GLX_EXT_texture_from_pixmap

The relevant lines in Xorg.0.log seem to be:

(==) intel(0): VideoRam: 131072 KB
(II) intel(0): Attempting memory allocation with tiled buffers.
(WW) intel(0): Failed to allocate texture space.
(II) intel(0): Tiled allocation failed.
(II) intel(0): Attempting memory allocation with untiled buffers.
(WW) intel(0): Failed to allocate texture space.
(II) intel(0): Untiled allocation failed.
(II) intel(0): Couldn't allocate 3D memory, disabling DRI.

The following lines from dmesg may be relevant:

[   28.067287] [drm] Initialized drm 1.1.0 20060810
[   28.075289] ACPI: PCI Interrupt :00:02.0[A] - GSI 16 (level, low) - 
IRQ 16
[   28.075289] PCI: Setting latency timer of device :00:02.0 to 64
[   28.075289] [drm] Initialized i915 1.6.0 20060119 on minor 0

I have tried enabling and disabling the kernel framebuffer with
dpkg-reconfigure -plow xserver-xorg and had no success either way.

-- Package-specific info:
Contents of /var/lib/x11/X.roster:
xserver-xorg

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 2009-10-06 22:05 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1718484 2009-06-08 10:35 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation 82865G Integrated Graphics 
Controller (rev 02)

/etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 1142 2009-10-25 13:14 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type man xorg.conf at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  XkbRules  xorg
Option  XkbModel  pc105
Option  XkbLayout gb
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  mouse
EndSection

Section Device
Identifier  Configured Video Device
Option  UseFBDev  true
EndSection

Section Monitor
Identifier  Configured Monitor
Option  PreferredMode 1600x1200
EndSection

Section Screen
Identifier  Default Screen
Monitor Configured Monitor
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 23187 2009-10-24 00:11 /var/log/Xorg.1.log
-rw-r--r-- 1 root root 39577 2009-10-25 13:21 /var/log/Xorg.0.log


Bug#546745: klamav: Frequent Segmentation Faults

2009-09-15 Thread Dave Page
Package: klamav
Version: 0.44-3
Severity: important


I have kmail configured to pipe mail through klammail -d /var/lib/clamav. I 
noticed frequent lines in /var/log/messages such as:

klammail[15106]: segfault at  ip 7f561e54e030 sp 7fff275835d8 error 4 
in libc-2.7.so[7f561e4d3000+14a000]
klammail[15707]: segfault at  ip 7f3392b39030 sp 7fff9bb6e158 error 4 
in libc-2.7.so[7f3392abe000+14a000]
klammail[15758]: segfault at  ip 7f71826f0030 sp 7fff8b725778 error 4 
in libc-2.7.so[7f7182675000+14a000]
klammail[15822]: segfault at  ip 7fa9bc28f030 sp 7fffc52c38b8 error 4 
in libc-2.7.so[7fa9bc214000+14a000]
klammail[15845]: segfault at  ip 7f1aaa0ba030 sp 7fffb30ee6d8 error 4 
in libc-2.7.so[7f1aaa03f000+14a000]

A manual test with the attached e-mail file gives a segmentation fault ~60% of 
the time:

for i in {1..100}; do
  if ! klammail -d /var/lib/clamav  test.mbox /dev/null 21; then
(( SEGFAULT++))
  fi
  (( TOTAL++ ))
done
echo $SEGFAULT faults out of $TOTAL

-- System Information:
Debian Release: 5.0.2
  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_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages klamav depends on:
ii  clamav   0.95.2+dfsg-1~volatile1 anti-virus utility for Unix - comm
ii  kdelibs4c2a  4:3.5.10.dfsg.1-0lenny1 core libraries and binaries for al
ii  libacl1  2.2.47-2Access control list shared library
ii  libart-2.0-2 2.3.20-2Library of functions for 2D graphi
ii  libattr1 1:2.4.43-2  Extended attribute shared library
ii  libaudio21.9.1-5 Network Audio System - shared libr
ii  libbz2-1.0   1.0.5-1 high-quality block-sorting file co
ii  libc62.7-18  GNU C Library: Shared libraries
ii  libclamav5   0.94.dfsg.2-1lenny2 anti-virus utility for Unix - libr
ii  libfam0  2.7.0-13.3  Client library to control the FAM 
ii  libfontconfig1   2.6.0-3 generic font configuration library
ii  libfreetype6 2.3.7-2+lenny1  FreeType 2 font engine, shared lib
ii  libgcc1  1:4.3.2-1.1 GCC support library
ii  libgmp3c22:4.2.2+dfsg-3  Multiprecision arithmetic library
ii  libice6  2:1.0.4-1   X11 Inter-Client Exchange library
ii  libidn11 1.8+20080606-1  GNU libidn library, implementation
ii  libjpeg626b-14   The Independent JPEG Group's JPEG 
ii  libpcre3 7.6-2.1 Perl 5 Compatible Regular Expressi
ii  libpng12-0   1.2.27-2+lenny2 PNG library - runtime
ii  libqt3-mt3:3.3.8b-5  Qt GUI Library (Threaded runtime v
ii  libsm6   2:1.0.3-2   X11 Session Management library
ii  libstdc++6   4.3.2-1.1   The GNU Standard C++ Library v3
ii  libx11-6 2:1.1.5-2   X11 client-side library
ii  libxcursor1  1:1.1.9-1   X cursor management library
ii  libxext6 2:1.0.4-1   X11 miscellaneous extension librar
ii  libxft2  2.1.12-3FreeType-based font drawing librar
ii  libxi6   2:1.1.4-1   X11 Input extension library
ii  libxinerama1 2:1.0.3-2   X11 Xinerama extension library
ii  libxrandr2   2:1.2.3-1   X11 RandR extension library
ii  libxrender1  1:0.9.4-2   X Rendering Extension client libra
ii  libxt6   1:1.0.5-3   X11 toolkit intrinsics library
ii  zlib1g   1:1.2.3.3.dfsg-12   compression library - runtime

klamav recommends no packages.

klamav suggests no packages.

-- no debconf information
From grimo...@cultofperf.org.uk Tue Sep 15 13:06:52 2009
Return-Path: grimo...@cultofperf.org.uk
Received: from grimoire.xen-tools.net ([unix socket])
	by grimoire.xen-tools.net (Cyrus v2.1.18-IPv6-Debian-2.1.18-5.1) with LMTP; Tue, 15 Sep 2009 13:06:59 +0100
X-Sieve: CMU Sieve 2.2
From: Dave Page grimo...@cultofperf.org.uk
Organization: Cult of Perf
To: Dave Page grimo...@cultofperf.org.uk
Subject: Test
Date: Tue, 15 Sep 2009 13:06:52 +0100
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: 200909151306.53023.grimo...@cultofperf.org.uk
X-UID: 79722
X-Length: 1026
Status: R
X-Status: NC
X-KMail-EncryptionState:  
X-KMail-SignatureState:  
X-KMail-MDN-Sent:  

Test

Dave
-- 
Dave Page grimo...@cultofperf.org.uk
Jabber: grimo...@jabber.earth.li



Bug#546745: klamav: Frequent Segmentation Faults

2009-09-15 Thread Dave Page
On Tuesday 15 September 2009 14:42:15 Scott Kitterman wrote:
 On Tuesday 15 September 2009 08:42:54 am Dave Page wrote:

  ii  clamav   0.95.2+dfsg-1~volatile1 anti-virus utility for Unix

 You are mixing the Lenny kamav with clamav from Volatile.  This combination
 is not supported for a variety of reasons and as you have found, won't
 work. Either downgrade your clamav, or get the klamav from Testing (0.46)
 and build it locally (this should work, but is also not supported).

Hmm, I presume that clamav has been rebuilt for the volatile repository for a 
good reason - would it not make sense to build klamav against it and put 
those klamav packages in the volatile repo too?

Or can we have volatile's clamav Conflict: with stable's klamav? I'm worried 
that I've managed to install a combination of packages which might not be 
actually virus-scanning my e-mail...

Dave
-- 
Dave Page grimo...@cultofperf.org.uk
Jabber: grimo...@jabber.earth.li



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#437170: frozen-bubble --very-slow-machine is permanent

2009-08-02 Thread Dave Page
Package: frozen-bubble
Version: 2.1.0-2+b1
Followup-For: Bug #437170


As a test of frozen-bubble's capabilities, I invoked it as frozen-bubble 
--very-slow-machine which gave me the red dot pointer mentioned in the 
original bug report. What I did not expect is that this red dot pointer was 
retained on future invocations of Frozen Bubble.

The workaround for me was to edit my $HOME/.fbrc and remove the line reading 
$graphics_level = 1;

-- System Information:
Debian Release: 5.0.2
  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_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages frozen-bubble depends on:
ii  fb-music-high0.1.2   High quality, large music files fo
ii  frozen-bubble-data   2.1.0-2 Data files for Frozen-Bubble
ii  libc62.7-18  GNU C Library: Shared libraries
ii  libglib2.0-0 2.16.6-2The GLib library of C routines
ii  libpango1.0-01.20.5-5Layout and rendering of internatio
ii  libsdl-mixer1.2  1.2.8-4 mixer library for Simple DirectMed
ii  libsdl-pango10.1.2-4 text rendering with Pango in SDL a
ii  libsdl-perl  1.20.3dfsg-3+b1 SDL bindings for the Perl language
ii  libsdl1.2debian  1.2.13-2Simple DirectMedia Layer
ii  perl 5.10.0-19   Larry Wall's Practical Extraction 
ii  perl-base [perlapi-5.10. 5.10.0-19   minimal Perl system

frozen-bubble recommends no packages.

frozen-bubble suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#504426: closed by Bastian Blank [EMAIL PROTECTED] (Re: Bug#504426: linux-image-2.6.26-1-xen-amd64 does not boot)

2008-11-04 Thread Dave Page
On Tuesday 04 November 2008 11:27:16 LM Jogbäck wrote:

 This is not correct. On Etch (and Lenny) you need to either:
 a) Install linux-image-*-xen*  AND xen-hypervisor-*
 or
 b) Install xen-linux-system* (which depends on both the kernel and the
 hypervisor)

Would it make sense for the package description for the Xen kernel to mention 
this, or for the package to depend or recommend the full Xen system?

A simple description line reading If you want to run this kernel as a Xen 
host (dom0), look at the xen-linux-system-2.6.26-1-xen-amd64 package would 
help.

Dave
-- 
Dave Page [EMAIL PROTECTED]
Jabber: [EMAIL PROTECTED]



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#504426: linux-image-2.6.26-1-xen-amd64 does not boot

2008-11-03 Thread Dave Page
Package: linux-image-2.6.26-1-xen-amd64
Version: 2.6.26-8
Severity: grave
Justification: renders package unusable

After installing linux-image-2.6.26-1-xen-amd64, and booting it in grub, I get 
the following output:

 BEGIN 
  Booting 'Debian GNU/Linux, kernel 2.6.26-1-xen-amd64'

root(hd0,0)
 Filesystem type is ext2fs, partition type 0x83
kernel  /vmlinuz-2.6.26-1-xen-amd64 root=/dev/mapper/pasander-root ro 
usbcore.autosuspend=1 quiet

Error 13: Invalid or unsupported executable format

Press any key to continue...
= END =

I suspect that this is caused by:

$ file /boot/vmlinuz-2.6.26-1-*
/boot/vmlinuz-2.6.26-1-amd64: Linux kernel x86 boot executable RO-rootFS, 
root_dev 0x901, swap_dev 0x1, Normal VGA
/boot/vmlinuz-2.6.26-1-xen-amd64: gzip compressed data, from Unix, last 
modified: Thu Oct  9 18:11:25 2008, max compression

The 2.6.26-1-amd64 kernel boots fine, it's what I'm using to submit this bug 
report ;)

Dave

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages linux-image-2.6.26-1-xen-amd64 depends on:
ii  initramfs-tools   0.92j  tools for generating an initramfs
ii  linux-modules-2.6.26-1-xen-am 2.6.26-8   Linux 2.6.26 modules on AMD64

linux-image-2.6.26-1-xen-amd64 recommends no packages.

Versions of packages linux-image-2.6.26-1-xen-amd64 suggests:
ii  grub  0.97-47GRand Unified Bootloader (Legacy v
pn  linux-doc-2.6.26  none (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#504426: closed by Bastian Blank [EMAIL PROTECTED] (Re: Bug#504426: linux-image-2.6.26-1-xen-amd64 does not boot)

2008-11-03 Thread Dave Page
On Monday 03 November 2008 21:36:04 Debian Bug Tracking System wrote:

 Their explanation is attached below along with your original report.
 If this explanation is unsatisfactory and you have not received a
 better one in a separate message then please contact Bastian Blank
 [EMAIL PROTECTED] by replying to this email.

Installing a linux-image-*-xen* package is all you need to do to get a 
Xen-enabled dom0 on Etch; if it's not that simple on Lenny, I consider that a 
bug.

Having done a bit of poking around with help from some DDs on IRC, it seems 
that there are two here, one of which are not related to the kernel package 
directly.

1) The kernel package does not depend or recommend any of the Xen packages it 
will need to be correctly booted

2) the update-grub script is writing the menu.lst entry as if this were a 
standard kernel, not a Xen-enabled one.

In answer to your Please read the documentation before writing bugs, which 
documentation did you have in mind? If a kernel package is going to install 
itself and fail to boot, or require special massaging to be made to work, I'd 
expect this to be mentioned in /usr/share/doc/linux-image-2.6.26-1-xen-amd64 
even if that just told me to install a kernel documentation package.

Dave
-- 
Dave Page [EMAIL PROTECTED]
Jabber: [EMAIL PROTECTED]



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#500837: libsane's udev rules not recognised

2008-10-02 Thread Dave Page
On Thursday 02 October 2008 09:40:03 Julien BLACHE wrote:

  I had to manually restart udev to get it to read the rules file; after
  that (and unplugging and replugging the scanner) the permissions were
  correct and everything was fine.

 Actually, udev watches for changes to the rules files (and for
 additions/deletions) and reloads them on the fly.

Perhaps this bug should be reassigned to udev then, because it clearly did not 
do this for me.

  libsane should do this for you when it is installed so installation is
  more transparent.

 Triggering a coldplug is not recommended AFAIK.

I'm not sure what you mean by triggering a coldplug, sorry.

Dave
-- 
Dave Page [EMAIL PROTECTED]
Jabber: [EMAIL PROTECTED]



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#500837: libsane's udev rules not recognised

2008-10-02 Thread Dave Page
On Thursday 02 October 2008 20:52:27 Julien BLACHE wrote:

  Triggering a coldplug is not recommended AFAIK.
 
  I'm not sure what you mean by triggering a coldplug, sorry.

 Applying the rules on the system in its current state, outside of an
 hotplug event.

 The current policy regarding udev is to install the rules without
 triggering a coldplug event.

That's fair enough. But after installing libsane, and before I restarted udev, 
unplugging the USB scanner and plugging it back in (which should trigger a 
hotplug event?) did not allow me to see the scanner as a non-root user in 
group saned. After I restarted udev, I could.

Dave
-- 
Dave Page [EMAIL PROTECTED]
Jabber: [EMAIL PROTECTED]



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#500837: libsane's udev rules not recognised

2008-10-01 Thread Dave Page
Package: libsane
Version: 1.0.19-20
Severity: minor


I installed libsane (as a dependency of kooka) and then connected my USB
scanner (a Mustek 1248UB). The device nodes in /dev/usbdev* were owned
by root:root and hence the scanner was not accessible by me -
scanimage -L showed the scanner as root but not as the normal user.

I had to manually restart udev to get it to read the rules file; after
that (and unplugging and replugging the scanner) the permissions were
correct and everything was fine.

libsane should do this for you when it is installed so installation is
more transparent.

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libsane depends on:
ii  adduser  3.110   add and remove users and groups
ii  libavahi-client3 0.6.22-3Avahi client library
ii  libavahi-common3 0.6.22-3Avahi common library
ii  libc62.7-13  GNU C Library: Shared libraries
ii  libexif120.6.16-2.1  library to parse EXIF files
ii  libgphoto2-2 2.4.1-3 gphoto2 digital camera library
ii  libgphoto2-port0 2.4.1-3 gphoto2 digital camera port librar
ii  libieee1284-30.2.11-5cross-platform library for paralle
ii  libjpeg626b-14   The Independent JPEG Group's JPEG 
ii  libsane-extras   1.0.19.10   API library for scanners -- extra 
ii  libtiff4 3.8.2-11Tag Image File Format (TIFF) libra
ii  libusb-0.1-4 2:0.1.12-12 userspace USB programming library
ii  makedev  2.3.1-88creates device files in /dev
ii  udev 0.125-6 /dev/ and hotplug management daemo

Versions of packages libsane recommends:
ii  avahi-daemon  0.6.22-3   Avahi mDNS/DNS-SD daemon
ii  sane-utils1.0.19-20  API library for scanners -- utilit

Versions of packages libsane suggests:
pn  hplip none (no description available)
pn  hpoj  none (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#492276: libpt-1.10.0: Depends on nonexistent libldap2

2008-07-24 Thread Dave Page
Package: libpt-1.10.0
Version: 1.10.7~dfsg1-4+lenny1
Severity: grave
Justification: renders package unusable


libpt-1.10.0 version 1.10.7~dfsg1-4+lenny1 has a dependency on libldap2 (= 
2.1.17-1). However, there is no libldap2 in Lenny or Sid. Thus, libpt-1.10.0 
cannot be installed.

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.25-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.25-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#492281: linux-uvc-source: Does not support Chicony Electronics (04f2:b013) webcam in Lenovo 3000 N200

2008-07-24 Thread Dave Page
Package: linux-uvc-source
Version: 0.1.0.svn193-3
Severity: normal


The supplied linux-uvc-source package is r193 from Subversion, which does not 
support the Chicony Electronics webcam in my Lenovo 3000 N200 laptop. The 
latest Subversion revision (r238) does, and is 
not even yet in unstable.

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.25-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages linux-uvc-source depends on:
ii  bzip2 1.0.5-0.1  high-quality block-sorting file co
ii  debhelper 7.0.15 helper programs for debian/rules
ii  module-assistant  0.10.11.0  tool to make module package creati

linux-uvc-source recommends no packages.

Versions of packages linux-uvc-source suggests:
pn  isight-firmware-tools none (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#487848: Patch: Support multiple virtual hosts

2008-06-24 Thread Dave Page
Package: cgiirc
Version: 0.5.9-2
Severity: wishlist


On a server which hosts multiple websites, it is frustrating to have to
manually make copies of CGI:IRC with different hardcoded configuration
files for each site you want to provide with a chatroom. This is also a
security risk - a vulnerability could be patched on your package-managed
script, but not in the copies you have made.

This patch to parse.pl allows you to specify multiple configurations
using INI-style square bracketed headers which are pattern-matched
against the URI of the CGI:IRC script. I have tried submitting it
upstream but with no response from the maintainer.

Dave

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-6-xen-amd64
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages cgiirc depends on:
ii  apache2-mpm-prefork [h 2.2.3-4+etch4 Traditional model for Apache HTTPD
ii  libc6  2.3.6.ds1-13etch5 GNU C Library: Shared libraries
ii  perl   5.8.8-7etch3  Larry Wall's Practical Extraction 

cgiirc recommends no packages.

-- debconf-show failed
7a8
my $reading = 1;
12a14,17
   if ( /^\[([^\]]+)\]$/ ) {
 $reading = $ENV{'HTTP_HOST'}$ENV{'SCRIPT_NAME'} =~ m/($1)/;
   }
   next if !$reading;


Bug#478074: cyrus21-common: cyrus user should be in group ssl-certs

2008-04-26 Thread Dave Page
Package: cyrus21-common
Version: 2.1.18-5.1
Severity: important


The default cyrus imap config file /etc/imapd.conf suggests placing
TLS/SSL certificates in /etc/ssl/certs and keys in /etc/ssl/private
which appears to be the Debian standard.

However, keyfiles in /etc/ssl/private can only be read by users in the
group ssl-certs, and user cyrus is not in this group. A simple

# adduser cyrus ssl-certs

fixes this and allows the certificates to be read from the preferred
location. It's worth noting that PostgreSQL puts the postgres user in
this group for this reason.

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-6-xen-amd64
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages cyrus21-common depends on:
ii  adduser   3.102  Add and remove users and groups
ii  debconf [debc 1.5.11etch1Debian configuration management sy
ii  dpkg  1.13.25package maintenance system for Deb
ii  exim4-daemon- 4.63-17exim MTA (v4) daemon with extended
ii  gawk  1:3.1.5.dfsg-4 GNU awk, a pattern scanning and pr
ii  libc6 2.3.6.ds1-13etch5  GNU C Library: Shared libraries
ii  libdb33.2.9+dfsg-0.1 Berkeley v3 Database Libraries [ru
ii  libsasl2-22.1.22.dfsg1-8 Authentication abstraction library
ii  libssl0.9.8   0.9.8c-4etch1  SSL shared libraries
ii  libwrap0  7.6.dbs-13 Wietse Venema's TCP wrappers libra
ii  libzephyr32.1.20010518.SNAPSHOT-17.1 The original Instant Message sys
ii  netbase   4.29   Basic TCP/IP networking system
ii  perl  5.8.8-7etch2   Larry Wall's Practical Extraction 

Versions of packages cyrus21-common recommends:
ii  cyrus21-imapd 2.1.18-5.1 Cyrus mail system (IMAP support)

-- debconf information:
  cyrus21-common/warnbackendchange:
  cyrus21-common/removespools: false



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#186164: kmail: Still blocks on GPG

2007-05-13 Thread Dave Page
Package: kmail
Followup-For: Bug #186164

Just to let you know that this problem is still extant in Etch, kmail 
3.5.5.dfsg.1-6

I noticed this when wwwkeys.uk.pgp.net went down and started timing out, and 
kmail kept appearing to 
hang because it was loading a signed message.

Dave

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-686
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages kmail depends on:
ii  kdebase-kio-plugins4:3.5.5a.dfsg.1-6 core I/O slaves for KDE
ii  kdelibs4c2a4:3.5.5a.dfsg.1-8 core libraries and binaries for al
ii  kdepim-kio-plugins 4:3.5.5.dfsg.1-6  KDE pim I/O Slaves
ii  libart-2.0-2   2.3.17-1  Library of functions for 2D graphi
ii  libaudio2  1.8-4 The Network Audio System (NAS). (s
ii  libc6  2.3.6.ds1-13  GNU C Library: Shared libraries
ii  libfontconfig1 2.4.2-1.2 generic font configuration library
ii  libfreetype6   2.2.1-5   FreeType 2 font engine, shared lib
ii  libgcc11:4.1.1-21GCC support library
ii  libice61:1.0.1-2 X11 Inter-Client Exchange library
ii  libidn11   0.6.5-1   GNU libidn library, implementation
ii  libjpeg62  6b-13 The Independent JPEG Group's JPEG 
ii  libkcal2b  4:3.5.5.dfsg.1-6  KDE calendaring library
ii  libkdepim1a4:3.5.5.dfsg.1-6  KDE PIM library
ii  libkleopatra1  4:3.5.5.dfsg.1-6  KDE GnuPG interface libraries
ii  libkmime2  4:3.5.5.dfsg.1-6  KDE MIME interface library
ii  libkpimidentities1 4:3.5.5.dfsg.1-6  KDE PIM user identity information 
ii  libksieve0 4:3.5.5.dfsg.1-6  KDE mail/news message filtering li
ii  libmimelib1c2a 4:3.5.5.dfsg.1-6  KDE mime library
ii  libpng12-0 1.2.15~beta5-1PNG library - runtime
ii  libqt3-mt  3:3.3.7-4 Qt GUI Library (Threaded runtime v
ii  libsm6 1:1.0.1-3 X11 Session Management library
ii  libstdc++6 4.1.1-21  The GNU Standard C++ Library v3
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxcursor11.1.7-4   X cursor management library
ii  libxext6   1:1.0.1-2 X11 miscellaneous extension librar
ii  libxft22.1.8.2-8 FreeType-based font drawing librar
ii  libxi6 1:1.0.1-4 X11 Input extension library
ii  libxinerama1   1:1.0.1-4.1   X11 Xinerama extension library
ii  libxrandr2 2:1.1.0.2-5   X11 RandR extension library
ii  libxrender11:0.9.1-3 X Rendering Extension client libra
ii  libxt6 1:1.0.2-2 X11 toolkit intrinsics library
ii  perl   5.8.8-7   Larry Wall's Practical Extraction 
ii  zlib1g 1:1.2.3-13compression library - runtime

Versions of packages kmail recommends:
pn  procmail  none (no description available)

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#423656: kmail should cache GnuPG results

2007-05-13 Thread Dave Page
Package: kmail
Version: 4:3.5.5.dfsg.1-6
Severity: wishlist

In reference to bug #186164 - this problem would be alleviated (if not fixed) 
if kmail were to cache 
GnuPG results in the same way that mutt does. It seems that kmail re-invokes 
GnuPG every time a message 
is loaded, which causes obvious problems if GnuPG is timing out.

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-686
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages kmail depends on:
ii  kdebase-kio-plugins4:3.5.5a.dfsg.1-6 core I/O slaves for KDE
ii  kdelibs4c2a4:3.5.5a.dfsg.1-8 core libraries and binaries for al
ii  kdepim-kio-plugins 4:3.5.5.dfsg.1-6  KDE pim I/O Slaves
ii  libart-2.0-2   2.3.17-1  Library of functions for 2D graphi
ii  libaudio2  1.8-4 The Network Audio System (NAS). (s
ii  libc6  2.3.6.ds1-13  GNU C Library: Shared libraries
ii  libfontconfig1 2.4.2-1.2 generic font configuration library
ii  libfreetype6   2.2.1-5   FreeType 2 font engine, shared lib
ii  libgcc11:4.1.1-21GCC support library
ii  libice61:1.0.1-2 X11 Inter-Client Exchange library
ii  libidn11   0.6.5-1   GNU libidn library, implementation
ii  libjpeg62  6b-13 The Independent JPEG Group's JPEG 
ii  libkcal2b  4:3.5.5.dfsg.1-6  KDE calendaring library
ii  libkdepim1a4:3.5.5.dfsg.1-6  KDE PIM library
ii  libkleopatra1  4:3.5.5.dfsg.1-6  KDE GnuPG interface libraries
ii  libkmime2  4:3.5.5.dfsg.1-6  KDE MIME interface library
ii  libkpimidentities1 4:3.5.5.dfsg.1-6  KDE PIM user identity information 
ii  libksieve0 4:3.5.5.dfsg.1-6  KDE mail/news message filtering li
ii  libmimelib1c2a 4:3.5.5.dfsg.1-6  KDE mime library
ii  libpng12-0 1.2.15~beta5-1PNG library - runtime
ii  libqt3-mt  3:3.3.7-4 Qt GUI Library (Threaded runtime v
ii  libsm6 1:1.0.1-3 X11 Session Management library
ii  libstdc++6 4.1.1-21  The GNU Standard C++ Library v3
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxcursor11.1.7-4   X cursor management library
ii  libxext6   1:1.0.1-2 X11 miscellaneous extension librar
ii  libxft22.1.8.2-8 FreeType-based font drawing librar
ii  libxi6 1:1.0.1-4 X11 Input extension library
ii  libxinerama1   1:1.0.1-4.1   X11 Xinerama extension library
ii  libxrandr2 2:1.1.0.2-5   X11 RandR extension library
ii  libxrender11:0.9.1-3 X Rendering Extension client libra
ii  libxt6 1:1.0.2-2 X11 toolkit intrinsics library
ii  perl   5.8.8-7   Larry Wall's Practical Extraction 
ii  zlib1g 1:1.2.3-13compression library - runtime

Versions of packages kmail recommends:
pn  procmail  none (no description available)

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#422700: aptitude: Can't lock list directory, after manual removal of lockfiles

2007-05-12 Thread Dave Page
On Fri, May 11, 2007 at 06:14:26PM -0700, Daniel Burrows wrote:

   Could you send the output of
 
 ps uax | grep apt
 ps uax | grep dpkg

dhansak:/home/grimoire# ps uax | grep apt
root  5081  0.0  0.2   2864   692 pts/3R+   14:02   0:00 grep apt
dhansak:/home/grimoire# ps uax | grep dpkg
root  5083  0.0  0.2   2860   688 pts/3R+   14:02   0:00 grep dpkg

I have since rebooted the system, though I'm fairly sure there weren't
any other apt or dpkg processes running when I had my problem.

Unfortunately, I needed to install some packages as a matter of some
urgency, so ran apt-get dist-upgrade which seems to have fixed the
problem with aptitude. However, it means it may be difficult to track
down this particular bug!

Dave
-- 
Dave Page [EMAIL PROTECTED]
Jabber: [EMAIL PROTECTED]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#416420: jigit ships with unrecognised wget options

2007-03-27 Thread Dave Page
Package: jigit
Version: 1.15-2
Severity: important


By default, jigit tries to pass the option --non-verbose to wget, which 
wget does not recognise. This causes wget to fail. The correct wget 
option is --no-verbose.

Dave

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-686
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages jigit depends on:
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries
ii  zlib1g  1:1.2.3-13   compression library - runtime

Versions of packages jigit recommends:
ii  wget  1.10.2-2   retrieves files from the web

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#411575: pgadmin3:

2007-02-20 Thread Dave Page
Raphaël Enrici wrote:
 So,
 
 Harri, thanks for these detailed instructions and thanks for your
 feedback concerning 1.6.2, I bet pgadmin-hackers will appreciate
 your positives comments ;).

Yes, of course - we like feedback :-)

 Concerning this particular problem I found reference to such behaviours
 in the mailing-lists archives.
 
 Dave (project leader) included it to the todo list last november.
 
 @Dave, anyone working on this particular topic:
 
 /Attempt to reconnect to the server following a connection failure/

Not that I'm aware of. It's on the list of course, but I'm not sure when
I'll get to it.

Regards, Dave



Bug#410583: installation-report: Installing tasks stalls at 5%

2007-02-11 Thread Dave Page
On Sun, Feb 11, 2007 at 09:41:13PM +, Dave Page wrote:

 I had thought that this was due to using my local apt-proxy cache for
 installations, but I ran into two people on #debian who had the same
 issues when installing from http://ftp.(us|uk).debian.org/

Hmm. Just after filing this bug report, I recieved
http://lists.debian.org/debian-devel-announce/2007/02/msg00011.html via
e-mail which may explain the problems which I and others have seen.
Can't wait for RC2! :)

Dave
-- 
Dave Page [EMAIL PROTECTED]
Jabber: [EMAIL PROTECTED]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#409310: kmines: Can cheat the timer

2007-02-01 Thread Dave Page
Package: kmines
Version: 4:3.5.5-1
Severity: minor


The kmines game allows a user to cheat the timer - simply by unpausing and 
repausing the game in less 
than a second, the timer will not advance beyond 00:00. This allows the user to 
cheat and show off their 
skill to friends.

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-xen-686
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages kmines depends on:
ii  kdelibs4c2a4:3.5.5a.dfsg.1-5 core libraries and binaries for al
ii  libc6  2.3.6.ds1-8   GNU C Library: Shared libraries
ii  libgcc11:4.1.1-21GCC support library
ii  libkdegames1   4:3.5.5-1 KDE games library and common files
ii  libqt3-mt  3:3.3.7-2 Qt GUI Library (Threaded runtime v
ii  libstdc++6 4.1.1-21  The GNU Standard C++ Library v3

kmines recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#377705: update-grub should not cater for non-Debian-packaged kernels

2006-07-10 Thread Dave Page
Package: grub
Version: 0.95+cvs20040624-17
Severity: wishlist


This wishlist bug is possibly the opposite of
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=343076 ; in my case,
it's caused by Xen kernels, but it's not actually Xen-specific.

I feel that update-grub should not attempt to generate automatic
menu.list stanzas for non-Debian-packaged kernels. If I've installed a
kernel outside of APT's purview, then I've taken care of how to boot
it. I've had problems with systems failing to boot due to incorrect
stanzas being generated by update-grub for third-party kernels (such as
the Xen-installed ones) which then fail to boot and lead to tricky
phone support problems for me.

I suggest that update-grub should perhaps look through the contents of
installed kernel-image (or linux-image etc.) packages for kernels rather
than just examining the filesystem. If this is a configurable option,
then this more conservative behaviour should be the default.

Dave
-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-3-k7
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages grub depends on:
ii  libc6 2.3.2.ds1-22sarge3 GNU C Library: Shared libraries an
ii  libncurses5   5.4-4  Shared libraries for terminal hand

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#339985: nagios-pgsql: bug in supplied check_nagios_db

2005-11-19 Thread Dave Page
Package: nagios-pgsql
Version: 2:1.3-cvs.20050402-2.sarge.1
Severity: important


The check_nagios_db script supplied in /usr/share/doc/nagios-common/
gets its nagios configuration information from /etc/nagios/cgi.cfg
However, when called at boot time, it needs the parameters from
/etc/nagios/resource.cfg

This causes nagios to fail on startup if different Postgres users are
used for the nagios daemon and the cgi scripts.

I suggest that this should be included in the patch in
/usr/share/doc/nagios-pgsql/README.pgsql.gz if it is pgsql-specific, or
amended in /usr/share/doc/nagios-common/check_nagios_db

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-686-orinoco
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)

Versions of packages nagios-pgsql depends on:
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libgd2-noxp 2.0.33-1.1   GD Graphics Library version 2 (wit
ii  libjpeg62   6b-10The Independent JPEG Group's JPEG 
ii  libpng12-0  1.2.8rel-1   PNG library - runtime
ii  libpq3  7.4.7-6sarge1PostgreSQL C client library
ii  nagios-comm 2:1.3-cvs.20050402-2.sarge.1 A host/service/network monitoring 
ii  zlib1g  1:1.2.2-4.sarge.2compression library - runtime

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#338489: konversation: Middle-Click Paste behaves differently on channel input line and text input line

2005-11-10 Thread Dave Page
Package: konversation
Version: 0.16-1
Severity: normal


Middle-clicking on the channel window pastes whatever I last copied with
Ctrl-C into the text input area. Middle-clicking on the text input area
pastes whatever I copied by selection.

I've heard a lot of talk about inconsistent pasting behaviour in Linux,
but I think this is the first time I've ever seen it...

Cheers,

Dave

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-k7
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages konversation depends on:
ii  kdelibs4   4:3.3.2-6.2   KDE core libraries
ii  libart-2.0-2   2.3.17-1  Library of functions for 2D graphi
ii  libaudio2  1.7-2 The Network Audio System (NAS). (s
ii  libc6  2.3.2.ds1-22  GNU C Library: Shared libraries an
ii  libfam0c1022.7.0-6   client library to control the FAM 
ii  libfontconfig1 2.3.1-2   generic font configuration library
ii  libfreetype6   2.1.7-2.4 FreeType 2 font engine, shared lib
ii  libgcc11:4.0.0-9 GCC support library
ii  libice64.3.0.dfsg.1-14sarge1 Inter-Client Exchange library
ii  libidn11   0.5.13-1.0GNU libidn library, implementation
ii  libpng12-0 1.2.8rel-1PNG library - runtime
ii  libqt3c102-mt  3:3.3.4-3 Qt GUI Library (Threaded runtime v
ii  libsm6 4.3.0.dfsg.1-14sarge1 X Window System Session Management
ii  libstdc++5 1:3.3.5-13The GNU Standard C++ Library v3
ii  libx11-6   4.3.0.dfsg.1-14sarge1 X Window System protocol client li
ii  libxcursor11.1.3-1   X cursor management library
ii  libxext6   4.3.0.dfsg.1-14sarge1 X Window System miscellaneous exte
ii  libxft22.1.7-1   FreeType-based font drawing librar
ii  libxrandr2 4.3.0.dfsg.1-14sarge1 X Window System Resize, Rotate and
ii  libxrender10.8.3-7   X Rendering Extension client libra
ii  libxt6 4.3.0.dfsg.1-14sarge1 X Toolkit Intrinsics
ii  xlibs  4.3.0.dfsg.1-14sarge1 X Keyboard Extension (XKB) configu
ii  zlib1g 1:1.2.2-4.sarge.2 compression library - runtime

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#317399: openvpn: Thanks for patch

2005-10-08 Thread Dave Page
Package: openvpn
Version: 2.0-1
Followup-For: Bug #317399

Just to say thanks for the patch there, it's fixed an annoyance with
OpenVPN (particularly when rotating logfiles).

Dave


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#309785: openvpn: Try redirect-gateway local def1?

2005-10-08 Thread Dave Page
Package: openvpn
Version: 2.0-1
Followup-For: Bug #309785


I was just looking through the BTS for some other information when I
came across this bug. Lucas, have you tried using the redirect-gateway
local option, as mentioned in the OpenVPN HOWTO at
http://openvpn.net/howto.html#redirect ? I don't have your kind of setup
so I cannot test this, but it seems from the documentation that this
configuration would solve your problem.

Hope this helps,

Dave

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-686-orinoco
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages openvpn depends on:
ii  debconf 1.4.30.13Debian configuration management sy
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  liblzo1 1.08-1.2 A real-time data compression libra
ii  libssl0.9.7 0.9.7e-3 SSL shared libraries

-- debconf information excluded


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#197037: ssh: Patch to postinst and prerm files

2005-07-28 Thread Dave Page
Package: ssh
Version: 1:3.8.1p1-8.sarge.4
Followup-For: Bug #197037


I'm attaching a patch to Sarge's ssh which should fix this bug.

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-686
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)

Versions of packages ssh depends on:
ii  adduser3.63  Add and remove users and groups
ii  debconf1.4.30.13 Debian configuration management sy
ii  dpkg   1.10.28   Package maintenance system for Deb
ii  libc6  2.3.2.ds1-22  GNU C Library: Shared libraries an
ii  libpam-modules 0.76-22   Pluggable Authentication Modules f
ii  libpam-runtime 0.76-22   Runtime support for the PAM librar
ii  libpam0g   0.76-22   Pluggable Authentication Modules l
ii  libssl0.9.70.9.7e-3  SSL shared libraries
ii  libwrap0   7.6.dbs-8 Wietse Venema's TCP wrappers libra
ii  zlib1g 1:1.2.2-4.sarge.2 compression library - runtime

-- debconf information:
  ssh/insecure_rshd:
  ssh/ssh2_keys_merged:
  ssh/user_environment_tell:
* ssh/forward_warning:
  ssh/insecure_telnetd:
  ssh/new_config: true
* ssh/use_old_init_script: true
* ssh/protocol2_only: true
  ssh/encrypted_host_key_but_no_keygen:
* ssh/run_sshd: true
* ssh/SUID_client: true
  ssh/disable_cr_auth: false
diff -ru ssh_orig/ssh.postinst ssh_fixed/ssh.postinst
--- ssh_orig/ssh.postinst   2005-07-27 19:33:11.0 +0100
+++ ssh_fixed/ssh.postinst  2005-07-27 22:32:11.047914197 +0100
@@ -285,21 +285,11 @@
 }
 
 
-create_alternatives() {
-# Create alternatives for the various r* tools.
-# Make sure we don't change existing alternatives that a user might have
-# changed, but clean up after some old alternatives that mistakenly pointed
-# rlogin and rcp to ssh.
+cleanup_alternatives () {
+# Clean up after some old alternatives that mistakenly pointed rlogin and rcp
+# to ssh.
update-alternatives --quiet --remove rlogin /usr/bin/ssh
update-alternatives --quiet --remove rcp /usr/bin/ssh
-   for cmd in rsh rlogin rcp; do
-   scmd=s${cmd#r}
-   if ! update-alternatives --display $cmd | \
-   grep -q $scmd; then
-   update-alternatives --quiet --install /usr/bin/$cmd 
$cmd /usr/bin/$scmd 20 \
-   --slave /usr/share/man/man1/$cmd.1.gz 
$cmd.1.gz /usr/share/man/man1/$scmd.1.gz
-   fi
-   done
 }
 
 setup_sshd_user() {
@@ -387,7 +377,7 @@
 create_keys
 fix_rsh_diversion
 fix_statoverride
-create_alternatives
+cleanup_alternatives
 setup_sshd_user
 set_sshd_permissions
 if [ $2 = 1:3.5p1-1 ]; then
diff -ru ssh_orig/ssh.prerm ssh_fixed/ssh.prerm
--- ssh_orig/ssh.prerm  2005-07-27 19:33:11.0 +0100
+++ ssh_fixed/ssh.prerm 2005-07-27 22:32:11.047914197 +0100
@@ -17,9 +17,6 @@
 
 case $1 in
 remove|deconfigure)
-   update-alternatives --quiet --remove rsh /usr/bin/ssh
-   update-alternatives --quiet --remove rlogin /usr/bin/slogin
-   update-alternatives --quiet --remove rcp /usr/bin/scp
if [ -x /etc/init.d/ssh ]; then
if [ -x /usr/sbin/invoke-rc.d ]; then
invoke-rc.d ssh stop


Bug#103677: ssh-agent no longer seems to loop with bad permissions

2005-07-27 Thread Dave Page
Package: ssh
Version: 1:3.8.1p1-8.sarge.4
Followup-For: Bug #103677

Just to say, since bug #103677 is four years old and still open, that
the version of ssh in the current Debian stable release (3.1) does not
exhibit this behaviour:

[EMAIL PROTECTED]:~$ ssh-agent bash
[EMAIL PROTECTED]:~$ ls -l .ssh/id_rsa
-rw---  1 grimoire grimoire 887 2005-07-27 18:21 .ssh/id_rsa
[EMAIL PROTECTED]:~$ ssh-add
Identity added: /home/grimoire/.ssh/id_rsa (/home/grimoire/.ssh/id_rsa)
[EMAIL PROTECTED]:~$ ssh-add -l
1024 7e:ab:79:67:32:17:43:40:ec:42:f7:e5:90:26:f3:a0 /home/grimoire/.ssh/id_rsa 
(RSA)
[EMAIL PROTECTED]:~$ ssh-add -D
All identities removed.
[EMAIL PROTECTED]:~$ chmod g+r .ssh/id_rsa
[EMAIL PROTECTED]:~$ ssh-add
@@@
@ WARNING: UNPROTECTED PRIVATE KEY FILE!  @
@@@
Permissions 0640 for '/home/grimoire/.ssh/id_rsa' are too open.
It is recommended that your private key files are NOT accessible by others.
This private key will be ignored.
bad permissions: ignore key: /home/grimoire/.ssh/id_rsa
Enter passphrase for /home/grimoire/.ssh/id_rsa:
[EMAIL PROTECTED]:~$ ssh-add -l
The agent has no identities.

I'm hoping that this bug can be closed now ;)

Dave

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-686
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)

Versions of packages ssh depends on:
ii  adduser3.63  Add and remove users and groups
ii  debconf1.4.30.13 Debian configuration management sy
ii  dpkg   1.10.28   Package maintenance system for Deb
ii  libc6  2.3.2.ds1-22  GNU C Library: Shared libraries an
ii  libpam-modules 0.76-22   Pluggable Authentication Modules f
ii  libpam-runtime 0.76-22   Runtime support for the PAM librar
ii  libpam0g   0.76-22   Pluggable Authentication Modules l
ii  libssl0.9.70.9.7e-3  SSL shared libraries
ii  libwrap0   7.6.dbs-8 Wietse Venema's TCP wrappers libra
ii  zlib1g 1:1.2.2-4.sarge.2 compression library - runtime

-- debconf information:
  ssh/insecure_rshd:
  ssh/ssh2_keys_merged:
  ssh/user_environment_tell:
* ssh/forward_warning:
  ssh/insecure_telnetd:
  ssh/new_config: true
* ssh/use_old_init_script: true
  ssh/protocol2_only: true
  ssh/encrypted_host_key_but_no_keygen:
  ssh/run_sshd: true
  ssh/SUID_client: true
  ssh/disable_cr_auth: false


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#154645: ssh does read /etc/hosts

2005-07-27 Thread Dave Page
Package: ssh
Version: 1:3.8.1p1-8.sarge.4
Followup-For: Bug #154645


I'm just looking through old bug reports seeing if there's any I can
help close, and I think I can confirm that on a default installation of
the current Debian stable release (3.1), ssh *does* honour the contents
of /etc/hosts:

  [EMAIL PROTECTED]:~$ host thisisnotahostname
  Host thisisnotahostname not found: 3(NXDOMAIN)
  [EMAIL PROTECTED]:~$ grep thisisnotahostname /etc/hosts
  82.69.130.94thisisnotahostname
  [EMAIL PROTECTED]:~$ ssh -p 2200 thisisnotahostname
  The authenticity of host 'thisisnotahostname (82.69.130.94)' can't be 
established.
  RSA key fingerprint is 8d:6a:70:cd:8c:7f:d3:1b:2b:58:07:39:97:36:e3:37.
  Are you sure you want to continue connecting (yes/no)? no
  Host key verification failed.
  [EMAIL PROTECTED]:~$ COLUMNS=100 dpkg -l ssh | grep ssh
  ii  ssh 3.8.1p1-8.sarge.4   Secure rlogin/rsh/rcp replacement 
(OpenSSH)

For what it's worth:

  [EMAIL PROTECTED]:~$ grep hosts /etc/nsswitch.conf
  hosts:  files dns
  [EMAIL PROTECTED]:~$ cat /etc/host.conf
  order hosts,bind
  multi on

If there's any more information I can provide, please let me know.

Dave

-- System Information:
Debian Release: 3.1
Architecture: i386 (i586)
Kernel: Linux 2.4.27-2-386
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)

Versions of packages ssh depends on:
ii  adduser 3.63 Add and remove users and groups
ii  debconf 1.4.30.13Debian configuration management sy
ii  dpkg1.10.28  Package maintenance system for Deb
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libpam-modules  0.76-22  Pluggable Authentication Modules f
ii  libpam-runtime  0.76-22  Runtime support for the PAM librar
ii  libpam0g0.76-22  Pluggable Authentication Modules l
ii  libssl0.9.7 0.9.7e-3 SSL shared libraries
ii  libwrap07.6.dbs-8Wietse Venema's TCP wrappers libra
ii  zlib1g  1:1.2.2-4compression library - runtime

-- debconf information:
  ssh/insecure_rshd:
  ssh/ssh2_keys_merged:
  ssh/user_environment_tell:
* ssh/forward_warning:
  ssh/insecure_telnetd:
  ssh/new_config: true
* ssh/use_old_init_script: true
* ssh/protocol2_only: true
  ssh/encrypted_host_key_but_no_keygen:
* ssh/run_sshd: true
* ssh/SUID_client: true
  ssh/disable_cr_auth: false


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#312461: mozilla-firefox: Cookie accept/reject dialogue is garbled and unusable

2005-07-22 Thread Dave Page
On Wed, Jul 20, 2005 at 02:35:14AM -0400, Eric Dorland wrote:

 Did this problem go away after you restarted Firefox? 

No, it didn't.

Dave
-- 
A blackened shroud, a hand-me-down gown of rags and silks, a costume fit for
 one who sits and cries for all tomorrow's parties - The Velvet Underground


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#312101: Today's apt-get upgrade overwrites/changes /etc/X11/XF86Config-4 - broken mousewheel

2005-06-16 Thread Dave Page
I can confirm that putting the configured mouse section back in my X
config has fixed my scrollwheel as well.

Dave
-- 
Seagoon: There! I've sewn off all four legs
German: Strange... The first time I've known of a piano with four legs
Eccles: Hey! I keep falling down!
  - The Goon Show, Napoleon's Piano, 11th Oct 1955


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#312461: mozilla-firefox: Cookie accept/reject dialogue is garbled and unusable

2005-06-08 Thread Dave Page
Package: mozilla-firefox
Version: 1.0.4-2
Severity: normal


On my system, Firefox is configured to prompt when a site tries to set a
cookie, with the standard accept, accept for session and reject options.

Since the last upgrade, this dialogue has been garbled and unusable. It
just has the more info button and the use my choice for all cookies
from this site selection box. The cookie information is not presented,
and there is some garbled red text beneath it.

I attach a screengrab of the cookie dialog.

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.6-halcyon
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages mozilla-firefox depends on:
ii  debianutils  2.13.2  Miscellaneous utilities specific t
ii  fontconfig   2.3.1-2 generic font configuration library
ii  libatk1.0-0  1.8.0-4 The ATK accessibility toolkit
ii  libc62.3.2.ds1-22GNU C Library: Shared libraries an
ii  libfontconfig1   2.3.1-2 generic font configuration library
ii  libfreetype6 2.1.7-2.4   FreeType 2 font engine, shared lib
ii  libgcc1  1:3.4.3-13  GCC support library
ii  libglib2.0-0 2.6.4-1 The GLib library of C routines
ii  libgtk2.0-0  2.6.4-3 The GTK+ graphical user interface 
ii  libidl0  0.8.5-1 library for parsing CORBA IDL file
ii  libjpeg626b-10   The Independent JPEG Group's JPEG 
ii  libkrb53 1.3.6-2 MIT Kerberos runtime libraries
ii  libpango1.0-01.8.1-1 Layout and rendering of internatio
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libstdc++5   1:3.3.5-13  The GNU Standard C++ Library v3
ii  libx11-6 4.3.0.dfsg.1-14 X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-14 X Window System miscellaneous exte
ii  libxft2  2.1.7-1 FreeType-based font drawing librar
ii  libxp6   4.3.0.dfsg.1-14 X Window System printing extension
ii  libxt6   4.3.0.dfsg.1-14 X Toolkit Intrinsics
ii  psmisc   21.6-1  Utilities that use the proc filesy
ii  xlibs4.3.0.dfsg.1-14 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-4   compression library - runtime

-- no debconf information
attachment: firefoxcookiebug.png

Bug#312101: Today's apt-get upgrade overwrites/changes /etc/X11/XF86Config-4 - broken mousewheel

2005-06-07 Thread Dave Page
I am having the same problem. Can you provide a diff of your backup
XF86Config-4 and the broken one so I can work around the problem until
the package is fixed?

(oh, except I changed my sources.list from sarge to testing *g*)

Dave


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]