svutil.c
1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/** utility wrappers around mailutils functionality **/
#include <errno.h>
#include <string.h>
#include "sv.h"
int
sv_mu_copy_debug_level (const mailbox_t from, mailbox_t to)
{
mu_debug_t d = 0;
size_t level;
int rc;
if (!from || !to)
return EINVAL;
rc = mailbox_get_debug (from, &d);
if (!rc)
mu_debug_get_level (d, &level);
if (!rc)
rc = mailbox_get_debug (to, &d);
if (!rc)
rc = mu_debug_set_level (d, level);
return rc;
}
int
sv_mu_save_to (const char *toname, message_t msg,
ticket_t ticket, mu_debug_t debug)
{
int rc = 0;
mailbox_t to = 0;
rc = mailbox_create_default (&to, toname);
if (!rc && debug)
{
folder_t folder = 0;
mailbox_set_debug (to, debug);
if (mailbox_get_folder (to, &folder))
folder_set_debug(folder, debug);
}
if (!rc && ticket)
{
folder_t folder = NULL;
authority_t auth = NULL;
if (!rc)
rc = mailbox_get_folder (to, &folder);
if (!rc)
rc = folder_get_authority (folder, &auth);
/* Authentication-less folders don't have authorities. */
if (!rc && auth)
rc = authority_set_ticket (auth, ticket);
}
if (!rc)
rc = mailbox_open (to, MU_STREAM_WRITE | MU_STREAM_CREAT);
if (!rc)
rc = mailbox_append_message (to, msg);
if (!rc)
rc = mailbox_close (to);
else
{
mailbox_close (to);
}
mailbox_destroy (&to);
return rc;
}
int
sv_mu_mark_deleted (message_t msg, int deleted)
{
attribute_t attr = 0;
int rc;
rc = message_get_attribute (msg, &attr);
if (!rc)
{
if (deleted)
rc = attribute_set_deleted (attr);
else
rc = attribute_unset_deleted (attr);
}
return rc;
}