Mercurial > libpst
annotate src/readpst.c @ 123:ab2a11e72250
more cleanup of #include files.
common.h is the only file allowed to include system .h files
unprotected by autoconf HAVE_ symbols. define.h is the only other file
allowed to include system .h files. define.h is never installed;
common.h is installed if we are building the shared library.
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Tue, 03 Feb 2009 10:59:10 -0800 |
parents | bdb38b434c0a |
children | 23a36ac0514d |
rev | line source |
---|---|
16 | 1 /*** |
2 * readpst.c | |
3 * Part of the LibPST project | |
4 * Written by David Smith | |
43 | 5 * dave.s@earthcorp.com |
16 | 6 */ |
120
6395ced2b8b2
disable building pst2dii on cygwin
Carl Byington <carl@five-ten-sg.com>
parents:
118
diff
changeset
|
7 #include "common.h" |
6395ced2b8b2
disable building pst2dii on cygwin
Carl Byington <carl@five-ten-sg.com>
parents:
118
diff
changeset
|
8 #include "libpst.h" |
6395ced2b8b2
disable building pst2dii on cygwin
Carl Byington <carl@five-ten-sg.com>
parents:
118
diff
changeset
|
9 #include "timeconv.h" |
59
7d5c637aaafb
General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
10 #include "libstrfunc.h" |
116
ed2a260bbb98
improve handling of content-type charset values in mime parts
Carl Byington <carl@five-ten-sg.com>
parents:
110
diff
changeset
|
11 #include "vbuf.h" |
59
7d5c637aaafb
General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
12 |
122
bdb38b434c0a
more changes from Fridrich Strba to avoid installing our config.h
Carl Byington <carl@five-ten-sg.com>
parents:
121
diff
changeset
|
13 #include "define.h" |
bdb38b434c0a
more changes from Fridrich Strba to avoid installing our config.h
Carl Byington <carl@five-ten-sg.com>
parents:
121
diff
changeset
|
14 #include "lzfu.h" |
bdb38b434c0a
more changes from Fridrich Strba to avoid installing our config.h
Carl Byington <carl@five-ten-sg.com>
parents:
121
diff
changeset
|
15 |
16 | 16 #define OUTPUT_TEMPLATE "%s" |
17 #define OUTPUT_KMAIL_DIR_TEMPLATE ".%s.directory" | |
18 #define KMAIL_INDEX ".%s.index" | |
25 | 19 #define SEP_MAIL_FILE_TEMPLATE "%i" /* "%09i" */ |
16 | 20 |
21 // max size of the c_time char*. It will store the date of the email | |
22 #define C_TIME_SIZE 500 | |
59
7d5c637aaafb
General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
23 |
16 | 24 struct file_ll { |
43 | 25 char *name; |
26 char *dname; | |
27 FILE * output; | |
28 int32_t stored_count; | |
29 int32_t email_count; | |
30 int32_t skip_count; | |
31 int32_t type; | |
16 | 32 }; |
31 | 33 |
43 | 34 void process(pst_item *outeritem, pst_desc_ll *d_ptr); |
35 void write_email_body(FILE *f, char *body); | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
36 void removeCR(char *c); |
118
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
37 void usage(); |
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
38 void version(); |
43 | 39 char* mk_kmail_dir(char*); |
40 int close_kmail_dir(); | |
41 char* mk_recurse_dir(char*); | |
42 int close_recurse_dir(); | |
77 | 43 char* mk_separate_dir(char *dir); |
44 int close_separate_dir(); | |
45 int mk_separate_file(struct file_ll *f); | |
43 | 46 char* my_stristr(char *haystack, char *needle); |
47 void check_filename(char *fname); | |
48 void write_separate_attachment(char f_name[], pst_item_attach* current_attach, int attach_num, pst_file* pst); | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
49 void write_inline_attachment(FILE* f_output, pst_item_attach* current_attach, char *boundary, pst_file* pst); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
50 void header_has_field(char *header, char *field, int *flag); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
51 char* header_get_field(char *header, char *field); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
52 void header_strip_field(char *header, char *field); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
53 int test_base64(char *body); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
54 void find_html_charset(char *html, char *charset, size_t charsetlen); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
55 void write_body_part(FILE* f_output, char *body, char *mime, char *charset, char *boundary); |
43 | 56 void write_normal_email(FILE* f_output, char f_name[], pst_item* item, int mode, int mode_MH, pst_file* pst, int save_rtf); |
57 void write_vcard(FILE* f_output, pst_item_contact* contact, char comment[]); | |
58 void write_appointment(FILE* f_output, pst_item_appointment* appointment, | |
59 pst_item_email* email, FILETIME* create_date, FILETIME* modify_date); | |
60 void create_enter_dir(struct file_ll* f, pst_item *item); | |
61 void close_enter_dir(struct file_ll *f); | |
34
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
33
diff
changeset
|
62 |
118
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
63 const char* prog_name; |
34
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
33
diff
changeset
|
64 char* output_dir = "."; |
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
33
diff
changeset
|
65 char* kmail_chdir = NULL; |
77 | 66 |
16 | 67 // Normal mode just creates mbox format files in the current directory. Each file is named |
68 // the same as the folder's name that it represents | |
69 #define MODE_NORMAL 0 | |
77 | 70 |
16 | 71 // KMail mode creates a directory structure suitable for being used directly |
72 // by the KMail application | |
73 #define MODE_KMAIL 1 | |
77 | 74 |
16 | 75 // recurse mode creates a directory structure like the PST file. Each directory |
76 // contains only one file which stores the emails in mbox format. | |
77 #define MODE_RECURSE 2 | |
77 | 78 |
79 // separate mode creates the same directory structure as recurse. The emails are stored in | |
80 // separate files, numbering from 1 upward. Attachments belonging to the emails are | |
16 | 81 // saved as email_no-filename (e.g. 1-samplefile.doc or 000001-Attachment2.zip) |
77 | 82 #define MODE_SEPARATE 3 |
83 | |
43 | 84 // Decrypt the whole file (even the parts that aren't encrypted) and ralph it to stdout |
85 #define MODE_DECSPEW 4 | |
16 | 86 |
87 | |
88 // Output Normal just prints the standard information about what is going on | |
89 #define OUTPUT_NORMAL 0 | |
77 | 90 |
16 | 91 // Output Quiet is provided so that only errors are printed |
92 #define OUTPUT_QUIET 1 | |
93 | |
94 // default mime-type for attachments that have a null mime-type | |
95 #define MIME_TYPE_DEFAULT "application/octet-stream" | |
96 | |
97 // output mode for contacts | |
98 #define CMODE_VCARD 0 | |
43 | 99 #define CMODE_LIST 1 |
16 | 100 |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
101 // output mode for deleted items |
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
102 #define DMODE_EXCLUDE 0 |
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
103 #define DMODE_INCLUDE 1 |
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
104 |
16 | 105 // output settings for RTF bodies |
106 // filename for the attachment | |
107 #define RTF_ATTACH_NAME "rtf-body.rtf" | |
108 // mime type for the attachment | |
109 #define RTF_ATTACH_TYPE "application/rtf" | |
34
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
33
diff
changeset
|
110 |
39 | 111 // global settings |
112 int mode = MODE_NORMAL; | |
113 int mode_MH = 0; | |
114 int output_mode = OUTPUT_NORMAL; | |
115 int contact_mode = CMODE_VCARD; | |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
116 int deleted_mode = DMODE_EXCLUDE; |
39 | 117 int overwrite = 0; |
118 int save_rtf_body = 1; | |
119 pst_file pstfile; | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
120 regex_t meta_charset_pattern; |
39 | 121 |
122 | |
123 void process(pst_item *outeritem, pst_desc_ll *d_ptr) | |
124 { | |
43 | 125 struct file_ll ff; |
126 pst_item *item = NULL; | |
39 | 127 |
43 | 128 DEBUG_ENT("process"); |
129 memset(&ff, 0, sizeof(ff)); | |
130 create_enter_dir(&ff, outeritem); | |
39 | 131 |
43 | 132 while (d_ptr) { |
133 DEBUG_MAIN(("main: New item record\n")); | |
134 if (!d_ptr->desc) { | |
135 DEBUG_WARN(("main: ERROR ?? item's desc record is NULL\n")); | |
136 ff.skip_count++; | |
137 } | |
138 else { | |
139 DEBUG_MAIN(("main: Desc Email ID %#x [d_ptr->id = %#x]\n", d_ptr->desc->id, d_ptr->id)); | |
39 | 140 |
46 | 141 item = pst_parse_item(&pstfile, d_ptr); |
43 | 142 DEBUG_MAIN(("main: About to process item\n")); |
143 if (item && item->email && item->email->subject && item->email->subject->subj) { | |
144 DEBUG_EMAIL(("item->email->subject = %p\n", item->email->subject)); | |
145 DEBUG_EMAIL(("item->email->subject->subj = %p\n", item->email->subject->subj)); | |
146 } | |
147 if (item) { | |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
148 if (item->folder && d_ptr->child && (deleted_mode == DMODE_INCLUDE || strcasecmp(item->file_as, "Deleted Items"))) { |
43 | 149 //if this is a non-empty folder other than deleted items, we want to recurse into it |
150 if (output_mode != OUTPUT_QUIET) printf("Processing Folder \"%s\"\n", item->file_as); | |
151 process(item, d_ptr->child); | |
152 | |
153 } else if (item->contact && (item->type == PST_TYPE_CONTACT)) { | |
154 // deal with a contact | |
155 // write them to the file, one per line in this format | |
156 // Desc Name <email@address>\n | |
77 | 157 if (mode == MODE_SEPARATE) mk_separate_file(&ff); |
43 | 158 ff.email_count++; |
159 DEBUG_MAIN(("main: Processing Contact\n")); | |
160 if (ff.type != PST_TYPE_CONTACT) { | |
161 DEBUG_MAIN(("main: I have a contact, but the folder isn't a contacts folder. Processing anyway\n")); | |
162 } | |
163 if (contact_mode == CMODE_VCARD) | |
164 write_vcard(ff.output, item->contact, item->comment); | |
165 else | |
166 fprintf(ff.output, "%s <%s>\n", item->contact->fullname, item->contact->address1); | |
39 | 167 |
110
7133b39975f7
patch from David Cuadrado to process emails with type PST_TYPE_OTHER
Carl Byington <carl@five-ten-sg.com>
parents:
104
diff
changeset
|
168 } else if (item->email && (item->type == PST_TYPE_NOTE || item->type == PST_TYPE_REPORT || item->type == PST_TYPE_OTHER)) { |
77 | 169 if (mode == MODE_SEPARATE) mk_separate_file(&ff); |
43 | 170 ff.email_count++; |
171 DEBUG_MAIN(("main: Processing Email\n")); | |
110
7133b39975f7
patch from David Cuadrado to process emails with type PST_TYPE_OTHER
Carl Byington <carl@five-ten-sg.com>
parents:
104
diff
changeset
|
172 if ((ff.type != PST_TYPE_NOTE) && (ff.type != PST_TYPE_REPORT) && (ff.type != PST_TYPE_OTHER)) { |
43 | 173 DEBUG_MAIN(("main: I have an email, but the folder isn't an email folder. Processing anyway\n")); |
174 } | |
175 write_normal_email(ff.output, ff.name, item, mode, mode_MH, &pstfile, save_rtf_body); | |
39 | 176 |
43 | 177 } else if (item->journal && (item->type == PST_TYPE_JOURNAL)) { |
178 // deal with journal items | |
77 | 179 if (mode == MODE_SEPARATE) mk_separate_file(&ff); |
43 | 180 ff.email_count++; |
181 DEBUG_MAIN(("main: Processing Journal Entry\n")); | |
182 if (ff.type != PST_TYPE_JOURNAL) { | |
183 DEBUG_MAIN(("main: I have a journal entry, but the folder isn't a journal folder. Processing anyway\n")); | |
184 } | |
185 fprintf(ff.output, "BEGIN:VJOURNAL\n"); | |
50 | 186 if (item->email && item->email->subject && item->email->subject->subj) |
43 | 187 fprintf(ff.output, "SUMMARY:%s\n", pst_rfc2426_escape(item->email->subject->subj)); |
50 | 188 if (item->email && item->email->body) |
43 | 189 fprintf(ff.output, "DESCRIPTION:%s\n", pst_rfc2426_escape(item->email->body)); |
190 if (item->journal->start) | |
191 fprintf(ff.output, "DTSTART;VALUE=DATE-TIME:%s\n", pst_rfc2445_datetime_format(item->journal->start)); | |
192 fprintf(ff.output, "END:VJOURNAL\n\n"); | |
39 | 193 |
43 | 194 } else if (item->appointment && (item->type == PST_TYPE_APPOINTMENT)) { |
195 // deal with Calendar appointments | |
77 | 196 if (mode == MODE_SEPARATE) mk_separate_file(&ff); |
43 | 197 ff.email_count++; |
198 DEBUG_MAIN(("main: Processing Appointment Entry\n")); | |
199 if (ff.type != PST_TYPE_APPOINTMENT) { | |
200 DEBUG_MAIN(("main: I have an appointment, but folder isn't specified as an appointment type. Processing...\n")); | |
201 } | |
202 write_appointment(ff.output, item->appointment, item->email, item->create_date, item->modify_date); | |
39 | 203 |
79
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
77
diff
changeset
|
204 } else if (item->message_store) { |
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
77
diff
changeset
|
205 // there should only be one message_store, and we have already done it |
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
77
diff
changeset
|
206 DEBUG_MAIN(("item with message store content, type %i %s folder type %i, skipping it\n", item->type, item->ascii_type, ff.type)); |
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
77
diff
changeset
|
207 |
43 | 208 } else { |
63
cfd6175f9334
Start work on pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents:
59
diff
changeset
|
209 // these all seem to be things that MS agrees are not included in the item count |
cfd6175f9334
Start work on pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents:
59
diff
changeset
|
210 //ff.skip_count++; |
cfd6175f9334
Start work on pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents:
59
diff
changeset
|
211 DEBUG_MAIN(("main: Unknown item type %i (%s) name (%s)\n", |
cfd6175f9334
Start work on pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents:
59
diff
changeset
|
212 item->type, item->ascii_type, item->file_as)); |
43 | 213 } |
46 | 214 pst_freeItem(item); |
43 | 215 } else { |
216 ff.skip_count++; | |
217 DEBUG_MAIN(("main: A NULL item was seen\n")); | |
218 } | |
219 d_ptr = d_ptr->next; | |
220 } | |
221 } | |
222 close_enter_dir(&ff); | |
223 DEBUG_RET(); | |
39 | 224 } |
225 | |
226 | |
34
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
33
diff
changeset
|
227 |
118
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
228 int main(int argc, char* const* argv) { |
43 | 229 pst_item *item = NULL; |
230 pst_desc_ll *d_ptr; | |
231 char * fname = NULL; | |
48 | 232 char *d_log = NULL; |
43 | 233 int c,x; |
234 char *temp = NULL; //temporary char pointer | |
235 prog_name = argv[0]; | |
16 | 236 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
237 time_t now = time(NULL); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
238 srand((unsigned)now); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
239 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
240 if (regcomp(&meta_charset_pattern, "<meta[^>]*content=\"[^>]*charset=([^>\";]*)[\";]", REG_ICASE | REG_EXTENDED)) { |
123
ab2a11e72250
more cleanup of #include files.
Carl Byington <carl@five-ten-sg.com>
parents:
122
diff
changeset
|
241 printf("cannot compile regex pattern to find content charset in html bodies\n"); |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
242 exit(3); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
243 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
244 |
43 | 245 // command-line option handling |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
246 while ((c = getopt(argc, argv, "bCc:Dd:hko:qrSMVw"))!= -1) { |
43 | 247 switch (c) { |
248 case 'b': | |
249 save_rtf_body = 0; | |
250 break; | |
251 case 'C': | |
252 mode = MODE_DECSPEW; | |
253 break; | |
254 case 'c': | |
255 if (optarg && optarg[0]=='v') | |
256 contact_mode=CMODE_VCARD; | |
257 else if (optarg && optarg[0]=='l') | |
258 contact_mode=CMODE_LIST; | |
259 else { | |
260 usage(); | |
261 exit(0); | |
262 } | |
263 break; | |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
264 case 'D': |
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
265 deleted_mode = DMODE_INCLUDE; |
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
266 break; |
43 | 267 case 'd': |
268 d_log = optarg; | |
269 break; | |
270 case 'h': | |
271 usage(); | |
272 exit(0); | |
273 break; | |
274 case 'V': | |
275 version(); | |
276 exit(0); | |
277 break; | |
278 case 'k': | |
279 mode = MODE_KMAIL; | |
280 break; | |
281 case 'M': | |
77 | 282 mode = MODE_SEPARATE; |
43 | 283 mode_MH = 1; |
284 break; | |
285 case 'o': | |
286 output_dir = optarg; | |
287 break; | |
288 case 'q': | |
289 output_mode = OUTPUT_QUIET; | |
290 break; | |
291 case 'r': | |
292 mode = MODE_RECURSE; | |
293 break; | |
294 case 'S': | |
77 | 295 mode = MODE_SEPARATE; |
43 | 296 break; |
297 case 'w': | |
298 overwrite = 1; | |
299 break; | |
300 default: | |
301 usage(); | |
302 exit(1); | |
303 break; | |
304 } | |
305 } | |
306 | |
307 if (argc > optind) { | |
308 fname = argv[optind]; | |
309 } else { | |
310 usage(); | |
311 exit(2); | |
312 } | |
313 | |
314 #ifdef DEBUG_ALL | |
315 // force a log file | |
316 if (!d_log) d_log = "readpst.log"; | |
317 #endif // defined DEBUG_ALL | |
318 DEBUG_INIT(d_log); | |
319 DEBUG_REGISTER_CLOSE(); | |
320 DEBUG_ENT("main"); | |
16 | 321 |
43 | 322 if (mode == MODE_DECSPEW) { |
70
b12f4e50e2e8
Patch from Joachim Metz <joachim.metz@gmail.com> for 64 bit compile.
Carl Byington <carl@five-ten-sg.com>
parents:
63
diff
changeset
|
323 FILE *fp; |
b12f4e50e2e8
Patch from Joachim Metz <joachim.metz@gmail.com> for 64 bit compile.
Carl Byington <carl@five-ten-sg.com>
parents:
63
diff
changeset
|
324 char buf[1024]; |
b12f4e50e2e8
Patch from Joachim Metz <joachim.metz@gmail.com> for 64 bit compile.
Carl Byington <carl@five-ten-sg.com>
parents:
63
diff
changeset
|
325 size_t l = 0; |
43 | 326 if (NULL == (fp = fopen(fname, "rb"))) { |
327 fprintf(stderr, "Couldn't open file %s\n", fname ); | |
52 | 328 DEBUG_RET(); |
43 | 329 return 1; |
330 } | |
39 | 331 |
73
3cb02cb1e6cd
Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents:
70
diff
changeset
|
332 while (0 != (l = fread(buf, 1, 1024, fp))) { |
79
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
77
diff
changeset
|
333 if (0 != pst_decrypt(0, buf, l, PST_COMP_ENCRYPT)) |
46 | 334 fprintf(stderr, "pst_decrypt() failed (I'll try to continue)\n"); |
16 | 335 |
73
3cb02cb1e6cd
Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents:
70
diff
changeset
|
336 if (l != pst_fwrite(buf, 1, l, stdout)) { |
43 | 337 fprintf(stderr, "Couldn't output to stdout?\n"); |
52 | 338 DEBUG_RET(); |
43 | 339 return 1; |
340 } | |
341 } | |
52 | 342 DEBUG_RET(); |
43 | 343 return 0; |
344 } | |
16 | 345 |
43 | 346 if (output_mode != OUTPUT_QUIET) printf("Opening PST file and indexes...\n"); |
347 | |
59
7d5c637aaafb
General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
348 RET_DERROR(pst_open(&pstfile, fname), 1, ("Error opening File\n")); |
43 | 349 RET_DERROR(pst_load_index(&pstfile), 2, ("Index Error\n")); |
350 | |
351 pst_load_extended_attributes(&pstfile); | |
16 | 352 |
43 | 353 if (chdir(output_dir)) { |
354 x = errno; | |
355 pst_close(&pstfile); | |
356 DEBUG_RET(); | |
357 DIE(("main: Cannot change to output dir %s: %s\n", output_dir, strerror(x))); | |
358 } | |
359 | |
360 if (output_mode != OUTPUT_QUIET) printf("About to start processing first record...\n"); | |
361 | |
362 d_ptr = pstfile.d_head; // first record is main record | |
46 | 363 item = pst_parse_item(&pstfile, d_ptr); |
43 | 364 if (!item || !item->message_store) { |
365 DEBUG_RET(); | |
366 DIE(("main: Could not get root record\n")); | |
367 } | |
16 | 368 |
43 | 369 // default the file_as to the same as the main filename if it doesn't exist |
370 if (!item->file_as) { | |
371 if (!(temp = strrchr(fname, '/'))) | |
372 if (!(temp = strrchr(fname, '\\'))) | |
373 temp = fname; | |
374 else | |
375 temp++; // get past the "\\" | |
376 else | |
377 temp++; // get past the "/" | |
378 item->file_as = (char*)xmalloc(strlen(temp)+1); | |
379 strcpy(item->file_as, temp); | |
380 DEBUG_MAIN(("file_as was blank, so am using %s\n", item->file_as)); | |
381 } | |
382 DEBUG_MAIN(("main: Root Folder Name: %s\n", item->file_as)); | |
16 | 383 |
43 | 384 d_ptr = pst_getTopOfFolders(&pstfile, item); |
385 if (!d_ptr) { | |
386 DEBUG_RET(); | |
387 DIE(("Top of folders record not found. Cannot continue\n")); | |
388 } | |
16 | 389 |
63
cfd6175f9334
Start work on pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents:
59
diff
changeset
|
390 process(item, d_ptr->child); // do the children of TOPF |
46 | 391 pst_freeItem(item); |
43 | 392 pst_close(&pstfile); |
393 DEBUG_RET(); | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
394 regfree(&meta_charset_pattern); |
43 | 395 return 0; |
16 | 396 } |
31 | 397 |
398 | |
16 | 399 void write_email_body(FILE *f, char *body) { |
43 | 400 char *n = body; |
401 // DEBUG_MAIN(("write_email_body(): \"%s\"\n", body)); | |
402 DEBUG_ENT("write_email_body"); | |
403 while (n) { | |
404 if (strncmp(body, "From ", 5) == 0) | |
405 fprintf(f, ">"); | |
406 if ((n = strchr(body, '\n'))) { | |
407 n++; | |
73
3cb02cb1e6cd
Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents:
70
diff
changeset
|
408 pst_fwrite(body, n-body, 1, f); //write just a line |
43 | 409 body = n; |
410 } | |
411 } | |
73
3cb02cb1e6cd
Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents:
70
diff
changeset
|
412 pst_fwrite(body, strlen(body), 1, f); |
43 | 413 DEBUG_RET(); |
16 | 414 } |
31 | 415 |
416 | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
417 void removeCR (char *c) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
418 // converts \r\n to \n |
43 | 419 char *a, *b; |
420 DEBUG_ENT("removeCR"); | |
421 a = b = c; | |
422 while (*a != '\0') { | |
423 *b = *a; | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
424 if (*a != '\r') b++; |
43 | 425 a++; |
426 } | |
427 *b = '\0'; | |
428 DEBUG_RET(); | |
16 | 429 } |
31 | 430 |
431 | |
118
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
432 void usage() { |
43 | 433 DEBUG_ENT("usage"); |
434 version(); | |
435 printf("Usage: %s [OPTIONS] {PST FILENAME}\n", prog_name); | |
436 printf("OPTIONS:\n"); | |
104
39ba19372732
many fixes in pst2ldif by Robert Harris
Carl Byington <carl@five-ten-sg.com>
parents:
100
diff
changeset
|
437 printf("\t-V\t- Version. Display program version\n"); |
79
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
77
diff
changeset
|
438 printf("\t-C\t- Decrypt (compressible encryption) the entire file and output on stdout (not typically useful)\n"); |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
439 printf("\t-D\t- Include deleted items in output\n"); |
63
cfd6175f9334
Start work on pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents:
59
diff
changeset
|
440 printf("\t-M\t- MH. Write emails in the MH format\n"); |
77 | 441 printf("\t-S\t- Separate. Write emails in the separate format\n"); |
43 | 442 printf("\t-b\t- Don't save RTF-Body attachments\n"); |
443 printf("\t-c[v|l]\t- Set the Contact output mode. -cv = VCard, -cl = EMail list\n"); | |
63
cfd6175f9334
Start work on pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents:
59
diff
changeset
|
444 printf("\t-d <filename> \t- Debug to file. This is a binary log. Use readpstlog to print it\n"); |
43 | 445 printf("\t-h\t- Help. This screen\n"); |
446 printf("\t-k\t- KMail. Output in kmail format\n"); | |
63
cfd6175f9334
Start work on pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents:
59
diff
changeset
|
447 printf("\t-o <dirname>\t- Output directory to write files to. CWD is changed *after* opening pst file\n"); |
43 | 448 printf("\t-q\t- Quiet. Only print error messages\n"); |
449 printf("\t-r\t- Recursive. Output in a recursive format\n"); | |
450 printf("\t-w\t- Overwrite any output mbox files\n"); | |
451 DEBUG_RET(); | |
16 | 452 } |
31 | 453 |
454 | |
118
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
455 void version() { |
43 | 456 DEBUG_ENT("version"); |
50 | 457 printf("ReadPST / LibPST v%s\n", VERSION); |
16 | 458 #if BYTE_ORDER == BIG_ENDIAN |
43 | 459 printf("Big Endian implementation being used.\n"); |
16 | 460 #elif BYTE_ORDER == LITTLE_ENDIAN |
43 | 461 printf("Little Endian implementation being used.\n"); |
16 | 462 #else |
463 # error "Byte order not supported by this library" | |
464 #endif | |
465 #ifdef __GNUC__ | |
43 | 466 printf("GCC %d.%d : %s %s\n", __GNUC__, __GNUC_MINOR__, __DATE__, __TIME__); |
16 | 467 #endif |
43 | 468 DEBUG_RET(); |
16 | 469 } |
31 | 470 |
471 | |
16 | 472 char *mk_kmail_dir(char *fname) { |
43 | 473 //change to that directory |
474 //make a directory based on OUTPUT_KMAIL_DIR_TEMPLATE | |
475 //allocate space for OUTPUT_TEMPLATE and form a char* with fname | |
476 //return that value | |
477 char *dir, *out_name, *index; | |
478 int x; | |
479 DEBUG_ENT("mk_kmail_dir"); | |
480 if (kmail_chdir && chdir(kmail_chdir)) { | |
481 x = errno; | |
482 DIE(("mk_kmail_dir: Cannot change to directory %s: %s\n", kmail_chdir, strerror(x))); | |
483 } | |
484 dir = malloc(strlen(fname)+strlen(OUTPUT_KMAIL_DIR_TEMPLATE)+1); | |
485 sprintf(dir, OUTPUT_KMAIL_DIR_TEMPLATE, fname); | |
486 check_filename(dir); | |
487 if (D_MKDIR(dir)) { | |
488 //error occured | |
489 if (errno != EEXIST) { | |
490 x = errno; | |
491 DIE(("mk_kmail_dir: Cannot create directory %s: %s\n", dir, strerror(x))); | |
492 } | |
493 } | |
494 kmail_chdir = realloc(kmail_chdir, strlen(dir)+1); | |
495 strcpy(kmail_chdir, dir); | |
496 free (dir); | |
16 | 497 |
43 | 498 //we should remove any existing indexes created by KMail, cause they might be different now |
499 index = malloc(strlen(fname)+strlen(KMAIL_INDEX)+1); | |
500 sprintf(index, KMAIL_INDEX, fname); | |
501 unlink(index); | |
502 free(index); | |
16 | 503 |
43 | 504 out_name = malloc(strlen(fname)+strlen(OUTPUT_TEMPLATE)+1); |
505 sprintf(out_name, OUTPUT_TEMPLATE, fname); | |
506 DEBUG_RET(); | |
507 return out_name; | |
16 | 508 } |
31 | 509 |
510 | |
16 | 511 int close_kmail_dir() { |
43 | 512 // change .. |
513 int x; | |
514 DEBUG_ENT("close_kmail_dir"); | |
515 if (kmail_chdir) { //only free kmail_chdir if not NULL. do not change directory | |
516 free(kmail_chdir); | |
517 kmail_chdir = NULL; | |
518 } else { | |
519 if (chdir("..")) { | |
520 x = errno; | |
521 DIE(("close_kmail_dir: Cannot move up dir (..): %s\n", strerror(x))); | |
522 } | |
523 } | |
524 DEBUG_RET(); | |
525 return 0; | |
16 | 526 } |
31 | 527 |
528 | |
16 | 529 // this will create a directory by that name, then make an mbox file inside |
530 // that dir. any subsequent dirs will be created by name, and they will | |
531 // contain mbox files | |
532 char *mk_recurse_dir(char *dir) { | |
43 | 533 int x; |
534 char *out_name; | |
535 DEBUG_ENT("mk_recurse_dir"); | |
536 check_filename(dir); | |
537 if (D_MKDIR (dir)) { | |
538 if (errno != EEXIST) { // not an error because it exists | |
539 x = errno; | |
540 DIE(("mk_recurse_dir: Cannot create directory %s: %s\n", dir, strerror(x))); | |
541 } | |
542 } | |
543 if (chdir (dir)) { | |
544 x = errno; | |
545 DIE(("mk_recurse_dir: Cannot change to directory %s: %s\n", dir, strerror(x))); | |
546 } | |
547 out_name = malloc(strlen("mbox")+1); | |
548 strcpy(out_name, "mbox"); | |
549 DEBUG_RET(); | |
550 return out_name; | |
16 | 551 } |
31 | 552 |
553 | |
16 | 554 int close_recurse_dir() { |
43 | 555 int x; |
556 DEBUG_ENT("close_recurse_dir"); | |
557 if (chdir("..")) { | |
558 x = errno; | |
559 DIE(("close_recurse_dir: Cannot go up dir (..): %s\n", strerror(x))); | |
560 } | |
561 DEBUG_RET(); | |
562 return 0; | |
16 | 563 } |
31 | 564 |
565 | |
77 | 566 char *mk_separate_dir(char *dir) { |
43 | 567 size_t dirsize = strlen(dir) + 10; |
568 char dir_name[dirsize]; | |
569 int x = 0, y = 0; | |
16 | 570 |
77 | 571 DEBUG_ENT("mk_separate_dir"); |
43 | 572 do { |
573 if (y == 0) | |
574 snprintf(dir_name, dirsize, "%s", dir); | |
575 else | |
576 snprintf(dir_name, dirsize, "%s" SEP_MAIL_FILE_TEMPLATE, dir, y); // enough for 9 digits allocated above | |
16 | 577 |
43 | 578 check_filename(dir_name); |
579 DEBUG_MAIN(("about to try creating %s\n", dir_name)); | |
580 if (D_MKDIR(dir_name)) { | |
581 if (errno != EEXIST) { // if there is an error, and it doesn't already exist | |
582 x = errno; | |
77 | 583 DIE(("mk_separate_dir: Cannot create directory %s: %s\n", dir, strerror(x))); |
43 | 584 } |
585 } else { | |
586 break; | |
587 } | |
588 y++; | |
589 } while (overwrite == 0); | |
16 | 590 |
43 | 591 if (chdir(dir_name)) { |
592 x = errno; | |
77 | 593 DIE(("mk_separate_dir: Cannot change to directory %s: %s\n", dir, strerror(x))); |
43 | 594 } |
16 | 595 |
43 | 596 if (overwrite) { |
597 // we should probably delete all files from this directory | |
16 | 598 #if !defined(WIN32) && !defined(__CYGWIN__) |
43 | 599 DIR * sdir = NULL; |
600 struct dirent *dirent = NULL; | |
601 struct stat filestat; | |
602 if (!(sdir = opendir("./"))) { | |
77 | 603 WARN(("mk_separate_dir: Cannot open dir \"%s\" for deletion of old contents\n", "./")); |
43 | 604 } else { |
605 while ((dirent = readdir(sdir))) { | |
606 if (lstat(dirent->d_name, &filestat) != -1) | |
607 if (S_ISREG(filestat.st_mode)) { | |
608 if (unlink(dirent->d_name)) { | |
609 y = errno; | |
77 | 610 DIE(("mk_separate_dir: unlink returned error on file %s: %s\n", dirent->d_name, strerror(y))); |
43 | 611 } |
612 } | |
613 } | |
614 } | |
26 | 615 #endif |
43 | 616 } |
16 | 617 |
43 | 618 // we don't return a filename here cause it isn't necessary. |
619 DEBUG_RET(); | |
620 return NULL; | |
16 | 621 } |
31 | 622 |
623 | |
77 | 624 int close_separate_dir() { |
43 | 625 int x; |
77 | 626 DEBUG_ENT("close_separate_dir"); |
43 | 627 if (chdir("..")) { |
628 x = errno; | |
77 | 629 DIE(("close_separate_dir: Cannot go up dir (..): %s\n", strerror(x))); |
43 | 630 } |
631 DEBUG_RET(); | |
632 return 0; | |
16 | 633 } |
31 | 634 |
635 | |
77 | 636 int mk_separate_file(struct file_ll *f) { |
43 | 637 const int name_offset = 1; |
77 | 638 DEBUG_ENT("mk_separate_file"); |
43 | 639 DEBUG_MAIN(("opening next file to save email\n")); |
640 if (f->email_count > 999999999) { // bigger than nine 9's | |
77 | 641 DIE(("mk_separate_file: The number of emails in this folder has become too high to handle")); |
43 | 642 } |
643 sprintf(f->name, SEP_MAIL_FILE_TEMPLATE, f->email_count + name_offset); | |
644 if (f->output) fclose(f->output); | |
645 f->output = NULL; | |
646 check_filename(f->name); | |
647 if (!(f->output = fopen(f->name, "w"))) { | |
77 | 648 DIE(("mk_separate_file: Cannot open file to save email \"%s\"\n", f->name)); |
43 | 649 } |
650 DEBUG_RET(); | |
651 return 0; | |
16 | 652 } |
31 | 653 |
654 | |
16 | 655 char *my_stristr(char *haystack, char *needle) { |
43 | 656 // my_stristr varies from strstr in that its searches are case-insensitive |
657 char *x=haystack, *y=needle, *z = NULL; | |
52 | 658 if (!haystack || !needle) { |
43 | 659 return NULL; |
52 | 660 } |
43 | 661 while (*y != '\0' && *x != '\0') { |
662 if (tolower(*y) == tolower(*x)) { | |
663 // move y on one | |
664 y++; | |
665 if (!z) { | |
666 z = x; // store first position in haystack where a match is made | |
667 } | |
668 } else { | |
669 y = needle; // reset y to the beginning of the needle | |
670 z = NULL; // reset the haystack storage point | |
671 } | |
672 x++; // advance the search in the haystack | |
673 } | |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
674 // If the haystack ended before our search finished, it's not a match. |
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
675 if (*y != '\0') return NULL; |
43 | 676 return z; |
16 | 677 } |
31 | 678 |
679 | |
41
183ae993b9ad
security fix for potential buffer overrun in lz decompress
carl
parents:
39
diff
changeset
|
680 void check_filename(char *fname) { |
43 | 681 char *t = fname; |
682 DEBUG_ENT("check_filename"); | |
683 if (!t) { | |
684 DEBUG_RET(); | |
52 | 685 return; |
43 | 686 } |
687 while ((t = strpbrk(t, "/\\:"))) { | |
688 // while there are characters in the second string that we don't want | |
689 *t = '_'; //replace them with an underscore | |
690 } | |
691 DEBUG_RET(); | |
16 | 692 } |
31 | 693 |
694 | |
25 | 695 void write_separate_attachment(char f_name[], pst_item_attach* current_attach, int attach_num, pst_file* pst) |
696 { | |
43 | 697 FILE *fp = NULL; |
698 int x = 0; | |
699 char *temp = NULL; | |
31 | 700 |
43 | 701 // If there is a long filename (filename2) use that, otherwise |
702 // use the 8.3 filename (filename1) | |
703 char *attach_filename = (current_attach->filename2) ? current_attach->filename2 | |
704 : current_attach->filename1; | |
46 | 705 DEBUG_ENT("write_separate_attachment"); |
25 | 706 |
43 | 707 check_filename(f_name); |
708 if (!attach_filename) { | |
709 // generate our own (dummy) filename for the attachement | |
710 temp = xmalloc(strlen(f_name)+15); | |
711 sprintf(temp, "%s-attach%i", f_name, attach_num); | |
712 } else { | |
713 // have an attachment name, make sure it's unique | |
714 temp = xmalloc(strlen(f_name)+strlen(attach_filename)+15); | |
715 do { | |
716 if (fp) fclose(fp); | |
717 if (x == 0) | |
718 sprintf(temp, "%s-%s", f_name, attach_filename); | |
719 else | |
720 sprintf(temp, "%s-%s-%i", f_name, attach_filename, x); | |
721 } while ((fp = fopen(temp, "r")) && ++x < 99999999); | |
722 if (x > 99999999) { | |
723 DIE(("error finding attachment name. exhausted possibilities to %s\n", temp)); | |
724 } | |
725 } | |
726 DEBUG_EMAIL(("Saving attachment to %s\n", temp)); | |
727 if (!(fp = fopen(temp, "w"))) { | |
728 WARN(("write_separate_attachment: Cannot open attachment save file \"%s\"\n", temp)); | |
729 } else { | |
730 if (current_attach->data) | |
73
3cb02cb1e6cd
Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents:
70
diff
changeset
|
731 pst_fwrite(current_attach->data, 1, current_attach->size, fp); |
43 | 732 else { |
46 | 733 (void)pst_attach_to_file(pst, current_attach, fp); |
43 | 734 } |
735 fclose(fp); | |
736 } | |
737 if (temp) free(temp); | |
738 DEBUG_RET(); | |
25 | 739 } |
740 | |
31 | 741 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
742 void write_inline_attachment(FILE* f_output, pst_item_attach* current_attach, char *boundary, pst_file* pst) |
25 | 743 { |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
744 char *attach_filename; |
46 | 745 char *enc = NULL; // base64 encoded attachment |
43 | 746 DEBUG_ENT("write_inline_attachment"); |
747 DEBUG_EMAIL(("Attachment Size is %i\n", current_attach->size)); | |
748 DEBUG_EMAIL(("Attachment Pointer is %p\n", current_attach->data)); | |
749 if (current_attach->data) { | |
750 enc = base64_encode (current_attach->data, current_attach->size); | |
751 if (!enc) { | |
752 DEBUG_EMAIL(("ERROR base64_encode returned NULL. Must have failed\n")); | |
52 | 753 DEBUG_RET(); |
43 | 754 return; |
755 } | |
756 } | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
757 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
758 fprintf(f_output, "\n--%s\n", boundary); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
759 if (!current_attach->mimetype) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
760 fprintf(f_output, "Content-Type: %s\n", MIME_TYPE_DEFAULT); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
761 } else { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
762 fprintf(f_output, "Content-Type: %s\n", current_attach->mimetype); |
43 | 763 } |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
764 fprintf(f_output, "Content-Transfer-Encoding: base64\n"); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
765 // If there is a long filename (filename2) use that, otherwise |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
766 // use the 8.3 filename (filename1) |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
767 if (current_attach->filename2) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
768 attach_filename = current_attach->filename2; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
769 } else { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
770 attach_filename = current_attach->filename1; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
771 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
772 if (!attach_filename) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
773 fprintf(f_output, "Content-Disposition: inline\n\n"); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
774 } else { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
775 fprintf(f_output, "Content-Disposition: attachment; filename=\"%s\"\n\n", attach_filename); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
776 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
777 |
43 | 778 if (current_attach->data) { |
73
3cb02cb1e6cd
Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents:
70
diff
changeset
|
779 pst_fwrite(enc, 1, strlen(enc), f_output); |
43 | 780 DEBUG_EMAIL(("Attachment Size after encoding is %i\n", strlen(enc))); |
781 free(enc); // caught by valgrind | |
782 } else { | |
46 | 783 (void)pst_attach_to_file_base64(pst, current_attach, f_output); |
43 | 784 } |
785 fprintf(f_output, "\n\n"); | |
786 DEBUG_RET(); | |
25 | 787 } |
788 | |
31 | 789 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
790 void header_has_field(char *header, char *field, int *flag) |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
791 { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
792 if (my_stristr(header, field) || (strncasecmp(header, field+1, strlen(field)-1) == 0)) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
793 DEBUG_EMAIL(("header block has %s header\n", field+1)); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
794 *flag = 1; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
795 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
796 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
797 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
798 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
799 char* header_get_field(char *header, char *field) |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
800 { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
801 char *t = my_stristr(header, field); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
802 if (!t && (strncasecmp(header, field+1, strlen(field)-1) == 0)) t = header; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
803 return t; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
804 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
805 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
806 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
807 void header_strip_field(char *header, char *field) |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
808 { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
809 char *e; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
810 char *t = header_get_field(header, field); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
811 if (t) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
812 e = strchr(t+1, '\n'); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
813 while (e && ((e[1] == ' ') || (e[1] == '\t'))) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
814 e = strchr(e+1, '\n'); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
815 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
816 if (e) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
817 if (t == header) e++; // if *t is not \n, we don't want to keep the \n at *e either. |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
818 while (*e != '\0') { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
819 *t = *e; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
820 t++; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
821 e++; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
822 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
823 *t = '\0'; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
824 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
825 else { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
826 // this was the last header field, truncate the headers |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
827 *t = '\0'; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
828 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
829 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
830 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
831 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
832 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
833 int test_base64(char *body) |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
834 { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
835 int b64 = 0; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
836 uint8_t *b = (uint8_t *)body; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
837 while (*b != 0) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
838 if ((*b < 32) && (*b != 9) && (*b != 10)) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
839 DEBUG_EMAIL(("found base64 byte %d\n", (int)*b)); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
840 DEBUG_HEXDUMPC(body, strlen(body), 0x10); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
841 b64 = 1; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
842 break; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
843 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
844 b++; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
845 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
846 return b64; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
847 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
848 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
849 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
850 void find_html_charset(char *html, char *charset, size_t charsetlen) |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
851 { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
852 const int index = 1; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
853 const int nmatch = index+1; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
854 regmatch_t match[nmatch]; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
855 int rc = regexec(&meta_charset_pattern, html, nmatch, match, 0); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
856 if (rc == 0) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
857 int s = match[index].rm_so; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
858 int e = match[index].rm_eo; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
859 if (s != -1) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
860 char save = html[e]; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
861 html[e] = '\0'; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
862 snprintf(charset, charsetlen, "%s", html+s); // copy the html charset |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
863 html[e] = save; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
864 DEBUG_EMAIL(("charset %s from html text\n", charset)); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
865 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
866 else { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
867 DEBUG_EMAIL(("matching %d %d %d %d", match[0].rm_so, match[0].rm_eo, match[1].rm_so, match[1].rm_eo)); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
868 DEBUG_HEXDUMPC(html, strlen(html), 0x10); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
869 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
870 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
871 else { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
872 DEBUG_EMAIL(("regexec returns %d\n", rc)); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
873 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
874 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
875 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
876 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
877 void write_body_part(FILE* f_output, char *body, char *mime, char *charset, char *boundary) |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
878 { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
879 char *needfree = NULL; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
880 if (strcasecmp("utf-8", charset)) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
881 // try to convert to the specified charset since it is not utf-8 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
882 size_t rc; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
883 DEBUG_EMAIL(("Convert %s utf-8 to %s\n", mime, charset)); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
884 vbuf *newer = vballoc(2); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
885 rc = vb_utf8to8bit(newer, body, strlen(body) + 1, charset); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
886 if (rc == (size_t)-1) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
887 // unable to convert, maybe it is already in that character set |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
888 free(newer->b); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
889 DEBUG_EMAIL(("Failed to convert %s utf-8 to %s\n", mime, charset)); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
890 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
891 else { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
892 needfree = body = newer->b; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
893 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
894 free(newer); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
895 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
896 removeCR(body); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
897 int base64 = test_base64(body); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
898 fprintf(f_output, "\n--%s\n", boundary); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
899 fprintf(f_output, "Content-Type: %s; charset=\"%s\"\n", mime, charset); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
900 if (base64) fprintf(f_output, "Content-Transfer-Encoding: base64\n"); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
901 fprintf(f_output, "\n"); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
902 if (base64) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
903 char *enc = base64_encode(body, strlen(body)); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
904 if (enc) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
905 write_email_body(f_output, enc); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
906 fprintf(f_output, "\n"); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
907 free(enc); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
908 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
909 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
910 else { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
911 write_email_body(f_output, body); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
912 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
913 if (needfree) free(needfree); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
914 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
915 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
916 |
31 | 917 void write_normal_email(FILE* f_output, char f_name[], pst_item* item, int mode, int mode_MH, pst_file* pst, int save_rtf) |
25 | 918 { |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
919 char boundary[60]; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
920 char body_charset[60]; |
43 | 921 char *temp = NULL; |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
922 int attach_num; |
43 | 923 time_t em_time; |
924 char *c_time; | |
925 pst_item_attach* current_attach; | |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
926 int has_from, has_subject, has_to, has_cc, has_bcc, has_date; |
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
927 has_from = has_subject = has_to = has_cc = has_bcc = has_date = 0; |
46 | 928 DEBUG_ENT("write_normal_email"); |
25 | 929 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
930 // setup default body character set |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
931 snprintf(body_charset, sizeof(body_charset), "%s", (item->email->body_charset) ? item->email->body_charset : "utf-8"); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
932 |
43 | 933 // convert the sent date if it exists, or set it to a fixed date |
934 if (item->email->sent_date) { | |
935 em_time = fileTimeToUnixTime(item->email->sent_date, 0); | |
936 c_time = ctime(&em_time); | |
937 if (c_time) | |
938 c_time[strlen(c_time)-1] = '\0'; //remove end \n | |
939 else | |
940 c_time = "Fri Dec 28 12:06:21 2001"; | |
941 } else | |
942 c_time= "Fri Dec 28 12:06:21 2001"; | |
25 | 943 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
944 // create our MIME boundary here. |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
945 snprintf(boundary, sizeof(boundary), "--boundary-LibPST-iamunique-%i_-_-", rand()); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
946 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
947 // we will always look at the headers to discover some stuff |
43 | 948 if (item->email->header ) { |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
949 char *t; |
43 | 950 removeCR(item->email->header); |
25 | 951 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
952 // some of the headers we get from the file are not properly defined. |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
953 // they can contain some email stuff too. We will cut off the header |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
954 // when we see a \n\n |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
955 temp = strstr(item->email->header, "\n\n"); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
956 if (temp) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
957 temp[1] = '\0'; // stop after first \n |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
958 DEBUG_EMAIL(("Found body text in header %s\n", temp+2)); |
43 | 959 } |
25 | 960 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
961 // Check if the headers have all the necessary fields |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
962 header_has_field(item->email->header, "\nFrom: ", &has_from); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
963 header_has_field(item->email->header, "\nTo: ", &has_to); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
964 header_has_field(item->email->header, "\nSubject: ", &has_subject); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
965 header_has_field(item->email->header, "\nDate: ", &has_date); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
966 header_has_field(item->email->header, "\nCC: ", &has_cc); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
967 header_has_field(item->email->header, "\nBCC: ", &has_bcc); |
31 | 968 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
969 // look for charset in Content-Type header |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
970 t = header_get_field(item->email->header, "\nContent-Type: "); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
971 if (t) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
972 // assume charset= will be on the first line, rather than on a continuation line |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
973 t++; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
974 char *n = strchr(t, '\n'); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
975 char *s = my_stristr(t, "; charset="); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
976 if (n && s && (s < n)) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
977 char *e; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
978 char save; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
979 s += 10; // skip over charset= |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
980 if (*s == '"') { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
981 s++; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
982 e = strchr(s, '"'); |
43 | 983 } |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
984 else { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
985 e = strchr(s, ';'); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
986 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
987 if (!e || (e > n)) e = n; // use the trailing lf as terminator if nothing better |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
988 save = *e; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
989 *e = '\0'; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
990 snprintf(body_charset, sizeof(body_charset), "%s", s); // copy the charset to our buffer |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
991 *e = save; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
992 DEBUG_EMAIL(("body charset %s from headers\n", body_charset)); |
43 | 993 } |
994 } | |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
995 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
996 // Strip out the mime headers and some others that we don't want to emit |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
997 header_strip_field(item->email->header, "\nMicrosoft Mail Internet Headers"); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
998 header_strip_field(item->email->header, "\nMIME-Version: "); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
999 header_strip_field(item->email->header, "\nContent-Type: "); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1000 header_strip_field(item->email->header, "\nContent-Transfer-Encoding: "); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1001 header_strip_field(item->email->header, "\nContent-class: "); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1002 header_strip_field(item->email->header, "\nX-MimeOLE: "); |
43 | 1003 } |
25 | 1004 |
43 | 1005 DEBUG_EMAIL(("About to print Header\n")); |
31 | 1006 |
43 | 1007 if (item && item->email && item->email->subject && item->email->subject->subj) { |
1008 DEBUG_EMAIL(("item->email->subject->subj = %s\n", item->email->subject->subj)); | |
1009 } | |
31 | 1010 |
43 | 1011 if (item->email->header) { |
1012 int len; | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1013 char *soh = item->email->header; |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
1014 |
77 | 1015 if (mode != MODE_SEPARATE) { |
1016 // don't put rubbish in if we are doing separate | |
43 | 1017 if (strncmp(soh, "X-From_: ", 9) == 0 ) { |
1018 fputs("From ", f_output); | |
1019 soh += 9; | |
1020 } else | |
1021 fprintf(f_output, "From \"%s\" %s\n", item->email->outlook_sender_name, c_time); | |
1022 } | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1023 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1024 // make sure the headers end with a \n |
43 | 1025 fprintf(f_output, "%s", soh); |
1026 len = strlen(soh); | |
1027 if (!len || (soh[len-1] != '\n')) fprintf(f_output, "\n"); | |
31 | 1028 |
43 | 1029 } else { |
63
cfd6175f9334
Start work on pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents:
59
diff
changeset
|
1030 //make up our own headers |
77 | 1031 if (mode != MODE_SEPARATE) { |
43 | 1032 // don't want this first line for this mode |
1033 if (item->email->outlook_sender_name) { | |
1034 temp = item->email->outlook_sender_name; | |
1035 } else { | |
1036 temp = "(readpst_null)"; | |
1037 } | |
1038 fprintf(f_output, "From \"%s\" %s\n", temp, c_time); | |
1039 } | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1040 } |
31 | 1041 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1042 // create required header fields that are not already written |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1043 if (!has_from) { |
43 | 1044 temp = item->email->outlook_sender; |
1045 if (!temp) temp = ""; | |
1046 fprintf(f_output, "From: \"%s\" <%s>\n", item->email->outlook_sender_name, temp); | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1047 } |
31 | 1048 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1049 if (!has_subject) { |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
1050 if (item->email->subject && item->email->subject->subj) { |
43 | 1051 fprintf(f_output, "Subject: %s\n", item->email->subject->subj); |
1052 } else { | |
1053 fprintf(f_output, "Subject: \n"); | |
1054 } | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1055 } |
31 | 1056 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1057 if (!has_to && item->email->sentto_address) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1058 fprintf(f_output, "To: %s\n", item->email->sentto_address); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1059 } |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
1060 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1061 if (!has_cc && item->email->cc_address) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1062 fprintf(f_output, "Cc: %s\n", item->email->cc_address); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1063 } |
31 | 1064 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1065 if (!has_bcc && item->email->bcc_address) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1066 fprintf(f_output, "Bcc: %s\n", item->email->bcc_address); |
43 | 1067 } |
25 | 1068 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1069 if (!has_date && item->email->sent_date) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1070 char c_time[C_TIME_SIZE]; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1071 strftime(c_time, C_TIME_SIZE, "%a, %d %b %Y %H:%M:%S %z", gmtime(&em_time)); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1072 fprintf(f_output, "Date: %s\n", c_time); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1073 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1074 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1075 // add our own mime headers |
43 | 1076 fprintf(f_output, "MIME-Version: 1.0\n"); |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1077 if (item->attach || (item->email->rtf_compressed && save_rtf) |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1078 || item->email->encrypted_body |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1079 || item->email->encrypted_htmlbody) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1080 // use multipart/mixed if we have attachments |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1081 fprintf(f_output, "Content-Type: multipart/mixed;\n\tboundary=\"%s\"\n", boundary); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1082 } else { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1083 // else use multipart/alternative |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1084 fprintf(f_output, "Content-Type: multipart/alternative;\n\tboundary=\"%s\"\n", boundary); |
43 | 1085 } |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1086 fprintf(f_output, "\n"); // end of headers, start of body |
25 | 1087 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1088 // now dump the body parts |
43 | 1089 if (item->email->body) { |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1090 write_body_part(f_output, item->email->body, "text/plain", body_charset, boundary); |
43 | 1091 } |
31 | 1092 |
43 | 1093 if (item->email->htmlbody) { |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1094 find_html_charset(item->email->htmlbody, body_charset, sizeof(body_charset)); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1095 write_body_part(f_output, item->email->htmlbody, "text/html", body_charset, boundary); |
43 | 1096 } |
25 | 1097 |
43 | 1098 if (item->email->rtf_compressed && save_rtf) { |
1099 DEBUG_EMAIL(("Adding RTF body as attachment\n")); | |
1100 current_attach = (pst_item_attach*)xmalloc(sizeof(pst_item_attach)); | |
1101 memset(current_attach, 0, sizeof(pst_item_attach)); | |
1102 current_attach->next = item->attach; | |
1103 item->attach = current_attach; | |
1104 current_attach->data = lzfu_decompress(item->email->rtf_compressed, item->email->rtf_compressed_size, ¤t_attach->size); | |
1105 current_attach->filename2 = xmalloc(strlen(RTF_ATTACH_NAME)+2); | |
1106 strcpy(current_attach->filename2, RTF_ATTACH_NAME); | |
1107 current_attach->mimetype = xmalloc(strlen(RTF_ATTACH_TYPE)+2); | |
1108 strcpy(current_attach->mimetype, RTF_ATTACH_TYPE); | |
1109 } | |
31 | 1110 |
43 | 1111 if (item->email->encrypted_body || item->email->encrypted_htmlbody) { |
1112 // if either the body or htmlbody is encrypted, add them as attachments | |
1113 if (item->email->encrypted_body) { | |
1114 DEBUG_EMAIL(("Adding Encrypted Body as attachment\n")); | |
1115 current_attach = (pst_item_attach*) xmalloc(sizeof(pst_item_attach)); | |
1116 memset(current_attach, 0, sizeof(pst_item_attach)); | |
1117 current_attach->next = item->attach; | |
1118 item->attach = current_attach; | |
1119 current_attach->data = item->email->encrypted_body; | |
1120 current_attach->size = item->email->encrypted_body_size; | |
1121 item->email->encrypted_body = NULL; | |
1122 } | |
31 | 1123 |
43 | 1124 if (item->email->encrypted_htmlbody) { |
1125 DEBUG_EMAIL(("Adding encrypted HTML body as attachment\n")); | |
1126 current_attach = (pst_item_attach*) xmalloc(sizeof(pst_item_attach)); | |
1127 memset(current_attach, 0, sizeof(pst_item_attach)); | |
1128 current_attach->next = item->attach; | |
1129 item->attach = current_attach; | |
1130 current_attach->data = item->email->encrypted_htmlbody; | |
1131 current_attach->size = item->email->encrypted_htmlbody_size; | |
1132 item->email->encrypted_htmlbody = NULL; | |
1133 } | |
1134 write_email_body(f_output, "The body of this email is encrypted. This isn't supported yet, but the body is now an attachment\n"); | |
1135 } | |
31 | 1136 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1137 // other attachments |
43 | 1138 attach_num = 0; |
1139 for (current_attach = item->attach; current_attach; current_attach = current_attach->next) { | |
1140 DEBUG_EMAIL(("Attempting Attachment encoding\n")); | |
1141 if (!current_attach->data) { | |
1142 DEBUG_EMAIL(("Data of attachment is NULL!. Size is supposed to be %i\n", current_attach->size)); | |
1143 } | |
77 | 1144 if (mode == MODE_SEPARATE && !mode_MH) |
43 | 1145 write_separate_attachment(f_name, current_attach, ++attach_num, pst); |
1146 else | |
1147 write_inline_attachment(f_output, current_attach, boundary, pst); | |
1148 } | |
77 | 1149 if (mode != MODE_SEPARATE) { /* do not add a boundary after the last attachment for mode_MH */ |
43 | 1150 DEBUG_EMAIL(("Writing buffer between emails\n")); |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1151 fprintf(f_output, "\n--%s--\n", boundary); |
43 | 1152 fprintf(f_output, "\n\n"); |
1153 } | |
1154 DEBUG_RET(); | |
25 | 1155 } |
1156 | |
31 | 1157 |
25 | 1158 void write_vcard(FILE* f_output, pst_item_contact* contact, char comment[]) |
1159 { | |
43 | 1160 // We can only call rfc escape once per printf, since the second call |
1161 // may free the buffer returned by the first call. | |
1162 // I had tried to place those into a single printf - Carl. | |
39 | 1163 |
43 | 1164 DEBUG_ENT("write_vcard"); |
50 | 1165 // the specification I am following is (hopefully) RFC2426 vCard Mime Directory Profile |
43 | 1166 fprintf(f_output, "BEGIN:VCARD\n"); |
1167 fprintf(f_output, "FN:%s\n", pst_rfc2426_escape(contact->fullname)); | |
39 | 1168 |
43 | 1169 //fprintf(f_output, "N:%s;%s;%s;%s;%s\n", |
1170 fprintf(f_output, "N:%s;", (!contact->surname) ? "" : pst_rfc2426_escape(contact->surname)); | |
1171 fprintf(f_output, "%s;", (!contact->first_name) ? "" : pst_rfc2426_escape(contact->first_name)); | |
1172 fprintf(f_output, "%s;", (!contact->middle_name) ? "" : pst_rfc2426_escape(contact->middle_name)); | |
1173 fprintf(f_output, "%s;", (!contact->display_name_prefix) ? "" : pst_rfc2426_escape(contact->display_name_prefix)); | |
1174 fprintf(f_output, "%s\n", (!contact->suffix) ? "" : pst_rfc2426_escape(contact->suffix)); | |
39 | 1175 |
43 | 1176 if (contact->nickname) |
1177 fprintf(f_output, "NICKNAME:%s\n", pst_rfc2426_escape(contact->nickname)); | |
1178 if (contact->address1) | |
1179 fprintf(f_output, "EMAIL:%s\n", pst_rfc2426_escape(contact->address1)); | |
1180 if (contact->address2) | |
1181 fprintf(f_output, "EMAIL:%s\n", pst_rfc2426_escape(contact->address2)); | |
1182 if (contact->address3) | |
1183 fprintf(f_output, "EMAIL:%s\n", pst_rfc2426_escape(contact->address3)); | |
1184 if (contact->birthday) | |
1185 fprintf(f_output, "BDAY:%s\n", pst_rfc2425_datetime_format(contact->birthday)); | |
39 | 1186 |
43 | 1187 if (contact->home_address) { |
1188 //fprintf(f_output, "ADR;TYPE=home:%s;%s;%s;%s;%s;%s;%s\n", | |
1189 fprintf(f_output, "ADR;TYPE=home:%s;", (!contact->home_po_box) ? "" : pst_rfc2426_escape(contact->home_po_box)); | |
1190 fprintf(f_output, "%s;", ""); // extended Address | |
1191 fprintf(f_output, "%s;", (!contact->home_street) ? "" : pst_rfc2426_escape(contact->home_street)); | |
1192 fprintf(f_output, "%s;", (!contact->home_city) ? "" : pst_rfc2426_escape(contact->home_city)); | |
1193 fprintf(f_output, "%s;", (!contact->home_state) ? "" : pst_rfc2426_escape(contact->home_state)); | |
1194 fprintf(f_output, "%s;", (!contact->home_postal_code) ? "" : pst_rfc2426_escape(contact->home_postal_code)); | |
1195 fprintf(f_output, "%s\n", (!contact->home_country) ? "" : pst_rfc2426_escape(contact->home_country)); | |
1196 fprintf(f_output, "LABEL;TYPE=home:%s\n", pst_rfc2426_escape(contact->home_address)); | |
1197 } | |
39 | 1198 |
43 | 1199 if (contact->business_address) { |
1200 //fprintf(f_output, "ADR;TYPE=work:%s;%s;%s;%s;%s;%s;%s\n", | |
1201 fprintf(f_output, "ADR;TYPE=work:%s;", (!contact->business_po_box) ? "" : pst_rfc2426_escape(contact->business_po_box)); | |
1202 fprintf(f_output, "%s;", ""); // extended Address | |
1203 fprintf(f_output, "%s;", (!contact->business_street) ? "" : pst_rfc2426_escape(contact->business_street)); | |
1204 fprintf(f_output, "%s;", (!contact->business_city) ? "" : pst_rfc2426_escape(contact->business_city)); | |
1205 fprintf(f_output, "%s;", (!contact->business_state) ? "" : pst_rfc2426_escape(contact->business_state)); | |
1206 fprintf(f_output, "%s;", (!contact->business_postal_code) ? "" : pst_rfc2426_escape(contact->business_postal_code)); | |
1207 fprintf(f_output, "%s\n", (!contact->business_country) ? "" : pst_rfc2426_escape(contact->business_country)); | |
1208 fprintf(f_output, "LABEL;TYPE=work:%s\n", pst_rfc2426_escape(contact->business_address)); | |
1209 } | |
39 | 1210 |
43 | 1211 if (contact->other_address) { |
1212 //fprintf(f_output, "ADR;TYPE=postal:%s;%s;%s;%s;%s;%s;%s\n", | |
1213 fprintf(f_output, "ADR;TYPE=postal:%s;",(!contact->other_po_box) ? "" : pst_rfc2426_escape(contact->other_po_box)); | |
1214 fprintf(f_output, "%s;", ""); // extended Address | |
1215 fprintf(f_output, "%s;", (!contact->other_street) ? "" : pst_rfc2426_escape(contact->other_street)); | |
1216 fprintf(f_output, "%s;", (!contact->other_city) ? "" : pst_rfc2426_escape(contact->other_city)); | |
1217 fprintf(f_output, "%s;", (!contact->other_state) ? "" : pst_rfc2426_escape(contact->other_state)); | |
1218 fprintf(f_output, "%s;", (!contact->other_postal_code) ? "" : pst_rfc2426_escape(contact->other_postal_code)); | |
1219 fprintf(f_output, "%s\n", (!contact->other_country) ? "" : pst_rfc2426_escape(contact->other_country)); | |
1220 fprintf(f_output, "LABEL;TYPE=postal:%s\n", pst_rfc2426_escape(contact->other_address)); | |
1221 } | |
39 | 1222 |
43 | 1223 if (contact->business_fax) fprintf(f_output, "TEL;TYPE=work,fax:%s\n", pst_rfc2426_escape(contact->business_fax)); |
1224 if (contact->business_phone) fprintf(f_output, "TEL;TYPE=work,voice:%s\n", pst_rfc2426_escape(contact->business_phone)); | |
1225 if (contact->business_phone2) fprintf(f_output, "TEL;TYPE=work,voice:%s\n", pst_rfc2426_escape(contact->business_phone2)); | |
1226 if (contact->car_phone) fprintf(f_output, "TEL;TYPE=car,voice:%s\n", pst_rfc2426_escape(contact->car_phone)); | |
1227 if (contact->home_fax) fprintf(f_output, "TEL;TYPE=home,fax:%s\n", pst_rfc2426_escape(contact->home_fax)); | |
1228 if (contact->home_phone) fprintf(f_output, "TEL;TYPE=home,voice:%s\n", pst_rfc2426_escape(contact->home_phone)); | |
1229 if (contact->home_phone2) fprintf(f_output, "TEL;TYPE=home,voice:%s\n", pst_rfc2426_escape(contact->home_phone2)); | |
1230 if (contact->isdn_phone) fprintf(f_output, "TEL;TYPE=isdn:%s\n", pst_rfc2426_escape(contact->isdn_phone)); | |
1231 if (contact->mobile_phone) fprintf(f_output, "TEL;TYPE=cell,voice:%s\n", pst_rfc2426_escape(contact->mobile_phone)); | |
1232 if (contact->other_phone) fprintf(f_output, "TEL;TYPE=msg:%s\n", pst_rfc2426_escape(contact->other_phone)); | |
1233 if (contact->pager_phone) fprintf(f_output, "TEL;TYPE=pager:%s\n", pst_rfc2426_escape(contact->pager_phone)); | |
1234 if (contact->primary_fax) fprintf(f_output, "TEL;TYPE=fax,pref:%s\n", pst_rfc2426_escape(contact->primary_fax)); | |
1235 if (contact->primary_phone) fprintf(f_output, "TEL;TYPE=phone,pref:%s\n", pst_rfc2426_escape(contact->primary_phone)); | |
1236 if (contact->radio_phone) fprintf(f_output, "TEL;TYPE=pcs:%s\n", pst_rfc2426_escape(contact->radio_phone)); | |
1237 if (contact->telex) fprintf(f_output, "TEL;TYPE=bbs:%s\n", pst_rfc2426_escape(contact->telex)); | |
1238 if (contact->job_title) fprintf(f_output, "TITLE:%s\n", pst_rfc2426_escape(contact->job_title)); | |
1239 if (contact->profession) fprintf(f_output, "ROLE:%s\n", pst_rfc2426_escape(contact->profession)); | |
1240 if (contact->assistant_name || contact->assistant_phone) { | |
1241 fprintf(f_output, "AGENT:BEGIN:VCARD\n"); | |
1242 if (contact->assistant_name) fprintf(f_output, "FN:%s\n", pst_rfc2426_escape(contact->assistant_name)); | |
1243 if (contact->assistant_phone) fprintf(f_output, "TEL:%s\n", pst_rfc2426_escape(contact->assistant_phone)); | |
1244 } | |
1245 if (contact->company_name) fprintf(f_output, "ORG:%s\n", pst_rfc2426_escape(contact->company_name)); | |
1246 if (comment) fprintf(f_output, "NOTE:%s\n", pst_rfc2426_escape(comment)); | |
25 | 1247 |
43 | 1248 fprintf(f_output, "VERSION: 3.0\n"); |
1249 fprintf(f_output, "END:VCARD\n\n"); | |
1250 DEBUG_RET(); | |
25 | 1251 } |
1252 | |
31 | 1253 |
25 | 1254 void write_appointment(FILE* f_output, pst_item_appointment* appointment, |
43 | 1255 pst_item_email* email, FILETIME* create_date, FILETIME* modify_date) |
25 | 1256 { |
43 | 1257 fprintf(f_output, "BEGIN:VEVENT\n"); |
1258 if (create_date) | |
1259 fprintf(f_output, "CREATED:%s\n", | |
1260 pst_rfc2445_datetime_format(create_date)); | |
1261 if (modify_date) | |
1262 fprintf(f_output, "LAST-MOD:%s\n", | |
1263 pst_rfc2445_datetime_format(modify_date)); | |
1264 if (email && email->subject) | |
1265 fprintf(f_output, "SUMMARY:%s\n", | |
1266 pst_rfc2426_escape(email->subject->subj)); | |
1267 if (email && email->body) | |
1268 fprintf(f_output, "DESCRIPTION:%s\n", | |
1269 pst_rfc2426_escape(email->body)); | |
1270 if (appointment && appointment->start) | |
1271 fprintf(f_output, "DTSTART;VALUE=DATE-TIME:%s\n", | |
1272 pst_rfc2445_datetime_format(appointment->start)); | |
1273 if (appointment && appointment->end) | |
1274 fprintf(f_output, "DTEND;VALUE=DATE-TIME:%s\n", | |
1275 pst_rfc2445_datetime_format(appointment->end)); | |
1276 if (appointment && appointment->location) | |
1277 fprintf(f_output, "LOCATION:%s\n", | |
1278 pst_rfc2426_escape(appointment->location)); | |
1279 if (appointment) { | |
1280 switch (appointment->showas) { | |
50 | 1281 case PST_FREEBUSY_TENTATIVE: |
1282 fprintf(f_output, "STATUS:TENTATIVE\n"); | |
1283 break; | |
1284 case PST_FREEBUSY_FREE: | |
1285 // mark as transparent and as confirmed | |
1286 fprintf(f_output, "TRANSP:TRANSPARENT\n"); | |
1287 case PST_FREEBUSY_BUSY: | |
1288 case PST_FREEBUSY_OUT_OF_OFFICE: | |
1289 fprintf(f_output, "STATUS:CONFIRMED\n"); | |
1290 break; | |
43 | 1291 } |
1292 switch (appointment->label) { | |
50 | 1293 case PST_APP_LABEL_NONE: |
1294 fprintf(f_output, "CATEGORIES:NONE\n"); | |
1295 break; | |
1296 case PST_APP_LABEL_IMPORTANT: | |
1297 fprintf(f_output, "CATEGORIES:IMPORTANT\n"); | |
1298 break; | |
1299 case PST_APP_LABEL_BUSINESS: | |
1300 fprintf(f_output, "CATEGORIES:BUSINESS\n"); | |
1301 break; | |
1302 case PST_APP_LABEL_PERSONAL: | |
1303 fprintf(f_output, "CATEGORIES:PERSONAL\n"); | |
1304 break; | |
1305 case PST_APP_LABEL_VACATION: | |
1306 fprintf(f_output, "CATEGORIES:VACATION\n"); | |
1307 break; | |
1308 case PST_APP_LABEL_MUST_ATTEND: | |
1309 fprintf(f_output, "CATEGORIES:MUST-ATTEND\n"); | |
1310 break; | |
1311 case PST_APP_LABEL_TRAVEL_REQ: | |
1312 fprintf(f_output, "CATEGORIES:TRAVEL-REQUIRED\n"); | |
1313 break; | |
1314 case PST_APP_LABEL_NEEDS_PREP: | |
1315 fprintf(f_output, "CATEGORIES:NEEDS-PREPARATION\n"); | |
1316 break; | |
1317 case PST_APP_LABEL_BIRTHDAY: | |
1318 fprintf(f_output, "CATEGORIES:BIRTHDAY\n"); | |
1319 break; | |
1320 case PST_APP_LABEL_ANNIVERSARY: | |
1321 fprintf(f_output, "CATEGORIES:ANNIVERSARY\n"); | |
1322 break; | |
1323 case PST_APP_LABEL_PHONE_CALL: | |
1324 fprintf(f_output, "CATEGORIES:PHONE-CALL\n"); | |
1325 break; | |
43 | 1326 } |
1327 } | |
1328 fprintf(f_output, "END:VEVENT\n\n"); | |
25 | 1329 } |
1330 | |
31 | 1331 |
39 | 1332 void create_enter_dir(struct file_ll* f, pst_item *item) |
25 | 1333 { |
43 | 1334 f->email_count = 0; |
1335 f->skip_count = 0; | |
1336 f->type = item->type; | |
1337 f->stored_count = (item->folder) ? item->folder->email_count : 0; | |
39 | 1338 |
43 | 1339 DEBUG_ENT("create_enter_dir"); |
1340 if (mode == MODE_KMAIL) | |
1341 f->name = mk_kmail_dir(item->file_as); //create directory and form filename | |
1342 else if (mode == MODE_RECURSE) | |
1343 f->name = mk_recurse_dir(item->file_as); | |
77 | 1344 else if (mode == MODE_SEPARATE) { |
43 | 1345 // do similar stuff to recurse here. |
77 | 1346 mk_separate_dir(item->file_as); |
43 | 1347 f->name = (char*) xmalloc(10); |
1348 memset(f->name, 0, 10); | |
1349 // sprintf(f->name, SEP_MAIL_FILE_TEMPLATE, f->email_count); | |
1350 } else { | |
1351 f->name = (char*) xmalloc(strlen(item->file_as)+strlen(OUTPUT_TEMPLATE)+1); | |
1352 sprintf(f->name, OUTPUT_TEMPLATE, item->file_as); | |
1353 } | |
25 | 1354 |
43 | 1355 f->dname = (char*) xmalloc(strlen(item->file_as)+1); |
1356 strcpy(f->dname, item->file_as); | |
25 | 1357 |
43 | 1358 if (overwrite != 1) { |
1359 int x = 0; | |
1360 char *temp = (char*) xmalloc (strlen(f->name)+10); //enough room for 10 digits | |
25 | 1361 |
43 | 1362 sprintf(temp, "%s", f->name); |
1363 check_filename(temp); | |
1364 while ((f->output = fopen(temp, "r"))) { | |
1365 DEBUG_MAIN(("need to increase filename because one already exists with that name\n")); | |
1366 DEBUG_MAIN(("- increasing it to %s%d\n", f->name, x)); | |
1367 x++; | |
1368 sprintf(temp, "%s%08d", f->name, x); | |
1369 DEBUG_MAIN(("- trying \"%s\"\n", f->name)); | |
1370 if (x == 99999999) { | |
1371 DIE(("create_enter_dir: Why can I not create a folder %s? I have tried %i extensions...\n", f->name, x)); | |
1372 } | |
1373 fclose(f->output); | |
1374 } | |
1375 if (x > 0) { //then the f->name should change | |
1376 free (f->name); | |
1377 f->name = temp; | |
1378 } else { | |
1379 free(temp); | |
1380 } | |
1381 } | |
25 | 1382 |
43 | 1383 DEBUG_MAIN(("f->name = %s\nitem->folder_name = %s\n", f->name, item->file_as)); |
77 | 1384 if (mode != MODE_SEPARATE) { |
43 | 1385 check_filename(f->name); |
1386 if (!(f->output = fopen(f->name, "w"))) { | |
1387 DIE(("create_enter_dir: Could not open file \"%s\" for write\n", f->name)); | |
1388 } | |
1389 } | |
1390 DEBUG_RET(); | |
25 | 1391 } |
1392 | |
39 | 1393 |
1394 void close_enter_dir(struct file_ll *f) | |
1395 { | |
43 | 1396 DEBUG_MAIN(("main: Email Count for folder %s is %i\n", f->dname, f->email_count)); |
1397 if (output_mode != OUTPUT_QUIET) | |
1398 printf("\t\"%s\" - %i items done, skipped %i, should have been %i\n", | |
1399 f->dname, f->email_count, f->skip_count, f->stored_count); | |
1400 if (f->output) fclose(f->output); | |
1401 free(f->name); | |
1402 free(f->dname); | |
39 | 1403 |
43 | 1404 if (mode == MODE_KMAIL) |
1405 close_kmail_dir(); | |
1406 else if (mode == MODE_RECURSE) | |
1407 close_recurse_dir(); | |
77 | 1408 else if (mode == MODE_SEPARATE) |
1409 close_separate_dir(); | |
39 | 1410 } |
1411 |