diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-09-19 07:19:25 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-09-19 07:19:25 +0100 |
commit | dfe7ee1429f91f06cae9e10dd18f770269271d29 (patch) | |
tree | f27f5a42880dfb6392b2ec7980584844e848536d /tests/data/test1406 | |
parent | 841103c77682b7e24ed8b6049f5b4d126b2b7ed4 (diff) |
tests: Fixed smtp mail from addresses
Diffstat (limited to 'tests/data/test1406')
-rw-r--r-- | tests/data/test1406 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/data/test1406 b/tests/data/test1406 index 158d30b36..ac9824670 100644 --- a/tests/data/test1406 +++ b/tests/data/test1406 @@ -32,7 +32,7 @@ To: another body
</file> <command> -smtp://%HOSTIP:%SMTPPORT/user --mail-rcpt 1406@foo --mail-rcpt 1406@foobar.example --mail-from 1406@from -T log/test1406.eml --libcurl log/test1406.c +smtp://%HOSTIP:%SMTPPORT/user --mail-rcpt 1406@foo --mail-rcpt 1406@foobar.example --mail-from 1406@example.com -T log/test1406.eml --libcurl log/test1406.c </command> </client> @@ -41,7 +41,7 @@ smtp://%HOSTIP:%SMTPPORT/user --mail-rcpt 1406@foo --mail-rcpt 1406@foobar.examp <verify> <protocol> EHLO user
-MAIL FROM:<1406@from> SIZE=38
+MAIL FROM:<1406@example.com> SIZE=38
RCPT TO:<1406@foo>
RCPT TO:<1406@foobar.example>
DATA
@@ -80,7 +80,7 @@ int main(int argc, char *argv[]) curl_easy_setopt(hnd, CURLOPT_MAXREDIRS, 50L); curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L); curl_easy_setopt(hnd, CURLOPT_TCP_KEEPALIVE, 1L); - curl_easy_setopt(hnd, CURLOPT_MAIL_FROM, "1406@from"); + curl_easy_setopt(hnd, CURLOPT_MAIL_FROM, "1406@example.com"); curl_easy_setopt(hnd, CURLOPT_MAIL_RCPT, slist1); /* Here is a list of options the curl code used that cannot get generated |