Bug#740490: Change hardware.conf defaults

2014-03-02 Thread Marc MAURICE

Package: lirc
Version: 0.9.0~pre1-1

Hi,

I suggest the following patch for hardware.conf:
--- /tmp/hardware.conf  2014-03-02 10:52:28.229878749 +
+++ /etc/lirc/hardware.conf 2014-03-02 10:55:30.005150849 +
@@ -12,10 +12,12 @@
 #Try to load appropriate kernel modules
 LOAD_MODULES=true
 
+# You can set a driver here if your device is not supported by the lirc kernel modules

 # Run lircd --driver=help for a list of supported drivers.
-DRIVER=UNCONFIGURED
+#DRIVER=UNCONFIGURED
+
 # usually /dev/lirc0 is the correct setting for systems using udev
-DEVICE=
+DEVICE=/dev/lirc0
 MODULES=
 
 # Default configuration files for your hardware if any



This way:
 * We document the fact that setting the DRIVER is not mandatory.
 * lircd will work by default for all devices supported by kernel drivers
 * to my knowledge /dev/lirc0 is the right device name used by kernel drivers. 
Otherwise lircd default /dev/lirc is used.

I also filed an lircd issue upstream to ask to change the default /dev/lirc to 
/dev/lirc0:
https://sourceforge.net/apps/mantisbt/lirc/view.php?id=2

Thanks in advance,
Marc


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



Bug#720110: errors displayed when saving in openvz vm

2013-08-18 Thread Marc MAURICE

Package: iptables-persistent
Version: 0.5.7

Hello,

In OpenVZ virtual machines, the modprobe command is not always available.
This is because in OpenVZ, the kernel and modules are managed by the 
hypervisor, so there is no need of modprobe command in OpenVZ vms.

The command :
/etc/init.d/iptables-persistent save

is working fine, but it displays some error warnings:
# /etc/init.d/iptables-persistent save
[] Saving rules.../etc/init.d/iptables-persistent: 59: 
/etc/init.d/iptables-persistent: /sbin/modprobe: not found
 IPv4.../etc/init.d/iptables-persistent: 72: /etc/init.d/iptables-persistent: 
/sbin/modprobe: not found
[ ok ...done.

I suggest the attached patch.

Thanks in advance,
Marc

--- /tmp/iptables-persistent2013-08-18 20:01:59.435962061 +0200
+++ /etc/init.d/iptables-persistent 2013-08-18 20:01:18.863963836 +0200
@@ -56,7 +56,7 @@
 
#save IPv4 rules
#need at least iptable_filter loaded:
-   /sbin/modprobe -q iptable_filter
+   /sbin/modprobe -q iptable_filter 2/dev/null
if [ ! -f /proc/net/ip_tables_names ]; then
log_action_cont_msg  skipping IPv4 (no modules loaded)
elif [ -x /sbin/iptables-save ]; then
@@ -69,7 +69,7 @@
 
#save IPv6 rules
#need at least ip6table_filter loaded:
-   /sbin/modprobe -q ip6table_filter
+   /sbin/modprobe -q ip6table_filter 2/dev/null
if [ ! -f /proc/net/ip6_tables_names ]; then
log_action_cont_msg  skipping IPv6 (no modules loaded)
elif [ -x /sbin/ip6tables-save ]; then


Bug#682413: you can recompile kernel with synaptic_usb disabled

2013-04-19 Thread Marc MAURICE

I mailed Jan about that issue.

One workaround is to recompile the kernel with synaptic_usb disabled 
(CONFIG_MOUSE_SYNAPTICS_USB).

Then Trackpoint feeling is back to normal, even if the solution is ugly.


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



Bug#682413: I have this problem too

2013-04-03 Thread Marc MAURICE
I'm also affected by this, also using an external IBM usb keyboard with 
trackpoint.


This is really annoying. I tried to change the trackpoint parameters 
with xinput, but I did not managed to have the same feeling I have 
with the previous kernel versions.


I confess I'm a Ubuntu user and I'm using an old kernel version (3.2.0) 
as a workaround.
But with Manjaro Linux (Archlinux based), with a recent kernel version 
(3.7.10), problem is the same.


Do you think we should open a bug in kernel bugtracker?



--
Marc MAURICE
Ingénieur systèmes et réseaux
Smile - Open Source Solutions - www.smile.fr
Tél : +33 (0)1 41 40 29 30 / +33 (0)1 41 40 29 29


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



Bug#620139: insserv: Network facility unexpected behaviour

2011-03-30 Thread Marc MAURICE
Package: insserv
Version: 1.14.0-2
Severity: minor


Hello,

I'm trying to add an init.d script to start a service.
The boot script depends on the network ($network facility) to operate correctly.

I've enabled bootlog in /etc/default/bootlogd to debug.

The /etc/init.d/test script content :
#!/bin/sh
### BEGIN INIT INFO
# Provides: mytest
# Required-Start: $local_fs $remote_fs $network $syslog
# Required-Stop: $local_fs $remote_fs $network $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Init script to test network
### END INIT INFO

case $1 in
start)

ifconfig
for i in 1 2 3
do
/sbin/mii-tool -v eth0
ping -c1 10.2.128.1
done

;;
stop)
;;
*)
echo Usage: mytest {start|stop}
exit 1
;;
esac

exit 0

Here is the boot log :
Wed Mar 30 12:00:43 2011: Setting preliminary keymap...done.
Wed Mar 30 12:00:43 2011: Activating swap...done.
Wed Mar 30 12:00:43 2011: Checking root file system...fsck from util-linux-ng 
2.17.2
Wed Mar 30 12:00:43 2011: e2fsck 1.41.12 (17-May-2010)
Wed Mar 30 12:00:43 2011: /dev/md1: clean, 30859/610800 files, 271695/2441198 
blocks
Wed Mar 30 12:00:43 2011: done.
Wed Mar 30 12:00:43 2011: Cleaning up ifupdown
Wed Mar 30 12:00:43 2011: Setting up networking
Wed Mar 30 12:00:43 2011: Loading kernel modules...done.
Wed Mar 30 12:00:43 2011: Setting up LVM Volume Groups  Reading all physical 
volumes.  This may take a while...
Wed Mar 30 12:00:44 2011:   Found volume group vg01 using metadata type lvm2
Wed Mar 30 12:00:44 2011:   1 logical volume(s) in volume group vg01 now 
active
Wed Mar 30 12:00:44 2011: .
Wed Mar 30 12:00:44 2011: Activating lvm and md swap...done.
Wed Mar 30 12:00:44 2011: Checking file systems...fsck from util-linux-ng 2.17.2
Wed Mar 30 12:00:44 2011: done.
Wed Mar 30 12:00:44 2011: Mounting local filesystems...done.
Wed Mar 30 12:00:44 2011: Activating swapfile swap...done.
Wed Mar 30 12:00:44 2011: Cleaning up temporary files
Wed Mar 30 12:00:44 2011: Configuring network interfaces...done.
Wed Mar 30 12:00:44 2011: Cleaning up temporary files
Wed Mar 30 12:00:44 2011: Setting console screen modes.
Wed Mar 30 12:00:44 2011: ^[]R^[[9;30]^[[14;30]Skipping font and keymap setup 
(handled by console-setup).
Wed Mar 30 12:00:44 2011: Setting up console font and keymap...done.
Wed Mar 30 12:00:44 2011: Setting kernel variables ...done.
Wed Mar 30 12:00:45 2011: INIT: Entering runlevel: 2
Wed Mar 30 12:00:45 2011: Using makefile-style concurrent boot in runlevel 2.
Wed Mar 30 12:00:45 2011: Starting enhanced syslogd: rsyslogd.
Wed Mar 30 12:00:45 2011: Starting MD monitoring service: mdadm --monitor.
Wed Mar 30 12:00:45 2011: Starting ACPI services
Wed Mar 30 12:00:45 2011: Starting periodic command scheduler: cron.
Wed Mar 30 12:00:45 2011: Starting NTP server: ntpd.
Wed Mar 30 12:00:45 2011: Starting OpenBSD Secure Shell server: sshd.
Wed Mar 30 12:00:48 2011: eth0  Link encap:Ethernet  HWaddr 
bc:30:5b:d0:87:af  
Wed Mar 30 12:00:48 2011:   inet addr:10.2.128.4  Bcast:10.2.255.255  
Mask:255.255.128.0
Wed Mar 30 12:00:48 2011:   UP BROADCAST MULTICAST  MTU:1500  Metric:1
Wed Mar 30 12:00:48 2011:   RX packets:0 errors:0 dropped:0 overruns:0 
frame:0
Wed Mar 30 12:00:48 2011:   TX packets:0 errors:0 dropped:0 overruns:0 
carrier:0
Wed Mar 30 12:00:48 2011:   collisions:0 txqueuelen:1000 
Wed Mar 30 12:00:48 2011:   RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
Wed Mar 30 12:00:48 2011:   Interrupt:16 
Wed Mar 30 12:00:48 2011: 
Wed Mar 30 12:00:48 2011: loLink encap:Local Loopback  
Wed Mar 30 12:00:48 2011:   inet addr:127.0.0.1  Mask:255.0.0.0
Wed Mar 30 12:00:48 2011:   inet6 addr: ::1/128 Scope:Host
Wed Mar 30 12:00:48 2011:   UP LOOPBACK RUNNING  MTU:16436  Metric:1
Wed Mar 30 12:00:48 2011:   RX packets:0 errors:0 dropped:0 overruns:0 
frame:0
Wed Mar 30 12:00:48 2011:   TX packets:0 errors:0 dropped:0 overruns:0 
carrier:0
Wed Mar 30 12:00:48 2011:   collisions:0 txqueuelen:0 
Wed Mar 30 12:00:48 2011:   RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
Wed Mar 30 12:00:48 2011: 
Wed Mar 30 12:00:48 2011: eth0: no link
Wed Mar 30 12:00:48 2011:   product info: vendor 00:50:ef, model 45 rev 0
Wed Mar 30 12:00:48 2011:   basic mode:   autonegotiation enabled
Wed Mar 30 12:00:48 2011:   basic status: no link
Wed Mar 30 12:00:48 2011:   capabilities: 1000baseT-HD 1000baseT-FD 
100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
Wed Mar 30 12:00:48 2011:   advertising:  100baseTx-FD 100baseTx-HD 10baseT-FD 
10baseT-HD flow-control
Wed Mar 30 12:00:48 2011: PING 10.2.128.1 (10.2.128.1) 56(84) bytes of data.
Wed Mar 30 12:00:55 2011: 
Wed Mar 30 12:00:55 2011: --- 10.2.128.1 ping statistics ---
Wed Mar 30 12:00:55 2011: 1 packets transmitted, 0 received, 100% packet loss, 
time 0ms
Wed Mar 30 12:00:55 2011: 
Wed Mar 30 

Bug#620140: insserv: Network facility unexpected behaviour

2011-03-30 Thread Marc MAURICE

Package: insserv
Version: 1.14.0-2
Severity: normal


Hello,

I'm trying to add an init.d script to start a service.
The boot script depends on the network ($network facility) to operate 
correctly.


I've enabled bootlog in /etc/default/bootlogd to debug.

The /etc/init.d/test script content :
#!/bin/sh
### BEGIN INIT INFO
# Provides: mytest
# Required-Start: $local_fs $remote_fs $network $syslog
# Required-Stop: $local_fs $remote_fs $network $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Init script to test network
### END INIT INFO

case $1 in
start)

ifconfig
for i in 1 2 3
do
/sbin/mii-tool -v eth0
ping -c1 10.2.128.1
done

;;
stop)
;;
*)
echo Usage: mytest {start|stop}
exit 1
;;
esac

