Update to 2.12
- New upstream release 2.12: - Default for Mail::Header::new(Modify) is 'false', not 'true' (CPAN RT#79985) - Mail::Address take username with rindex(), a bit better than index() but still poor (CPAN RT#82056) - Check for bad folding of header lines (CPAN RT#79993) - Add a note about better to avoid Mail::Address->name() (CPAN RT#81459) - Drop UTF8 patch, no longer needed
This commit is contained in:
parent
24b0613f2b
commit
e9ef814987
@ -1,65 +0,0 @@
|
|||||||
--- MailTools-2.08/ChangeLog 2011-06-01 12:55:38.000000000 +0100
|
|
||||||
+++ MailTools-2.08/ChangeLog 2011-06-01 14:41:45.004502111 +0100
|
|
||||||
@@ -33,7 +33,7 @@
|
|
||||||
- express more clearly that Authen::SASL needs to be installed
|
|
||||||
manually if you need the functionality
|
|
||||||
|
|
||||||
- - support for smtps via Net::SMTP::SSL, by [Maciej Żenczykowski]
|
|
||||||
+ - support for smtps via Net::SMTP::SSL, by [Maciej Żenczykowski]
|
|
||||||
|
|
||||||
version 2.05: Fri Dec 18 22:39:21 CET 2009
|
|
||||||
|
|
||||||
@@ -61,7 +61,7 @@
|
|
||||||
- Mail::Field::_require_dir complained on 5.10 about a closed
|
|
||||||
dirhandle. rt.cpan.org#37114 [Manuel Hecht]
|
|
||||||
|
|
||||||
- - Bcc line removed before collecting addresses. [Jørgen Thomsen]
|
|
||||||
+ - Bcc line removed before collecting addresses. [Jørgen Thomsen]
|
|
||||||
|
|
||||||
Improvements:
|
|
||||||
|
|
||||||
@@ -72,7 +72,7 @@
|
|
||||||
|
|
||||||
Fixes:
|
|
||||||
|
|
||||||
- - Netware needs to use smtp as well [Günter Knauf]
|
|
||||||
+ - Netware needs to use smtp as well [Günter Knauf]
|
|
||||||
|
|
||||||
- Mail::Field::extract() fixed. Reported by [Andrea Venturol]
|
|
||||||
|
|
||||||
@@ -237,7 +237,7 @@
|
|
||||||
|
|
||||||
- Extended explanation that Mail::Address is limited.
|
|
||||||
|
|
||||||
- - Added examples/mail-mailer.pl, contributed by [Bruno Negrão]
|
|
||||||
+ - Added examples/mail-mailer.pl, contributed by [Bruno Negrão]
|
|
||||||
|
|
||||||
- use Mail::Mailer qw(mail) sets default mailer. Doc update by
|
|
||||||
[Slavan Rezic]
|
|
||||||
@@ -288,7 +288,7 @@
|
|
||||||
|
|
||||||
- [Erik Van Roode] Mail::Mailer::test.pm -> Mail::Mailer::testfile.pm
|
|
||||||
|
|
||||||
- - [Jérôme Dion] corrected the folding of lines: folds start only
|
|
||||||
+ - [Jérôme Dion] corrected the folding of lines: folds start only
|
|
||||||
with one blank according to rfc2822.
|
|
||||||
|
|
||||||
- Added a big warning against automatic sender email address
|
|
||||||
@@ -414,7 +414,7 @@
|
|
||||||
time ago, broke the parser. As example
|
|
||||||
"Mark Overmeer <mailtools@overmeer.net> (mailtools maintainer)"
|
|
||||||
was parsed into two separate objects.... wrong.
|
|
||||||
- [Nicholas Oxhøj] reversed the patch.
|
|
||||||
+ [Nicholas Oxhøj] reversed the patch.
|
|
||||||
|
|
||||||
version 1.47: Fri Jul 5 12:02:55 CEST 2002
|
|
||||||
|
|
||||||
@@ -708,7 +708,7 @@
|
|
||||||
- check in $ENV{HOME} is defined
|
|
||||||
|
|
||||||
Mail::Address
|
|
||||||
- - Fix capitalization problems with names like "Ließegang"
|
|
||||||
+ - Fix capitalization problems with names like "LieÃegang"
|
|
||||||
|
|
||||||
Change 290 on 1999/03/31 by <gbarr@pobox.com> (Graham Barr)
|
|
||||||
|
|
@ -1,12 +1,11 @@
|
|||||||
Summary: Various mail-related perl modules
|
Summary: Various mail-related perl modules
|
||||||
Name: perl-MailTools
|
Name: perl-MailTools
|
||||||
Version: 2.11
|
Version: 2.12
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
URL: http://search.cpan.org/dist/MailTools/
|
URL: http://search.cpan.org/dist/MailTools/
|
||||||
Source0: http://search.cpan.org/CPAN/authors/id/M/MA/MARKOV/MailTools-%{version}.tar.gz
|
Source0: http://search.cpan.org/CPAN/authors/id/M/MA/MARKOV/MailTools-%{version}.tar.gz
|
||||||
Patch0: MailTools-2.08-UTF8.patch
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: perl >= 3:5.8.1
|
BuildRequires: perl >= 3:5.8.1
|
||||||
@ -40,9 +39,6 @@ chmod -c -x *_demo
|
|||||||
rm *.PL
|
rm *.PL
|
||||||
cd -
|
cd -
|
||||||
|
|
||||||
# Fix character encodings
|
|
||||||
%patch0 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
perl Makefile.PL INSTALLDIRS=vendor
|
perl Makefile.PL INSTALLDIRS=vendor
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
@ -109,6 +105,16 @@ rm -rf %{buildroot}
|
|||||||
%{_mandir}/man3/Mail::Util.3pm*
|
%{_mandir}/man3/Mail::Util.3pm*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Dec 21 2012 Paul Howarth <paul@city-fan.org> 2.12-1
|
||||||
|
- Update to 2.12
|
||||||
|
- Default for Mail::Header::new(Modify) is 'false', not 'true'
|
||||||
|
(CPAN RT#79985)
|
||||||
|
- Mail::Address take username with rindex(), a bit better than index() but
|
||||||
|
still poor (CPAN RT#82056)
|
||||||
|
- Check for bad folding of header lines (CPAN RT#79993)
|
||||||
|
- Add a note about better to avoid Mail::Address->name() (CPAN RT#81459)
|
||||||
|
- Drop UTF8 patch, no longer needed
|
||||||
|
|
||||||
* Wed Aug 29 2012 Paul Howarth <paul@city-fan.org> 2.11-1
|
* Wed Aug 29 2012 Paul Howarth <paul@city-fan.org> 2.11-1
|
||||||
- Update to 2.11
|
- Update to 2.11
|
||||||
- Fix typo in Mail::Mailer::smtp, which only shows up in Perl > 5.14
|
- Fix typo in Mail::Mailer::smtp, which only shows up in Perl > 5.14
|
||||||
|
Loading…
Reference in New Issue
Block a user