NeoMutt
2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
Loading...
Searching...
No Matches
rfc3676.h
Go to the documentation of this file.
1
25
26
#ifndef MUTT_EMAIL_RFC3676_H
27
#define MUTT_EMAIL_RFC3676_H
28
29
#include <stdbool.h>
30
31
struct
Body
;
32
struct
Email
;
33
struct
State
;
34
35
int
rfc3676_handler
(
struct
Body
*b_email,
struct
State
*state);
36
bool
mutt_rfc3676_is_format_flowed
(
struct
Body
*b);
37
void
mutt_rfc3676_space_stuff
(
struct
Email
*e);
38
void
mutt_rfc3676_space_unstuff
(
struct
Email
*e);
39
void
mutt_rfc3676_space_unstuff_attachment
(
struct
Body
*b,
const
char
*filename);
40
void
mutt_rfc3676_space_stuff_attachment
(
struct
Body
*b,
const
char
*filename);
41
42
#endif
/* MUTT_EMAIL_RFC3676_H */
rfc3676_handler
int rfc3676_handler(struct Body *b_email, struct State *state)
Handler for format=flowed - Implements handler_t -.
Definition
rfc3676.c:329
mutt_rfc3676_space_unstuff
void mutt_rfc3676_space_unstuff(struct Email *e)
Remove RFC3676 space stuffing.
Definition
rfc3676.c:505
mutt_rfc3676_space_stuff_attachment
void mutt_rfc3676_space_stuff_attachment(struct Body *b, const char *filename)
Stuff attachments.
Definition
rfc3676.c:545
mutt_rfc3676_space_unstuff_attachment
void mutt_rfc3676_space_unstuff_attachment(struct Body *b, const char *filename)
Unstuff attachments.
Definition
rfc3676.c:524
mutt_rfc3676_is_format_flowed
bool mutt_rfc3676_is_format_flowed(struct Body *b)
Is the Email "format-flowed"?
Definition
rfc3676.c:400
mutt_rfc3676_space_stuff
void mutt_rfc3676_space_stuff(struct Email *e)
Perform RFC3676 space stuffing on an Email.
Definition
rfc3676.c:492
Body
The body of an email.
Definition
body.h:36
Email
The envelope/body of an email.
Definition
email.h:39
State
Keep track when processing files.
Definition
state.h:54