exit 0

Here is the boot log :
Wed Mar 30 12:00:43 2011: Setting preliminary keymap...done.
Wed Mar 30 12:00:43 2011: Activating swap...done.
Wed Mar 30 12:00:43 2011: Checking root file system...fsck from 
util-linux-ng 2.17.2

Wed Mar 30 12:00:43 2011: e2fsck 1.41.12 (17-May-2010)
Wed Mar 30 12:00:43 2011: /dev/md1: clean, 30859/610800 files, 
271695/2441198 blocks

Wed Mar 30 12:00:43 2011: done.
Wed Mar 30 12:00:43 2011: Cleaning up ifupdown
Wed Mar 30 12:00:43 2011: Setting up networking
Wed Mar 30 12:00:43 2011: Loading kernel modules...done.
Wed Mar 30 12:00:43 2011: Setting up LVM Volume Groups  Reading all 
physical volumes.  This may take a while...
Wed Mar 30 12:00:44 2011:   Found volume group vg01 using metadata 
type lvm2
Wed Mar 30 12:00:44 2011:   1 logical volume(s) in volume group vg01 
now active

Wed Mar 30 12:00:44 2011: .
Wed Mar 30 12:00:44 2011: Activating lvm and md swap...done.
Wed Mar 30 12:00:44 2011: Checking file systems...fsck from 
util-linux-ng 2.17.2

