NeoMutt
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
body.h File Reference

Convenience wrapper for the send headers. More...

#include <stdio.h>
+ Include dependency graph for body.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

int mutt_write_mime_body (struct Body *a, FILE *fp, struct ConfigSubset *sub)
 Write a MIME part.
 

Detailed Description

Convenience wrapper for the send headers.

Authors
  • Richard Russon

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Definition in file body.h.

Function Documentation

◆ mutt_write_mime_body()

int mutt_write_mime_body ( struct Body a,
FILE *  fp,
struct ConfigSubset sub 
)

Write a MIME part.

Parameters
aBody to use
fpFile to write to
subConfig Subset
Return values
0Success
-1Failure

Definition at line 301 of file body.c.

302{
303 FILE *fp_in = NULL;
304 struct FgetConv *fc = NULL;
305
306 if (a->type == TYPE_MULTIPART)
307 {
308 /* First, find the boundary to use */
309 const char *p = mutt_param_get(&a->parameter, "boundary");
310 if (!p)
311 {
312 mutt_debug(LL_DEBUG1, "no boundary parameter found\n");
313 mutt_error(_("No boundary parameter found [report this error]"));
314 return -1;
315 }
316 char boundary[128] = { 0 };
317 mutt_str_copy(boundary, p, sizeof(boundary));
318
319 for (struct Body *t = a->parts; t; t = t->next)
320 {
321 fprintf(fp, "\n--%s\n", boundary);
322 if (mutt_write_mime_header(t, fp, sub) == -1)
323 return -1;
324 fputc('\n', fp);
325 if (mutt_write_mime_body(t, fp, sub) == -1)
326 return -1;
327 }
328 fprintf(fp, "\n--%s--\n", boundary);
329 return ferror(fp) ? -1 : 0;
330 }
331
332 /* This is pretty gross, but it's the best solution for now... */
333 if (((WithCrypto & APPLICATION_PGP) != 0) && (a->type == TYPE_APPLICATION) &&
334 mutt_str_equal(a->subtype, "pgp-encrypted") && !a->filename)
335 {
336 fputs("Version: 1\n", fp);
337 return 0;
338 }
339
340 fp_in = fopen(a->filename, "r");
341 if (!fp_in)
342 {
343 mutt_debug(LL_DEBUG1, "%s no longer exists\n", a->filename);
344 mutt_error(_("%s no longer exists"), a->filename);
345 return -1;
346 }
347
348 if ((a->type == TYPE_TEXT) && (!a->noconv))
349 {
350 char send_charset[128] = { 0 };
351 fc = mutt_ch_fgetconv_open(fp_in, a->charset,
352 mutt_body_get_charset(a, send_charset, sizeof(send_charset)),
354 }
355 else
356 {
358 }
359
363 else if (a->encoding == ENC_BASE64)
365 else if ((a->type == TYPE_TEXT) && (!a->noconv))
366 encode_8bit(fc, fp);
367 else
370
372 mutt_file_fclose(&fp_in);
373
374 if (SigInt)
375 {
376 SigInt = false;
377 return -1;
378 }
379 return ferror(fp) ? -1 : 0;
380}
char * mutt_body_get_charset(struct Body *b, char *buf, size_t buflen)
Get a body's character set.
Definition: body.c:131
int mutt_file_copy_stream(FILE *fp_in, FILE *fp_out)
Copy the contents of one file into another.
Definition: file.c:262
int mutt_file_fclose(FILE **fp)
Close a FILE handle (and NULL the pointer)
Definition: file.c:152
SIG_ATOMIC_VOLATILE_T SigInt
true after SIGINT is received
Definition: globals.c:59
#define mutt_error(...)
Definition: logging2.h:92
#define mutt_debug(LEVEL,...)
Definition: logging2.h:89
int mutt_write_mime_header(struct Body *a, FILE *fp, struct ConfigSubset *sub)
Create a MIME header.
Definition: header.c:758
@ LL_DEBUG1
Log at debug level 1.
Definition: logging2.h:43
@ ENC_BASE64
Base-64 encoded text.
Definition: mime.h:52
@ ENC_QUOTED_PRINTABLE
Quoted-printable text.
Definition: mime.h:51
@ TYPE_MULTIPART
Type: 'multipart/*'.
Definition: mime.h:37
@ TYPE_APPLICATION
Type: 'application/*'.
Definition: mime.h:33
@ TYPE_TEXT
Type: 'text/*'.
Definition: mime.h:38
struct FgetConv * mutt_ch_fgetconv_open(FILE *fp, const char *from, const char *to, uint8_t flags)
Prepare a file for charset conversion.
Definition: charset.c:928
void mutt_ch_fgetconv_close(struct FgetConv **ptr)
Close an fgetconv handle.
Definition: charset.c:960
#define MUTT_ICONV_NO_FLAGS
No flags are set.
Definition: charset.h:71
#define _(a)
Definition: message.h:28
bool mutt_str_equal(const char *a, const char *b)
Compare two strings.
Definition: string.c:798
size_t mutt_str_copy(char *dest, const char *src, size_t dsize)
Copy a string into a buffer (guaranteeing NUL-termination)
Definition: string.c:653
#define APPLICATION_PGP
Use PGP to encrypt/sign.
Definition: lib.h:91
#define WithCrypto
Definition: lib.h:117
char * mutt_param_get(const struct ParameterList *pl, const char *s)
Find a matching Parameter.
Definition: parameter.c:84
static void encode_quoted(struct FgetConv *fc, FILE *fp_out, bool istext)
Encode text as quoted printable.
Definition: body.c:150
static bool write_as_text_part(struct Body *b)
Should the Body be written as a text MIME part.
Definition: body.c:287
static void encode_base64(struct FgetConv *fc, FILE *fp_out, int istext)
Base64-encode some data.
Definition: body.c:103
int mutt_write_mime_body(struct Body *a, FILE *fp, struct ConfigSubset *sub)
Write a MIME part.
Definition: body.c:301
static void encode_8bit(struct FgetConv *fc, FILE *fp_out)
Write the data as raw 8-bit data.
Definition: body.c:129
void mutt_sig_allow_interrupt(bool allow)
Allow/disallow Ctrl-C (SIGINT)
Definition: signal.c:251
The body of an email.
Definition: body.h:36
struct Body * parts
parts of a multipart or message/rfc822
Definition: body.h:72
bool noconv
Don't do character set conversion.
Definition: body.h:46
char * charset
Send mode: charset of attached file as stored on disk.
Definition: body.h:78
struct ParameterList parameter
Parameters of the content-type.
Definition: body.h:62
struct Body * next
next attachment in the list
Definition: body.h:71
char * subtype
content-type subtype
Definition: body.h:60
unsigned int encoding
content-transfer-encoding, ContentEncoding
Definition: body.h:41
unsigned int type
content-type primary type, ContentType
Definition: body.h:40
char * filename
When sending a message, this is the file to which this structure refers.
Definition: body.h:58
Cursor for converting a file's encoding.
Definition: charset.h:41
FILE * fp
Definition: charset.h:42
char * p
Definition: charset.h:46
+ Here is the call graph for this function:
+ Here is the caller graph for this function: