Bug#470595: geometry package doesn't work with cslatex

2008-03-13 Thread Anton Khirnov
OK, the problem looks like this:

[EMAIL PROTECTED]:~$ cat test.tex
\documentclass{article}
\usepackage{geometry}
\begin{document}
\end{document}
[EMAIL PROTECTED]:~$ cslatex test.tex
This is pdfTeXk, Version 3.141592-1.40.3 (Web2C 7.5.6)
 %-line parsing enabled.
entering extended mode
(./test.tex
LaTeX2e 2005/12/01
Loading CZ hyphenation patterns: Pavel Sevecek, v3, 1995
Loading SK hyphenation patterns: Jana Chlebikova, 1992
(/usr/share/texmf-texlive/tex/latex/base/article.cls
Document Class: article 2005/09/16 v1.4f Standard LaTeX document class
(/usr/share/texmf-texlive/tex/latex/base/size10.clo))
(/usr/share/texmf-texlive/tex/latex/geometry/geometry.sty
(/usr/share/texmf-texlive/tex/latex/graphics/keyval.sty)
(/usr/share/texmf-texlive/tex/xelatex/xetexconfig/geometry.cfg)) (./test.aux)
! Undefined control sequence.
[EMAIL PROTECTED] ...fined \else \ifnum \pdfoutput
  [EMAIL PROTECTED] [EMAIL 
PROTECTED] {pdfte...
l.3 \begin{document}
[EMAIL PROTECTED]:~$ pdftex test.tex
This is pdfTeXk, Version 3.141592-1.40.3 (Web2C 7.5.6)
 %-line parsing enabled.
entering extended mode
(./test.tex
! Undefined control sequence.
l.1 \documentclass
  {article}

If you run just latex, or remove geometry, it will work.

And as I said, I don't know what this patch does, I just happened to
find it and it worked.

Anton Khirnov

On Wed, Mar 12, 2008 at 11:22 PM, Frank Küster [EMAIL PROTECTED] wrote:
 Anton Khirnov [EMAIL PROTECTED] wrote:

   Package: texlive-latex-base
   Version: 2007-13
   Severity: normal
   Tags: patch
  
   When trying to compile a document using geometry package with cslatex,
   it fails, saying that \begin{document} wasn't def'ed. I'm attaching a
   patch, proposed by Petr Olsak here -
   
 http://usenet.jyxo.cz/cz.comp.cstex/0704/problem-s-balickem-geometry-pri-prekladu-cslatexem.html

  In this thread (at least in the initial e-mail) it is \pdfoutput which
  in undefined, not \begin{document}. What's the actual problem on your
  system?  Can you provide a minimal example document?

  Moreover, cslatex is a symlink to pdftex by default, so why should the
  patch make a difference? I'm not sure, but it might be on purpose what
  geometry.sty does.

  Regards, Frank
  --
  Frank Küster
  Debian Developer (teTeX/TeXLive)



Bug#152207: reopen #152207: dlocate: duplicated -man entries

2008-03-13 Thread A. Costa
Thanks for the explanation, some thoughts on it follow...

On Sun, 9 Mar 2008 18:28:54 +1100
Craig Sanders [EMAIL PROTECTED] wrote:

  Granted some users require or prefer the '-man' switch output ('#
  manpagename'), but a duplicate line seems useless.  A review of the
  three related bugs, (#152207, #289351, and #361125) shows that since
  2002, four users (Long, Metzler, Jacobson,  Costa) considered the
  duplicate lines a bug.  Were we all mistaken, and if so, how?
 
 'dlocate -man' lists the man pages in a package.

 if and when there are duplicates, it is *because* there are duplicate
 man pages (for different languages) in the package. dlocate doesn't
 just make them up, it does it's told: list the man pages in the
 package.

OK, the job of '-man' is to list all man pages in any language.
Does 'dlocate -man' currently list them all?  No, or only partially.
For multiple translations of a single man page, 'dlocate -man' lists
duplicate occurrences of the name of that man page.

One could argue those duplicates are foreign homonyms sharing the same
spelling.  But Unix utils can't parse homonyms or polysemy, (i.e. Plant
pot plant in plant pot.), Unix is built upon context-free grammars, so
concepts like 'homonym' aren't relevant when there are no programs to
use those too complex homonyms.  (The duplicates have at least one use,
more on which below...)

Is it possible to list all the man pages in a package using only
the '# pagename' format?  No, not without distinguishing information
about languages.

 for those who don't want to use the new -lsman option, there is and
 always has been:
 
 dlocate -man PACKAGE | sort -u
 
 i don't consider it a bug because it's trivial for a user to use
 standard tools to eliminate excess information, whereas it is
 impossible for a user to re-construct information that has been
 thrown away. in other words, throwing away information would be a far
 more serious bug, especially when the user can easily throw it away
 themselves.

Agreed that throwing away information is more serious; but not all data
is information and it's not obvious what useful data would be lost.  

As far as I can tell the only meaning of the duplicates is that when
counted they show how many translations of a man page exist.  To make
practical use of the count also requires external utilities, e.g.
piping to 'sort | uniq -c'.

Is that method of counting is used often, and does any Debian package
use it?  I don't know.

Compare '-man' to the newer '-lsman' option, (thanks for adding it),
which provides distinguishing information.  Some tasks:

Count translations of 'apt-cdrom':

dlocate -lsman apt | grep -c apt-cdrom.8

dlocate -man   apt | grep -c 8 apt-cdrom 

Count translations in general (sorted by # of translations):

dlocate -lsman apt | sed 's#.*/##' | sort | uniq -c | sort -g

dlocate -man   apt | sort | uniq -c | sort -g

('-lsman' has one more pipe there  -- an uncommon task tho'.)

Count of how many translations in Spanish:

dlocate -lsman apt | grep -c '/es/'

(Impossible without fetching information not in '# pagename'.)

 i can see that there are multiple valid but conflicting viewpoints on
 this issue, so i'm going to err in one way or another no matter what i
 do. i prefer to err based on the assumption that users are competent
 and able to use standard unix tools and basic concepts like pipes. 

Indecisive error is not inevitable if you know what you want.  Your
spec is either met or it's not.

On standard Unix tools:  the power of those tools comes from design
simplicity, (parsimony  elegance); the tools might not be simple to
create, but they should be simple to use.

Possible fixes:

1) do nothing, nothing's wrong except users.

2) omit the dupes.

3) ...and add distinguishing language suffix as somebody 
   suggested, but since it would break the intended usage of 
   'man $(dlocate -man apt)', (sans filters), perhaps 
   a new option could add language suffixes.

Related (thoroughly fixed) Debian bug:

#259338: man-db: with 2 keywords, output of 'apropos' can be redundant

HTH...



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



Bug#470717: 'man cdbackup' 'man cdrestore' typos: s/lager that/larger than/ usefull

2008-03-13 Thread A. Costa
Package: cdbackup
Version: 0.7.0-4
Severity: minor
Tags: patch


Found a few typos in '/usr/share/man/man1/cdbackup.1.gz' and
'/usr/share/man/man1/cdrestore.1.gz', see attached '.diff' files.

Hope this helps...

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

Kernel: Linux 2.6.24-1-686 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/dash

Versions of packages cdbackup depends on:
ii  cdrecord  9:1.1.6-1  Dummy transition package for wodim
ii  libc6 2.7-9  GNU C Library: Shared libraries

Versions of packages cdbackup recommends:
ii  cpio  2.9-11 GNU cpio -- a program to manage ar

-- no debconf information

--- cdbackup.1	2007-12-06 19:47:48.0 -0500
+++ /tmp/cdbackup.1	2008-03-12 22:56:06.0 -0400
@@ -64,7 +64,7 @@
 
 .TP 
 \fB\-i\fR \fIimage\fP
-Enables virtual image mode. The backup stream is written to the given image file. The file is created if it doesn't exists. It's mandatory to give an explicit media size with \-l. Take care that the created virtual image isn't lager that the media size you want to dump it later.
+Enables virtual image mode. The backup stream is written to the given image file. The file is created if it doesn't exists. It's mandatory to give an explicit media size with \-l. Take care that the created virtual image isn't larger than the media size you want to dump it later.
 You can add up to 96 backups to an virtual image.
 .br 
 If the backup extends the specified media size and you have enabled multi\-disk mode, additional images files are created (the filenames are derived from the initial image name by adding a dot and a decimal number).

--- cdrestore.1	2007-12-06 19:44:47.0 -0500
+++ /tmp/cdrestore.1	2008-03-12 22:57:31.0 -0400
@@ -70,7 +70,7 @@
 
 .TP 
 \fB\-D\fR
-Enables DEBUG output (probably not usefull for normal use).
+Enables DEBUG output (probably not useful for normal use).
 
 .TP 
 \fB\-V\fR



Bug#470718: rkhunter: New upstream version 1.3.2 available

2008-03-13 Thread Holger Spielmann
Package: rkhunter
Version: 1.3.0-3
Severity: wishlist

Hi,

a new version of rkhunter, 1.3.2, is available upstream.

Best regards,
Holger Spielmann

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.22-2-686
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages rkhunter depends on:
ii  binutils2.18.1~cvs20080103-1 The GNU assembler, linker and bina
ii  debconf [debconf-2. 1.5.11etch1  Debian configuration management sy
ii  exim [mail-transpor 3.36-18.2An obsolete MTA (Mail Transport Ag
ii  file4.17-5etch3  Determines file type using magic
ii  net-tools   1.60-17  The NET-3 networking toolkit
ii  perl5.8.8-7etch1 Larry Wall's Practical Extraction 

Versions of packages rkhunter recommends:
ii  curl   7.15.5-1etch1 Get a file from an HTTP, HTTPS, FT
ii  iproute20080108-1Professional tools to control the 
ii  libmd5-perl2.03-1backwards-compatible wrapper for D
pn  unhide none(no description available)
ii  wget   1.10.2-2  retrieves files from the web

-- debconf information:
* rkhunter/apt_autogen: true
* rkhunter/cron_db_update: true
* rkhunter/cron_daily_run: true




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



Bug#470713: apt: removing cupsys removes scribus as well

2008-03-13 Thread Christian Perrier
Quoting shirish ([EMAIL PROTECTED]):
 Package: apt
 Version: 0.7.9ubuntu14
 Severity: normal
 
 *** Please type your report below this line ***
 
 Hi all,
  I was removing cupsys as I have no printer installed. While removing
 cupsys it also removed ubuntu-desktop as well as scribus. While
 ubuntu-desktop is ubuntu's baby cupsys  scribus are something which
 are debian's baby as well :)
So my question/query is why cupsys is dependant on scribus? The way
 the things seem at moment is :-
 
 cupsys depends on libcupsys2
 scribus depends on libcupsys2 ? why, no idea


And could you explain us why you're reporting this against apt?




signature.asc
Description: Digital signature


Bug#470719: Data corruption (null bytes) using multiple NFS clients to same file

2008-03-13 Thread Adrian Phillips

Package: linux-image-2.6.18-6-686
Version: 2.6.18.dfsg.1-18etch1

The bug has also been reproduced and fixed in the following patch from
Trond Myklebust :-

http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=5d47a35600270e7115061cb1320ee60ae9bcb6b8

Sincerely,

Adrian Phillips

-- 
Who really wrote the works of William Shakespeare ?
http://www.pbs.org/wgbh/pages/frontline/shakespeare/



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



Bug#470625: kwin: Alt-Tab stops working

2008-03-13 Thread Marcus Better
Armin Berres wrote:

 Ok, let's stop this, didn't meant to offend you.

No offence taken. I'll try to get more of my bugs upstreamed. Keep up
the good work!

Marcus



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



Bug#470720: O: qpopper -- Enhanced Post Office Protocol server

2008-03-13 Thread Thierry Randrianiriana
Package: wnpp
Severity: normal

The current maintainer of qpopper, me, doesn't use qpopper anymore and
is using courier-pop as his pop3 server.  Therefore, I orphan
this package now.

Maintaining a package requires time and skills. Please only adopt this
package if you are *sure* you will have enough time and attention to
work on it.

If you want to be the new maintainer, please see
http://www.debian.org/devel/wnpp/index.html#howto-o for detailed
instructions how to adopt a package properly.



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



Bug#470721: pluto segfaults when using pkcs11 library linked with OpenSSL

2008-03-13 Thread David Smith
Package: strongswan
Version: 4.1.10-1
Tags: patch

I'm using strongSwan with RSA private keys on a smartcard via opencryptoki's 
pkcs11 library. The opencryptoki pkcs11 libraries link with OpenSSL's 
libcrypto which includes a function AES_cbc_encrypt. That function also 
exists in strongSwan's builtin libcrypto but it takes different parameters 
and generally functions differently. So, when pluto attempts to use the 
AES_cbc_encrypt after dlopen*ing opencryptoki's pkcs11 library, it segfaults 
because it has been overwritten with OpenSSL's different AES_cbc_encrypt in 
the symbol table.

I've written a trivial patch to rename strongSwan's AES_cbc_encrypt to 
ss_AES_cbc_encrypt to avoid this conflict. With the patch, pluto functions 
normally and connections succeed. I have sent the patch upstream to 
strongSwan's mailing list twice, once in late November 2007[1] and again in 
the beginning of March 2008[2]. I have yet to receive any reply from 
upstream, neither positive or negative, so as plan B I ask that you please 
include it in the Debian package.

Thank you

[1] https://lists.strongswan.org/pipermail/users/2007-November/002160.html
[2] https://lists.strongswan.org/pipermail/users/2008-March/002292.html
-- 
man perl | tail -6 | head -2
commit 306736b995127de2f0ef54671c3cfac86870f94c
Author: David Smith [EMAIL PROTECTED]
Date:   Sat Nov 24 19:07:04 2007 +1100

Rename AES_cbc_encrypt to ss_AES_cbc_encrypt to not conflict
with OpenSSL's function when using opencryptoki's TPM token.

diff --git a/src/libcrypto/libaes/aes_cbc.c b/src/libcrypto/libaes/aes_cbc.c
index 962dd1a..83feeb7 100644
--- a/src/libcrypto/libaes/aes_cbc.c
+++ b/src/libcrypto/libaes/aes_cbc.c
@@ -10,4 +10,4 @@ int AES_set_key(aes_context *aes_ctx, const u_int8_t *key, int keysize) {
 	aes_set_key(aes_ctx, key, keysize, 0);
 	return 1;	
 }
-CBC_IMPL_BLK16(AES_cbc_encrypt, aes_context, u_int8_t *, aes_encrypt, aes_decrypt);
+CBC_IMPL_BLK16(ss_AES_cbc_encrypt, aes_context, u_int8_t *, aes_encrypt, aes_decrypt);
diff --git a/src/pluto/alg/ike_alg_aes.c b/src/pluto/alg/ike_alg_aes.c
index 44de09b..9df79cb 100644
--- a/src/pluto/alg/ike_alg_aes.c
+++ b/src/pluto/alg/ike_alg_aes.c
@@ -34,7 +34,7 @@ do_aes(u_int8_t *buf, size_t buf_len, u_int8_t *key, size_t key_size, u_int8_t *
 	memcpy(new_iv=iv_bak, (char*) buf + buf_len - AES_CBC_BLOCK_SIZE
 		, AES_CBC_BLOCK_SIZE);
 
-AES_cbc_encrypt(aes_ctx, buf, buf, buf_len, iv, enc);
+ss_AES_cbc_encrypt(aes_ctx, buf, buf, buf_len, iv, enc);
 
 if (enc)
 	new_iv = (char*) buf + buf_len-AES_CBC_BLOCK_SIZE;


signature.asc
Description: This is a digitally signed message part.


Bug#470722: RFA: libunicode-japanese-perl - Perl module for convert japanese encodings

2008-03-13 Thread Tatsuki Sugiura
Package: wnpp
Severity: normal

I request adoption for Unicode::Japanese perl module.

Now I do not use the module at all. This module can be almost
prelaced by perl built-in Encode modules.
However this can handle EMOJI of the mobile phones, someone
may needs the feature. Would anyone like to maintain?



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



Bug#459376: workaround

2008-03-13 Thread Németh Márton
Package: xterm
Version: 232-1

The problem still exists in version 232-1.

There is a workaround, however, if xterm started as 'xterm -fa monospace' then
moving any other window before xterm window with selection will not corrupt
the display of the xterm window.



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



Bug#470436: libcrypt-eksblowfish-perl: FTBFS: Unsatisfiable build-dependency: Default version of perl-base not sufficient, no suitable alternative found.

2008-03-13 Thread Luk Claes
Ivan Kohler wrote:
 tags 470436 + moreinfo
 thanks
 
 On Tue, Mar 11, 2008 at 10:12:37AM +0100, Lucas Nussbaum wrote:
 Package: libcrypt-eksblowfish-perl
 Version: 0.003-4
 Severity: serious
 User: [EMAIL PROTECTED]
 Usertags: qa-ftbfs-20080310 qa-ftbfs
 Justification: FTBFS on i386

 Hi,

 During a rebuild of all packages in sid, your package failed to build on 
 i386.

 Relevant part:
 ** Using build dependencies supplied by package:
 Build-Depends: debhelper (= 4.0.0), libmodule-build-perl, perl (= 
 5.8.4-8), perl-base (= 5.10) | libxsloader-perl
 ^^^
 perl-base 5.10 is not installable from sid (just yet), but 
 libxsloader-perl is...
 
 Checking for already installed source dependencies...
 debhelper: missing
 Using default version 6.0.7
 libmodule-build-perl: missing
 perl: already installed (5.8.8-12 = 5.8.4-8 is satisfied)
 perl-base: non-matching version installed (5.8.8-12 ! = 5.10)
 Default version of perl-base not sufficient, no suitable alternative found. 
 I probably should dep-wait this one.
 
 Shouldn't the build install the libxsloader-perl alternative instead of 
 erroring out?

The reason it does not try the alternative is that we want to have
predictable builds: alternative build dependencies are a no go in that
regard. The autobuilders will always just take the first build
dependency listed...

Cheers

Luk



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



Bug#470723: Log for failed build of epix1_1.2.4-1 (dist=unstable)

2008-03-13 Thread Riku Voipio
Package: epix1
Version: 1.2.4-1
Severity grave

Your package failed to build on all buildds so far with the 
following error:

On Thu, Mar 13, 2008 at 08:52:23AM +0200, Build Daemon wrote:
 Automatic build of epix1_1.2.4-1 on ALL6500 by sbuild/armel 0.56
...
 makeindex manual.idx /dev/null
 makeindex -o manual.fnd -t manual.flg manual.fdx /dev/null
 ../laps-local --pdf manual.tex
 touch manual-stamp
 makeinfo epix.texi /dev/null
 make[2]: *** [epix.info] Error 127
 make[2]: Leaving directory `/build/buildd/epix1-1.2.4/doc'
 make[1]: *** [all-recursive] Error 1
 make[1]: Leaving directory `/build/buildd/epix1-1.2.4'
 make: *** [build-stamp] Error 2
 dpkg-buildpackage: failure: debian/rules build gave error exit status 2



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



Bug#470227: xfce4-panel crashes when changing screen on non-xinerama dual screen setup

2008-03-13 Thread Yves-Alexis Perez
On jeu, 2008-03-13 at 11:27 +1100, [EMAIL PROTECTED] wrote:
 I should clarify something.
 Before I said a window appeared briefly on the screen where I'd asked
 xfce4-panel to place panel2. This was the xfce4-panel configuration
 tool
 window - it jumped from display 0 to the target (display 1) and _then_
 exited/crashed. I didn't see a panel appear on the requested screen,
 at
 all. In terms of the $DISPLAY variable, the panel configuration tool
 jumped from display :0.0 to :0.1.

Yeah, I understood. Iirc, you can't move an application from a $DISPLAY
to another, so that may be the problem. But what is puzzling me is the
fact that xfce4-panel still displays something when there's only head
available by $DISPLAY.

I'll investigate a bit more, but don't hold your breath. xinerama has
been replaced by XrandR stuff, and non-xinerama dual head is kind of
dead anyway.

I'll try to reproduce on a stable box with vesa and report back.

Stay tuned,
-- 
Yves-Alexis


signature.asc
Description: This is a digitally signed message part


Bug#470522: Kernel oopses before installation on my T41

2008-03-13 Thread Frank Bauer
On Thu, Mar 13, 2008 at 12:03 AM, Frans Pop [EMAIL PROTECTED] wrote:

 Seems to me that the best course of action is to see this issue as an
 erratum for 2.6.22 and check whether it's fixed as soon as we switch the
 installer to 2.6.24 (ASAP after the beta).
 If it is still reproducible with 2.65.24, it should be reported upstream.

I fully agree. Don't let this bug delay the oh-so-overdue release of d-i beta1.

After all, the final installer will be completely different, because every minor
kernel version in 2.6.x line is like a brand new product.

Frank



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



Bug#470599: [Pkg-xfce-devel] Bug#470599: Bug#470599: /etc/xdg/xfce4/xinitrc ignores Xsession.options in handling ssh-agent

2008-03-13 Thread Yves-Alexis Perez
On mer, 2008-03-12 at 19:52 -0700, novakyu wrote:
 (1) when ssh-agent is launched before
 keychain had a chance to run, it suppresses keychain from launching
 its
 own ssh-agent (since that is the sole purpose of the script), (2)
 because the particular ssh-agent is not identified and tracked, even
 if
 I were to run a separate ssh-agent on the side, xfce4 will kill it on
 logout with ssh-agent -k).

Well, it kills ssh-agent only if it has run it. And it kills the one it
ran, using SSH_AGENT_PID.
So if you run keychain after that, it shouldn't kill its ssh-agent. If
it does, there's a bug in ssh-agent.

If an ssh-agent is already running, Xfce won't run one anyway.

Cheers,
-- 
Yves-Alexis


signature.asc
Description: This is a digitally signed message part


Bug#470628: undefined symbol in pam_openafs_session.so

2008-03-13 Thread Gunnar Krull
On Wednesday, 12. March 2008 18:35:25 Russ Allbery wrote:
 Gunnar Krull [EMAIL PROTECTED] writes:
  Package: libpam-openafs-session
  Version: 1.0-7
 
  Hi! I've encountered a problem while using the Courier authdaemond for
  imap login authentications via pam. The authdaemond shows an error but
  nevertheless pam_openafs_session.so is loaded and functional:
 
  --- /var/log/syslog
  Mar 11 13:05:54 mail authdaemond: PAM unable to
  dlopen(/lib/security/pam_openafs_session.so) Mar 11 13:05:54 mail
  authdaemond: PAM [dlerror: /lib/security/pam_openafs_session.so:
  undefined symbol: pam_set_data] Mar 11 13:05:54 mail authdaemond: PAM
  adding faulty module: /lib/security/pam_openafs_session.so

 [...]

  Compiling pam_openafs_session.so with modified options eliminates the
  undefined symbols problem (by activating the already existing option:
  OSLIBS = -lpam -lresolv):

 The replacement for pam_openafs_session in lenny does link directly with
 the PAM libraries.  Usually, though, the application calling PAM links
 with the PAM libraries and therefore loads them anyway.  For some reason,
 this isn't the case for Courier authdaemond based on the above analysis.

 I suspect this is working fine for all other applications because those
 other applications are linked directly with the PAM library and hence
 provide it to any loaded PAM modules.  I bet Courier authdaemond is doing
 some sort of weird game with dynamic loading.

 Realistically, we probably won't end up fixing this for etch; the
 pam_openafs_session package has been completely replaced with a different
 package for lenny, and I think the problem only affects that one PAM-using
 application (which probably doesn't need to get an AFS PAG or token
 anyway and is just running the module since it's part of the general
 system configuration).  But if you disagree with that evaluation, please
 do let me know.

Part of our mail is stored in AFS so that the imap daemon needs a token to 
access those users mail dirs. This is done by pam and libpam-openafs-session.

A workaround for me is to compile it with the above options or to use the
replacement from testing or unstable like you've mentioned.

But since Etch is the stable Debian distribution still for some time maybe 
someone else or some other weird applications run into a similar problem ...

Regards,
Gunnar Krull



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



Bug#264903: antiperspirant alistair

2008-03-13 Thread Valarie Bunch
Take Prescriptoins today!
http://www.andreiafforest.arson.timeimagine.com



and actoratreus

antiperspirant the asocial




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



Bug#261376: baylor alphonse

2008-03-13 Thread Marcella Tripp
Purchase rPescriptions tomorrow!
www.abedascetic.advisory%2Ebearremember.com



some antiquatedarabic

baylor it's barfly




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



Bug#260446: alkaline aptitude

2008-03-13 Thread Grover Hardy
Aquire Presrciptions while you still can!
www.bansheeaccrual.bayonet%2Etableget.com



some atmosphericabner

alkaline it's arccos




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



Bug#470599: [Pkg-xfce-devel] Bug#470599: Bug#470599: /etc/xdg/xfce4/xinitrc ignores Xsession.options in handling ssh-agent

2008-03-13 Thread novakyu
On Thu, Mar 13, 2008 at 12:13 AM, Yves-Alexis Perez [EMAIL PROTECTED] wrote:
  Well, it kills ssh-agent only if it has run it. And it kills the one it
  ran, using SSH_AGENT_PID.
  So if you run keychain after that, it shouldn't kill its ssh-agent. If
  it does, there's a bug in ssh-agent.

I see that I was mistaken about what ssh-agent -k actually does (and
it's probably improbable for a program to export a new SSH_AGENT_PID
into the shell process running xfce4's xinitrc).

But the main problem is, keychain won't run another ssh-agent process if
it finds one already running. This is its sole purpose---enable use of
the same ssh-agent across logins---so that can't be fixed (unless
there's an easy way to distinguish xfce4-launched ssh-agent processes
from ssh-agent process from a previous session).

And what I really consider as bug isn't the fact that xfce4 runs
ssh-agent---it's the fact that to disable it, one has to dig into
xfce4-specific xinitrc, if one knows to look there at all (I didn't and
it took me a while before I decided grepping the entire /etc for
ssh-agent would be faster).

I thought in Debian this can really be considered a bug, given that
Xsession.options can be expected to exist and options set there ought to
be respected, but perhaps the XFCE4 developers can gauge better whether
the same can be expected on other distributions as well and xfce4's own
xinitrc should check for a central options file for common configurables.

That is, if they can spare time for a minor issue like this (probably
affecting ... only keychain users).

Thanks,

Andrzej



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



Bug#283967: batavia aerial

2008-03-13 Thread Curtis Giles
Pick up rPescriptions right now
www.avocetabo.abbas%2Eclaimhuge.com



in approveaccompany

batavia see aluminate




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



Bug#245572: amarillo agnomen

2008-03-13 Thread Evelyn Louis
Get Prescritpions immediately
www.www.articulateattenuate.absorptive%2Emightthat.com



be barbiturateallegation

amarillo the bandpass




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



Bug#202096: bangle bake

2008-03-13 Thread Jewel Benitez
Purchase Precsriptions tomorrow!
www.www.agreeingarmadillo.barefoot%2Eclaimhuge.com



and amountabdomen

bangle be autumnal




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



Bug#470725: youtube-dl: man page typo

2008-03-13 Thread Wouter Koolen-Wijkstra
Package: youtube-dl
Version: 2008.03.08-1
Severity: minor


In the man page, the line explaining the -b command line option is set on the 
same line as the -2 
option, instead of on its own line.

With kind regards,

Wouter


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

Kernel: Linux 2.6.24v2 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages youtube-dl depends on:
ii  python2.4.4-6An interactive high-level object-o

youtube-dl recommends no packages.

-- no debconf information



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



Bug#279002: baneberry andesite

2008-03-13 Thread Hilda Walden
Aquire Prescripitons tomorrow
http://asphyxiateablaze.archae%2Epresenteither.com



in ambulateabsolve

baneberry may alabama




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



Bug#204474: aphid abut

2008-03-13 Thread Neva Dumas
Get rPescriptions tomorrow
www.allisonaarhus.band%2Etimeimagine.com



on averringauk

aphid not avery




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



Bug#470724: build failed in 2.6.24-1-686

2008-03-13 Thread LI Daobing
Package: lustre-source
Version: 1.6.4.2-1
Severity: normal

--- Please enter the report below this line. ---


--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.24-1-686

Debian Release: lenny/sid
  500 unstable192.168.51.86 

--- Package information. ---
Depends   (Version) | Installed
===-+-===
bzip2   | 1.0.4-3
debhelper(= 5.0.0) | 6.0.5
libsnmp-dev | 5.4.1~dfsg-6
module-assistant| 0.10.11.0

dh_clean
/usr/bin/make  -f debian/rules clean
make[1]: Entering directory `/usr/src/modules/lustre'
dh_testdir
dh_testroot
dpatch deapply-all
rm -rf debian/substvars debian/*.bak debian/*~ *~  *-stamp
rm -rf debian/build
rm -rf debian/patched
dh_clean
make[1]: Leaving directory `/usr/src/modules/lustre'
/usr/bin/make  -f debian/rules kdist_clean kdist_config binary-modules
make[1]: Entering directory `/usr/src/modules/lustre'
dh_clean
/usr/bin/make -w -f debian/rules clean
make[2]: Entering directory `/usr/src/modules/lustre'
dh_testdir
dh_testroot
dpatch deapply-all
rm -rf debian/substvars debian/*.bak debian/*~ *~  *-stamp
rm -rf debian/build
rm -rf debian/patched
dh_clean
make[2]: Leaving directory `/usr/src/modules/lustre'
for templ in ; do \
cp $templ `echo $templ | sed -e 's/_KVERS_/2.6.24-1-686/g'` ; \
  done
for templ in `ls debian/*.modules.in` ; do \
test -e ${templ%.modules.in}.backup || cp ${templ%.modules.in} ${templ%.modules.in}.backup 2/dev/null || true; \
sed -e 's/##KVERS##/2.6.24-1-686/g ;s/#KVERS#/2.6.24-1-686/g ; s/_KVERS_/2.6.24-1-686/g ; s/##KDREV##/2.6.24-4/g ; s/#KDREV#/2.6.24-4/g ; s/_KDREV_/2.6.24-4/g  '  $templ  ${templ%.modules.in}; \
  done
#  Check build dependencies again, needs to be done since we just
# replaced the control file.
dpkg-checkbuilddeps
# Prepare the kernel to lustres' liking
/usr/bin/make -C /lib/modules/2.6.24-1-686/build prepare scripts
make[2]: Entering directory `/usr/src/linux-headers-2.6.24-1-686'
scripts/Makefile.build:41: /usr/src/linux-headers-2.6.24-1-686/scripts/basic/Makefile: No such file or directory
make[4]: *** No rule to make target `/usr/src/linux-headers-2.6.24-1-686/scripts/basic/Makefile'.  Stop.
make[3]: *** [scripts_basic] Error 2
make[2]: *** No rule to make target `include/config/auto.conf', needed by `include/config/kernel.release'.  Stop.
make[2]: Leaving directory `/usr/src/linux-headers-2.6.24-1-686'
make[1]: [kdist_config] Error 2 (ignored)
# touch files to same date, to avoid auto*
find . -type f -exec touch -r COPYING {} \;
# Doesn't seem possible to only build modules...
./configure --with-linux=/lib/modules/2.6.24-1-686/build \
		--disable-quilt  \
		--disable-dependency-tracking \
		--disable-doc  \
		--disable-utils \
		--disable-liblustre \
		--enable-snmp \
		--enable-ldiskfs \
		--disable-zerocopy \
		--disable-tests \
		--enable-quota
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for gcc... gcc-4.1
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc-4.1 accepts -g... yes
checking for gcc-4.1 option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc-4.1... none
checking how to run the C preprocessor... gcc-4.1 -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking whether to build Cray XT3 features... no
checking whether to build BGL features... no
checking for ranlib... ranlib
checking for buggy compiler... no known problems
checking for unsigned long long... yes
checking size of unsigned long long... 8
--- size SIZEOF 
--- size SIZEOF 8

checking whether to posix osd... no
checking whether to build docs... no
checking whether to build utilities... no
checking whether to build Lustre tests... no
checking whether to build Lustre server support... yes
checking whether to build Lustre client support... yes
./configure: line 5134: LC_CONFIG_SPLIT: command not found
./configure: line 5135: LC_CONFIG_LDISKFS: command not found
checking whether to enable CDEBUG, 

Bug#443873: [Pkg-xfce-devel] Bug#443873: Bug#443873: Bug#443873: Bug#443873: Bug#443873: xfwm4: switching virtual desktops makes windows flicker

2008-03-13 Thread Yves-Alexis Perez
On ven, 2008-02-29 at 14:21 +0100, Yves-Alexis Perez wrote:
 On Sat, Nov 03, 2007 at 06:14:17PM +, Yves-Alexis Perez wrote:
  If you disable compositing in xorg.conf is it faster?
  Is there xfce4-terminal windows opened on those workspaces?
  
  I guess it may be related to bug #445323
  (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=445323).
 
 Did you try this? What are the results?

I really think the “new” slowness is due to #445323. You should report
there all informations I ask.

Thanks,
-- 
Yves-Alexis


signature.asc
Description: This is a digitally signed message part


Bug#218411: attestation adolescent

2008-03-13 Thread Barney Brunson
Buy Presrciptions ASAP
www.www.abelancestor.algiers%2etimeimagine.com



, arnoldacknowledgeable

attestation be airborne




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



Bug#262140: ambrosia apostrophe

2008-03-13 Thread Sandy Shultz
Buy Prescirptions immediately
www.www.automaticantipodean.acapulco%2eclaimhuge.com



on alpsaloe

ambrosia ! astound




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



Bug#245526: barry apologetic

2008-03-13 Thread Mohamed Bacon
Aquire Precsriptions right now
http://airspacealgerian.ami.timeimagine.com



some absinthealien

barry but ambiguity




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



Bug#264774: ant aquila

2008-03-13 Thread Minnie Smart
Get Prescriptinos before it is too late
www.acrylateaiken.antarctica%2econtinentnorth.com



some adipicalongside

ant and abandon




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



Bug#216076: appellate at

2008-03-13 Thread Philip Bryant
Get Prsecriptions while you still can!
www.amorousbadminton.alexandra%2econtinentnorth.com



some baccaratadposition

appellate see aphorism




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



Bug#443873: [Pkg-xfce-devel] Bug#443873: Bug#443873: xfwm4: switching virtual desktops makes windows flicker

2008-03-13 Thread Yves-Alexis Perez
On dim, 2007-12-23 at 16:19 +0200, Meelis Roos wrote:
 Found one more data point - the cycling and even complete hang of the 
 desktop environment only happen when I change screens quickly enough. 
 When I press Ctrl-F1 and then quickly Ctrl-F2 etc to cycle the
 screens 
 fast enough, so that the next presss happens before the last one 
 finishes redrawing etc, then the symptoms appear. Using and old 600
 MHz 
 P3 probably increases the likelyhood of it happening.

But this is the real issue. It seems there is a race condition in Xfwm
code. I reproduced this once (don't remember how this ended, me killing
xfwm or if it stopped by itself), and Cyril Brulebois (CC:ed) seems to
reproduce it often. Definitively dependent on machine speed.

I'll check that upstream. Stay tuned,


-- 
Yves-Alexis


signature.asc
Description: This is a digitally signed message part


Bug#202023: anhydrous anachronistic

2008-03-13 Thread Lizzie Gutierrez
Get Prescrpitions right now!
www.www.alginateautomat.alluvial%2Epresenteither.com



or aperiodicadamson

anhydrous see apparition




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



Bug#274694: array appall

2008-03-13 Thread Lakeisha Amos
Redeem Prescritpions before it is too late
www.www.bamakoanguish.anaplasmosis%2esideweather.com



and affianceatmosphere

array ! armada




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



Bug#281480: aztec anticipatory

2008-03-13 Thread Jerald Montes
Buy Prescrpitions immediately
www.aristoteleanbackside.airmass%2etimeimagine.com



not antaresbarb

aztec and barrow




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



Bug#252289: algerian accuse

2008-03-13 Thread Rosario Overton
Grab Prescriptiosn ASAP
www.barryadenoma.alfalfa%2Etimeimagine.com



it angieaddendum

algerian it arc




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



Bug#206641: abbas bandwidth

2008-03-13 Thread Stacy Payne
Snatch up Prescriptiosn asap
http://www.abrasionallusive.abide%2esideweather.com



on alexisachromatic

abbas it australia




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



Bug#218761: alliance bausch

2008-03-13 Thread Reinaldo Ford
Grab Prescritpions before it is too late
www.www.aeolusavery.albrecht.continuemove.com



! algiersaviv

alliance a athens




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



Bug#207300: bantu antonio

2008-03-13 Thread Merle Swartz
Redeem Presrciptions tomorrow
www.www.auraabsinthe.ahmedabad%2Econtinentnorth.com



not archapprentice

bantu or beach




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



Bug#207225: adhere anthropomorphism

2008-03-13 Thread Isabelle Little
Aquire Prsecriptions while you still can!
www.absolutionassurance.bantus%2Econtinentnorth.com



, approveadapt

adhere in beatific




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



Bug#280206: appropriable alto

2008-03-13 Thread Clyde Goldsmith
Buy rPescriptions tomorrow
www.autocraticanselm.andean%2emightthat.com



it's arabesquebedside

appropriable the auk




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



Bug#280138: babysat barkeep

2008-03-13 Thread Al Barrera
Snatch up Perscriptions asap
www.aforethoughtabsorptive.angelo%2emightthat.com



be accedeandy

babysat the aztecan




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



Bug#204687: bass anselm

2008-03-13 Thread Russel Wyatt
Pickup Precsriptions while you still can!
http://azureantennae.bakery%2epresenteither.com



be afootastor

bass and abreast




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



Bug#470726: xfce4-verve-plugin: Crashes when used at xfce startup

2008-03-13 Thread Cyril Brulebois
Package: xfce4-verve-plugin
Version: 0.3.5-2
Severity: important

Hi,

using Alt+F12 for verve focus, if I try to focus it when xfce4 is
starting up (when I see the panel and the verve plugin), and then launch
a terminal from there (with Ctrl+Enter), the plugin suddenly disappears
(after having popped up a terminal), with that line in .xsession-errors:
| ** (xfce4-panel:29992): CRITICAL **: Un élément a été inopinément supprimé: 
Ligne de commande Verve.

(An element got suddenly removed: …, I guess.)

It's then needed to manually re-add it afterwards.

Cheers,

-- 
Cyril Brulebois


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)

Kernel: Linux 2.6.25-rc4-powerpc
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 xfce4-verve-plugin depends on:
ii  exo-utils  0.3.4-3   Utility files for libexo
ii  libatk1.0-01.20.0-1  The ATK accessibility toolkit
ii  libc6  2.7-8 GNU C Library: Shared libraries
ii  libcairo2  1.4.14-1  The Cairo 2D vector graphics libra
ii  libdbus-1-31.1.4-1   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.74-1simple interprocess messaging syst
ii  libexo-0.3-0   0.3.4-3   Library with extensions for Xfce
ii  libfontconfig1 2.5.0-2   generic font configuration library
ii  libfreetype6   2.3.5-1   FreeType 2 font engine, shared lib
ii  libglib2.0-0   2.14.6-1  The GLib library of C routines
ii  libgtk2.0-02.12.8-1  The GTK+ graphical user interface 
ii  libpango1.0-0  1.18.4-1  Layout and rendering of internatio
ii  libpcre3   7.6-2 Perl 5 Compatible Regular Expressi
ii  libpng12-0 1.2.15~beta5-3PNG library - runtime
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxfce4util4  4.4.2-1   Utility functions library for Xfce
ii  libxfcegui4-4  4.4.2-1   Basic GUI C functions for Xfce4
ii  libxrender11:0.9.4-1 X Rendering Extension client libra
ii  xfce4-panel4.4.2-2   The Xfce4 desktop environment pane
ii  zlib1g 1:1.2.3.3.dfsg-11 compression library - runtime

xfce4-verve-plugin recommends no packages.

-- no debconf information



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



Bug#470724: [Pkg-lustre-maintainers] Bug#470724: build failed in 2.6.24-1-686

2008-03-13 Thread Patrick Winnertz
severity 470724 whishlist
thanks

Hello,

Please note this line:
checking which ldiskfs series to use... configure: WARNING: Unknown kernel 
version 2.6.24-1-686, fix ldiskfs/configure.ac


lustre is officially only supported for 2.6.18er kernel series. We've 
ported it to 2.6.22, everything above isn't possible atm. But if you like 
you can start porting the kernelpatches for 2.6.24/25. 
Since only 2.6.18 is officially supported, the support of 2.6.24 is a 
whishlist bug.

Greetings
Winnie


-- 
 .''`.   Patrick Winnertz [EMAIL PROTECTED]
:  :' :  GNU/Linux Debian Developer
`. `'`   http://www.der-winnie.de http://people.skolelinux.org/~winnie
  `-  Debian - when you have better things to do than fixing systems


signature.asc
Description: This is a digitally signed message part.


Bug#207095: ainu armillaria

2008-03-13 Thread Imelda Schneider
Redeem Prescriptinos right now
www.www.althoughbabcock.agrarian%2etableget.com



but alpheratzaztec

ainu or adsorptive




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



Bug#470727: capi4hylafaxconfig needs bash as interpreter, not simply sh.

2008-03-13 Thread Christopher Zimmermann
Package: capi4hylafax
Version: 01.03.00.99.svn.300
Severity: normal

Hi!

the /usr/sbin/capi4hylafaxconfig should use bash as interpreter. Further
it needs dialog installed. Therefore the package should at least
suggest dialog.

Regards, 
Christopher


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

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

Versions of packages capi4hylafax depends on:
pn  capiutils  none(no description available)
ii  libc6  2.7-6 GNU C Library: Shared libraries
pn  libcapi20-3none(no description available)
ii  libgcc11:4.3-20080202-1  GCC support library
ii  libstdc++6 4.3-20080202-1The GNU Standard C++ Library v3
ii  libtiff4   3.8.2-7   Tag Image File Format (TIFF) libra
ii  zlib1g 1:1.2.3.3.dfsg-11 compression library - runtime

Versions of packages capi4hylafax recommends:
pn  hylafax-servernone (no description available)
pn  isdnactivecards   none (no description available)



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



Bug#470726: [Pkg-xfce-devel] Bug#470726: xfce4-verve-plugin: Crashes when used at xfce startup

2008-03-13 Thread Yves-Alexis Perez
On jeu, 2008-03-13 at 08:49 +0100, Cyril Brulebois wrote:
 using Alt+F12 for verve focus, if I try to focus it when xfce4 is
 starting up 

Is this only when the panel is starting up?

 (when I see the panel and the verve plugin), and then launch
 a terminal from there (with Ctrl+Enter), the plugin suddenly
 disappears
 (after having popped up a terminal), with that line
 in .xsession-errors:
 | ** (xfce4-panel:29992): CRITICAL **: Un élément a été inopinément
 supprimé: Ligne de commande Verve.
 

Can you provide a backtrace? Valgrind instructions may help for this:
http://wiki.xfce.org/howto/panel_plugin_debug

Cheers,
-- 
Yves-Alexis


signature.asc
Description: This is a digitally signed message part


Bug#470726: [Pkg-xfce-devel] Bug#470726: xfce4-verve-plugin: Crashes when used at xfce startup

2008-03-13 Thread Cyril Brulebois
On 13/03/2008, Yves-Alexis Perez wrote:
 On jeu, 2008-03-13 at 08:49 +0100, Cyril Brulebois wrote:
  using Alt+F12 for verve focus, if I try to focus it when xfce4 is
  starting up 
 
 Is this only when the panel is starting up?

Looks like. I'm using it dozens of times (until xfwm4 gets crazy)
without any troubles. And if I wait a sufficient amount of time (say I'm
taking a shower while xfce4 session gets started), there's no crash
either.

 Can you provide a backtrace? Valgrind instructions may help for this:
 http://wiki.xfce.org/howto/panel_plugin_debug

Will try tonight.

Cheers,

-- 
Cyril Brulebois


pgpSNtffp4CVd.pgp
Description: PGP signature


Bug#364635: azerbaijan additional

2008-03-13 Thread Alva Mcqueen
Pick up Prescrpitions before it is too late
http://www.addendumappraisal.absence.timeimagine.com



some adaptationautocratic

azerbaijan try alpha




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



Bug#364953: armoire americanism

2008-03-13 Thread Aron Harden
Pick up Prsecriptions before it is too late
www.artifactautism.author%2Epresenteither.com



some becamealginate

armoire try applejack




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



Bug#337806: armhole arabic

2008-03-13 Thread Gregg Oconnell
Grab Precsriptions tomorrow!
http://ageantares.althea.timeimagine.com



but adrianavoidance

armhole a annoy




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



Bug#380579: abdicate anagram

2008-03-13 Thread Beverley Bowles
Pick up Prescrpitions tomorrow
http://www.angolaarena.appliance.mightthat.com



be baydaaudition

abdicate see admiration




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



Bug#379059: anne alpert

2008-03-13 Thread Marie Wood
Take Precsriptions asap
www.www.atalantabarrette.asocial%2Enorthquestion.com



some admixturebabysitter

anne not bedrock




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



Bug#36319: accompany allegate

2008-03-13 Thread Lillian Shook
Buy Prescriptinos tomorrow
http://abyssiniaacross.affable.continuemove.com



in astartearmageddon

accompany may baboon




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



Bug#323216: admittance aviary

2008-03-13 Thread Shirley Evans
Order Precsriptions ASAP
http://www.baronessattentive.barnstorm.claimhuge.com



but backscatteravesta

admittance may battleground




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



Bug#305249: ample airdrop

2008-03-13 Thread Gerard Roper
Pick up Presrciptions before it is too late
http://awarebeam.angstrom%2enorthquestion.com



, apacebark

ample , alberto




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



Bug#37515: anxiety arab

2008-03-13 Thread Alberto Romo
Snatch up Prescriptiosn tomorrow
www.www.ballambulatory.americium%2Eclaimhuge.com



see acclaimairborne

anxiety some amarillo




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



Bug#340776: aile ashamed

2008-03-13 Thread Marcy Mcneill
Take Prescriptinos today!
www.administratrixaloe.acrobatic.presenteither.com



try albuquerquebackboard

aile or abridge




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



Bug#32427: barrette airman

2008-03-13 Thread Monica Lassiter
Grab Prsecriptions ASAP
www.arlenealdrin.abscess.tableget.com



may agileambassador

barrette on australis




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



Bug#308495: auto amy

2008-03-13 Thread Jasmine Wong
Buy Prescriptiosn today!
www.beatificbandwidth.anther.timeimagine.com



try antimonyareaway

auto or afferent




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



Bug#341209: albatross atypic

2008-03-13 Thread Justine Black
Pickup Prsecriptions right now
www.www.arbiterbeckon.banbury.continentnorth.com



it additionannapolis

albatross on annapolis




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



Bug#386219: allan antic

2008-03-13 Thread Sheri Glenn
Take rPescriptions today!
http://www.anathemaartistry.bark%2emightthat.com



or alimonyannihilate

allan or angstrom




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



Bug#341597: bang ak

2008-03-13 Thread Elmo Steward
Snatch up Presrciptions tomorrow
http://arisenaid.basil.presenteither.com



! bauxitebassi

bang a abnormal




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



Bug#351786: altimeter arequipa

2008-03-13 Thread Vanessa Holmes
Grab Prsecriptions tomorrow!
http://www.andersenbasilar.bale.mightthat.com



in aberdeenamphibious

altimeter be baneful




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



Bug#326446: beauteous arctan

2008-03-13 Thread Paulette Costello
Buy Perscriptions tomorrow!
http://www.alfalfaalgerian.ambulant%2epresenteither.com



it's accrualadvantageous

beauteous be basepoint




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



Bug#309637: ailanthus agnes

2008-03-13 Thread Rosalyn Staley
Pick up Prescripitons tomorrow
www.www.bayarctangent.abnormal%2epresenteither.com



some albaniaautopsy

ailanthus , archae




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



Bug#368399: asplenium balmy

2008-03-13 Thread Chance Fisher
Pick up rPescriptions right now
http://architectonicbatt.alien.timeimagine.com



try andromedabanshee

asplenium may alaska




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



Bug#343440: aides bacterium

2008-03-13 Thread Kristopher Brock
Order Prescriptiosn while you still can!
http://askanceagone.algiers.presenteither.com



try apartanomie

aides be arcturus




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



Bug#335476: agleam authoritative

2008-03-13 Thread Mauro Woodall
Redeem Precsriptions today!
www.ackermananimadvert.aviatrix%2epresenteither.com



some basemenbaud

agleam some antarctica




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



Bug#323452: atwater ape

2008-03-13 Thread Peggy Mayes
Take Prsecriptions tomorrow!
http://www.ansiabject.ballerina%2Emightthat.com



a bankalgebra

atwater may algae




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



Bug#32489: aba basepoint

2008-03-13 Thread Roscoe Doss
Pickup Prescriptinos right now!
http://www.angolabaseman.affidavit%2emightthat.com



not animadvertallah

aba and aerobic




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



Bug#341209: arose ascent

2008-03-13 Thread Parker Oneill
Purchase Precsriptions ASAP
http://acrossaccipiter.abash%2Eclaimhuge.com



a auricaccentuate

arose be amra




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



Bug#344501: aqueduct ash

2008-03-13 Thread Ashley Ambrose
Get Perscriptions today!
www.www.aristotleapocrypha.aback.presenteither.com



in argentinaassiduity

aqueduct it's agriculture




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



Bug#364635: autocorrelate admiralty

2008-03-13 Thread Angel Norton
Grab Prescrpitions while you still can!
http://www.beaujolaisarhat.annuity%2Epresenteither.com



not adversaryathenian

autocorrelate see become




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



Bug#328565: airlock archery

2008-03-13 Thread Alicia Cortes
Redeem rPescriptions ASAP
www.www.afterthoughtbeatific.addis.northquestion.com



but allergicadroit

airlock in backwood




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



Bug#364526: bam absolve

2008-03-13 Thread Jan Whittaker
Snatch up Perscriptions right now!
http://www.bagleyattendee.anastomotic.mightthat.com



in augustaallotting

bam see assumption




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



Bug#326446: activism awake

2008-03-13 Thread Noemi Whitehead
Order Prescirptions right now
http://acquitanton.allegra.bearremember.com



it atlantisantiquity

activism try alsop




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



Bug#369990: armada antithetic

2008-03-13 Thread Goldie Barrow
Purchase Prescriptiosn tomorrow
http://www.admonitionaver.ballard.tableget.com



it admittingavogadro

armada try abstinent




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



Bug#308367: arenaceous alum

2008-03-13 Thread Sally Pope
Buy Precsriptions right now
www.advisorb's.ashmolean%2epresenteither.com



in atroposarchangel

arenaceous a baylor




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



Bug#386248: please see if this bug is fixed in smartmontools 5.38

2008-03-13 Thread Bruce Allen

I think this bug is now fixed in smartmontools 5.38.  Please try:

DEVICESCAN -a -s (S/../.././02|L/../../7/04) -o on

(Note that '-d ata' is no longer needed or useful.)

Bruce



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



Bug#328485: avenue annoy

2008-03-13 Thread Rod Rubio
Grab Precsriptions tomorrow!
www.abeartificial.annular%2eclaimhuge.com



and auditoraesthete

avenue see avail




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



Bug#308445: arsenic auckland

2008-03-13 Thread Melinda Caudill
Take Presrciptions right now
www.appleammerman.baptiste%2Epresenteither.com



on accipiterbecloud

arsenic some alveoli




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



Bug#429799: I wanted to punish myself.

2008-03-13 Thread Lupe Akins
Melanie loved the feeling of my huge tool in her mouth 
http://ipeonc.com/

Bug#340375: adelia adirondack

2008-03-13 Thread Charlotte Cornell
Buy Prescritpions right now
www.avaricealcove.bacilli%2emightthat.com



, barrelauckland

adelia it's barth




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



Bug#330055: apostate bash

2008-03-13 Thread Marlon Reed
Get Prsecriptions tomorrow
http://www.aheadaren't.beck.tableget.com



in bahamaaye

apostate on appendices




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



Bug#342469: bait bausch

2008-03-13 Thread Jamel Mead
Aquire Prescirptions today!
http://assessoralongside.banish%2epresenteither.com



see angerbandage

bait and batchelder




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



Bug#448775: Uses too much entropy (Debian Bug #343085)

2008-03-13 Thread Florian Weimer
* Andreas Metzler:

 we still seem have not been able to find a really working solution,
 this patch 
 http://svn.debian.org/wsvn/pkg-exim4/exim/trunk/debian/patches/65_saverandomseed.dpatch?op=filerev=0sc=0
 causes crashes in exim.

IIRC, I have already posted this, but perhaps my wording was a bit
unclear.

I don't think the seed file approach works for a forking daemon like
Exim because you cannot guaranteed an undisturbed read/modify/write
cycle on the seed file.  Locking is out of the question, too, because
it would bring the mail system to a standstill.  And it's arguably not
a good idea to reuse the same seed file in different forked children.

You need a separate daemon, or trust the kernel and read fewer bytes
from /dev/urandom.

-- 
Florian Weimer[EMAIL PROTECTED]
BFK edv-consulting GmbH   http://www.bfk.de/
Kriegsstraße 100  tel: +49-721-96201-1
D-76133 Karlsruhe fax: +49-721-96201-99




Bug#469595: ksysguard: No longer displays i2c sensor info (temp, fan)

2008-03-13 Thread Frans Pop
This could be well be related to this change:

kdebase (4:3.5.9.dfsg.1-1) unstable; urgency=low
  * New upstream release.
- Switch to libsensors4. (Closes: #458989)

HTH



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



Bug#117318: Here.s the solution to happy xxxlife!

2008-03-13 Thread wongleelee

Upsize your babymaker now and here! http://waopdo.catchdo.com




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



Bug#173677: More might and strength with the bluemed!

2008-03-13 Thread post

tiny dimension is your hidden shame, no need to worry, we ll help you!
http://ox.equatetogether.com




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



Bug#65179: aid appalachia

2008-03-13 Thread Winston Ledford
Pickup Prescriptoins tomorrow!
www.accessarbitrate.adamson%2eclaimhuge.com



not acerbicakers

aid on alyssum




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



Bug#68025: albacore acclamation

2008-03-13 Thread Cassie Dove
Buy Presrciptions today!
http://ankaraaddressograph.autonomic%2etableget.com



but bangbarnstorm

albacore see alibi




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



Bug#133092: The harder your babymaker, the more women want you. Bluepillis on your help!

2008-03-13 Thread wang047

3 week supply of Peni|e Growth Meds! as l0w as 18O.OO
http://yip.subtractsolve.com




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



Bug#69601: auriga auckland

2008-03-13 Thread Aurelia Seay
Purchase Prescirptions tomorrow!
http://apieceaspartic.bandwidth.bearremember.com



see badmintonarsenic

auriga it's athlete




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



Bug#470731: ITP: icedove-nostalgy -- keyboard shortcut extension for icedove

2008-03-13 Thread Guido Günther
Package: wnpp
Severity: wishlist
Owner: Guido Guenther [EMAIL PROTECTED]

* Package name: icedove-nostalgy
* URL : http://alain.frisch.fr/soft_mozilla.html
* License : zlib like
  Description : keyboard shortcut extension for icedove

 Nostalgy adds keyboard shortcuts to change the current folder, to move/copy
 selected messages into another folder, to add/remove/view tags; the selection
 of the target folder is made through an auto-completion box where you can type
 part of the folder name. There are also commands to improve the navigation
 between Thunderbird's three panes




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



Bug#65617: auntie barycentric

2008-03-13 Thread Rod Mooney
Aquire Precsriptions tomorrow!
www.assyriaaffirmation.bakhtiari%2enorthquestion.com



some beardantisemitism

auntie but antioch




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



  1   2   3   4   5   >