Wed Mar 30 12:00:44 2011: done.
Wed Mar 30 12:00:44 2011: Mounting local filesystems...done.
Wed Mar 30 12:00:44 2011: Activating swapfile swap...done.
Wed Mar 30 12:00:44 2011: Cleaning up temporary files
Wed Mar 30 12:00:44 2011: Configuring network interfaces...done.
Wed Mar 30 12:00:44 2011: Cleaning up temporary files
Wed Mar 30 12:00:44 2011: Setting console screen modes.
Wed Mar 30 12:00:44 2011: ^[]R^[[9;30]^[[14;30]Skipping font and keymap 
setup (handled by console-setup).

Wed Mar 30 12:00:44 2011: Setting up console font and keymap...done.
Wed Mar 30 12:00:44 2011: Setting kernel variables ...done.
Wed Mar 30 12:00:45 2011: INIT: Entering runlevel: 2
Wed Mar 30 12:00:45 2011: Using makefile-style concurrent boot in 
runlevel 2.

Wed Mar 30 12:00:45 2011: Starting enhanced syslogd: rsyslogd.
Wed Mar 30 12:00:45 2011: Starting MD monitoring service: mdadm --monitor.
Wed Mar 30 12:00:45 2011: Starting ACPI services
Wed Mar 30 12:00:45 2011: Starting periodic command scheduler: cron.
Wed Mar 30 12:00:45 2011: Starting NTP server: ntpd.
Wed Mar 30 12:00:45 2011: Starting OpenBSD Secure Shell server: sshd.
Wed Mar 30 12:00:48 2011: eth0  Link encap:Ethernet  HWaddr 
bc:30:5b:d0:87:af
Wed Mar 30 12:00:48 2011:   inet addr:10.2.128.4  
Bcast:10.2.255.255  Mask:255.255.128.0
Wed Mar 30 12:00:48 2011:   UP BROADCAST MULTICAST  MTU:1500  
Metric:1
Wed Mar 30 12:00:48 2011:   RX packets:0 errors:0 dropped:0 
overruns:0 frame:0
Wed Mar 30 12:00:48 2011:   TX packets:0 errors:0 dropped:0 
overruns:0 carrier:0

Wed Mar 30 12:00:48 2011:   collisions:0 txqueuelen:1000
Wed Mar 30 12:00:48 2011:   RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
Wed Mar 30 12:00:48 2011:   Interrupt:16
Wed Mar 30 12:00:48 2011:
Wed Mar 30 12:00:48 2011: loLink encap:Local Loopback
Wed Mar 30 12:00:48 2011:   inet addr:127.0.0.1  Mask:255.0.0.0
Wed Mar 30 12:00:48 2011:   inet6 addr: ::1/128 Scope:Host
Wed Mar 30 12:00:48 2011:   UP LOOPBACK RUNNING  MTU:16436  Metric:1
Wed Mar 30 12:00:48 2011:   RX packets:0 errors:0 dropped:0 
overruns:0 frame:0
Wed Mar 30 12:00:48 2011:   TX packets:0 errors:0 dropped:0 
overruns:0 carrier:0

Wed Mar 30 12:00:48 2011:   collisions:0 txqueuelen:0
Wed Mar 30 12:00:48 2011:   RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
Wed Mar 30 12:00:48 2011:
Wed Mar 30 12:00:48 2011: eth0: no link
Wed Mar 30 12:00:48 2011:   product info: vendor 00:50:ef, model 45 rev 0
Wed Mar 30 12:00:48 2011:   basic mode:   autonegotiation enabled
Wed Mar 30 12:00:48 2011:   basic status: no link
Wed Mar 30 12:00:48 2011:   capabilities: 1000baseT-HD 1000baseT-FD 
100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
Wed Mar 30 12:00:48 2011:   advertising:  100baseTx-FD 100baseTx-HD 
10baseT-FD 10baseT-HD flow-control

Wed Mar 30 12:00:48 2011: PING 10.2.128.1 (10.2.128.1) 56(84) bytes of data.
Wed Mar 30 12:00:55 2011:
Wed Mar 30 12:00:55 2011: --- 10.2.128.1 ping statistics ---
Wed Mar 30 12:00:55 2011: 1 packets transmitted, 0 received, 100% packet 
loss, time 0ms

Wed Mar 30 12:00:55 2011:
Wed Mar 

Bug#600598: Archived bug 440035 is not fixed (perl version warning)

2010-10-18 Thread Marc MAURICE

Package: awstats
Version: 6.7.dfsg-5.1

Hello,

This bug is marked as fixed, and in the changelog for 6.7.dfsg-2 :

   [ Charles Fry ]
   * Disable warnings for Perl  5.6 (Closes: #432096  
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=432096, #440035  
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=440035)


It's a small patch in tools/awstats_buildstaticpages.pl.
However it's not fixed :

# /usr/share/doc/awstats/examples/awstats_buildstaticpages.pl -quiet 
-configdir=/etc/awstats/ config= 
-awstatsprog=/usr/lib/cgi-bin/awstats.pl -dir=/home/stats -month=10 
-year=2010 -builddate=201010 /dev/null

Warning: Perl versions before 5.6 cannot handle nested includes

Thanks in advance,
Marc



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



Bug#600598: Archived bug 440035 is not fixed (perl version warning)

2010-10-18 Thread Marc MAURICE

Yes, this bug is very old, but marked as fixed in the changelog.

Steps to reproduce :

# aptitude install awstats
# echo 'Include /etc/awstats/awstats.conf'  
/etc/awstats/awstats.mysite.conf
# /usr/share/doc/awstats/examples/awstats_buildstaticpages.pl 
-config=mysite -awstatsprog=/etc/awstats/ /dev/null


Marc



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



Bug#600598: Archived bug 440035 is not fixed (perl version warning)

2010-10-18 Thread Marc MAURICE

My fault...

With the right path :

/usr/share/doc/awstats/examples/awstats_buildstaticpages.pl 
-config=mysite -awstatsprog=/etc/awstats/ /dev/null


Thanks in advance,
Marc


Le 18/10/2010 17:21, Stefan Hornburg (Racke) a écrit :

On 10/18/2010 04:35 PM, Marc MAURICE wrote:

/usr/share/doc/awstats/examples/awstats_buildstaticpages.pl
-config=mysite -awstatsprog=/etc/awstats/ /dev/null


This file doesn't belong to awstats Debian package anymore in 
6.9.5~dfsg-2.

If I try the new location, it doesn't yield any output:

erebus:~# perl /usr/share/awstats/tools/awstats_buildstaticpages.pl 
-config=mysite -awstatsprog=/etc/awstats/ /dev/null

erebus:~#

Regards
Racke




--
Marc MAURICE
Ingénieur Système Hébergement
Smile - Open Source Solutions - www.smile.fr

Tél : 04 99 77 20 17
marc.maur...@smile.fr




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



Bug#600598: Info received (Bug#600598: Archived bug 440035 is not fixed (perl version warning))

2010-10-18 Thread Marc MAURICE
OK.. it seems to be fixed in the main awstats binary 
(/usr/lib/cgi-bin/awstats.pl)


but not in the buildstaticpages one 
(/usr/share/doc/awstats/examples/awstats_buildstaticpages.pl)


it's in the tools directory upstream, but in the examples directory in 
the debian package.


And it's not fixed upstream :
http://awstats.cvs.sourceforge.net/viewvc/awstats/awstats/tools/

Marc


Le 18/10/2010 18:03, Debian Bug Tracking System a écrit :

Thank you for the additional information you have supplied regarding
this Bug report.

This is an automatically generated reply to let you know your message
has been received.

Your message is being forwarded to the package maintainers and other
interested parties for their attention; they will reply in due course.

Your message has been sent to the package maintainer(s):
  Debian AWStats Teampkg-awstats-de...@lists.alioth.debian.org

If you wish to submit further information on this problem, please
send it to 600...@bugs.debian.org.

Please do not send mail to ow...@bugs.debian.org unless you wish
to report a problem with the Bug-tracking system.

   



--
Marc MAURICE
Ingénieur Système Hébergement
Smile - Open Source Solutions - www.smile.fr

Tél : 04 99 77 20 17
marc.maur...@smile.fr




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



Bug#600598: Info received (Bug#600598: Archived bug 440035 is not fixed (perl version warning))

2010-10-18 Thread Marc MAURICE

Again with some more info.

For the main awstats.pl script : it's fixed in Debian, but still there 
upstream.


http://awstats.cvs.sourceforge.net/viewvc/awstats/awstats/wwwroot/cgi-bin/

What do you think of fixing it also in the 'awstats_buildstaticpages.pl' 
file ?


Thanks in advance.
Sorry for the mail flood.

Marc



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



Bug#594305: filetraq: use unified diff format by default

2010-08-25 Thread Marc MAURICE
Package: filetraq
Version: 0.2-14
Severity: wishlist


I think it would be great to use unified diff format by default (-u option to 
diff).

From what I know it has become the most commonly used format.

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

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

-- 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#594306: filetraq: use universal date format for backup filenames

2010-08-25 Thread Marc MAURICE
Package: filetraq
Version: 0.2-14
Severity: wishlist


for the date in backup filenames, I would use something like the ls -l modif 
time format :
orig.2008-11-26_16:05
or
orig.2008.11.26__16.05

instead of

orig.11.26.08__16.05

Because it's sortable and is more worldwide compliant.

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

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

-- 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#561325: closed by Jari Aalto jari.aa...@cante.net (Bug#561325 Close)

2010-03-04 Thread Marc MAURICE

Hello,

All standard text editors add a newline at end of files (vi, emacs, 
gedit, kedit...).

Only Windows Notepad doesn't.

It's part of the POSIX standard :

http://www.opengroup.org/onlinepubs/95399/basedefs/xbd_chap03.html#tag_03_205

See also the following arguments :

(scroll down to the last posts)

http://support.github.com/discussions/site/226-no-newline-at-end-of-file-appended-at-the-end-of-my-source-listing-in-the-commit-view
http://www.codeguru.com/forum/archive/index.php/t-423606.html

Thanks in advance,
Marc


Le 04/03/2010 00:48, Debian Bug Tracking System a écrit :

This is an automatic notification regarding your Bug report
which was filed against the leafpad package:

#561325: Does not add newline at end of file

It has been closed by Jari Aalto jari.aa...@cante.net.

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 Jari Aalto 
jari.aa...@cante.net by
replying to this email.


  




Sujet:
Bug#561325 Close
Expéditeur:
Jari Aalto jari.aa...@cante.net
Date:
Thu, 04 Mar 2010 01:46:17 +0200
Destinataire:
561325-d...@bugs.debian.org

Destinataire:
561325-d...@bugs.debian.org


Reason for close:

Standard editors do not add sxtra newlines. Feature will not be
implmented.

From: Tarot Osuji ta...@sdf.lonestar.org
Subject: Re: Debian leafpad: new release with patches included?
To: Jari Aalto jari.aa...@cante.net
Date: 1 hour, 1 minute -- 2010-03-04 00:43 EET
Message-ID: 4b8ee5fb.7060...@sdf.lonestar.org
References: 87iq9kmshg@jondo.cante.net

Hi Jari

#561325
 WinXP's Notepad does not add newline at end of line. I feel no demand.

Regards,
Tarot

  




Sujet:
Does not add newline at end of file
Expéditeur:
Marc MAURICE marc.maur...@smile.fr
Date:
Wed, 16 Dec 2009 08:50:34 +0100
Destinataire:
sub...@bugs.debian.org

Destinataire:
sub...@bugs.debian.org


Package: leafpad
Version: 0.8.17-1

Leafpad doesn't add a newline character at end of file like other text 
editors.


Steps to reproduce :

$ leafpad test.txt
# type in a simple word, save and quit
$ cat test.txt
myword$

Thanks in advance,
Good day !
Marc





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



Bug#561325: closed by Jari Aalto jari.aa...@cante.net (Bug#561325 Close)

2010-03-04 Thread Marc MAURICE

Ok, thanks Jari,

But emacs adds the newline when it create a text file from scratch by 
default.


Can you just forward my last comment (about the posix standard) to the 
upstream.

We should also ask them if they accept such a patch.

I can write it.

Thanks in advance,
Marc


--
Marc MAURICE
Ingénieur Système et Réseaux

Smile - Open Source Solutions (www.smile.fr)
26, cours Gambetta - 34000 Montpellier
Tél : 04 99 77 20 17

Courriel : marc.maur...@smile.fr



Le 04/03/2010 10:42, Jari Aalto a écrit :

Marc MAURICE marc.maur...@smile.fr writes:

  

Hello,

All standard text editors add a newline at end of files (vi, emacs,
gedit, kedit...).



I'm sure there are opinions in a way or another.

If editor does something more that what the user types, that behavior
may not please users that want full control.

E.g. emacs(1) doesn't change the file without special setting:

C-h v require-final-newline

require-final-newline is a variable defined in `files.el'.
Its value is nil

Documentation:
Whether to add a newline automatically at the end of the file.

There is also joe(1) which doesn' add newline. But as you pointed out,
there are editors that alwasys add newline, like vi(1). And for
programming code (C++ standard, compilers, diffs, patches) the final
newline is desired.

As the upstream of leafpad has no plans to add the feature, there is not
much we can do. I can only suggests to send him patches to make this
behavior configurable and hope the patches are accepted.

Jari
  




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



Bug#561325: Does not add newline at end of file

2009-12-16 Thread Marc MAURICE

Package: leafpad
Version: 0.8.17-1

Leafpad doesn't add a newline character at end of file like other text 
editors.


Steps to reproduce :

$ leafpad test.txt
# type in a simple word, save and quit
$ cat test.txt
myword$

Thanks in advance,
Good day !
Marc

--
Marc MAURICE
Ingénieur Système et Réseaux

Smile - Open Source Solutions (www.smile.fr)
26, cours Gambetta - 34000 Montpellier
Tél : 04 99 77 20 17

Courriel : marc.maur...@smile.fr




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



Bug#336322: Good question

2009-12-11 Thread Marc MAURICE

Hello,

I totally agree with this bug report.

Personnaly, I always set the setting to clear the cookies once the 
browser is closed.


Especially with new services like Google Analytics and it's cookies, 
Google can not only track the searches
you do, but also see all the sites you visit if they implement Google 
Analytics.


Of course It can be seen as a violation of the cookie expiration 
standard, but I think it's really important for privacy.
At least the average user should be aware of that. It may be a good idea 
to ask him at Iceweasel/Firefox first startup ?


Thanks in advance,

Marc



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



Bug#549107: Outfile Problem with same host and different ports

2009-09-30 Thread Marc MAURICE

Package: pssh
Version: 1.4.3-1

Hi,

When sending the output to a directory (-o option), output files are
created with the host name.
If I put two nodes with the same host but different port in my hosts.txt
file, it works, but I get
only one result file.
In this case, the output file name should include the port.

I used the attached patch to fix the problem.

Thanks providing this package.

Marc


--
Marc MAURICE
Ingénieur Système et Réseaux

Smile - Open Source Solutions (www.smile.fr)
26, cours Gambetta - 34000 Montpellier
Tél : 04 99 77 20 17

Courriel : marc.maur...@smile.fr


--- psshlib/basethread.py.old	2008-10-12 13:16:02.0 +0200
+++ psshlib/basethread.py	2009-07-01 10:58:58.0 +0200
@@ -139,13 +139,16 @@
 self.sem.release()
 
 def write_output(self, stdout, stderr):
+filename = self.host
+if self.port != 22:
+		filename += : + str(self.port)
 if self.flags[outdir]:
-pathname = %s/%s % (self.flags[outdir], self.host)
+pathname = %s/%s % (self.flags[outdir], filename)
 f = open(pathname, w)
 self.write_wrap(f.fileno(), stdout.getvalue())
 f.close()
 if self.flags[errdir]:
-pathname = %s/%s % (self.flags[errdir], self.host)
+pathname = %s/%s % (self.flags[errdir], filename)
 f = open(pathname, w)
 self.write_wrap(f.fileno(), stderr.getvalue())
 f.close()



Bug#549117: pssh hangs when called from a script

2009-09-30 Thread Marc MAURICE

Package: pssh
Version: 1.4.3-1

Hello,

Steps to reproduce :

1) create a hosts.txt file
touch /tmp/hosts.txt # you can put hosts in it, or leave it empty

2) run pssh normaly
parallel-ssh -h /tmp/hosts.txt ls # it works well

3) create a simple script calling pssh
vi /tmp/test.sh
chmod a+x /tmp/test.sh
cat /tmp/test.sh
#!/bin/sh
parallel-ssh -h /tmp/hosts.txt ls

4) run the script
/tmp/test.sh  # it hangs until killed
killall test.sh

Looking in the code in /usr/bin/parallel-ssh, it blocks at line 143 in 
the buffer_input() function :

stdin = sys.stdin.read()

To work around the problem, I applied the following patch :

--- /tmp/parallel-ssh   2009-09-30 21:44:59.0 +0200
+++ /usr/bin/parallel-ssh   2009-09-30 21:45:29.0 +0200
@@ -151,7 +151,7 @@
os.makedirs(flags[outdir])
if flags[errdir] and not os.path.exists(flags[errdir]):
os.makedirs(flags[errdir])
-stdin = buffer_input()
+stdin = 
sem = threading.Semaphore(flags[par])
threads = []
for i in range(len(hosts)):

In fact, pssh in also designed to be called with a pipe this way :
cat file_to_send | parallel-ssh -h /tmp/hosts.txt COMMAND_READING_STDIN
example useless command :
cat file_to_send | parallel-ssh -h /tmp/hosts.txt grep search_string

As I do not use this, I use my patch to call pssh from scripts.

But If we don't want to loose the pipe feature, we have to find a 
better patch.


Any idea ?

Marc



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



Bug#534675: apache2-mpm-prefork: envvars problem with apache2 command

2009-06-26 Thread Marc Maurice
Package: apache2-mpm-prefork
Version: 2.2.9-10+lenny3
Severity: minor


Hi,

Maybe am I missing a package or something, but I have this problem
on many lenny systems :

# apache2 -S
apache2: bad user name ${APACHE_RUN_USER}

Setting the envvars fixes the problem :

# . /etc/apache2/envvars 
# apache2 -S
VirtualHost configuration:
wildcard NameVirtualHosts and _default_ servers:
*:80   is a NameVirtualHost
[ list of vhosts ]
Syntax OK

Also changing User and Group variables to www-data in apache2.conf
fixes the problem.

Should the apache2 command include the envvars ??

Thanks in advance
Marc





-- Package-specific info:
List of enabled modules from 'apache2 -M':
  alias auth_basic authn_file authz_default authz_groupfile
  authz_host authz_user autoindex cgi deflate dir env mime
  negotiation php5 rewrite setenvif status

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

Kernel: Linux 2.6.26-2-openvz-amd64 (SMP w/4 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 apache2-mpm-prefork depends on:
ii  apache2.2-common2.2.9-10+lenny3  Apache HTTP Server common files
ii  libapr1 1.2.12-5 The Apache Portable Runtime Librar
ii  libaprutil1 1.2.12+dfsg-8+lenny2 The Apache Portable Runtime Utilit
ii  libc6   2.7-18   GNU C Library: Shared libraries
ii  libpcre37.6-2.1  Perl 5 Compatible Regular Expressi

apache2-mpm-prefork recommends no packages.

apache2-mpm-prefork 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#447266: Same Certificate problem

2009-06-11 Thread Marc MAURICE

Hi all,

I already reported the bug upstream but got no response.

I found the same problem with https://www.me.etsglobal.org/
Firefox and IE7 report no problem.
I think wget doesn't handle certificates with several names correctly.

$ wget --version
GNU Wget 1.11.4

Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later
http://www.gnu.org/licenses/gpl.html.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Originally written by Hrvoje Niksic hnik...@xemacs.org.
Currently maintained by Micah Cowan mi...@cowan.name.
$ wget https://www.me.etsglobal.org/
--2009-05-26 09:41:42--  https://www.me.etsglobal.org/
Resolving www.me.etsglobal.org... 195.154.186.143
Connecting to www.me.etsglobal.org|195.154.186.143|:443... connected.
ERROR: certificate common name `EDUCATIONAL TESTING SERVICE (ETS) GLOBAL 
B.V.' doesn't match requested host name `www.me.etsglobal.org'.
To connect to www.me.etsglobal.org insecurely, use 
`--no-check-certificate'.

Unable to establish SSL connection.

Thanks providing this great package !

Marc



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



Bug#511420: mysql-server-5.0: No root user created after install

2009-01-10 Thread Marc MAURICE

Package: mysql-server-5.0
Version: 5.0.51a-20
Severity: grave
Justification: renders package unusable


Hi,

I'm installing mysql-server-5.0 on a fresh debootstrap debian version.

After installing the package, I was not able to login with root user, 
because the root user

is not present in the mysql.user table.

# mysql -u debian-sys-maint -p mysql -e select host,user from user
Enter password:
+---+--+
| host  | user |
+---+--+
| localhost | debian-sys-maint |
+---+--+
#

As you see, only debian-sys-maint user is created.

I also tried purging the package and installing it again.

Am I missing something ?

Thanks in advance,

Marc


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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages mysql-server-5.0 depends on:
ii  adduser3.110 add and remove users and groups
ii  debconf [debconf-2.0]  1.5.24Debian configuration 
management sy

ii  libc6  2.7-16GNU C Library: Shared libraries
ii  libdbi-perl1.605-1   Perl5 database interface by 
Tim Bu

ii  libgcc11:4.3.2-1.1   GCC support library
ii  libmysqlclient15off5.0.51a-20MySQL database client library
ii  libncurses55.7+20081213-1shared libraries for 
terminal hand
ii  libreadline5   5.2-3 GNU readline and history 
libraries

ii  libstdc++6 4.3.2-1.1 The GNU Standard C++ Library v3
ii  libwrap0   7.6.q-16  Wietse Venema's TCP 
wrappers libraii  lsb-base   3.2-20Linux 
Standard Base 3.2 init scrip

ii  mysql-client-5.0   5.0.51a-20MySQL database client binaries
ii  mysql-common   5.0.51a-20MySQL database common files
ii  passwd 1:4.1.1-6 change and administer 
password and
ii  perl   5.10.0-18 Larry Wall's Practical 
Extraction
ii  psmisc 22.6-1Utilities that use the proc 
filesy

ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages mysql-server-5.0 recommends:
pn  libhtml-template-perl none (no description available)
pn  mailx none (no description available)

Versions of packages mysql-server-5.0 suggests:
pn  tinycanone (no description available)

-- debconf information:
* mysql-server/root_password_again: (password omitted)
* mysql-server/root_password: (password omitted)
 mysql-server-5.0/really_downgrade: false
 mysql-server-5.0/need_sarge_compat: false
 mysql-server-5.0/start_on_boot: true
 mysql-server/error_setting_password:
 mysql-server-5.0/nis_warning:
 mysql-server-5.0/postrm_remove_databases: false
 mysql-server-5.0/need_sarge_compat_done: true
 mysql-server/password_mismatch:




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



Bug#511420: Solved

2009-01-10 Thread Marc MAURICE

Sorry ;)
Problem solved
My /tmp was not world writable.

--
Marc MAURICE
Master Ingénierie du Logiciel Libre

3, passage du Bois Dur - 34570 Montarnaud

04 67 55 04 75

Courriel : doob...@moostik.org
 Jabber : doob...@jabber.fr




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



Bug#376115: Wrong permissions to others when creating directory from the save dialog

2006-06-30 Thread Marc MAURICE
Package: libgtk2.0-0
Version: 2.8.18-1
Severity: normal

*** Please type your report below this line ***

Hi,

I spend hours trying to make gettext work with apache/php.
In fact, it was because I used the save dialog in poEdit to create
directories, and the so created directories had not the 'x' permission to
the others, forbidding apache to cross the directories.

When I create a directory with mkdir, rights are ok.

When I create a directory with a kde application, rights are ok.

When I create a directory with a gnome app (tested with poEdit, gimp,
gedit), say /tmp/test, others do not have the 'x' right :

$ ls -ld /tmp/test
drwxr-xr--  2 dooblem dooblem 4096 2006-06-30 10:33 /tmp/test


I'm not really sure if this bug is specific to gtk2 (maybe gnome, or smth
else)..

