4e678e4dd64d4c08731d88cbe1b4b4fa147aaa10
[apps/madmutt.git] / lib-mime / mime.h
1 /*
2  *  This program is free software; you can redistribute it and/or modify
3  *  it under the terms of the GNU General Public License as published by
4  *  the Free Software Foundation; either version 2 of the License, or (at
5  *  your option) any later version.
6  *
7  *  This program is distributed in the hope that it will be useful, but
8  *  WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  *  General Public License for more details.
11  *
12  *  You should have received a copy of the GNU General Public License
13  *  along with this program; if not, write to the Free Software
14  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
15  *  MA 02110-1301, USA.
16  *
17  *  Copyright © 2006 Pierre Habouzit
18  */
19
20 /*
21  * Copyright notice from original mutt:
22  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
23  * Copyright (C) 1999-2000 Thomas Roessler <roessler@does-not-exist.org>
24  *
25  * This file is part of mutt-ng, see http://www.muttng.org/.
26  * It's licensed under the GNU General Public License,
27  * please see the file GPL in the top level source directory.
28  */
29
30 #ifndef MUTT_LIB_MIME_MIME_H
31 #define MUTT_LIB_MIME_MIME_H
32
33 #include <stdlib.h>
34 #include <stdio.h>
35
36 #include "mime-types.h"
37 #include "mime-token.h"
38
39 extern const char MimeSpecials[];
40 extern const char *BodyTypes[];
41 extern const char *BodyEncodings[];
42
43 /* MIME encoding/decoding global vars */
44
45 #define is_multipart(x) \
46     ((x)->type == TYPEMULTIPART \
47      || ((x)->type == TYPEMESSAGE && \
48          ((!mime_which_token((x)->subtype, -1) == MIME_RFC822) \
49          || !mime_which_token((x)->subtype, -1) == MIME_NEWS)))
50
51 #define TYPE(X) ((X->type == TYPEOTHER) && (X->xtype != NULL) ? X->xtype : BodyTypes[(X->type)])
52 #define ENCODING(X) BodyEncodings[(X)]
53
54 /****************************************************************************/
55 /* RFC 822                                                                  */
56 /*                Standard for ARPA Internet Text Messages                  */
57 /****************************************************************************/
58
59 extern const char RFC822Specials[];
60
61 ssize_t mutt_read_rfc822_line(FILE*, char**, ssize_t*);
62 LIST *mutt_parse_references(char *, int);
63 int mutt_check_encoding(const char *);
64 int mutt_check_mime_type(const char *);
65 void mutt_parse_content_type(char *, BODY *);
66 BODY *mutt_read_mime_header (FILE *, int);
67 void mutt_parse_part(FILE *, BODY *);
68 BODY *mutt_parse_messageRFC822(FILE *, BODY *);
69 BODY *mutt_parse_multipart(FILE *, const char *, off_t, int);
70 LIST **mutt_parse_rfc822_line(ENVELOPE *, HEADER *, char *line, char *p,
71                               short weed, short do_2047, LIST **);
72 ENVELOPE *mutt_read_rfc822_header(FILE *, HEADER *, short, short);
73 int mutt_count_body_parts (HEADER *hdr, int flags);
74
75 /*** addresses ***/
76
77 address_t *mutt_parse_adrlist (address_t *, const char *);
78 address_t *address_dup(address_t *addr);
79 address_t *address_list_dup(address_t *addr);
80 void rfc822_qualify(address_t *, const char *);
81
82 address_t *rfc822_parse_adrlist(address_t *, const char *s);
83
84 ssize_t rfc822_write_address(char *, ssize_t, address_t *, int);
85 ssize_t rfc822_write_address_single(char *, ssize_t, address_t *, int);
86 ssize_t rfc822_strcpy(char *, ssize_t, const char *, const char *);
87
88 /****************************************************************************/
89 /* RFC 2047                                                                 */
90 /*       MIME (Multipurpose Internet Mail Extensions) Part Three:           */
91 /*             Message Header Extensions for Non-ASCII Text                 */
92 /****************************************************************************/
93
94 char *mutt_choose_charset(const char *fromcode, const char *charsets,
95                           char *u, ssize_t ulen, char **d, ssize_t *dlen);
96
97 void rfc2047_encode_string(char **);
98 void rfc2047_encode_adrlist(address_t *, const char *);
99
100 void rfc2047_decode(char **);
101 void rfc2047_decode_adrlist(address_t *);
102 void rfc2047_decode_envelope(ENVELOPE* e);
103
104 /****************************************************************************/
105 /* RFC 2231                                                                 */
106 /*             MIME Parameter Value and Encoded Word Extensions:            */
107 /*               Character Sets, Languages, and Continuations               */
108 /****************************************************************************/
109
110 int  rfc2231_encode_string(char **);
111 void rfc2231_decode_parameters(PARAMETER **);
112
113 #endif /* MUTT_LIB_MIME_MIME_H */