Bug#527016: pulseaudio: ConsoleKit integration calles GetUnixUser where the method does not exist

2009-09-10 Thread Joerg Sommrey
Same problem here.

After some digging in the source and in the dbus docs and after adding
some debugging output I got an impression about what is going on.  The
dbus error message »Method GetUnixUser with signature  on interface
org.freedesktop.ConsoleKit.Session doesn't exist« is simply
misleading.  If *any* method is called for a dbus object that doesn't
exist, the very same error message will be returned.  In the case of
pulseaudio there seem to be sessions that are too short-living to catch.
In my case I guess these are cron jobs.  I reckon this situation should
not be handled as an error in pulseaudio.  To get rid of these annoying
messages I changed their severity to notice and lowered pulseaudio's
log level to warn in /etc/pulse/daemon.conf.

-jo



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



Bug#542923: pm-utils: ntpd not restarted at suspend/resume

2009-08-22 Thread Joerg Sommrey
Package: pm-utils
Version: 1.1.2.4-1
Severity: normal


Due to a typo in /usr/lib/pm-utils/sleep.d/90clock the ntp daemon is not
restarted at suspend/resume.

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

Kernel: Linux 2.6.30-bpo.1-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/bash

Versions of packages pm-utils depends on:
ii  console-tools1:0.2.3dbs-65.1 Linux console and font utilities
ii  powermgmt-base   1.30+nmu1   Common utils and configs for power

Versions of packages pm-utils recommends:
ii  hal   0.5.11-8   Hardware Abstraction Layer
ii  radeontool1.5-5  utility to control ATI Radeon back
pn  uswsusp   none (no description available)
ii  vbetool   1.0-3  run real-mode video BIOS code to a

Versions of packages pm-utils suggests:
ii  cpufrequtils  004-2  utilities to deal with the cpufreq

-- no debconf information
--- /usr/lib/pm-utils/sleep.d/90clock.orig  2009-08-22 11:05:21.0 
+0200
+++ /usr/lib/pm-utils/sleep.d/90clock   2009-08-22 11:05:35.0 +0200
@@ -12,7 +12,7 @@
 {
if try_lock ${NTPD_LOCK}; then
trap 'release_lock ${NTPD_LOCK}' 0
-   stopservice ntpd
+   stopservice ntp
fi
/sbin/hwclock --systohc /dev/null 21 01
 }
@@ -25,7 +25,7 @@
(   spin_lock ${NTPD_LOCK};
trap 'release_lock ${NTPD_LOCK}' 0
sleep 20; 
-   restartservice ntpd; ) 
+   restartservice ntp; ) 
return $rc
 }
 


Bug#437259: mt-st: inconsistent mode numbering from stinit

2007-08-11 Thread Joerg Sommrey
Package: mt-st
Version: 0.9b-4
Severity: minor

The most verbose output of stinit gives inconsitent
numberings for the defined modes:

bear:~:0# stinit -v -v
Trying to open database '/etc/stinit.def'.
Open succeeded.

stinit, processing tape 0
Mode 0, name '/dev/nst0'
Mode 1, name '/dev/nst0l'
Mode 2, name '/dev/nst0m'
Mode 3, name '/dev/nst0a'
The manufacturer is 'HP', product is 'C7438A', and revision 'ZP5A'.
Mode 1 definition: can-bsr can-partitions auto-lock  blocksize=0 compression=1
Mode 2 definition: can-bsr can-partitions auto-lock  blocksize=65536 
compression=1
Mode 3 definition: can-bsr can-partitions auto-lock  blocksize=0 compression=0
Mode 4 definition: can-bsr can-partitions auto-lock  blocksize=65536 
compression=0

stinit, processing tape 1
Initialized 1 tape device.

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-jo2 (SMP w/2 CPU cores; PREEMPT)
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 mt-st depends on:
ii  libc6 2.6-2  GNU C Library: Shared libraries