Thanks in advance
and sorry for my english

Marc


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages libgtk2.0-0 depends on:
ii  libatk1.0-0  1.10.3-1The ATK accessibility toolkit
ii  libc62.3.6-7 GNU C Library: Shared
libraries ii  libcairo21.0.2-3 The Cairo 2D vector
graphics libra
ii  libfontconfig1   2.3.2-1.1   generic font configuration
library
ii  libglib2.0-0 2.10.1-2The GLib library of C
routines ii  libgtk2.0-bin2.8.18-1The programs for the
GTK+ graphica
ii  libgtk2.0-common 2.8.18-1Common files for the GTK+
graphica
ii  libjpeg626b-11   The Independent JPEG Group's
JPEG
ii  libpango1.0-01.12.3-1Layout and rendering of
internatio
ii  libpng12-0   1.2.8rel-5  PNG library - runtime ii 
libtiff4 3.7.4-1 Tag Image File Format (TIFF)
libra
ii  libx11-6 6.8.2.dfsg.1-11 X Window System protocol
client li
ii  libxcursor1  1.1.3-1 X cursor management library
ii  libxext6 6.8.2.dfsg.1-11 X Window System miscellaneous
exte
ii  libxfixes3   6.9.0.dfsg.1-6  X Window System miscellaneous
'fix
ii  libxi6   6.8.2.dfsg.1-11 X Window System Input
extension li
ii  libxinerama1 6.8.2.dfsg.1-11 X Window System multi-head
display
ii  libxrandr2   6.8.2.dfsg.1-11 X Window System Resize,
Rotate and
ii  libxrender1  1:0.9.0.2-1 X Rendering Extension client
libra

