r38078 - in /branches/upstream/libemail-send-perl/current: Changes META.yml README lib/Email/Send.pm lib/Email/Send/NNTP.pm lib/Email/Send/Qmail.pm lib/Email/Send/SMTP.pm lib/Email/Send/Sendmail.pm lib/Email/Send/Test.pm
carnil-guest at users.alioth.debian.org
carnil-guest at users.alioth.debian.org
Sat Jun 13 21:05:35 UTC 2009
Author: carnil-guest
Date: Sat Jun 13 21:05:13 2009
New Revision: 38078
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=38078
Log:
[svn-upgrade] Integrating new upstream version, libemail-send-perl (2.197)
Modified:
branches/upstream/libemail-send-perl/current/Changes
branches/upstream/libemail-send-perl/current/META.yml
branches/upstream/libemail-send-perl/current/README
branches/upstream/libemail-send-perl/current/lib/Email/Send.pm
branches/upstream/libemail-send-perl/current/lib/Email/Send/NNTP.pm
branches/upstream/libemail-send-perl/current/lib/Email/Send/Qmail.pm
branches/upstream/libemail-send-perl/current/lib/Email/Send/SMTP.pm
branches/upstream/libemail-send-perl/current/lib/Email/Send/Sendmail.pm
branches/upstream/libemail-send-perl/current/lib/Email/Send/Test.pm
Modified: branches/upstream/libemail-send-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-send-perl/current/Changes?rev=38078&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/Changes (original)
+++ branches/upstream/libemail-send-perl/current/Changes Sat Jun 13 21:05:13 2009
@@ -1,4 +1,10 @@
Revision history for Email-Send
+
+2.197 2009-06-13
+ ** PLEASE CONSIDER USING EMAIL-SENDER INSTEAD **
+
+ fix regression introduced into SMTP transport's "to" detector
+ (thanks to John Maslanik for bug report)
2.196 2009-06-09
** PLEASE CONSIDER USING EMAIL-SENDER INSTEAD **
Modified: branches/upstream/libemail-send-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-send-perl/current/META.yml?rev=38078&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/META.yml (original)
+++ branches/upstream/libemail-send-perl/current/META.yml Sat Jun 13 21:05:13 2009
@@ -1,6 +1,6 @@
--- #YAML:1.0
name: Email-Send
-version: 2.196
+version: 2.197
abstract: Simply Sending Email
author:
- Casey West <casey at geeknest.com>
Modified: branches/upstream/libemail-send-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-send-perl/current/README?rev=38078&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/README (original)
+++ branches/upstream/libemail-send-perl/current/README Sat Jun 13 21:05:13 2009
@@ -2,7 +2,7 @@
Email::Send - Simply Sending Email
VERSION
- 2.196
+ 2.197
SYNOPSIS
use Email::Send;
Modified: branches/upstream/libemail-send-perl/current/lib/Email/Send.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-send-perl/current/lib/Email/Send.pm?rev=38078&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/lib/Email/Send.pm (original)
+++ branches/upstream/libemail-send-perl/current/lib/Email/Send.pm Sat Jun 13 21:05:13 2009
@@ -2,7 +2,7 @@
use strict;
use vars qw[$VERSION];
-$VERSION = '2.196';
+$VERSION = '2.197';
use Email::Simple;
use Module::Pluggable
Modified: branches/upstream/libemail-send-perl/current/lib/Email/Send/NNTP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-send-perl/current/lib/Email/Send/NNTP.pm?rev=38078&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/lib/Email/Send/NNTP.pm (original)
+++ branches/upstream/libemail-send-perl/current/lib/Email/Send/NNTP.pm Sat Jun 13 21:05:13 2009
@@ -5,7 +5,7 @@
use Net::NNTP;
use Return::Value;
-$VERSION = '2.196';
+$VERSION = '2.197';
sub is_available {
return eval { require Net::NNTP }
Modified: branches/upstream/libemail-send-perl/current/lib/Email/Send/Qmail.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-send-perl/current/lib/Email/Send/Qmail.pm?rev=38078&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/lib/Email/Send/Qmail.pm (original)
+++ branches/upstream/libemail-send-perl/current/lib/Email/Send/Qmail.pm Sat Jun 13 21:05:13 2009
@@ -7,7 +7,7 @@
use vars qw[$QMAIL $VERSION];
$QMAIL ||= q[qmail-inject];
-$VERSION = '2.196';
+$VERSION = '2.197';
sub is_available {
my $class = shift;
Modified: branches/upstream/libemail-send-perl/current/lib/Email/Send/SMTP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-send-perl/current/lib/Email/Send/SMTP.pm?rev=38078&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/lib/Email/Send/SMTP.pm (original)
+++ branches/upstream/libemail-send-perl/current/lib/Email/Send/SMTP.pm Sat Jun 13 21:05:13 2009
@@ -5,7 +5,7 @@
use Email::Address;
use Return::Value;
-$VERSION = '2.196';
+$VERSION = '2.197';
sub is_available {
my ($class, %args) = @_;
@@ -29,7 +29,7 @@
my ($class, $message) = @_;
my %to = map { $_->address => 1 }
- map { Email::Address->parse($message->header($_)) }
+ map { Email::Address->parse($_) }
grep { defined and length }
map { $message->header($_) }
qw(To Cc Bcc);
Modified: branches/upstream/libemail-send-perl/current/lib/Email/Send/Sendmail.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-send-perl/current/lib/Email/Send/Sendmail.pm?rev=38078&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/lib/Email/Send/Sendmail.pm (original)
+++ branches/upstream/libemail-send-perl/current/lib/Email/Send/Sendmail.pm Sat Jun 13 21:05:13 2009
@@ -7,7 +7,7 @@
use vars qw[$SENDMAIL $VERSION];
-$VERSION = '2.196';
+$VERSION = '2.197';
sub is_available {
my $class = shift;
Modified: branches/upstream/libemail-send-perl/current/lib/Email/Send/Test.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-send-perl/current/lib/Email/Send/Test.pm?rev=38078&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/lib/Email/Send/Test.pm (original)
+++ branches/upstream/libemail-send-perl/current/lib/Email/Send/Test.pm Sat Jun 13 21:05:13 2009
@@ -70,7 +70,7 @@
use vars qw{$VERSION};
BEGIN {
- $VERSION = '2.196';
+ $VERSION = '2.197';
}
# No longer allow direct access to the array
More information about the Pkg-perl-cvs-commits
mailing list