Bug#1029683: python3-renderpm: renderPM can't set standard fonts

2023-01-26 Thread Christophe Monniez
Package: python3-renderpm
Version: 3.6.12-1
Severity: important
X-Debbugs-Cc: christo...@monniez.eu

Dear Maintainer,


Since the `gsfonts` package was replaced by `fonts-urw-base35`,
`python3-renderpm` reportlab is not able to draw any of the 14 standard fonts 
anymore.

The reportlab documentation states that those fonts only needs to be
referenced by names.

For example, this simple python3 script should work:

```
from reportlab.graphics.renderPM import PMCanvas
c = PMCanvas(10,10)
c.setFont('Times-Roman', 32)
```

But leads to this error on Debian Bookworm:
```
Warn: Can't find .pfb for face 'Times-Roman'
Traceback (most recent call last):
  File "/tmp/canvas.py", line 4, in 
c.setFont('Times-Roman', 32)
  File "/usr/lib/python3/dist-packages/reportlab/graphics/renderPM.py", line 
405, in setFont
_setFont(self._gs,fontName,fontSize)
  File "/usr/lib/python3/dist-packages/reportlab/graphics/utils.py", line 42, 
in setFont
_errorDump(fontName,fontSize)
  File "/usr/lib/python3/dist-packages/reportlab/graphics/utils.py", line 29, 
in _errorDump
rl_exec(code,dict(RenderPMError=RenderPMError))
  File "", line 1, in 
reportlab.graphics.utils.RenderPMError: Error in setFont('Times-Roman',32) 
missing the T1 files?
```

Altough the `fonts-urw-base35` is properly installed.

This applies to any of the 14 standard fonts:
Courier, Courier-Bold, Courier-BoldOblique, Courier-Oblique, Helvetica,
Helvetica-Bold, Helvetica-BoldOblique, Helvetica-Oblique, Symbol,
Times-Bold, Times-BoldItalic, Times-Italic, Times-Roman, ZapfDingbats

The above script works on Bullseye when the `gsfonts` package is
installed, it also works if the `reportlab==3.6.12` package is installed
via `pip`.

