2012-02-23 04:48:46 -05:00
|
|
|
<testcase>
|
2014-03-23 08:30:02 -04:00
|
|
|
# Based on test900
|
2012-02-23 04:48:46 -05:00
|
|
|
# N.B. --libcurl output not sufficient to deal with uploaded files.
|
|
|
|
<info>
|
|
|
|
<keywords>
|
|
|
|
SMTP
|
|
|
|
--libcurl
|
|
|
|
</keywords>
|
|
|
|
</info>
|
|
|
|
|
|
|
|
#
|
|
|
|
# Server-side
|
|
|
|
<reply>
|
2013-09-15 18:59:09 -04:00
|
|
|
<servercmd>
|
|
|
|
CAPA SIZE
|
|
|
|
</servercmd>
|
2012-02-23 04:48:46 -05:00
|
|
|
</reply>
|
|
|
|
|
|
|
|
#
|
|
|
|
# Client-side
|
|
|
|
<client>
|
|
|
|
<server>
|
|
|
|
smtp
|
|
|
|
</server>
|
|
|
|
<name>
|
2014-03-23 08:16:40 -04:00
|
|
|
--libcurl for SMTP
|
2012-02-23 04:48:46 -05:00
|
|
|
</name>
|
2017-03-12 17:33:56 -04:00
|
|
|
<setenv>
|
|
|
|
SSL_CERT_FILE=
|
|
|
|
</setenv>
|
2012-02-23 04:48:46 -05:00
|
|
|
<file name="log/test1406.eml">
|
2013-05-03 13:22:18 -04:00
|
|
|
From: different
|
|
|
|
To: another
|
|
|
|
|
|
|
|
body
|
2012-02-23 04:48:46 -05:00
|
|
|
</file>
|
|
|
|
<command>
|
2013-09-29 11:48:02 -04:00
|
|
|
smtp://%HOSTIP:%SMTPPORT/1406 --mail-rcpt recipient.one@example.com --mail-rcpt recipient.two@example.com --mail-from sender@example.com -T log/test1406.eml --libcurl log/test1406.c
|
2012-02-23 04:48:46 -05:00
|
|
|
</command>
|
|
|
|
</client>
|
|
|
|
|
|
|
|
#
|
|
|
|
# Verify data after the test has been "shot"
|
|
|
|
<verify>
|
|
|
|
<protocol>
|
2013-09-29 04:53:49 -04:00
|
|
|
EHLO 1406
|
2013-09-29 11:48:02 -04:00
|
|
|
MAIL FROM:<sender@example.com> SIZE=38
|
|
|
|
RCPT TO:<recipient.one@example.com>
|
2013-09-29 15:32:23 -04:00
|
|
|
RCPT TO:<recipient.two@example.com>
|
2012-02-23 17:13:42 -05:00
|
|
|
DATA
|
|
|
|
QUIT
|
2012-02-23 04:48:46 -05:00
|
|
|
</protocol>
|
|
|
|
<upload>
|
2013-05-03 13:22:18 -04:00
|
|
|
From: different
|
|
|
|
To: another
|
|
|
|
|
|
|
|
body
|
2012-02-23 17:13:42 -05:00
|
|
|
.
|
2012-02-23 04:48:46 -05:00
|
|
|
</upload>
|
2012-03-18 00:56:07 -04:00
|
|
|
<file name="log/test1406.c" mode="text">
|
2012-02-23 04:48:46 -05:00
|
|
|
/********* Sample code generated by the curl command line tool **********
|
|
|
|
* All curl_easy_setopt() options are documented at:
|
2016-02-02 18:19:02 -05:00
|
|
|
* https://curl.haxx.se/libcurl/c/curl_easy_setopt.html
|
2012-02-23 04:48:46 -05:00
|
|
|
************************************************************************/
|
|
|
|
#include <curl/curl.h>
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
CURLcode ret;
|
|
|
|
CURL *hnd;
|
|
|
|
struct curl_slist *slist1;
|
|
|
|
|
|
|
|
slist1 = NULL;
|
2013-09-29 11:48:02 -04:00
|
|
|
slist1 = curl_slist_append(slist1, "recipient.one@example.com");
|
|
|
|
slist1 = curl_slist_append(slist1, "recipient.two@example.com");
|
2012-02-23 04:48:46 -05:00
|
|
|
|
|
|
|
hnd = curl_easy_init();
|
2013-05-03 13:27:06 -04:00
|
|
|
curl_easy_setopt(hnd, CURLOPT_INFILESIZE_LARGE, (curl_off_t)38);
|
2013-09-29 04:53:49 -04:00
|
|
|
curl_easy_setopt(hnd, CURLOPT_URL, "smtp://%HOSTIP:%SMTPPORT/1406");
|
2012-02-23 04:48:46 -05:00
|
|
|
curl_easy_setopt(hnd, CURLOPT_HEADER, 1L);
|
|
|
|
curl_easy_setopt(hnd, CURLOPT_UPLOAD, 1L);
|
|
|
|
curl_easy_setopt(hnd, CURLOPT_USERAGENT, "stripped");
|
|
|
|
curl_easy_setopt(hnd, CURLOPT_MAXREDIRS, 50L);
|
|
|
|
curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L);
|
|
|
|
curl_easy_setopt(hnd, CURLOPT_TCP_KEEPALIVE, 1L);
|
2013-09-29 11:48:02 -04:00
|
|
|
curl_easy_setopt(hnd, CURLOPT_MAIL_FROM, "sender@example.com");
|
2012-02-23 04:48:46 -05:00
|
|
|
curl_easy_setopt(hnd, CURLOPT_MAIL_RCPT, slist1);
|
|
|
|
|
|
|
|
/* Here is a list of options the curl code used that cannot get generated
|
|
|
|
as source easily. You may select to either not use them or implement
|
|
|
|
them yourself.
|
|
|
|
|
|
|
|
CURLOPT_WRITEDATA set to a objectpointer
|
2016-10-18 08:10:59 -04:00
|
|
|
CURLOPT_INTERLEAVEDATA set to a objectpointer
|
2012-02-23 04:48:46 -05:00
|
|
|
CURLOPT_WRITEFUNCTION set to a functionpointer
|
|
|
|
CURLOPT_READDATA set to a objectpointer
|
|
|
|
CURLOPT_READFUNCTION set to a functionpointer
|
|
|
|
CURLOPT_SEEKDATA set to a objectpointer
|
|
|
|
CURLOPT_SEEKFUNCTION set to a functionpointer
|
|
|
|
CURLOPT_ERRORBUFFER set to a objectpointer
|
|
|
|
CURLOPT_STDERR set to a objectpointer
|
|
|
|
CURLOPT_DEBUGFUNCTION set to a functionpointer
|
|
|
|
CURLOPT_DEBUGDATA set to a objectpointer
|
2012-05-25 04:33:28 -04:00
|
|
|
CURLOPT_HEADERFUNCTION set to a functionpointer
|
|
|
|
CURLOPT_HEADERDATA set to a objectpointer
|
2012-02-23 04:48:46 -05:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
ret = curl_easy_perform(hnd);
|
|
|
|
|
|
|
|
curl_easy_cleanup(hnd);
|
|
|
|
hnd = NULL;
|
|
|
|
curl_slist_free_all(slist1);
|
|
|
|
slist1 = NULL;
|
|
|
|
|
|
|
|
return (int)ret;
|
|
|
|
}
|
|
|
|
/**** End of sample code ****/
|
|
|
|
</file>
|
|
|
|
<stripfile>
|
|
|
|
# curl's default user-agent varies with version, libraries etc.
|
|
|
|
s/(USERAGENT, \")[^\"]+/${1}stripped/
|
2015-12-13 03:24:08 -05:00
|
|
|
# CURLOPT_SSL_VERIFYPEER, SSH_KNOWNHOSTS and HTTP_VERSION vary with
|
|
|
|
# configurations - just ignore them
|
2012-02-23 04:48:46 -05:00
|
|
|
$_ = '' if /CURLOPT_SSL_VERIFYPEER/
|
2012-02-23 17:13:42 -05:00
|
|
|
$_ = '' if /CURLOPT_SSH_KNOWNHOSTS/
|
2015-12-13 03:24:08 -05:00
|
|
|
$_ = '' if /CURLOPT_HTTP_VERSION/
|
2012-02-23 04:48:46 -05:00
|
|
|
</stripfile>
|
|
|
|
</verify>
|
|
|
|
</testcase>
|