mt-st recommends no packages.

-- no debconf information


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



Bug#428331: webcalendar: send_reminders.php may create illegal Subject: headers

2007-06-10 Thread Joerg Sommrey
Package: webcalendar
Version: 1.0.5-9
Severity: normal
Tags: patch l10n


If a webcalendar entry contains non-ascii characters, these characters
are used unmodified in send_reminders.php for the Subject: header and
thus may violate RFC 2822.

Here is a trivial patch to circumvent this.

--- /usr/share/webcalendar/tools/send_reminders.php.orig2007-05-27 
15:07:48.0 +0200
+++ /usr/share/webcalendar/tools/send_reminders.php 2007-06-10 
22:00:51.0 +0200
@@ -338,7 +338,9 @@
   }
 }
   
-$subject = translate(Reminder) . :  . $name;
+mb_internal_encoding(UTF-8);
+$subject = mb_encode_mimeheader(translate(Reminder) . :  .
+$name, UTF-8, Q);
 
 if ( strlen ( $GLOBALS[email_fallback_from] ) )
   $extra_hdrs = From:  . $GLOBALS[email_fallback_from] . \r\n .

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.21-jo2 (SMP w/2 CPU cores; PREEMPT)
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 webcalendar depends on:
ii  apache2-mpm-itk [apache2]  2.2.3-01-1+b5 multiuser MPM for Apache 2.2
ii  dbconfig-common1.8.34common framework for packaging dat
ii  debconf [debconf-2.0]  1.5.13Debian configuration management sy
ii  libapache-mod-php4 6:4.4.4-9 server-side, HTML-embedded scripti
ii  libapache2-mod-php46:4.4.4-9 server-side, HTML-embedded scripti
ii  php4-mysql 6:4.4.4-9 MySQL module for php4
ii  ucf3.001 Update Configuration File: preserv

