]> git.notmuchmail.org Git - notmuch/blob - util/gmime-extra.h
gmime-cleanup: drop g_mime_2_6_unref
[notmuch] / util / gmime-extra.h
1 #ifndef _GMIME_EXTRA_H
2 #define _GMIME_EXTRA_H
3 #include <gmime/gmime.h>
4 #include <talloc.h>
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9
10 GMimeStream *g_mime_stream_stdout_new(void);
11
12 #define GMIME_ENABLE_RFC_2047_WORKAROUNDS 0xdeadbeef
13 #define g_mime_content_type_to_string(c) g_mime_content_type_get_mime_type (c)
14 #define g_mime_filter_crlf_new(encode,dots) g_mime_filter_dos2unix_new (FALSE)
15 #define g_mime_gpg_context_new(func,path) g_mime_gpg_context_new ()
16 #define g_mime_gpg_context_set_use_agent(ctx,val) /*ignore*/
17 #define g_mime_gpg_context_set_always_trust(ctx,val) /*ignore*/
18 #define g_mime_init(flags) g_mime_init()
19 #define g_mime_message_add_recipient(m,t,n,a) g_mime_message_add_mailbox (m,t,n,a)
20 #define g_mime_message_set_subject(m,s) g_mime_message_set_subject(m,s,NULL)
21 #define g_mime_multipart_signed_verify(mps,ctx,err) g_mime_multipart_signed_verify(mps, GMIME_ENCRYPT_NONE, err)
22 #define g_mime_object_write_to_stream(o,s) g_mime_object_write_to_stream (o,NULL,s)
23 #define g_mime_object_set_header(o,h,v) g_mime_object_set_header (o,h,v,NULL)
24 #define g_mime_parser_construct_message(p) g_mime_parser_construct_message (p, g_mime_parser_options_get_default ())
25 #define g_mime_part_get_content_object(p) g_mime_part_get_content (p)
26 #define g_mime_pkcs7_context_new(arg) g_mime_pkcs7_context_new()
27 #define g_mime_pkcs7_context_set_always_trust(ctx,val) /*ignore*/
28 #define g_mime_signature_get_errors(sig) g_mime_signature_get_status (sig)
29 #define g_mime_utils_header_decode_text(txt) g_mime_utils_header_decode_text (NULL, txt)
30 #define internet_address_to_string(ia,encode) internet_address_to_string (ia,NULL,encode)
31 #define internet_address_list_parse_string(str) internet_address_list_parse (NULL,str)
32
33 typedef GMimeAddressType GMimeRecipientType;
34
35 typedef GMimeSignatureStatus GMimeSignatureError;
36
37 #define g_mime_3_unused(arg) unused(arg)
38
39 /**
40  * Get last 16 hex digits of fingerprint ("keyid")
41  */
42 const char *g_mime_certificate_get_fpr16 (GMimeCertificate *cert);
43 /**
44  * Return the contents of the appropriate address header as a string
45  * Should be freed using g_free
46  */
47 char *g_mime_message_get_address_string (GMimeMessage *message, GMimeRecipientType type);
48
49 InternetAddressList * g_mime_message_get_addresses (GMimeMessage *message, GMimeRecipientType type);
50
51 /**
52  * return talloc allocated date string
53  */
54
55 char *g_mime_message_get_date_string (void *ctx, GMimeMessage *message);
56
57 /**
58  * glib allocated list of From: addresses
59  */
60
61 InternetAddressList * g_mime_message_get_from (GMimeMessage *message);
62
63
64 /**
65  * return string for From: address
66  * (owned by gmime)
67  */
68 const char * g_mime_message_get_from_string (GMimeMessage *message);
69
70 InternetAddressList * g_mime_message_get_reply_to_list (GMimeMessage *message);
71
72 /**
73  * return talloc allocated reply-to string
74  */
75 char * g_mime_message_get_reply_to_string (void *ctx, GMimeMessage *message);
76
77 void g_mime_parser_set_scan_from (GMimeParser *parser, gboolean flag);
78
79 gboolean g_mime_signature_status_good (GMimeSignatureStatus status);
80
81 gboolean g_mime_signature_status_bad (GMimeSignatureStatus status);
82
83 gboolean g_mime_signature_status_error (GMimeSignatureError status);
84
85 gint64 g_mime_utils_header_decode_date_unix (const char *date);
86
87 /**
88  * Return string for valid User ID (or NULL if no valid User ID exists)
89  */
90 const char * g_mime_certificate_get_valid_userid (GMimeCertificate *cert);
91
92 #ifdef __cplusplus
93 }
94 #endif
95
96 #endif