Versions of packages libgtk2.0-0 recommends:
ii  hicolor-icon-theme0.8-3  default fallback theme for
FreeDes

-- no debconf information







Bug#370439: thunderbird: Crashes with iso japan subject

2006-06-05 Thread Marc MAURICE

Package: thunderbird
Version: 1.5.0.2-3
Severity: important

*** Please type your report below this line ***

Hi

I'm having problems with certain type of spam in thunderbird.

When I receive a spam with a subject starting by =?ISO-2022-JP
thunderbird crashes immediately, and then, each time I start 
thunderbird, it crashes at startup.


A specific subject that makes thunderbird crash is :
=?ISO-2022-JP?B?GyRCJDMkcyRLJEEkbxsoQg==?=

To be able to use thunderbird again, I have to :
   - edit the Inbox file to rename the subject
   - stop the network connection so that thunderbird does not download 
mail automatically on startup
   - start thunderbird and add a filter rule on the body (filtering by 
=?ISO-2022-JP on the subject does not work)

   - restart my network connection

Note :
I also tried evolution, and evolution freezes with this type of spam.. I 
don't really know if this issue is specific to thunderbird or not.


Thanks in advance and for your help to the community !

Marc


-- System Information:
Debian Release: testing/unstable
 APT prefers testing
 APT policy: (990, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages thunderbird depends on:
ii  debconf [debconf-2.0]1.4.66  Debian configuration 
management sy

ii  libatk1.0-0  1.10.3-1The ATK accessibility toolkit
ii  libc62.3.6-7 GNU C Library: Shared libraries
ii  libcairo21.0.2-3 The Cairo 2D vector 
graphics libra
ii  libfontconfig1   2.3.2-1.1   generic font configuration 
library

ii  libgcc1  1:4.1.0-1   GCC support library
ii  libglib2.0-0 2.10.1-2The GLib library of C routines
ii  libgtk2.0-0  2.8.16-1The GTK+ graphical user 
interface
ii  libjpeg626b-11   The Independent JPEG 
Group's JPEG
ii  libpango1.0-01.12.1-2Layout and rendering of 
internatio

ii  libpng12-0   1.2.8rel-5  PNG library - runtime
ii  libstdc++6   4.1.0-1 The GNU Standard C++ Library v3
ii  libx11-6 6.8.2.dfsg.1-11 X Window System protocol 
client li

ii  libxcursor1  1.1.3-1 X cursor management library
ii  libxext6 6.8.2.dfsg.1-11 X Window System 
miscellaneous exte
ii  libxfixes3   6.9.0.dfsg.1-6  X Window System 
miscellaneous 'fix
ii  libxft2  2.1.8.2-5.1 FreeType-based font drawing 
librar
ii  libxi6   6.8.2.dfsg.1-11 X Window System Input 
extension li
ii  libxinerama1 6.8.2.dfsg.1-11 X Window System multi-head 
display
ii  libxrandr2   6.8.2.dfsg.1-11 X Window System Resize, 
Rotate and
ii  libxrender1  1:0.9.0.2-1 X Rendering Extension 
client libra

ii  libxt6   6.8.2.dfsg.1-11 X Toolkit Intrinsics
ii  myspell-en-us [myspell-d 1:2.0.0-1   English_american dictionary 
for my
ii  myspell-fr-gut [myspell- 1:1.0-18The French dictionary for 
myspell

ii  zlib1g   1:1.2.3-9   compression library - runtime

thunderbird recommends no packages.

-- debconf information:
* thunderbird/browser: GNOME


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



Bug#364598: mozilla-thunderbird: crash on startup with a specific mail

2006-04-24 Thread Marc MAURICE
Package: mozilla-thunderbird
Version: 1.0.7-3
Severity: important


Today, when I started thunderbird, it exited outputting the following:

$ mozilla-thunderbird
selected locale: fr-FR
DOUBLE-CLICK: 400 -- -1 THRESHOLD: 8 -- -1
/usr/lib/mozilla-thunderbird/mozilla-thunderbird-bin: symbol lookup
error: /usr/lib/libXft.so.2: undefined symbol: FT_GlyphSlot_Embolden

It appears that the problem is a spam mail I received. When I removed
the specific mail from my Inbox file, thunderbird started normaly.

As I don't know if and how I can attach a file to this report, I put the
Inbox file that makes thunderbird crash here:
http://dooblem.free.fr/Inbox

Thanks in advance

Marc


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages mozilla-thunderbird depends on:
ii  libatk1.0-0  1.10.3-1The ATK accessibility toolkit
ii  libc62.3.6-7 GNU C Library: Shared libraries
ii  libfontconfig1   2.3.2-1.1   generic font configuration library
ii  libfreetype6 2.1.7-2.4   FreeType 2 font engine, shared lib
ii  libgcc1  1:4.1.0-1   GCC support library
ii  libglib2.0-0 2.10.1-2The GLib library of C routines
ii  libgtk2.0-0  2.8.16-1The GTK+ graphical user interface 
ii  libjpeg626b-11   The Independent JPEG Group's JPEG 
ii  libpango1.0-01.12.0-2Layout and rendering of internatio
ii  libpng12-0   1.2.8rel-5  PNG library - runtime
ii  libstdc++6   4.1.0-1 The GNU Standard C++ Library v3
ii  libx11-6 6.8.2.dfsg.1-11 X Window System protocol client li
ii  libxext6 6.8.2.dfsg.1-11 X Window System miscellaneous exte
ii  libxft2  2.1.8.2-5.1 FreeType-based font drawing librar
ii  libxp6   6.8.2.dfsg.1-11 X Window System printing extension
ii  libxrender1  1:0.9.0.2-1 X Rendering Extension client libra
ii  libxt6   6.8.2.dfsg.1-11 X Toolkit Intrinsics
ii  xlibs6.8.2.dfsg.1-11 X Window System client libraries m
ii  zlib1g   1:1.2.3-9   compression library - runtime

Versions of packages mozilla-thunderbird recommends:
ii  myspell-en-us [myspell-dictio 1:2.0.0-1  English_american dictionary for my
ii  myspell-fr-gut [myspell-dicti 1:1.0-18   The French dictionary for myspell 
pn  xprintnone (no description available)

-- debconf information:
* mozilla-thunderbird/browser: Debian


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