It seems that when the `gsfonts` are installed, the file `n021003l.pfb`
is used for `Times-Roman`. On the other hand, without the `gsfonts, when
using the upstream pip package, the file `reportlab/fonts/_er_.pfb`
is used. I saw that the `fonts` directory from upstream is completely
removed in the Debian package.

I think that it should work out of the box as it was when `gsfonts` were
available and as stated in the upstream documentation. Either the
`fonts` directory should not be removed from the package, or the package
should include the `gsfonts` pfb files for the 14 standard fonts, or the
package should be patched to work with the `fonts-urw-base35` provided
files.

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

Kernel: Linux 6.1.0-1-amd64 (SMP w/2 CPU threads; PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US:en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages python3-renderpm depends on:
ii  fonts-urw-base35  20200910-6
ii  libc6 2.36-8
ii  libfreetype6  2.12.1+dfsg-4
ii  python3   3.10.6-3+b1

python3-renderpm recommends no packages.

python3-renderpm suggests no packages.

-- no debconf information

Thanks



Bug#694368: libfuzzy{2,-dev}: missing Breaks+Replaces: ssdeep ( 2.6)

2012-12-06 Thread Christophe Monniez
Hi Salvatore,

the fix was just uploaded.
Do we need a release excpetion for this to be accepeted ?

-- 
Christophe Monniez christophe.monn...@fccu.be


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



Bug#633789: xfce4-notifyd

2011-08-30 Thread Christophe Monniez
Hi,

I found (here: https://bugs.archlinux.org/task/24054) that installing
xfce4-notifyd could solve the problem.

I tryed and it seems to solve the problem too.


-- 
Christophe Monniez d-fe...@swing.be
www.d-fence.be - www.lnx4n6.be




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



Bug#637818: aimage: FTBFS with wrong check for libssl

2011-08-16 Thread Christophe Monniez
aimage was removed from Debian testing.
The upstream author stopped working on this tool.

So, unless someone else create a fork of the upstream, it will not
come back into Debian.


-- 
Christophe Monniez



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



Bug#631504: ntfs-3g: unusable for non-root users with or without setuid

2011-08-05 Thread Christophe Monniez
Tags: patch

Removing --with-fuse=external or replacing it with
--with-fuse=internal in the configuration part of the rules files
solves the problem.

Is there a reason to use the external fuse library instead of the
ntfs-3g internal one ?

-- 
Christophe Monniez christophe.monn...@fccu.be
--- rules.orig	1970-01-01 01:00:00.0 +0100
+++ rules	2011-08-05 08:41:57.0 +0200
@@ -0,0 +1,97 @@
+#!/usr/bin/make -f
+
+SHELL := sh -e
+
+DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
+NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
+MAKEFLAGS += -j$(NUMJOBS)
+endif
+
+upstream:
+	lynx -dump http://b.andre.pagesperso-orange.fr/changelog.html  debian/local/changelog
+
+%:
+	dh ${@} --with autotools_dev
+
+override_dh_auto_configure:
+	dh_auto_configure --	--host=$(DEB_HOST_GNU_TYPE) \
+--build=$(DEB_BUILD_GNU_TYPE) \
+--prefix=/usr \
+--exec-prefix=/ \
+--mandir=\$${prefix}/share/man \
+--enable-crypto \
+--enable-extras \
+--enable-posix-acls \
+--enable-xattr-mappings \
+--disable-ldconfig \
+--with-fuse=internal \
+CFLAGS=$(CFLAGS) \
+LDFLAGS=-Wl,-z,defs
+
+override_dh_auto_install:
+	dh_auto_install
+
+	# adding initramfs-tools integration
+	install -D -m 0755 debian/local/ntfs-3g.hook debian/ntfs-3g/usr/share/initramfs-tools/hooks/ntfs_3g
+	install -D -m 0755 debian/local/ntfs-3g.local-premount debian/ntfs-3g/usr/share/initramfs-tools/scripts/local-premount/ntfs_3g
+	install -D -m 0755 debian/local/ntfs-3g.local-bottom debian/ntfs-3g/usr/share/initramfs-tools/scripts/local-bottom/ntfs_3g
+
+	# removing unused files
+	rm -f debian/tmp/lib/*.la
+
+	# removing rpath
+	for _PROGRAM in \
+		bin/lowntfs-3g \
+		bin/ntfs-3g \
+		bin/ntfs-3g.probe \
+		bin/ntfs-3g.secaudit \
+		bin/ntfs-3g.usermap \
+		bin/ntfscat \
+		bin/ntfscluster \
+		bin/ntfscmp \
+		bin/ntfsck \
+		bin/ntfsdecrypt \
+		bin/ntfsdump_logfile \
+		bin/ntfsfix \
+		bin/ntfsinfo \
+		bin/ntfsls \
+		bin/ntfsmftalloc \
+		bin/ntfsmove \
+		bin/ntfstruncate \
+		bin/ntfswipe \
+		sbin/mkntfs \
+		sbin/ntfsclone \
+		sbin/ntfscp \
+		sbin/ntfslabel \
+		sbin/ntfsresize \
+		sbin/ntfsundelete; \
+	do \
+		chrpath --delete debian/tmp/$${_PROGRAM}; \
+	done
+
+override_dh_installchangelogs:
+	dh_installchangelogs debian/local/changelog
+
+override_dh_install:
+	dh_install --fail-missing
+
+override_dh_link:
+	rm -rf debian/ntfs-3g-dev/usr/share/doc
+
+	# correcting symlink target
+	dh_link -pntfs-3g-dev lib/$$(basename $$(readlink debian/tmp/usr/lib/libntfs-3g.so)) usr/lib/libntfs-3g.so
+
+	dh_link --remaining-packages
+
+override_dh_strip:
+	dh_strip --dbg-package=ntfs-3g-dbg


Bug#616402: afflib-tools: please return to shared libafflib linkage

2011-06-20 Thread Christophe Monniez
On Mon, Jun 20, 2011 at 12:35 AM, Aaron M. Ucko u...@debian.org wrote:
 found 616402 3.6.6-1.1
 thanks

 ow...@bugs.debian.org (Debian Bug Tracking System) writes:

 This bug was fixed in the latest version now in testing.

 As far as I can tell, that only addresses an unrelated issue (concerning
 libafflib.la), with afflib-tools still linking statically to libafflib:

 $ dpkg -s afflib-tools
 Package: afflib-tools
 Status: install ok installed
 Priority: optional
 Section: utils
 Installed-Size: 4748
 Maintainer: Debian Forensics forensics-de...@lists.alioth.debian.org
 Architecture: amd64
 Source: afflib
 Version: 3.6.6-1.1
 Depends: libc6 (= 2.7), libcurl3 (= 7.16.2-1), libexpat1 (= 1.95.8),
 libfuse2 (= 2.8.1), libgcc1 (= 1:4.1.1), libssl1.0.0 (= 1.0.0),
 libstdc++6 (= 4.2.1), zlib1g (= 1:1.1.4)
 Description: support for Advanced Forensics format (utilities)
  libafflib is a library for reading and writing the Advanced Forensics format
  (AFF), an extensible open format for the storage of disk images and related
  forensic metadata.
  .
  This package contains additional utilities.
 Homepage: http://www.afflib.org/
 $ ldd /usr/bin/affcat | fgrep aff
 $

 Could you please take another look?

 Thanks!

 --
 Aaron M. Ucko, KB1CJC (amu at alum.mit.edu, ucko at debian.org)
 http://www.mit.edu/~amu/ | http://stuff.mit.edu/cgi/finger/?a...@monk.mit.edu



 ___
 forensics-devel mailing list
 forensics-de...@lists.alioth.debian.org
 http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/forensics-devel


Oops, that's true. I did a mistake, the package in our git reposiroty
on alioth is fixed, not the one in testing.
Better to wait for the alioth version.

-- 
Christophe Monniez



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



Bug#608114: ITP: undbx -- Tool to extract e-mails from MS Outlook Express .dbx files.

2010-12-27 Thread Christophe Monniez
Package: wnpp
Severity: wishlist
Owner: Debian Forensics forensics-de...@lists.alioth.debian.org


   Package name: undbx
Version: 0.20
Upstream Author: Avi Rozen avi.ro...@gmail.com
URL: http://code.google.com/p/undbx/
License: GPL-3
Description: Tool to extract e-mails from MS Outlook Express .dbx files.

undbx is a tool to extract e-mail messages from MS Outlook Express .dbx
files. Corrupted .dbx files can be parsed to try to recover messages
from it. It can also try undelete messages, not only from Deleted Items
but also fragments of deleted messages that were not overwritten.

-- 
Christophe Monniez christophe.monn...@fccu.be




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



Bug#590094: grokevt: Sample Configuration Needs Extra Subdirectory

2010-07-23 Thread Christophe Monniez
Fixed in git.

The example directory will be in
/usr/share/doc/grokevt/config-examples/example1



-- 
Christophe Monniez


Bug#574544: [afflib] contains files released under a non-free license

2010-04-02 Thread Christophe Monniez
On Fri, Apr 2, 2010 at 1:56 AM, Michael Prokop m...@debian.org wrote:


 Christophe, do you want me to upload it based on current git tree?

 thanks  regards,
 -mika-


I forgot pushing tags.

yes, you can upload, thank you Mika.

-- 
Christophe Monniez


Bug#575358: ITP: libpff -- Library and tools to read PFF, OFF, PAB, PST, OST files.

2010-03-25 Thread Christophe Monniez
Package: wnpp
Severity: wishlist
Owner: Debian Forensics forensics-de...@lists.alioth.debian.org


   Package name: libpff
Version: alpha-20100114
Upstream Author: Joachim Metz
URL: http://sourceforge.net/projects/libpff/
License: LGPL-3
Description: Library and tools to read PST, PFF, OFF and OST files.

Libpff is a library and a set of tools to read PST, PFF, OFF and OST files.
Those files are used essentially by Microsoft Outlook.
Libff is able to convert those files in universally readble text files
and extract binary attached files.
This tool is very useful for forensic purpose.

-- 
Christophe Monniez christophe.monn...@fccu.be




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



Bug#574544: [afflib] contains files released under a non-free license

2010-03-20 Thread Christophe Monniez
Here is the answer of the upstream author about this problem:

Those files are public domain, which means that they are distributed
without a license. This is the least restrictive way of distributing
content on the planet. You can do anything you want with that. 

You are correct, however. The last sentence is not in the spirit of the
PD. This verbiage is from NIST and it is clearly not legal. We will
remove it from the next release.


So, I will close this bug when packaging the next release (I will skip
the current 3.5.8).

Untill then, I'm not sure of what to do and what is the Debian way to
handle this problem.

-- 
Christophe Monniez christophe.monn...@fccu.be




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



Bug#574544: [afflib] contains files released under a non-free license

2010-03-19 Thread Christophe Monniez
Hi Cristian,

I didn't noticed this last sentence.
I will send this to the uptream author and see if he is able to give
more freedom.

If not, the only solution that I see is to remove afflib from Debian.

-- 
Christophe Monniez christophe.monn...@fccu.be




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



Bug#573262: ITP: aimage -- Tool to create forensic images in aff forensic file format.

2010-03-09 Thread Christophe Monniez
Package: wnpp
Severity: wishlist
Owner: Debian Forensics forensics-de...@lists.alioth.debian.org


   Package name: aimage
Version: 3.2.4
Upstream Author: Simson Garfinkel
URL: http://www.afflib.org/
License: BSD
Description: Tool to create forensic images in aff forensic file format.

aimage is an CLI imaging tool that can copy a medium in a forensic way.
It can create image files in raw or aff format.
Aff file format support compression and/or encryption.
The needed aff library is already packaged in Debian sid and squeeze.

-- 
Christophe Monniez christophe.monn...@fccu.be




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



Bug#551737: [parse-win32registry-utils] should depend on libparse-win32registry-perl

2009-10-20 Thread Christophe Monniez
Package: parse-win32registry-utils
Version: 0.50-1
Severity: important

The tools doens't work if you don't install the libparse-win32registry-perl 
package.
So libparse-win32registry-perl should be a mandatory dependency.
Thanks.

--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.30-2-amd64

Debian Release: squeeze/sid
  500 testing ftp.fr.debian.org 

--- Package information. ---
Depends   (Version) | Installed
===-+-===
perl| 5.10.1-5
libgtk2-perl| 1:1.221-4


Package's Recommends field is empty.

Package's Suggests field is empty.


-- 
Christophe Monniez christophe.monn...@fccu.be




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



Bug#551739: [libparse-win32registry-perl] New version

2009-10-20 Thread Christophe Monniez
Package: libparse-win32registry-perl
Version: 0.50-1
Severity: wishlist

A new version of the upstream is out :
http://search.cpan.org/dist/Parse-Win32Registry/

Thanks
-- 
Christophe Monniez christophe.monn...@fccu.be




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



Bug#551755: [parse-win32registry-utils]

2009-10-20 Thread Christophe Monniez
Package: parse-win32registry-utils
Version: 0.50-1
Severity: wishlist


This package installs a lot of packages often unused in a non graphical 
environment.
Like dbus, some icons, ttf fonts ...
But only two scripts in this package really need a graphical environment and 10 
does not need it.

It would be could to spit this package in two, one for graphical tools and one 
for non graphical tools.

Here is a summary of what needs a GUI and what doesn't need it :

GUI:
regview
regcompare

NO GUI:
regdump
regclassnames
regmultidiff
regtimeline
regscan
regstats
regexport
regtree
regsecurity
regfind


Thanks.



-- 
Christophe Monniez christophe.monn...@fccu.be




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



Bug#550931: [python-parted] should depend on python-decorator

2009-10-14 Thread Christophe Monniez
Package: python-parted
Version: 2.1.1-1
Severity: important

When python-decorator is not installed, it raise this error :
Python 2.5.4 (r254:67916, Sep 26 2009, 10:32:22) 
[GCC 4.3.4] on linux2
Type help, copyright, credits or license for more information.
 import parted
Traceback (most recent call last):
  File stdin, line 1, in module
  File /usr/lib/pymodules/python2.5/parted/__init__.py, line 43, in module
from alignment import Alignment
  File /usr/lib/pymodules/python2.5/parted/alignment.py, line 28, in module
from decorators import localeC
  File /usr/lib/pymodules/python2.5/parted/decorators.py, line 23, in module
from decorator import decorator
ImportError: No module named decorator

It's solved by apt-geting python-decorator.


--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.30-2-amd64

Debian Release: squeeze/sid
  500 testing ftp.fr.debian.org 
  500 testing ftp.belnet.be 

--- Package information. ---
Depends  (Version) | Installed
==-+-
python( 2.6) | 2.5.4-2
python(= 2.5) | 2.5.4-2
python-support (= 0.90.0) | 1.0.4
libc6   (= 2.2.5) | 2.9-25
libdevmapper1.02.1  (= 2:1.02.20) | 2:1.02.38-1
libparted1.8-12(= 1.8.8.git.2009.06.03-1) | 1.8.8.git.2009.07.19-5
libuuid1 (= 2.16) | 2.16.1-3


Package's Recommends field is empty.

Package's Suggests field is empty.



-- 
Christophe Monniez christophe.monn...@fccu.be




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



Bug#549638: afflib-tools and simh: error when trying to install together

2009-10-05 Thread Christophe Monniez
Le lundi 05 octobre 2009 à 13:46 +0200, Vince Mulhollon a écrit :
 On Mon, Oct 05, 2009 at 08:35:22AM +0200, Ralf Treinen wrote:
  Package: simh,afflib-tools
  Version: simh/3.8.1-1
  Version: afflib-tools/3.3.6+dfsg-3
  Usertags: edos-file-overwrite
  
  This is a serious bug as it makes installation fail. Possible
  solutions are to have the two packages conflict, to rename the common
  file in one of the two packages, or to remove the file from one
  package and have this package depend on the other package. File
  diversions or a Replace relation are another possibility.
  
  Here is a list of files that are known to be shared by both packages
  (according to the Contents file for sid/amd64, which may be
  slightly out of sync):
  
usr/bin/s3
  
 
 OK my interpretation of the situation, is you afflib guys really need 
 the name s3 because that is the full name of the amazon s3 service
 you're trying to access, and the simh s3 is merely the short name for 
 the System/3 emulator.
 
 afflib folks please confirm or deny the accuracy of my interpretation.
 
 If I'm correct I think the logical solution is I extend the name of the 
 System/3 emulator from s3 to system3 (err I have to verify that is not
 otherwise in use... maybe I'll go sys3, who knows)
 
 Current status, waiting on your comments, afflib folks ...

As the s3 tool is only a testing tool in the afflib package and that
it's not essential to afflib users, I renamed the tool s3-afflib this
morning in git:
http://git.debian.org/?p=forensics/afflib.git;a=commitdiff;h=5b870b00b2c62dc94648178f0de1e9573cab60fa

Anyway, I'm waiting comments from other debian-forensics members, if no
one complains, it will be uploaded.

Finally, I think that it's a good idea to change both utilities names
because, one day or another, I suspect that a real Amazon s3 tool
could come up with the same name. And since tab completion exists, such
a short name is not needed anymore :-)

-- 
Christophe Monniez christophe.monn...@fccu.be




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



Bug#506952: Conflicting package and joining effort.

2008-11-26 Thread Christophe Monniez
Hi,

I don't know how to resolve the conflicting problem.
I think that my old rifiuti package could be removed from Debian as
rifiuti2 has the same functionalities and even more.

Or maybe you could rename your binary rifiuti2 to let them coexist.

By the way, it maybe a good idea to join the Debian Forensics team so
your package could be co-maintained by us.

The Debian forensics team/project is based here :
http://alioth.debian.org/projects/forensics/


-- 
Christophe Monniez [EMAIL PROTECTED]




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



Bug#479014: Any news?

2008-07-17 Thread Christophe Monniez
Le jeudi 17 juillet 2008 à 19:07 +0200, Michael Prokop a écrit :
 Hi Christophe,
 
 are there any news regarding the packaging of guymager?
 
 I'm sitting here with Guy Voncken and he has some preliminary Debian
 packages of guymager and libguytools available. Is there anything we
 can do to help in getting guymager/libguytools into Debian's pool?
 
 BTW: You also filled several other ITPs where the packages aren't
 available in Debian yet:
 
  #469963 rifiuti
  #469067 revit
  #468958 dc3dd
  #468940 ftimes
  #469062 recoverdm
  #469063 md5deep
 
 Do you have any concret plans regarding packaging and uploading of
 the packages?
 
 thx  regards,
 -mika-

Hi,

As Daniel already answered, some of them are ready to upload.
Concerning guymager, I have to do some work on them (the first one is to
upload in our git repository).
Right now, I'm on vacation and I have a little problem to find time to
work on the packaging.

If you want to help us, you can subscribe to the Debian Forensics
project (http://alioth.debian.org/projects/forensics).
You will have access to the git repos and help us in packaging if you
want.

I will try to upload guymager this weekend.


-- 
Christophe Monniez [EMAIL PROTECTED]
www.d-fence.be - www.lnx4n6.be




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