diff options
author | uckelman <uckelman@nomic.net> | 2010-07-30 14:59:59 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-07-30 14:59:59 +0000 |
commit | 30ad72c00ef0a12690bc28ed13a13721e6a16888 (patch) | |
tree | f44f9320b1af9f4e7fb985ea43cb06e9e6cdb5ef /src | |
parent | 1db29fb75ed3157cc38f4f70291189de98a85187 (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
Diffstat (limited to 'src')
-rwxr-xr-x | src/postfix_handoff.pl | 2 |
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 ]; |