IMAP APPEND UPLOAD MULTIPART # Server-side # Client-side Mime imap IMAP APPEND multipart using mime API imap://%HOSTIP:%IMAPPORT/%TESTNUMBER -F "=(;type=multipart/alternative" -F "= This is the html version;type=text/html" -F "=This is the plain text version" -F "=)" -F "=@%LOGDIR/test%TESTNUMBER.txt" -H "Date: Mon, 7 Feb 1994 21:52:25 -0800 (PST)" -H "From: Fred Foobar %LTfoobar@example.com%GT" -H "To: joe@example.com" -H "Message-Id: %LTB27397-0100000@example.com%GT" -H "Subject: afternoon meeting" -u user:secret This is an attached file. It may contain any type of data. # Verify data after the test has been "shot" s/^--------------------------[A-Za-z0-9]*/------------------------------/ s/boundary=------------------------[A-Za-z0-9]*/boundary=----------------------------/ A001 CAPABILITY A002 LOGIN user secret A003 APPEND %TESTNUMBER (\Seen) {940} A004 LOGOUT Content-Type: multipart/mixed; boundary=----------------------------%CR Mime-Version: 1.0%CR Date: Mon, 7 Feb 1994 21:52:25 -0800 (PST)%CR From: Fred Foobar %LTfoobar@example.com%GT%CR To: joe@example.com%CR Message-Id: %LTB27397-0100000@example.com%GT%CR Subject: afternoon meeting%CR %CR ------------------------------%CR Content-Type: multipart/alternative; boundary=----------------------------%CR %CR ------------------------------%CR Content-Type: text/html%CR Content-Transfer-Encoding: 8bit%CR %CR This is the html version%CR ------------------------------%CR %CR This is the plain text version%CR --------------------------------%CR %CR ------------------------------%CR Content-Disposition: attachment; filename="test%TESTNUMBER.txt"%CR %CR This is an attached file. It may contain any type of data. %CR --------------------------------%CR