mirror of
https://github.com/curl/curl.git
synced 2026-08-03 14:40:43 +03:00
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.
This commit is contained in:
parent
62d232c131
commit
c873375123
1 changed files with 1 additions and 1 deletions
|
|
@ -793,7 +793,7 @@ sub verifyftp {
|
||||||
# SMTP is a bit different since it requires more options and it
|
# SMTP is a bit different since it requires more options and it
|
||||||
# has _no_ output!
|
# has _no_ output!
|
||||||
$extra .= "--mail-rcpt verifiedserver ";
|
$extra .= "--mail-rcpt verifiedserver ";
|
||||||
$extra .= "--mail-from fake ";
|
$extra .= "--mail-from fake@example.com ";
|
||||||
$extra .= "--upload /dev/null ";
|
$extra .= "--upload /dev/null ";
|
||||||
$extra .= "--stderr - "; # move stderr to parse the verbose stuff
|
$extra .= "--stderr - "; # move stderr to parse the verbose stuff
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue