Your message dated Tue, 17 Oct 2006 15:47:47 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#389538: fixed in dspam 3.6.8-3
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: dspam
Version: 3.6.8-2
Severity: normal
Tags: patch

Hi,

Attached is the diff for my dspam 3.6.8-2.1 NMU.
diff -Nru /tmp/3tV1JWxffT/dspam-3.6.8/debian/changelog 
/tmp/PBuGJB1n7Z/dspam-3.6.8/debian/changelog
--- /tmp/3tV1JWxffT/dspam-3.6.8/debian/changelog        2006-09-26 
12:22:59.000000000 +0200
+++ /tmp/PBuGJB1n7Z/dspam-3.6.8/debian/changelog        2006-09-26 
12:22:59.000000000 +0200
@@ -1,3 +1,13 @@
+dspam (3.6.8-2.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Make config and postrm scripts run with only essential packages installed.
+    * Check for availability of dbconfig-common scripts and ucf in
+      libdspam7-drv-mysql.config and .postrm. (Closes: #388225)
+    * Same for libdpsma7-drv-pgsql. (Closes: #388226)
+
+ -- Steinar H. Gunderson <[EMAIL PROTECTED]>  Tue, 26 Sep 2006 12:18:33 +0200
+
 dspam (3.6.8-2) unstable; urgency=low
 
   [ Debian DSPAM Maintainers ]
diff -Nru /tmp/3tV1JWxffT/dspam-3.6.8/debian/libdspam7-drv-mysql.config 
/tmp/PBuGJB1n7Z/dspam-3.6.8/debian/libdspam7-drv-mysql.config
--- /tmp/3tV1JWxffT/dspam-3.6.8/debian/libdspam7-drv-mysql.config       
2006-09-26 12:22:59.000000000 +0200
+++ /tmp/PBuGJB1n7Z/dspam-3.6.8/debian/libdspam7-drv-mysql.config       
2006-09-26 12:22:59.000000000 +0200
@@ -10,11 +10,13 @@
 # The questions that are asked are pretty important.
 export DEBIAN_PRIORITY=low
 
-# Load dbconfig
-. /usr/share/dbconfig-common/dpkg/config.mysql
+if [ -f /usr/share/dbconfig-common/dpkg/config.mysql ]; then
+  # Load dbconfig
+  . /usr/share/dbconfig-common/dpkg/config.mysql
 
-# Run dbconfig
-dbc_go libdspam7-drv-mysql $@
+  # Run dbconfig
+  dbc_go libdspam7-drv-mysql $@
+fi
 
 exit 0
 
diff -Nru /tmp/3tV1JWxffT/dspam-3.6.8/debian/libdspam7-drv-mysql.postrm 
/tmp/PBuGJB1n7Z/dspam-3.6.8/debian/libdspam7-drv-mysql.postrm
--- /tmp/3tV1JWxffT/dspam-3.6.8/debian/libdspam7-drv-mysql.postrm       
2006-09-26 12:22:59.000000000 +0200
+++ /tmp/PBuGJB1n7Z/dspam-3.6.8/debian/libdspam7-drv-mysql.postrm       
2006-09-26 12:22:59.000000000 +0200
@@ -7,11 +7,13 @@
 # Load debconf
 . /usr/share/debconf/confmodule
 
-# Load dbconfig
-. /usr/share/dbconfig-common/dpkg/postrm.mysql
-
-# Run dbconfig
-dbc_go libdspam7-drv-mysql $@
+if [ -f /usr/share/dbconfig-common/dpkg/postrm.mysql ]; then 
+  # Load dbconfig
+  . /usr/share/dbconfig-common/dpkg/postrm.mysql
+
+  # Run dbconfig
+  dbc_go libdspam7-drv-mysql $@
+fi
 
 case "$1" in
   remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
@@ -23,7 +25,9 @@
       rm -f /etc/dspam/dspam.d/mysql.conf$ext
     done
     rm -f /etc/dspam/dspam.d/mysql.conf
-    ucf --purge /etc/dspam/dspam.d/mysql.conf
+    if [ -x /usr/bin/ucf ]; then 
+      ucf --purge /etc/dspam/dspam.d/mysql.conf
+    fi
   ;;
 
   *)
diff -Nru /tmp/3tV1JWxffT/dspam-3.6.8/debian/libdspam7-drv-pgsql.config 
/tmp/PBuGJB1n7Z/dspam-3.6.8/debian/libdspam7-drv-pgsql.config
--- /tmp/3tV1JWxffT/dspam-3.6.8/debian/libdspam7-drv-pgsql.config       
2006-09-26 12:22:59.000000000 +0200
+++ /tmp/PBuGJB1n7Z/dspam-3.6.8/debian/libdspam7-drv-pgsql.config       
2006-09-26 12:22:59.000000000 +0200
@@ -13,11 +13,13 @@
 # Request user otherwise installation will fail.
 dbc_dbuser="dspam"
 
-# Load dbconfig
-. /usr/share/dbconfig-common/dpkg/config.pgsql
+if [ -f /usr/share/dbconfig-common/dpkg/config.pgsql ]; then
+  # Load dbconfig
+  . /usr/share/dbconfig-common/dpkg/config.pgsql
 
-# Run dbconfig
-dbc_go libdspam7-drv-pgsql $@
+  # Run dbconfig
+  dbc_go libdspam7-drv-pgsql $@
+fi
 
 exit 0
 
diff -Nru /tmp/3tV1JWxffT/dspam-3.6.8/debian/libdspam7-drv-pgsql.postrm 
/tmp/PBuGJB1n7Z/dspam-3.6.8/debian/libdspam7-drv-pgsql.postrm
--- /tmp/3tV1JWxffT/dspam-3.6.8/debian/libdspam7-drv-pgsql.postrm       
2006-09-26 12:22:59.000000000 +0200
+++ /tmp/PBuGJB1n7Z/dspam-3.6.8/debian/libdspam7-drv-pgsql.postrm       
2006-09-26 12:22:59.000000000 +0200
@@ -7,11 +7,13 @@
 # Load debconf
 . /usr/share/debconf/confmodule
 
-# Load dbconfig
-. /usr/share/dbconfig-common/dpkg/postrm.pgsql
-
-# Run dbconfig
-dbc_go libdspam7-drv-pgsql $@
+if [ -f /usr/share/dbconfig-common/dpkg/postrm.pgsql ]; then
+  # Load dbconfig
+  . /usr/share/dbconfig-common/dpkg/postrm.pgsql
+
+  # Run dbconfig
+  dbc_go libdspam7-drv-pgsql $@
+fi
 
 case "$1" in
   remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
@@ -23,7 +25,9 @@
       rm -f /etc/dspam/dspam.d/pgsql.conf$ext
     done
     rm -f /etc/dspam/dspam.d/pgsql.conf
-    ucf --purge /etc/dspam/dspam.d/pgsql.conf
+    if [ -x /usr/bin/ucf ]; then
+      ucf --purge /etc/dspam/dspam.d/pgsql.conf
+    fi
   ;;
 
   *)
diff -Nru /tmp/3tV1JWxffT/dspam-3.6.8/config.guess 
/tmp/PBuGJB1n7Z/dspam-3.6.8/config.guess
--- /tmp/3tV1JWxffT/dspam-3.6.8/config.guess    2006-09-26 12:22:59.000000000 
+0200
+++ /tmp/PBuGJB1n7Z/dspam-3.6.8/config.guess    2006-09-26 12:22:59.000000000 
+0200
@@ -1,9 +1,10 @@
 #! /bin/sh
 # Attempt to guess a canonical system name.
 #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
-#   2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+#   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
+#   Inc.
 
-timestamp='2006-02-23'
+timestamp='2006-07-02'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -210,7 +211,7 @@
        echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE}
        exit ;;
     macppc:MirBSD:*:*)
