-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages.c
254 lines (208 loc) · 3.8 KB
/
messages.c
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
/*
* $Id$
*
* (c) Copyright 1993-1997 by Mark Grant, and by other
* authors as appropriate. All right reserved.
*
* The authors assume no liability for damages resulting from the
* use of this software, even if the damage results from defects in
* this software. No warranty is expressed or implied.
*
* This software is distributed under the GNU Public Licence, see
* the file COPYING for more details.
*
* - Mark Grant ([email protected]) 29/6/94
*
* Added to
* - Anders Baekgaard ([email protected]) 10th August 1995
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdio.h>
#ifndef HAVE_MALLOC_H
#include <stdlib.h>
#else
#include <malloc.h>
#endif
#include "def.h"
#include "buffers.h"
#include "message.h"
extern FILE *mail_fp;
void
free_string(char *s)
{
if (s) {
bzero (s, strlen(s));
free (s);
}
}
MESSAGE *
new_message(void)
{
MESSAGE *m;
static word32 id = 1;
m = (MESSAGE *)malloc(sizeof(MESSAGE));
m->body = 0;
m->header = 0;
m->signature = 0;
m->decrypted = 0;
m->sender = 0;
m->to = 0;
m->cc = 0;
m->reply_to = 0;
m->email = 0;
m->subject = 0;
m->date = 0;
m->next = 0;
m->prev = 0;
m->lines = 0;
m->size = 0;
m->number = 0;
m->list_pos = 0;
m->description = 0;
m->message_id = 0;
m->header_date = 0;
m->offset = 0;
m->data_type = DT_NONE;
m->attachment_type = 0;
m->is_mime = 0;
m->content_transfer_encoding = 0;
m->unique_id = id++;
m->flags = 0;
return m;
}
void
free_message(MESSAGE *b)
{
if (b->body)
free_buffer (b->body);
if (b->header)
free_buffer (b->header);
if (b->signature)
free_buffer (b->signature);
if (b->decrypted)
free_buffer (b->decrypted);
if (b->sender)
free_string (b->sender);
if (b->to)
free_string (b->to);
if (b->reply_to)
free_string (b->reply_to);
if (b->email)
free_string (b->email);
if (b->date)
free_string (b->date);
if (b->subject)
free_string (b->subject);
if (b->description)
free_string (b->description);
if (b->message_id)
free_string (b->message_id);
if (b->header_date)
free_string (b->header_date);
free(b);
}
/* Add a message to the specified message list */
void
add_to_message_list_start(MESSAGE_LIST *l, MESSAGE *m)
{
if (l->start) {
m->next = l->start;
l->start->prev = m;
l->start = m;
m->prev = NULL;
}
else {
m->next = NULL;
m->prev = NULL;
l->start = l->end = m;
}
l->number++;
if (m->status == MSTAT_NONE)
l->new++;
if (m->status == MSTAT_UNREAD)
l->unread++;
if (m->flags & MESS_ENCRYPTED)
l->encrypted++;
}
void
add_to_message_list_end(MESSAGE_LIST *l, MESSAGE *m)
{
if (l->end) {
m->prev = l->end;
l->end->next = m;
l->end = m;
m->next = NULL;
}
else {
m->next = NULL;
m->prev = NULL;
l->start = l->end = m;
}
l->number++;
if (m->status == MSTAT_NONE)
l->new++;
if (m->status == MSTAT_UNREAD)
l->unread++;
if (m->flags & MESS_ENCRYPTED)
l->encrypted++;
}
#define BUF_SIZE 512
static BUFFER *messb = NULL;
BUFFER *
message_contents(MESSAGE *m)
{
static word32 last_id = 0;
byte buf [BUF_SIZE];
int l, s;
switch (m->data_type) {
case DT_MEM:
return m->body;
case DT_FILE:
/* Is this the same message as last time ? */
if (m->unique_id == last_id && messb)
return messb;
/* Ok, read it from the file */
if (!messb)
messb = new_buffer ();
else
clear_buffer (messb);
fseek (mail_fp, m->offset, 0);
l = m->size;
while (l > 0) {
if (l > BUF_SIZE)
s = BUF_SIZE;
else
s = l;
fread (buf, s, 1, mail_fp);
add_to_buffer (messb, buf, s);
l -= s;
}
last_id = m->unique_id;
bzero (buf, BUF_SIZE);
return messb;
default:
return NULL;
}
}
void
set_mem_message (MESSAGE *m)
{
m->data_type = DT_MEM;
}
void
set_file_message (MESSAGE *m)
{
m->data_type = DT_FILE;
}
void
init_messages (void)
{
}
void
close_messages (void)
{
if (messb)
free_buffer (messb);
}