Your message dated Sat, 14 Jul 2012 11:03:05 +0000
with message-id <[email protected]>
and subject line Bug#659717: fixed in dspam 3.10.2+dfsg-1
has caused the Debian Bug report #659717,
regarding dspam: use dh_installdeb maintscript support
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
659717: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=659717
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: dspam
Version: 3.10.1+dfsg-3
Severity: wishlist
Tags: patch
User: [email protected]
Usertags: origin-ubuntu ubuntu-patch precise
Using 'dpkg-maintscript-helper supports rm_conffile' guards introduces
unreliability into upgrades; it means that the conffile is removed or
not depending on whether dpkg happens to be unpacked before
dspam-webfrontend/libdspam7-drv-mysql/libdspam7-drv-sqlite3. This seems
generally undesirable; it would be better to enforce a single code path.
(This is academic for Debian because the version of dpkg in squeeze
supported dpkg-maintscript-helper, hence Severity: wishlist; Ubuntu's
last LTS release didn't have a sufficient version of dpkg for that which
is why I care.)
It would be nice to just use dh_installdeb's support for generating
dpkg-maintscript-helper commands, which was introduced in debhelper
8.1.0. This would remove duplicate code from your maintainer scripts -
in fact, you could remove some of your handwritten maintainer scripts
entirely. Here's a patch (you already had a sufficient Build-Depends on
debhelper, and several of the necessary "Pre-Depends:
${misc:Pre-Depends}" were already present):
* Use maintscript support in dh_installdeb rather than writing out
dpkg-maintscript-helper commands by hand. We now simply Pre-Depend on a
new enough version of dpkg rather than using 'dpkg-maintscript-helper
supports' guards, leading to more predictable behaviour on upgrades.
diff -Nru dspam-3.10.1+dfsg/debian/control dspam-3.10.1+dfsg/debian/control
--- dspam-3.10.1+dfsg/debian/control 2011-08-21 20:54:29.000000000 +0100
+++ dspam-3.10.1+dfsg/debian/control 2012-02-13 10:39:38.000000000 +0000
@@ -35,6 +35,7 @@
Package: dspam-webfrontend
Priority: extra
Architecture: all
+Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${perl:Depends}, dspam (>= ${source:Version}), ucf
(>= 0.28), libgd-gd2-perl | libgd-gd2-noxpm-perl, libgd-graph3d-perl,
libhtml-parser-perl
Suggests: apache2, apache2-suexec (>= 2.2.9-3), libapache2-mod-perl2,
libapache2-mod-auth-pam | libapache2-mod-auth-mysql | libapache2-mod-auth-pgsql
| libapache2-mod-auth-openid | libapache2-mod-auth-kerb |
libapache2-mod-auth-plain | libapache2-mod-auth-radius |
libapache2-mod-auth-sys-group, ttf-dejavu-core | ttf-bitstream-vera |
ttf-freefont
Description: Webfrontend for DSPAM anti-spam filter
diff -Nru dspam-3.10.1+dfsg/debian/dspam-webfrontend.maintscript
dspam-3.10.1+dfsg/debian/dspam-webfrontend.maintscript
--- dspam-3.10.1+dfsg/debian/dspam-webfrontend.maintscript 1970-01-01
01:00:00.000000000 +0100
+++ dspam-3.10.1+dfsg/debian/dspam-webfrontend.maintscript 2012-02-13
10:34:37.000000000 +0000
@@ -0,0 +1,2 @@
+rm_conffile /etc/dspam/dspam-apache.conf 3.9.1~rc1+git20110419.29261fb+dfsg-2
+rm_conffile /etc/dspam/dspam-apache2.conf 3.9.1~rc1+git20110419.29261fb+dfsg-2
diff -Nru dspam-3.10.1+dfsg/debian/dspam-webfrontend.postinst
dspam-3.10.1+dfsg/debian/dspam-webfrontend.postinst
--- dspam-3.10.1+dfsg/debian/dspam-webfrontend.postinst 2011-08-21
20:54:29.000000000 +0100
+++ dspam-3.10.1+dfsg/debian/dspam-webfrontend.postinst 2012-02-13
10:34:46.000000000 +0000
@@ -33,12 +33,6 @@
;;
esac
-# Remove old conffiles
-if dpkg-maintscript-helper supports rm_conffile >/dev/null 2>&1; then
- dpkg-maintscript-helper rm_conffile /etc/dspam/dspam-apache.conf
3.9.1~rc1+git20110419.29261fb+dfsg-2 -- "$@"
- dpkg-maintscript-helper rm_conffile /etc/dspam/dspam-apache2.conf
3.9.1~rc1+git20110419.29261fb+dfsg-2 -- "$@"
-fi
-
#DEBHELPER#
exit 0
diff -Nru dspam-3.10.1+dfsg/debian/dspam-webfrontend.postrm
dspam-3.10.1+dfsg/debian/dspam-webfrontend.postrm
--- dspam-3.10.1+dfsg/debian/dspam-webfrontend.postrm 2011-08-21
20:54:29.000000000 +0100
+++ dspam-3.10.1+dfsg/debian/dspam-webfrontend.postrm 2012-02-13
10:34:49.000000000 +0000
@@ -37,12 +37,6 @@
esac
-# Remove old conffiles
-if dpkg-maintscript-helper supports rm_conffile >/dev/null 2>&1; then
- dpkg-maintscript-helper rm_conffile /etc/dspam/dspam-apache.conf
3.9.1~rc1+git20110419.29261fb+dfsg-2 -- "$@"
- dpkg-maintscript-helper rm_conffile /etc/dspam/dspam-apache2.conf
3.9.1~rc1+git20110419.29261fb+dfsg-2 -- "$@"
-fi
-
#DEBHELPER#
exit 0
diff -Nru dspam-3.10.1+dfsg/debian/dspam-webfrontend.preinst
dspam-3.10.1+dfsg/debian/dspam-webfrontend.preinst
--- dspam-3.10.1+dfsg/debian/dspam-webfrontend.preinst 2011-08-21
20:54:29.000000000 +0100
+++ dspam-3.10.1+dfsg/debian/dspam-webfrontend.preinst 2012-02-13
10:34:44.000000000 +0000
@@ -19,12 +19,6 @@
;;
esac
-# Remove old conffiles
-if dpkg-maintscript-helper supports rm_conffile >/dev/null 2>&1; then
- dpkg-maintscript-helper rm_conffile /etc/dspam/dspam-apache.conf
3.9.1~rc1+git20110419.29261fb+dfsg-2 -- "$@"
- dpkg-maintscript-helper rm_conffile /etc/dspam/dspam-apache2.conf
3.9.1~rc1+git20110419.29261fb+dfsg-2 -- "$@"
-fi
-
#DEBHELPER#
exit 0
diff -Nru dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.maintscript
dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.maintscript
--- dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.maintscript 1970-01-01
01:00:00.000000000 +0100
+++ dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.maintscript 2012-02-13
10:35:48.000000000 +0000
@@ -0,0 +1 @@
+rm_conffile /etc/cron.daily/libdspam7-drv-mysql
3.9.1~rc1+git20110419.29261fb+dfsg-2
diff -Nru dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.postinst
dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.postinst
--- dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.postinst 2011-08-21
20:54:29.000000000 +0100
+++ dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.postinst 2012-02-13
10:36:00.000000000 +0000
@@ -31,11 +31,6 @@
;;
esac
-# Remove old conffile
-if dpkg-maintscript-helper supports rm_conffile >/dev/null 2>&1; then
- dpkg-maintscript-helper rm_conffile /etc/cron.daily/libdspam7-drv-mysql
3.9.1~rc1+git20110419.29261fb+dfsg-2 -- "$@"
-fi
-
#DEBHELPER#
exit 0
diff -Nru dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.postrm
dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.postrm
--- dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.postrm 2011-08-21
20:54:29.000000000 +0100
+++ dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.postrm 2012-02-13
10:36:03.000000000 +0000
@@ -35,11 +35,6 @@
;;
esac
-# Remove olf conffile
-if dpkg-maintscript-helper supports rm_conffile >/dev/null 2>&1; then
- dpkg-maintscript-helper rm_conffile /etc/cron.daily/libdspam7-drv-mysql
3.9.1~rc1+git20110419.29261fb+dfsg-2 -- "$@"
-fi
-
#DEBHELPER#
exit 0
diff -Nru dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.preinst
dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.preinst
--- dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.preinst 2011-08-21
20:54:29.000000000 +0100
+++ dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.preinst 1970-01-01
01:00:00.000000000 +0100
@@ -1,24 +0,0 @@
-#!/bin/sh
-set -e
-
-case "$1" in
- install|upgrade)
- ;;
-
- abort-upgrade)
- ;;
-
- *)
- echo "preinst called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-# Remove old conffile
-if dpkg-maintscript-helper supports rm_conffile >/dev/null 2>&1; then
- dpkg-maintscript-helper rm_conffile /etc/cron.daily/libdspam7-drv-mysql
3.9.1~rc1+git20110419.29261fb+dfsg-2 -- "$@"
-fi
-
-#DEBHELPER#
-
-exit 0
diff -Nru dspam-3.10.1+dfsg/debian/libdspam7-drv-sqlite3.maintscript
dspam-3.10.1+dfsg/debian/libdspam7-drv-sqlite3.maintscript
--- dspam-3.10.1+dfsg/debian/libdspam7-drv-sqlite3.maintscript 1970-01-01
01:00:00.000000000 +0100
+++ dspam-3.10.1+dfsg/debian/libdspam7-drv-sqlite3.maintscript 2012-02-13
10:37:53.000000000 +0000
@@ -0,0 +1 @@
+rm_conffile /etc/cron.daily/libdspam7-drv-sqlite3
3.9.1~rc1+git20110419.29261fb+dfsg-2
diff -Nru dspam-3.10.1+dfsg/debian/libdspam7-drv-sqlite3.postinst
dspam-3.10.1+dfsg/debian/libdspam7-drv-sqlite3.postinst
--- dspam-3.10.1+dfsg/debian/libdspam7-drv-sqlite3.postinst 2011-08-21
20:54:29.000000000 +0100
+++ dspam-3.10.1+dfsg/debian/libdspam7-drv-sqlite3.postinst 2012-02-13
10:38:15.000000000 +0000
@@ -17,11 +17,6 @@
;;
esac
-# Remove old conffile
-if dpkg-maintscript-helper supports rm_conffile >/dev/null 2>&1; then
- dpkg-maintscript-helper rm_conffile /etc/cron.daily/libdspam7-drv-sqlite3
3.9.1~rc1+git20110419.29261fb+dfsg-2 -- "$@"
-fi
-
#DEBHELPER#
exit 0
diff -Nru dspam-3.10.1+dfsg/debian/libdspam7-drv-sqlite3.postrm
dspam-3.10.1+dfsg/debian/libdspam7-drv-sqlite3.postrm
--- dspam-3.10.1+dfsg/debian/libdspam7-drv-sqlite3.postrm 2011-08-21
20:54:29.000000000 +0100
+++ dspam-3.10.1+dfsg/debian/libdspam7-drv-sqlite3.postrm 1970-01-01
01:00:00.000000000 +0100
@@ -1,21 +0,0 @@
-#!/bin/sh
-set -e
-
-case "$1" in
- purge|remove|upgrade|abort-install|abort-upgrade|failed-upgrade|disappear)
- ;;
-
- *)
- echo "postrm called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-# Remove old conffile
-if dpkg-maintscript-helper supports rm_conffile >/dev/null 2>&1; then
- dpkg-maintscript-helper rm_conffile /etc/cron.daily/libdspam7-drv-sqlite3
3.9.1~rc1+git20110419.29261fb+dfsg-2 -- "$@"
-fi
-
-#DEBHELPER#
-
-exit 0
diff -Nru dspam-3.10.1+dfsg/debian/libdspam7-drv-sqlite3.preinst
dspam-3.10.1+dfsg/debian/libdspam7-drv-sqlite3.preinst
--- dspam-3.10.1+dfsg/debian/libdspam7-drv-sqlite3.preinst 2011-08-21
20:54:29.000000000 +0100
+++ dspam-3.10.1+dfsg/debian/libdspam7-drv-sqlite3.preinst 1970-01-01
01:00:00.000000000 +0100
@@ -1,24 +0,0 @@
-#!/bin/sh
-set -e
-
-case "$1" in
- install|upgrade)
- ;;
-
- abort-upgrade)
- ;;
-
- *)
- echo "preinst called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-# Remove old conffile
-if dpkg-maintscript-helper supports rm_conffile >/dev/null 2>&1; then
- dpkg-maintscript-helper rm_conffile /etc/cron.daily/libdspam7-drv-sqlite3
3.9.1~rc1+git20110419.29261fb+dfsg-2 -- "$@"
-fi
-
-#DEBHELPER#
-
-exit 0
Thanks,
--
Colin Watson [[email protected]]
--- End Message ---
--- Begin Message ---
Source: dspam
Source-Version: 3.10.2+dfsg-1
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.
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.
Thomas Preud'homme <[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: SHA256
Format: 1.8
Date: Sun, 22 Apr 2012 17:46:10 +0200
Source: dspam
Binary: dspam dspam-webfrontend libdspam7 libdspam7-dev libdspam7-drv-hash
libdspam7-drv-pgsql libdspam7-drv-mysql libdspam7-drv-sqlite3 dspam-doc
dspam-dbg libdspam7-dbg
Architecture: source amd64 all
Version: 3.10.2+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian DSPAM Maintainers <[email protected]>
Changed-By: Thomas Preud'homme <[email protected]>
Description:
dspam - Scalable, fast and statistical anti-spam filter
dspam-dbg - debugging symbols for dspam
dspam-doc - Documentation for DSPAM anti-spam filter
dspam-webfrontend - Webfrontend for DSPAM anti-spam filter
libdspam7 - Core message processing and classification functionality for DSPA
libdspam7-dbg - debugging symbols for DSPAM related libraries
libdspam7-dev - Development headers for libdspam
libdspam7-drv-hash - Hash backend for DSPAM anti-spam filter
libdspam7-drv-mysql - MySQL backend for DSPAM anti-spam filter
libdspam7-drv-pgsql - PostgreSQL backend for DSPAM anti-spam filter
libdspam7-drv-sqlite3 - sqlite3 backend for DSPAM anti-spam filter
Closes: 659717 669993 673833
Changes:
dspam (3.10.2+dfsg-1) unstable; urgency=low
.
[ Julien Valroff ]
* New upstream release
* Add gbp.conf to allow filtering out non DFSG-clean files when using
git-import-orig to merge new upstream releases
* Use definitive DEP-5 copyright format uri
* Add dspam_alias_retraining script to dspam package as example
* Refresh and update patches
* Use maintscript support in dh_installdeb rather than writing out
dpkg-maintscript-helper commands by hand. We now simply Pre-Depend on a
new enough version of dpkg rather than using 'dpkg-maintscript-helper
supports' guards, leading to more predictable behaviour on upgrades.
Thanks to Colin Watson <[email protected]> (Closes: #659717)
* Add Thomas Preud'homme as uploader
* Set DM-Upload-Allowed: yes
.
[ Thomas Preud'homme ]
* Remove multiarch support for libdspam7-dev as it contains an header with
arch-specific contents (Closes: #669993).
* Build-depend on debhelper (>= 9.0.0) to match compatibility.
* Bump Standards-Version to 3.9.3 (no changes needed).
* Fix quarantine mails deletion in web frontend for spanish users
(Closes: #673833).
Checksums-Sha1:
aa433235dc86555a9043fb4c8905eb6e9d932385 2603 dspam_3.10.2+dfsg-1.dsc
ac8853d533272e3536ae3113222e0584cbda8842 1046174 dspam_3.10.2+dfsg.orig.tar.gz
ad153c222cbd0aa6642c24a2a2e7fe19d71c2c48 64266
dspam_3.10.2+dfsg-1.debian.tar.gz
770525fe2b11ae316053e239087d6128720f6f60 434590 dspam_3.10.2+dfsg-1_amd64.deb
eb7496b884f1e0ba9d7822c94bf01a7cc1961d69 203446
dspam-webfrontend_3.10.2+dfsg-1_all.deb
cf3b34b1593d1f6ab630b7dd7278bff8670994a5 149890
libdspam7_3.10.2+dfsg-1_amd64.deb
d7dbc907cf22237d51ac5ecb99bf92684571e8d1 308864
libdspam7-dev_3.10.2+dfsg-1_amd64.deb
8a18467b0107e2a0ceacffc84ac22a5d81e1ac35 110270
libdspam7-drv-hash_3.10.2+dfsg-1_amd64.deb
1376bcf7905f4047b22e27389f1608f6637de9ce 124890
libdspam7-drv-pgsql_3.10.2+dfsg-1_amd64.deb
332abdd139da9b5717a4dd0b7e44588e0c927148 127114
libdspam7-drv-mysql_3.10.2+dfsg-1_amd64.deb
b142e6797beb8cfba67581fd0c34dc7dcedaa114 112652
libdspam7-drv-sqlite3_3.10.2+dfsg-1_amd64.deb
45dcfa79d7a4969c35f4eec489c787c7efb9e552 127850 dspam-doc_3.10.2+dfsg-1_all.deb
780b2ccd74cb5a786f550511585928663776eb81 609638
dspam-dbg_3.10.2+dfsg-1_amd64.deb
c02503a2e8f10253504b9b7bbfe16c4bb43893f5 323856
libdspam7-dbg_3.10.2+dfsg-1_amd64.deb
Checksums-Sha256:
2b4649e737ec727fdfcd3d42225ea4de85b157c48e34534dd61aa0ced0879693 2603
dspam_3.10.2+dfsg-1.dsc
6b49250a94480a649bf38ae72b393811ee70de6eed255210269aac328ba14952 1046174
dspam_3.10.2+dfsg.orig.tar.gz
90f390212ed719f5c372f7d61c11511dbf4713c309c77341080682c24fc51770 64266
dspam_3.10.2+dfsg-1.debian.tar.gz
d921237c6ebf3f6fd71b3fdc053f53caa1a9a5088eecbc1a81b551c4a9b65353 434590
dspam_3.10.2+dfsg-1_amd64.deb
aba3cde64c2c841054b9ad9c19ab2b47880dad6bfb9dfd8e9ff552d970a6b15f 203446
dspam-webfrontend_3.10.2+dfsg-1_all.deb
35620a6289a75650a00d0276d9c9dd815ac571164013644e58fb20332acce6dc 149890
libdspam7_3.10.2+dfsg-1_amd64.deb
7f91017d06e69d1f984380c897204e927c627282717ee0291b8f2f034ec3042e 308864
libdspam7-dev_3.10.2+dfsg-1_amd64.deb
52d282930cd0b610718f4a154eb4655f343e2a8403e82fba4b219784b6c42071 110270
libdspam7-drv-hash_3.10.2+dfsg-1_amd64.deb
9cc160545b5a7f803ce9a83c600a8d42f304b0d2a648367e27f817f0f00de93c 124890
libdspam7-drv-pgsql_3.10.2+dfsg-1_amd64.deb
a75345638fb34067076f35169a789c54f75c335cb1046f46f5531fbe91720115 127114
libdspam7-drv-mysql_3.10.2+dfsg-1_amd64.deb
aacd317db288a98b8e0bde84bab287d399a81ad655dc22225b9f0d8e478ba6ec 112652
libdspam7-drv-sqlite3_3.10.2+dfsg-1_amd64.deb
ab82869d3980f4e7b596b5fc45961e21b748e19ab95b11b1b04eb06079daec98 127850
dspam-doc_3.10.2+dfsg-1_all.deb
1e914fece84ad2a5392939c2fa665e1e8cedf4672116aede3f0a11714ec7fc56 609638
dspam-dbg_3.10.2+dfsg-1_amd64.deb
1c05541b5a2236a376b0b2b41fe60666fd4f8b2b0245d679e0c6633eb1ddd284 323856
libdspam7-dbg_3.10.2+dfsg-1_amd64.deb
Files:
04f15fdb4d273efde52ef107b91fe7ed 2603 mail optional dspam_3.10.2+dfsg-1.dsc
a57d6b5b9bd5e419011bd616917426dc 1046174 mail optional
dspam_3.10.2+dfsg.orig.tar.gz
0f90367956dbcd5b48b1fa8a65fe9692 64266 mail optional
dspam_3.10.2+dfsg-1.debian.tar.gz
e2f752f6c1dbe930636fcc27bbfc1a84 434590 mail optional
dspam_3.10.2+dfsg-1_amd64.deb
e4c91758b059065e709ab3182c5797ab 203446 mail extra
dspam-webfrontend_3.10.2+dfsg-1_all.deb
83ac575d7dcf2de25af00630d5c33b3d 149890 libs optional
libdspam7_3.10.2+dfsg-1_amd64.deb
d597c95e2daa3e6cf8db2c13c5cb3a70 308864 libdevel optional
libdspam7-dev_3.10.2+dfsg-1_amd64.deb
27e74c8b8bb5cef0ce87b93b2653892f 110270 mail optional
libdspam7-drv-hash_3.10.2+dfsg-1_amd64.deb
d95fd29c27e987aabf329ef9df46cfdd 124890 mail optional
libdspam7-drv-pgsql_3.10.2+dfsg-1_amd64.deb
add3546805139b9a24e76d55c014add6 127114 mail optional
libdspam7-drv-mysql_3.10.2+dfsg-1_amd64.deb
b4adc5d2f8158d0ed2ee812923009c0e 112652 mail optional
libdspam7-drv-sqlite3_3.10.2+dfsg-1_amd64.deb
3a2ca3023e3250fcc0565d8202a7c450 127850 doc optional
dspam-doc_3.10.2+dfsg-1_all.deb
f6b57ef66891583b86bcd9e3c9c0930c 609638 debug extra
dspam-dbg_3.10.2+dfsg-1_amd64.deb
3e5c1dde5d9fa549fd3a33be2cf7f1fd 323856 debug extra
libdspam7-dbg_3.10.2+dfsg-1_amd64.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)
iQIcBAEBCAAGBQJQAU9MAAoJEFHhprzRxas7yjgP/2sm1Vb0tTTehxioCdOz9HQP
HXhBQP5fVEwmvh3xOUv0jvWSZAuc39QzPo+wnlFzXvGoWofoi4dbFkZav7buMasV
GUkpBnb8gtBun2u6BcqabDmbNWVMckTRU5EeURZUD9iQrIy0wCaOePP84r2wa+jt
ti8NZ/SOerHTrB1HP89L+gWFEVCv0GwhGjWye6zI18hRDDL69EN88q0oMAqRLK4O
k6IwvtybJQadiEkT0AIHdyHQO3QF7Ct9zBR6/5J/CJ77oTVLM5tbe9uqYYse/sp4
4ToyYynZopgul964EJU9+n8ks3mY5Ddh/kwADl2m5YdGrs0xk+g2DNVYafaEfVof
1yf8hcYMAizrozozjaP3KYqNdY4Heqh6g/hihATociMgxxuqnIklnUyqcRNC3NlJ
iYI433bKfrhsfRs3ckaaJSYuRz04Jcz94wxi5N7oCci6Rpr6P2fAz+dnDAbP0uE1
KN5j1JoFzKvAR2QS4UnTd+P01Zeb47V2VObArZXSBZkgTjhyZ1HqM6li6YLmgHMx
htfTgQ3lsvKBNakkT85a/smJGLZgqZjVlujiI69I36Y4Z4yPbxAkXuPjI2KB1RUa
uLLMmtx5XbYyCSaiH8/azSo19dg/8gFI2cHmCf4y04Q2FQgTJPd9K83gNezqiytG
xE86K23XAfeFp7ghvfUB
=lFIM
-----END PGP SIGNATURE-----
--- End Message ---