Skip Menu |

This queue is for tickets about the MailTools CPAN distribution.

Report information
The Basics
Id: 123823
Status: resolved
Priority: 0/
Queue: MailTools

People
Owner: Nobody in particular
Requestors: scop [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 2.19
Fixed in: (no value)



Subject: [PATCH] Spelling fixes
Patch with spelling fixes attached.
Subject: 0001-Spelling-fixes.patch
From 3e3321d98508011f384a6362dbe5b2943ccba74d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= <ville.skytta@iki.fi> Date: Wed, 6 Dec 2017 09:28:12 +0200 Subject: [PATCH] Spelling fixes --- ChangeLog | 16 ++++++++-------- README.demos | 4 ++-- lib/Mail/Header.pm | 2 +- lib/Mail/Internet.pod | 4 ++-- lib/Mail/Mailer.pod | 2 +- lib/Mail/Util.pod | 2 +- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6857502..53ca131 100644 --- a/ChangeLog +++ b/ChangeLog @@ -111,7 +111,7 @@ version 2.08: Wed Jun 1 13:55:34 CEST 2011 Fixes: - - respect errors on closing an Mail::Mailer::smtp/::smtps connection. + - respect errors on closing a Mail::Mailer::smtp/::smtps connection. [Tristam Fenton-May] - Mail::Internet should accept Net::SMTP::SSL as well. @@ -247,7 +247,7 @@ version 2.00_01: Wed Jun 20 14:42:35 CEST 2007 - extracted Mail::Field::Generic from Mail::Field - - added misteriously missing Mail::Field::AddrList::addr_list() + - added mysteriously missing Mail::Field::AddrList::addr_list() version 1.77: Fri May 11 14:16:01 CEST 2007 @@ -283,7 +283,7 @@ version 1.75: Wed Jun 14 15:30:25 CEST 2006 - [Mike Lerley] reported that environment variables are not thread-safe in mod_perl. Therefore, we must pass the - sender of the message explictly on qmail's command-line. + sender of the message explicitly on qmail's command-line. His addapted patch included. version 1.74: Tue Feb 28 08:39:14 CET 2006 @@ -535,7 +535,7 @@ version 1.47: Fri Jul 5 12:02:55 CEST 2002 version 1.46: Wed May 29 15:08:44 CEST 2002 - - [Philip Molter] discoverd my typo in Mail/Mailer/rfc822.pm + - [Philip Molter] discovered my typo in Mail/Mailer/rfc822.pm which forced me to release a new version.... version 1.45: Thu May 23 10:15:59 CEST 2002 @@ -547,7 +547,7 @@ version 1.45: Thu May 23 10:15:59 CEST 2002 '-I' in Mail::Mailer. - [Leon Avery] updated Mail/Mailer/rfc822.pm to be more - careful with multi-lined, multi-occurence headers. + careful with multi-lined, multi-occurrence headers. - [Drieux] small fix in Mail/Mailer/smtp.pm which enables the passing-on of args to Net::SMTP. @@ -606,7 +606,7 @@ version 1.41: Wed Nov 14 10:35:57 CET 2001 - [Lucas Nussbaum] reported incorrect folding of unstructured header lines. The whole idea of folder unstructured fields - is flawed, as far as I know, but anyway noone apparantly had + is flawed, as far as I know, but anyway noone apparently had sufficient long subject fields to find-out ;) Fixed in Mail::Mailer. @@ -899,7 +899,7 @@ Change 162 on 1998/06/30 by <gbarr@pobox.com> (Graham Barr) Sun Jun 28 1998 <gbarr@pobox.com> (Graham Barr) Mail::Address - - Split out real handlers into thier own .pm files + - Split out real handlers into their own .pm files - Added Mail::Mailer::smtp, this is the default for MacOS Wed Jun 17 1998 <gbarr@pobox.com> (Graham Barr) @@ -960,7 +960,7 @@ Fri Jan 2 1998 <gbarr@pobox.com> (Graham Barr) Mail::Mailer - removed all for(my $i ...) and foreach my $d as they break - compatability with pre perl5.004 + compatibility with pre perl5.004 Tue Nov 25 1997 <gbarr@pobox.com> (Graham Barr) diff --git a/README.demos b/README.demos index 51979ee..5faf3a7 100644 --- a/README.demos +++ b/README.demos @@ -48,12 +48,12 @@ rplyto_demo: send_demo: This takes an Internet message as input and uses sendmail to send - the message. It also allows the user to defined aliases in thier + the message. It also allows the user to defined aliases in their ~/.mailrc file in the same format as would be expected by binmail alias name expansion If you have News::NNTPClient installed then this script can also be used to post to a newsgroup by adding a Newsgroups: line into the - header an passing a -post option on the cmdline. + header and passing a -post option on the cmdline. diff --git a/lib/Mail/Header.pm b/lib/Mail/Header.pm index a999f65..de1495c 100644 --- a/lib/Mail/Header.pm +++ b/lib/Mail/Header.pm @@ -74,7 +74,7 @@ sub _fold_line my $min = int($maxlen * 4 / 5) - 4; $_[0] =~ s/[\r\n]+//og; # Remove new-lines - $_[0] =~ s/\s*\Z/\n/so; # End line with a EOLN + $_[0] =~ s/\s*\Z/\n/so; # End line with an EOLN return if $_[0] =~ /^From\s/io; diff --git a/lib/Mail/Internet.pod b/lib/Mail/Internet.pod index a6c42b7..dd7bae4 100644 --- a/lib/Mail/Internet.pod +++ b/lib/Mail/Internet.pod @@ -187,7 +187,7 @@ field-name twice. =item $obj-E<gt>B<remove_sig>( [NLINES] ) -Attempts to remove a users signature from the body of a message. It does this +Attempts to remove a user's signature from the body of a message. It does this by looking for a line equal to C<'-- '> within the last C<NLINES> of the message. If found then that line and all lines after it will be removed. If C<NLINES> is not given a default value of 10 will be used. This would be of @@ -328,7 +328,7 @@ Requires Net::SMTP and Net::Domain to be installed. =item Debug => BOOLEAN -Debug value to pass to Net::SMPT, see <Net::SMTP> +Debug value to pass to Net::SMTP, see <Net::SMTP> =item Hello => STRING diff --git a/lib/Mail/Mailer.pod b/lib/Mail/Mailer.pod index 7b9c63f..669cbdc 100644 --- a/lib/Mail/Mailer.pod +++ b/lib/Mail/Mailer.pod @@ -7,7 +7,7 @@ Mail::Mailer - send simple emails =head1 INHERITANCE Mail::Mailer - is a IO::Handle + is an IO::Handle =head1 SYNOPSIS diff --git a/lib/Mail/Util.pod b/lib/Mail/Util.pod index 8eb7126..18a462f 100644 --- a/lib/Mail/Util.pod +++ b/lib/Mail/Util.pod @@ -7,7 +7,7 @@ Mail::Util - mail utility functions =head1 INHERITANCE Mail::Util - is a Exporter + is an Exporter =head1 SYNOPSIS -- 2.14.1
taken