summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruckelman <uckelman@nomic.net>2010-07-30 14:59:59 +0000
committeruckelman <uckelman@nomic.net>2010-07-30 14:59:59 +0000
commit30ad72c00ef0a12690bc28ed13a13721e6a16888 (patch)
treef44f9320b1af9f4e7fb985ea43cb06e9e6cdb5ef
parent1db29fb75ed3157cc38f4f70291189de98a85187 (diff)
Works as localhost, so use that and avoid name resolution.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@7054 67b53d14-2c14-4ace-a08f-0dab2b34000c
-rwxr-xr-xsrc/postfix_handoff.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/postfix_handoff.pl b/src/postfix_handoff.pl
index bbd61f6..66f0e0d 100755
--- a/src/postfix_handoff.pl
+++ b/src/postfix_handoff.pl
@@ -26,7 +26,7 @@ use HTTP::Request::Common qw(POST);
local $/;
my $msg = <STDIN>;
-my $url = 'http://www.test2.nomic.net/list_post_receive.php';
+my $url = 'http://localhost/list_post_receive.php';
my $ua = LWP::UserAgent->new;
my $req = POST $url, [ message => $msg ];