Subject: | Spelling error |
There's a trivial typo in the mail function. "Could't" is misspelled. See attached patch.
Subject: | spelling.patch |
--- /usr/lib/perl5/vendor_perl/5.8.5/Net/SMTP/TLS.pm 2006-01-17 09:36:34.000000000 -0500
+++ /tmp/TLS.pm 2012-02-28 14:32:50.000000000 -0500
@@ -276,7 +276,7 @@
$me->_command("MAIL FROM: "._addr($from));
my ($num,$txt) = $me->_response();
if(not $num == 250){
- croak "Could't set FROM: $num $txt\n";
+ croak "Couldn't set FROM: $num $txt\n";
}
}