diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-09-18 18:04:26 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-09-18 18:04:26 +0100 |
commit | c873375123343e8f39dec6a3935ad2aad6d62d19 (patch) | |
tree | a58ff050faa1e5aeb4c46f2b70c9421ade082e8e /tests/runtests.pl | |
parent | 62d232c1312d7dc1b6412044123a1fa3f14d6336 (diff) |
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.
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-x | tests/runtests.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index 15acc07ff..e840053ef 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 } |