Fix annoying error message (Release 0.6.1). v0.6.1
authorThomas Hochstein <thh@inter.net>
Sun, 4 Dec 2011 15:41:52 +0000 (16:41 +0100)
committerThomas Hochstein <thh@inter.net>
Sun, 4 Dec 2011 15:49:10 +0000 (16:49 +0100)
checkmail prints an error message like
  Argument "AI_NUMERICHOST" isn't numeric in subroutine
  entry at /usr/lib/perl5/Net/DNS/Resolver/Base.pm
  line 743.
every time. Change shebang to "perl -w" from "perl -W".

Update version number (in comment line too, where it
was stillt 0.5).

Update TODO and Changelog.

Include TODO in repository.

Release 0.6.1 (maintenance).

Signed-off-by: Thomas Hochstein <thh@inter.net>
.gitignore
ChangeLog
TODO [new file with mode: 0644]
checkmail.pl

index 30404ce..e69de29 100644 (file)
@@ -1 +0,0 @@
-TODO
\ No newline at end of file
index 40d303f..a608207 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Version 0.6.1 (2011-12-04)
+
+* Fix annoying error message
+  (and some small changes).
+  Thomas Hochstein <thh@inter.net> Sun Dec 04 16:41:52 2011 +0200
+
+
 Version 0.6 (2011-10-24)
 
 * Don't temp-fail on random address check.
 Version 0.6 (2011-10-24)
 
 * Don't temp-fail on random address check.
diff --git a/TODO b/TODO
new file mode 100644 (file)
index 0000000..b927390
--- /dev/null
+++ b/TODO
@@ -0,0 +1,7 @@
+                         checkmail To-Do-Liste
+                         =====================
+
+* better analyze SMTP response codes
+
+
+
index 3c30e18..4ea8398 100644 (file)
@@ -1,6 +1,6 @@
-#! /usr/bin/perl -W
+#! /usr/bin/perl -w
 #
 #
-# checkmail Version 0.5 by Thomas Hochstein
+# checkmail Version 0.6.1 by Thomas Hochstein
 #
 # This script tries to verify the deliverability of (a) mail address(es).
 # 
 #
 # This script tries to verify the deliverability of (a) mail address(es).
 # 
@@ -9,7 +9,7 @@
 # It can be redistributed and/or modified under the same terms under 
 # which Perl itself is published.
 
 # It can be redistributed and/or modified under the same terms under 
 # which Perl itself is published.
 
-our $VERSION = "0.6";
+our $VERSION = "0.6.1";
 
 ################################# Configuration ################################
 # Please fill in a working configuration!
 
 ################################# Configuration ################################
 # Please fill in a working configuration!
This page took 0.013597 seconds and 4 git commands to generate.