NeoMutt  2024-04-25-1-g3de005
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
parse.h
Go to the documentation of this file.
1
24#ifndef MUTT_EMAIL_PARSE_H
25#define MUTT_EMAIL_PARSE_H
26
27#include "config.h"
28#include <stdbool.h>
29#include <stdio.h>
30#include "mime.h"
31
32struct Body;
33struct Buffer;
34struct Email;
35struct Envelope;
36
37void mutt_auto_subscribe (const char *mailto);
38int mutt_check_encoding (const char *c);
39enum ContentType mutt_check_mime_type (const char *s);
40char * mutt_extract_message_id (const char *s, size_t *len);
41bool mutt_is_message_type (int type, const char *subtype);
42bool mutt_matches_ignore (const char *s);
43void mutt_parse_content_type (const char *s, struct Body *b);
44bool mutt_parse_mailto (struct Envelope *env, char **body, const char *src);
45struct Body * mutt_parse_multipart (FILE *fp, const char *boundary, LOFF_T end_off, bool digest);
46void mutt_parse_part (FILE *fp, struct Body *b);
47struct Body * mutt_read_mime_header (FILE *fp, bool digest);
48int mutt_rfc822_parse_line (struct Envelope *env, struct Email *e, const char *name, size_t name_len, const char *body, bool user_hdrs, bool weed, bool do_2047);
49struct Body * mutt_rfc822_parse_message(FILE *fp, struct Body *b);
50struct Envelope *mutt_rfc822_read_header (FILE *fp, struct Email *e, bool user_hdrs, bool weed);
51size_t mutt_rfc822_read_line (FILE *fp, struct Buffer *out);
52
53void mutt_filter_commandline_header_tag (char *header);
55
56#endif /* MUTT_EMAIL_PARSE_H */
int mutt_rfc822_parse_line(struct Envelope *env, struct Email *e, const char *name, size_t name_len, const char *body, bool user_hdrs, bool weed, bool do_2047)
Parse an email header.
Definition: parse.c:678
struct Body * mutt_rfc822_parse_message(FILE *fp, struct Body *b)
Parse a Message/RFC822 body.
Definition: parse.c:1832
void mutt_parse_part(FILE *fp, struct Body *b)
Parse a MIME part.
Definition: parse.c:1817
void mutt_parse_content_type(const char *s, struct Body *b)
Parse a content type.
Definition: parse.c:463
void mutt_auto_subscribe(const char *mailto)
Check if user is subscribed to mailing list.
Definition: parse.c:109
struct Body * mutt_read_mime_header(FILE *fp, bool digest)
Parse a MIME header.
Definition: parse.c:1357
bool mutt_matches_ignore(const char *s)
Does the string match the ignore list.
Definition: parse.c:356
enum ContentType mutt_check_mime_type(const char *s)
Check a MIME type string.
Definition: parse.c:366
struct Envelope * mutt_rfc822_read_header(FILE *fp, struct Email *e, bool user_hdrs, bool weed)
Parses an RFC822 header.
Definition: parse.c:1200
bool mutt_parse_mailto(struct Envelope *env, char **body, const char *src)
Parse a mailto:// url.
Definition: parse.c:1749
int mutt_check_encoding(const char *c)
Check the encoding type.
Definition: parse.c:437
size_t mutt_rfc822_read_line(FILE *fp, struct Buffer *out)
Read a header line from a file.
Definition: parse.c:1120
struct Body * mutt_parse_multipart(FILE *fp, const char *boundary, LOFF_T end_off, bool digest)
Parse a multipart structure.
Definition: parse.c:1848
void mutt_filter_commandline_header_tag(char *header)
Sanitise characters in a header tag.
Definition: parse.c:73
char * mutt_extract_message_id(const char *s, size_t *len)
Find a message-id.
Definition: parse.c:401
bool mutt_is_message_type(int type, const char *subtype)
Determine if a mime type matches a message or not.
Definition: parse.c:1493
void mutt_filter_commandline_header_value(char *header)
Sanitise characters in a header value.
Definition: parse.c:93
Constants and macros for managing MIME encoding.
ContentType
Content-Type.
Definition: mime.h:30
The body of an email.
Definition: body.h:36
String manipulation buffer.
Definition: buffer.h:36
The envelope/body of an email.
Definition: email.h:39
The header of an Email.
Definition: envelope.h:57