-       echo powerppc-unknown-mirbsd${UNAME_RELEASE}
+       echo powerpc-unknown-mirbsd${UNAME_RELEASE}
        exit ;;
     *:MirBSD:*:*)
        echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE}
@@ -770,6 +771,8 @@
        case ${UNAME_MACHINE} in
            pc98)
                echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 
's/[-(].*//'` ;;
+           amd64)
+               echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 
's/[-(].*//'` ;;
            *)
                echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed 
-e 's/[-(].*//'` ;;
        esac
@@ -780,9 +783,6 @@
     i*:MINGW*:*)
        echo ${UNAME_MACHINE}-pc-mingw32
        exit ;;
-    i*:MSYS_NT-*:*:*)
-       echo ${UNAME_MACHINE}-pc-mingw32
-       exit ;;
     i*:windows32*:*)
        # uname -m includes "-pc" on this system.
        echo ${UNAME_MACHINE}-mingw32
@@ -790,10 +790,10 @@
     i*:PW*:*)
        echo ${UNAME_MACHINE}-pc-pw32
        exit ;;
-    x86:Interix*:[345]*)
+    x86:Interix*:[3456]*)
        echo i586-pc-interix${UNAME_RELEASE}
        exit ;;
-    EM64T:Interix*:[345]*)
+    EM64T:Interix*:[3456]*)
        echo x86_64-unknown-interix${UNAME_RELEASE}
        exit ;;
     [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
@@ -831,6 +831,9 @@
     arm*:Linux:*:*)
        echo ${UNAME_MACHINE}-unknown-linux-gnu
        exit ;;
+    avr32*:Linux:*:*)
+       echo ${UNAME_MACHINE}-unknown-linux-gnu
+       exit ;;
     cris:Linux:*:*)
        echo cris-axis-linux-gnu
        exit ;;
@@ -989,7 +992,7 @@
        LIBC=gnulibc1
        # endif
        #else
-       #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__sun)
+       #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) 
|| defined(__SUNPRO_CC)
        LIBC=gnu
        #else
        LIBC=gnuaout
diff -Nru /tmp/3tV1JWxffT/dspam-3.6.8/config.sub 
/tmp/PBuGJB1n7Z/dspam-3.6.8/config.sub
--- /tmp/3tV1JWxffT/dspam-3.6.8/config.sub      2006-09-26 12:22:59.000000000 
+0200
+++ /tmp/PBuGJB1n7Z/dspam-3.6.8/config.sub      2006-09-26 12:22:59.000000000 
+0200
@@ -1,9 +1,10 @@
 #! /bin/sh
 # Configuration validation subroutine script.
 #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
-#   2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+#   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
+#   Inc.
 
-timestamp='2006-02-23'
+timestamp='2006-07-02'
 
 # This file is (in principle) common to ALL GNU software.
 # The presence of a machine in this file suggests that SOME GNU software
@@ -240,7 +241,7 @@
        | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
        | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | 
alpha64pca5[67] \
        | am33_2.0 \
-       | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \
+       | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | 
avr32 \
        | bfin \
        | c4x | clipper \
        | d10v | d30v | dlx | dsp16xx \
@@ -248,7 +249,8 @@
        | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
        | i370 | i860 | i960 | ia64 \
        | ip2k | iq2000 \
-       | m32r | m32rle | m68000 | m68k | m88k | maxq | mb | microblaze | mcore 
\
+       | m32c | m32r | m32rle | m68000 | m68k | m88k \
+       | maxq | mb | microblaze | mcore \
        | mips | mipsbe | mipseb | mipsel | mipsle \
        | mips16 \
        | mips64 | mips64el \
@@ -274,11 +276,11 @@
        | pdp10 | pdp11 | pj | pjl \
        | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
        | pyramid \
-       | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | shbe | shle | 
sh[1234]le | sh3ele \
+       | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | 
sh[1234]le | sh3ele \
        | sh64 | sh64le \
-       | sparc | sparc64 | sparc64b | sparc86x | sparclet | sparclite \
-       | sparcv8 | sparcv9 | sparcv9b \
-       | strongarm \
+       | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | 
sparclite \
+       | sparcv8 | sparcv9 | sparcv9b | sparcv9v \
+       | spu | strongarm \
        | tahoe | thumb | tic4x | tic80 | tron \
        | v850 | v850e \
        | we32k \
@@ -286,9 +288,6 @@
        | z8k)
                basic_machine=$basic_machine-unknown
                ;;
-       m32c)
-               basic_machine=$basic_machine-unknown
-               ;;
        m6811 | m68hc11 | m6812 | m68hc12)
                # Motorola 68HC11/12.
                basic_machine=$basic_machine-unknown
@@ -318,7 +317,7 @@
        | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
        | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
        | arm-*  | armbe-* | armle-* | armeb-* | armv*-* \
-       | avr-* \
+       | avr-* | avr32-* \
        | bfin-* | bs2000-* \
        | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \
        | clipper-* | craynv-* | cydra-* \
@@ -329,7 +328,7 @@
        | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
        | i*86-* | i860-* | i960-* | ia64-* \
        | ip2k-* | iq2000-* \
-       | m32r-* | m32rle-* \
+       | m32c-* | m32r-* | m32rle-* \
        | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
        | m88110-* | m88k-* | maxq-* | mcore-* \
        | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
@@ -358,11 +357,11 @@
        | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
        | pyramid-* \
        | romp-* | rs6000-* \
-       | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | shbe-* \
+       | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | 
shbe-* \
        | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
-       | sparc-* | sparc64-* | sparc64b-* | sparc86x-* | sparclet-* \
+       | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | 
sparclet-* \
        | sparclite-* \
-       | sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \
+       | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* 
| sx?-* \
        | tahoe-* | thumb-* \
        | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
        | tron-* \
@@ -373,8 +372,6 @@
        | ymp-* \
        | z8k-*)
                ;;
-       m32c-*)
-               ;;
        # Recognize the various machine names and aliases which stand
        # for a CPU type and a company and sometimes even an OS.
        386bsd)
@@ -1128,7 +1125,7 @@
        sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele)
                basic_machine=sh-unknown
                ;;
-       sparc | sparcv8 | sparcv9 | sparcv9b)
+       sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v)
                basic_machine=sparc-sun
                ;;
        cydra)
@@ -1217,7 +1214,7 @@
              | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
              | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
              | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
-             | -skyos* | -haiku* | -rdos*)
+             | -skyos* | -haiku* | -rdos* | -toppers*)
        # Remember, each alternative MUST END IN *, to match a version number.
                ;;
        -qnx*)
@@ -1369,6 +1366,9 @@
 # system, and we'll never get to this point.
 
 case $basic_machine in
+        spu-*)
+               os=-elf
+               ;;
        *-acorn)
                os=-riscix1.2
                ;;
@@ -1378,9 +1378,9 @@
        arm*-semi)
                os=-aout
                ;;
-    c4x-* | tic4x-*)
-        os=-coff
-        ;;
+        c4x-* | tic4x-*)
+               os=-coff
+               ;;
        # This must come before the *-dec entry.
        pdp10-*)
                os=-tops20

--- End Message ---
--- Begin Message ---
Source: dspam
Source-Version: 3.6.8-3

We believe that the bug you reported is fixed in the latest version of
dspam, which is due to be installed in the Debian FTP archive:

dspam-doc_3.6.8-3_all.deb
  to pool/main/d/dspam/dspam-doc_3.6.8-3_all.deb
dspam-webfrontend_3.6.8-3_all.deb
  to pool/main/d/dspam/dspam-webfrontend_3.6.8-3_all.deb
dspam_3.6.8-3.diff.gz
  to pool/main/d/dspam/dspam_3.6.8-3.diff.gz
dspam_3.6.8-3.dsc
  to pool/main/d/dspam/dspam_3.6.8-3.dsc
dspam_3.6.8-3_i386.deb
  to pool/main/d/dspam/dspam_3.6.8-3_i386.deb
libdspam7-dev_3.6.8-3_i386.deb
  to pool/main/d/dspam/libdspam7-dev_3.6.8-3_i386.deb
libdspam7-drv-db4_3.6.8-3_i386.deb
  to pool/main/d/dspam/libdspam7-drv-db4_3.6.8-3_i386.deb
libdspam7-drv-mysql_3.6.8-3_i386.deb
  to pool/main/d/dspam/libdspam7-drv-mysql_3.6.8-3_i386.deb
libdspam7-drv-pgsql_3.6.8-3_i386.deb
  to pool/main/d/dspam/libdspam7-drv-pgsql_3.6.8-3_i386.deb
libdspam7-drv-sqlite3_3.6.8-3_i386.deb
  to pool/main/d/dspam/libdspam7-drv-sqlite3_3.6.8-3_i386.deb
libdspam7_3.6.8-3_i386.deb
  to pool/main/d/dspam/libdspam7_3.6.8-3_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Debian DSPAM Maintainers <[EMAIL PROTECTED]> (supplier of updated dspam package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Sat,  7 Oct 2006 19:54:32 +0200
Source: dspam
Binary: libdspam7-dev libdspam7-drv-pgsql dspam libdspam7-drv-mysql 
dspam-webfrontend dspam-doc libdspam7-drv-db4 libdspam7 libdspam7-drv-sqlite3
Architecture: source i386 all
Version: 3.6.8-3
Distribution: unstable
Urgency: low
Maintainer: Debian DSPAM Maintainers <[EMAIL PROTECTED]>
Changed-By: Debian DSPAM Maintainers <[EMAIL PROTECTED]>
Description: 
 dspam      - is a scalable, fast and statistical anti-spam filter
 dspam-doc  - Documentation for dspam
 dspam-webfrontend - DSPAM is a scalable and statistical anti-spam filter
 libdspam7  - DSPAM is a scalable and statistical anti-spam filter
 libdspam7-dev - DSPAM is a scalable and statistical anti-spam filter
 libdspam7-drv-db4 - DSPAM is a scalable and statistical anti-spam filter
 libdspam7-drv-mysql - DSPAM is a scalable and statistical anti-spam filter
 libdspam7-drv-pgsql - DSPAM is a scalable and statistical anti-spam filter
 libdspam7-drv-sqlite3 - DSPAM is a scalable and statistical anti-spam filter
Closes: 388140 388225 388226 389538
Changes: 
 dspam (3.6.8-3) unstable; urgency=low
 .
   [ Matthijs Mohlmann ]
   * Acknowlegde NMU. Thanks Steinar H. Gunderson.
     (Closes: #389538, #388225, #388226)
   * Update package descriptions. Neural networking was experimental is now
     removed from the upstream sources.
   * It's a security risk to remove a user on purge of the package. So don't
     remove it.
   * Update update-dspam.conf ServerPID parameter, pidfile is now in
     /var/run/dspam.
 .
   [ Jesus Climent ]
   * Check for the existance of ucf before executing it on purge time.
   * Use the defined MySQL host option in the config file to connect to an
     non-local MySQL database server (Closes: #388140).
Files: 
 cce050b7886f5cdf4c3e24d5b97c94de 1123 mail optional dspam_3.6.8-3.dsc
 a25d214c770b1db6993d3967755cbbe9 53923 mail optional dspam_3.6.8-3.diff.gz
 51ff65201a2c7a7d2318957c0fc5f80d 325998 mail optional dspam_3.6.8-3_i386.deb
 14523e4ea9c3535f0bcb0d083d7d8e4c 109754 libs optional 
libdspam7_3.6.8-3_i386.deb
 c2212d7e131afbaf5a9ecc6f1f130592 125734 mail optional 
libdspam7-dev_3.6.8-3_i386.deb
 55b5ceb5f5bfdd99d0334cc1e82664c8 103824 mail optional 
libdspam7-drv-pgsql_3.6.8-3_i386.deb
 7175e3600c4ba8aeae1dc995b90ffd27 95790 mail optional 
libdspam7-drv-mysql_3.6.8-3_i386.deb
 fa5226acaceee6206a280f1568b9af33 70878 mail optional 
libdspam7-drv-db4_3.6.8-3_i386.deb
 d045bb9431454ed8b32904fb43f392a9 84410 mail optional 
libdspam7-drv-sqlite3_3.6.8-3_i386.deb
 1b078b5a6427b998331e50c7d22eb263 109992 mail optional 
dspam-webfrontend_3.6.8-3_all.deb
 6db283fcc63c7369f79313d228ddd655 93712 doc optional dspam-doc_3.6.8-3_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFFNTxhZvwdf4aUbWkRAqdrAKCI0NQDnD4x0TQWliXTn8W4z/qvTQCghcGf
JkNL6tfgGeAaD9HRksCHOuU=
=gaO0
-----END PGP SIGNATURE-----


--- End Message ---

Reply via email to