Your message dated Thu, 24 Jul 2008 14:32:02 +0000 with message-id <[EMAIL PROTECTED]> and subject line Bug#344173: fixed in courier-filter-perl 0.200 has caused the Debian Bug report #344173, regarding courier-filter-perl: version 0.17 is available since Nov 11 2005 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.) -- 344173: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=344173 Debian Bug Tracking System Contact [EMAIL PROTECTED] with problems
--- Begin Message ---Package: courier-filter-perl Version: 0.16 Severity: wishlist http://search.cpan.org/~jmehnle/Courier-Filter-0.17/ Hope dear maintainer would pack it into .deb soon :> -- System Information: Debian Release: testing/unstable APT prefers breezy APT policy: (500, 'breezy'), (500, 'unstable'), (500, 'stable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.14 Locale: LANG=uk_UA.UTF-8, LC_CTYPE=uk_UA.UTF-8 (charmap=UTF-8) Versions of packages courier-filter-perl depends on: ii courier-mta 0.47-13 Courier Mail Server - ESMTP daemon ii liberror-perl 0.15-8 Perl module for error/exception ha ii perl 5.8.7-10 Larry Wall's Practical Extraction Versions of packages courier-filter-perl recommends: ii libmail-spf-query-perl 1.997-3 Query SPF (Sender Permitted From) pn libmime-tools-perl <none> (no description available) ii libnet-dns-perl 0.53-2 Perform DNS queries from a Perl sc ii perl [libdigest-md5-perl] 5.8.7-10 Larry Wall's Practical Extraction -- debconf-show failed
--- End Message ---
--- Begin Message ---Source: courier-filter-perl Source-Version: 0.200 We believe that the bug you reported is fixed in the latest version of courier-filter-perl, which is due to be installed in the Debian FTP archive: courier-filter-perl_0.200.dsc to pool/main/c/courier-filter-perl/courier-filter-perl_0.200.dsc courier-filter-perl_0.200.tar.gz to pool/main/c/courier-filter-perl/courier-filter-perl_0.200.tar.gz courier-filter-perl_0.200_all.deb to pool/main/c/courier-filter-perl/courier-filter-perl_0.200_all.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. Julian Mehnle <[EMAIL PROTECTED]> (supplier of updated courier-filter-perl 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.8 Date: Sun, 23 Mar 2008 00:36:39 +0000 Source: courier-filter-perl Binary: courier-filter-perl Architecture: source all Version: 0.200 Distribution: unstable Urgency: low Maintainer: Julian Mehnle <[EMAIL PROTECTED]> Changed-By: Julian Mehnle <[EMAIL PROTECTED]> Description: courier-filter-perl - purely Perl-based mail filter framework for the Courier MTA Closes: 344173 Changes: courier-filter-perl (0.200) unstable; urgency=low . Debian: + New upstream version. (Closes: #344173) + Automatically start and stop courier-filter-perl using Courier's `filterctl` post-installation and pre-removal, respectively. ! "courier-filter-perl.conf" (previously "pureperlfilter.conf") config file is no longer a conffile managed by dpkg. Migrate seamlessly. ! Install courier-filter-perl executable into /usr/lib/courier/filters/ rather than /usr/lib/. > control: * Section: mail (was: perl) * Standards-Version: 3.7.3 * Raised debhelper compat level to 5 / Build-Depends: debhelper (>= 5) * Build-Depends: debhelper (was: Build-Depends-Indep:) * Removed Build-Depends-Indep: libtest-simple-perl (now provided by perl-modules) * Recommends: libmail-spf-perl (was: libmail-spf-query-perl) * Recommends: libnet-rblclient-perl, libclamav-client-perl (was: Suggests:) * Removed Recommends: libdigest-md5-perl (now provided by perl) * Removed Recommends: libnet-dns-perl (unused) * Suggests: libnet-address-ip-local-perl (was: libnet-address-ipv4-local-perl) > rules: * Run `$(BUILD) distclean` only if $(BUILD) actually exists. . Courier::Filter: ! Config file has been renamed to "courier-filter-perl.conf" from "pureperlfilter.conf". . Courier::Message: * Fixed a bug that caused crashes when encountering invalid (e.g., non-ASCII) characters in raw MIME encoded words. * Fixed fallback decoding of raw message headers from non-ASCII, non-UTF-8 encodings such as ISO-8859-1. Previously, any non-UTF-8 byte sequences would be decoded as the "�" Unicode substitution character. Now this case properly falls back to reinterpreting the entire header as Windows- 1252. Note: In the absence of the experimental "UTF8SMTP" SMTP extension, non-ASCII characters are formally illegal in raw message headers, so this really only affects exceptional cases. * Eliminated some corner case "Use of uninitialized value" warnings. . Courier::Config: * Lower-cased and slightly adjusted constant/method names. Compatibility aliases for the old names are provided. + Added courier_executable() and courier_version() methods. See man-page. . Courier::Util: + Added as a utility module for use by other modules of the Courier::Filter framework. . Courier::Filter::Module: + Added warn() method for writing warning messages to syslog. . DNSBL filter module: * Ignore messages received via IPv4/IPv6 loopback addresses (i.e., self submissions). . SPF filter module: * Use Mail::SPF instead of the old Mail::SPF::Query. Added new "spf_options" option with options for Mail::SPF::Server. + The switch to Mail::SPF brings IPv6 support! + Support both MAIL FROM and HELO checks separately. ! Deprecated "fallback_guess" and "trusted_forwarders" options in favor of the "default_policy" and "tfwl" keys to the "spf_options" option. The old options induce a warning when specified but are still supported for now. Due to the move from the obsolete Mail::SPF::Query module to the Mail::SPF, the (yet unreleased) Mail::SPF::BlackMagic extension module is now required when using these non-standard options. ! Deprecated the "unknown" and "error" SPF result codes in favor of the new "permerror" and "temperror" ones defined in RFC 4408. The old result codes induce a warning when specified in the "match_on" option but are still supported for now. * Ignore messages with an empty identity of the configured scope (esp. empty MAIL FROM, i.e., bounces) or with an identity in the form of an IP address literal ("[<ip-address>]"). . SPFout filter module: * Use Mail::SPF instead of the old Mail::SPF::Query. Added new "spf_options" option with options for Mail::SPF::Server. * Use the IPv6-supporting Net::Address::IP::Local rather than the IPv4-only Net::Address::IPv4::Local module for auto-discovery of the local system's outbound IP addresses. Note that auto-discovery does not work from behind NATs, in which case outbound IP addresses must be configured manually using the "outbound_ip_addresses" option. + The switch to Mail::SPF and Net::Address::IP::Local brings IPv6 support! ! Deprecated the "unknown" and "error" SPF result codes in favor of the new "permerror" and "temperror" ones defined in RFC 4408. The old result codes induce a warning when specified in the "match_on" option but are still supported for now. * Ignore messages with an empty identity of the configured scope (esp. empty MAIL FROM, i.e., bounces) or with an identity in the form of an IP address literal ("[<ip-address>]"). . SpamAssassin filter module: + Added a "prefs_file" option for easy configuration of Courier::Filter specific SpamAssassin preferences. SpamAssassin now will not read any preferences besides its default configuration files unless this option is specified. * Eliminated memory leak by properly cleaning up Mail::SpamAssassin::Message objects. . BlankBody filter module: + Added for matching blank message bodies (a stupid spammer symptom). . FakeDate filter module: + Added for matching implausible and malformed date header fields. . SendCopy filter module: + Added for sending message copies to additional recipients. Checksums-Sha1: 77e6c0cebbf325a82a2ed49de1b2902b6ceb7686 809 courier-filter-perl_0.200.dsc 916a1b95d41ebd488c1c0d688bbbb0b2cad7c4b2 63386 courier-filter-perl_0.200.tar.gz 6bd1aca7d25729cfc26d150a0ef67f1551ff5288 140400 courier-filter-perl_0.200_all.deb Checksums-Sha256: feff45a5c663daec7d36d05ad70aa794297a075194e8f1d9eeb9f6783c34a4c3 809 courier-filter-perl_0.200.dsc f80e201a9efa0eff81b52a68d4f423bb421c498af9aaaeab4c1044bcda928bb6 63386 courier-filter-perl_0.200.tar.gz 4c1272bc2a1f41ecfb47152da628a1fd93317631c7097c0552a1872b5c2bd5d8 140400 courier-filter-perl_0.200_all.deb Files: 6c23cefa8add3e738ef7954fc5b0bd0c 809 mail optional courier-filter-perl_0.200.dsc 98d1b3d35abe225e98ec3eeae12d4ea1 63386 mail optional courier-filter-perl_0.200.tar.gz 2c5c9fac889a7f2f238f71cd0d8e614b 140400 mail optional courier-filter-perl_0.200_all.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAkiIj6sACgkQhiAFUap5uRoPqQCfXfbrDtVHuKtEGCuV7u3Y83U1 hHgAnjLq+NcTz2J691LVMddWf5L4J2QX =fPdT -----END PGP SIGNATURE-----
--- End Message ---