Versions of packages webcalendar recommends:
ii  mysql-client  5.0.38-1   mysql database client (meta packag
ii  mysql-client-5.0 [mysql-clien 5.0.38-1   mysql database client binaries
ii  mysql-server  5.0.38-1   mysql database server (meta packag
ii  mysql-server-5.0 [mysql-serve 5.0.38-1   mysql database server binaries

-- debconf information:
  webcalendar/pgsql/manualconf:
  webcalendar/dbconfig-remove: true
  webcalendar/mysql/method: unix socket
  webcalendar/dbconfig-reinstall: false
* webcalendar/conf/httpd_conf: apache, apache-ssl
  webcalendar/store/webservers_to_be_restarted: apache apache-ssl
  webcalendar/remote/host:
* webcalendar/note/admin_user:
  webcalendar/purge: false
  webcalendar/internal/reconfiguring: false
* webcalendar/conf/db_persistent: true
  webcalendar/pgsql/authmethod-admin: ident
  webcalendar/pgsql/admin-user: postgres
  webcalendar/db/dbname:
  webcalendar/conf/single_user_login:
* webcalendar/conf/restart_webserver: true
  webcalendar/remote/newhost:
  webcalendar/internal/skip-preseed: false
* webcalendar/conf/single_user_mode: false
  webcalendar/upgrade-backup: true
  webcalendar/db/app-user:
  webcalendar/import-oldsettings:
  webcalendar/mysql/admin-user: root
  webcalendar/passwords-do-not-match:
  webcalendar/upgrade-error: abort
* webcalendar/install-error: ignore
  webcalendar/pgsql/authmethod-user:
  webcalendar/remote/port:
  webcalendar/pgsql/changeconf: false
  webcalendar/performing_upgrade: false
  webcalendar/database-type:
  webcalendar/pgsql/no-empty-passwords:
  webcalendar/remove-error: abort
  webcalendar/pgsql/method: unix socket
  webcalendar/db/basepath:
  webcalendar/dbconfig-upgrade: true
* webcalendar/dbconfig-install: false
* webcalendar/conf/use_http_auth: false
* webcalendar/status/debconf_managed: true


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



Bug#399905: ntp: workaround for dynamic IP doesn't work any longer

2006-12-09 Thread Joerg Sommrey
Digging in ntpd's sources shows that packages received on wildcard
interfaces are ignored intentionally.  Here is a patch that
reestablishes the old behaviour but might be harmful otherwise. 

-jo

--- ntpd/ntp_io.c   2006-12-09 12:44:53.0 +0100
+++ ntpd/ntp_io.c.orig  2006-12-09 11:32:25.0 +0100
@@ -514,7 +514,7 @@
inter_list[idx].sent = 0;
inter_list[idx].notsent = 0;
inter_list[idx].flags = INT_BROADCAST | INT_UP;
-   inter_list[idx].ignore_packets = ISC_FALSE;
+   inter_list[idx].ignore_packets = ISC_TRUE;
 #if defined(MCAST)
/*
 * enable possible multicast reception on the broadcast socket
@@ -549,7 +549,7 @@
inter_list[idx].sent = 0;
inter_list[idx].notsent = 0;
inter_list[idx].flags = INT_UP;
-   inter_list[idx].ignore_packets = ISC_FALSE;
+   inter_list[idx].ignore_packets = ISC_TRUE;
any6_interface = inter_list[idx];
wildipv6 = idx;
idx++;


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



Bug#402196: uml-utilities: make netmask configurable in uml_net

2006-12-08 Thread Joerg Sommrey
Package: uml-utilities
Version: 20060323-3
Severity: wishlist


In uml_net (tuntap.c) is an ifconfig call for the host's tap device
which is hardcoded with a netmask of 255.255.255.255 and no broadcast
address.  This prevents the usage of (small) networks (e.g.
netmask=255.255.255.248) between the host and the uml guest with uml_net.
Preallocated tun/tap devices otoh lead to fixed user assignments for
those devices.

It would be helpful if the host's tap device had a configurable netmask.

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-jo1
Locale: LANG=en_US.iso885915, LC_CTYPE=en_US.iso885915 (charmap=ISO-8859-15)

Versions of packages uml-utilities depends on:
ii  adduser  3.99Add and remove users and groups
ii  libc62.3.6.ds1-7 GNU C Library: Shared libraries
ii  libncurses5  5.5-5   Shared libraries for terminal hand
ii  libreadline5 5.2-1   GNU readline and history libraries
ii  makedev  2.3.1-83creates device files in /dev

uml-utilities recommends no packages.

-- no debconf information


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



Bug#399905: ntp: workaround for dynamic IP doesn't work any longer

2006-11-22 Thread Joerg Sommrey
Package: ntp
Version: 1:4.2.2.p4+dfsg-1
Severity: normal

Problems with ntpd and dynamic IP addresses have been discussed for
quite some time.  An agreed workaround was to use ntpdc's
unconfig/addserver commands.  However, after upgrading to the newest
Debian version, this doesn't work any longer.  From Wireshark and strace
I can see requests going out and responses coming back to ntpd via the
whole world-socket, but these seem to be discarded somehow.  No entries in
peerstats and ntpdc reports a reachability of zero.

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-jo1
Locale: LANG=en_US.iso885915, LC_CTYPE=en_US.iso885915 (charmap=ISO-8859-15)

Versions of packages ntp depends on:
ii  adduser  3.99Add and remove users and groups
ii  libc62.3.6.ds1-7 GNU C Library: Shared libraries
ii  libcap1  1:1.10-14   support for getting/setting POSIX.
ii  libreadline5 5.2-1   GNU readline and history libraries
ii  libssl0.9.8  0.9.8c-3SSL shared libraries
ii  lsb-base 3.1-15  Linux Standard Base 3.1 init scrip
ii  netbase  4.27Basic TCP/IP networking system
ii  perl 5.8.8-6.1   Larry Wall's Practical Extraction 

ntp recommends no packages.

-- no debconf information


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



Bug#367073: analog: convert UTF-8 characters in query reports to HTML

2006-05-13 Thread Joerg Sommrey
Package: analog
Version: 2:6.0-8
Severity: wishlist
Tags: l10n


There is a minor problem with the search query and search word
reports.  Depending on the setting of SEARCHCHARCONVERT, hexcodes in
query strings are either converted to the corresponding characters or
left unchanged.  If they are left unchanged, the query terms contain %nm
hex codes in HTML output.  But if these hex codes are converted and
produce UTF-8 characters, they may be unreadable, too.
It would be useful to have another option here: convert (common) UTF-8
characters to HTML encoding, e.g. convert '%c3%a4' to 'auml;'

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-jo1
Locale: LANG=en_US.ISO-8859-1, LC_CTYPE=en_US.ISO-8859-1 (charmap=ISO-8859-1)

Versions of packages analog depends on:
ii  debconf [debconf-2.0] 1.4.72 Debian configuration management sy
ii  libbz2-1.01.0.3-2high-quality block-sorting file co
ii  libc6 2.3.6-3GNU C Library: Shared libraries an
ii  libgd2-xpm2.0.33-3   GD Graphics Library version 2
ii  libjpeg62 6b-12  The Independent JPEG Group's JPEG 
ii  libpcre3  6.4-1.1Perl 5 Compatible Regular Expressi
ii  libpng12-01.2.8rel-5 PNG library - runtime
ii  perl  5.8.8-3Larry Wall's Practical Extraction 
ii  zlib1g1:1.2.3-11 compression library - runtime

analog recommends no packages.

-- debconf information:
* analog/anlgform: false


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



Bug#291892: hald locks dvd drive w/ unknown data on dvd-ram

2005-01-23 Thread Joerg Sommrey
Package: hal
Version: 0.4.2-5
Severity: normal


When a media of unknown (to hald) type is inserted into a dvd-ram drive,
hald polls the device without closing it.  This makes it impossible to
remove the media.  hald needs to be killed to open the tray.  To
reproduce:

- insert any dvd-ram into the drive
- save the first 1 MB of data: dd if=/dev/dvdram bs=1M count=1 of=data.saved
- zero out this block: dd if=/dev/zero bs=1M count=1 of=/dev/dvdram
- open/close the tray
- check device usage: fuser /dev/dvdram
  - hald
- device is locked
- kill hald to open
- repair the dvd-ram: dd if=data.saved bs=1M count=1 of=/dev/dvdram

Though this example seems to be of minor practical importance, this leads
to a more serious problem if the dvd-ram contains a device-mapper encrypted
filesystem.  However, as you need super user privileges anyways to mount
such an encrypted volume, you are able to kill hald as well.

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-ac8
Locale: LANG=en_US.ISO-8859-1, LC_CTYPE=en_US.ISO-8859-1 (charmap=ISO-8859-1)

Versions of packages hal depends on:
ii  adduser   3.59   Add and remove users and groups
ii  dbus-10.22-3 simple interprocess messaging syst
ii  dbus-glib-1   0.22-3 simple interprocess messaging syst
ii  libc6 2.3.2.ds1-20   GNU C Library: Shared libraries an
ii  libcap1   1:1.10-14  support for getting/setting POSIX.
ii  libexpat1 1.95.8-1   XML parsing C library - runtime li
ii  libglib2.0-0  2.4.8-1The GLib library of C routines
ii  libhal-storage0   0.4.2-5Hardware Abstraction Layer - share
ii  libhal0   0.4.2-5Hardware Abstraction Layer - share
ii  libpopt0  1.7-5  lib for parsing cmdline parameters
ii  pciutils  1:2.1.11-15Linux PCI Utilities
ii  udev  0.050-3/dev/ management daemon
ii  usbutils  0.11+cvs20041108-1 USB console utilities

-- no debconf information


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