From: Steve Holme Date: Wed, 18 Sep 2013 17:04:26 +0000 (+0100) Subject: runtests.pl: Fixed smtp mail from address X-Git-Tag: curl-7_33_0~71 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c873375123343e;p=thirdparty%2Fcurl.git runtests.pl: Fixed smtp mail from address Following changes to ftpserver.pl fixed the mail from address to be a correctly formatted address otherwise the server response will be 501 Invalid address. --- diff --git a/tests/runtests.pl b/tests/runtests.pl index 15acc07ff7..e840053ef8 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -793,7 +793,7 @@ sub verifyftp { # SMTP is a bit different since it requires more options and it # has _no_ output! $extra .= "--mail-rcpt verifiedserver "; - $extra .= "--mail-from fake "; + $extra .= "--mail-from fake@example.com "; $extra .= "--upload /dev/null "; $extra .= "--stderr - "; # move stderr to parse the verbose stuff }