2 * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2012 Colin Leroy <colin@colino.net>
4 * and the Claws Mail team
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 * A mail which has been completely downloaded will have no special headers,
23 * and its entry in the uidl file will end by 0 (POP3_TOTALLY_RECEIVED);
25 * A mail which has been partially downloaded will have some special headers,
26 * and its entry in the uidl file will first be 1 (POP3_PARTIALLY_RECEIVED);
27 * the special headers will be including "SC-Marked-For-Download" which can
29 * 0 (POP3_PARTIAL_DLOAD_UNKN) meaning that the user has not yet chosen to
30 * download the mail or let it be deleted - this header is absent until the
31 * user first chooses an action
32 * 1 (POP3_PARTIAL_DLOAD_DLOAD) meaning that the user wants to finish
33 * downloading the mail
34 * 2 (POP3_PARTIAL_DLOAD_DELE) meaning that the user does not want to finish
35 * downloading the mail
36 * When updating this header to POP3_PARTIAL_DLOAD_DLOAD, the uidl line of
37 * this mail will end with the mail's physical path, which Sylpheed will remove
38 * after having downloaded the complete mail. msg->partial_recv will equal
39 * 2 (POP3_MUST_COMPLETE_RECV).
40 * When updating this header to POP3_PARTIAL_DLOAD_DELE, the uidl line of
41 * this mail will be 0 (POP3_TOTALLY_RECEIVED), which will let Sylpheed delete
42 * this mail from the server as soon as the leave_time preference specifies.
47 #include "claws-features.h"
51 #include <glib/gi18n.h>
60 #include "partial_download.h"
64 #include "procheader.h"
67 int partial_msg_in_uidl_list(MsgInfo
*msginfo
)
71 gchar buf
[POPBUFSIZE
];
72 gchar uidl
[POPBUFSIZE
];
75 gchar
*sanitized_uid
= NULL
;
77 if (!msginfo
->extradata
)
80 sanitized_uid
= g_strdup(msginfo
->extradata
->account_login
);
82 subst_for_filename(sanitized_uid
);
84 if (!msginfo
->extradata
->account_server
85 || !msginfo
->extradata
->account_login
86 || !msginfo
->extradata
->partial_recv
)
89 path
= g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S
,
90 "uidl", G_DIR_SEPARATOR_S
, msginfo
->extradata
->account_server
,
91 "-", msginfo
->extradata
->account_login
, NULL
);
92 if ((fp
= g_fopen(path
, "rb")) == NULL
) {
93 if (ENOENT
!= errno
) FILE_OP_ERROR(path
, "fopen");
95 path
= g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S
,
96 "uidl-", msginfo
->extradata
->account_server
,
97 "-", sanitized_uid
, NULL
);
98 if ((fp
= g_fopen(path
, "rb")) == NULL
) {
99 if (ENOENT
!= errno
) FILE_OP_ERROR(path
, "fopen");
100 g_free(sanitized_uid
);
105 g_free(sanitized_uid
);
110 while (fgets(buf
, sizeof(buf
), fp
) != NULL
) {
111 gchar tmp
[POPBUFSIZE
];
113 recv_time
= RECV_TIME_NONE
;
115 if (sscanf(buf
, "%s\t%ld\t%s", uidl
, (long int *) &recv_time
,
117 if (sscanf(buf
, "%s", uidl
) != 1)
123 if (!strcmp(uidl
, msginfo
->extradata
->partial_recv
)) {
133 static int partial_uidl_mark_mail(MsgInfo
*msginfo
, int download
)
139 gchar buf
[POPBUFSIZE
];
140 gchar uidl
[POPBUFSIZE
];
143 gchar partial_recv
[POPBUFSIZE
];
147 gchar
*sanitized_uid
= NULL
;
149 filename
= procmsg_get_message_file_path(msginfo
);
151 g_warning("can't get message file path.");
154 tinfo
= procheader_parse_file(filename
, msginfo
->flags
, TRUE
, TRUE
);
156 if (!tinfo
->extradata
) {
161 sanitized_uid
= g_strdup(tinfo
->extradata
->account_login
);
162 subst_for_filename(sanitized_uid
);
164 if (!tinfo
->extradata
->account_server
165 || !tinfo
->extradata
->account_login
166 || !tinfo
->extradata
->partial_recv
) {
169 path
= g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S
,
170 "uidl", G_DIR_SEPARATOR_S
, tinfo
->extradata
->account_server
,
171 "-", sanitized_uid
, NULL
);
173 if ((fp
= g_fopen(path
, "rb")) == NULL
) {
174 FILE_OP_ERROR(path
, "fopen");
175 if (ENOENT
!= errno
) FILE_OP_ERROR(path
, "fopen");
177 path
= g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S
,
178 "uidl-", tinfo
->extradata
->account_server
,
179 "-", tinfo
->extradata
->account_login
, NULL
);
180 if ((fp
= g_fopen(path
, "rb")) == NULL
) {
181 if (ENOENT
!= errno
) FILE_OP_ERROR(path
, "fopen");
187 pathnew
= g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S
,
188 "uidl", G_DIR_SEPARATOR_S
, tinfo
->extradata
->account_server
,
189 "-", sanitized_uid
, ".new", NULL
);
191 g_free(sanitized_uid
);
193 if ((fpnew
= g_fopen(pathnew
, "wb")) == NULL
) {
194 FILE_OP_ERROR(pathnew
, "fopen");
202 while (fgets(buf
, sizeof(buf
), fp
) != NULL
) {
204 recv_time
= RECV_TIME_NONE
;
205 sprintf(partial_recv
,"0");
207 if (sscanf(buf
, "%s\t%ld\t%s",
208 uidl
, (long int *) &recv_time
, partial_recv
) < 2) {
209 if (sscanf(buf
, "%s", uidl
) != 1)
215 if (strcmp(tinfo
->extradata
->partial_recv
, uidl
)) {
216 if (fprintf(fpnew
, "%s\t%ld\t%s\n",
217 uidl
, (long int) recv_time
, partial_recv
) < 0) {
218 FILE_OP_ERROR(pathnew
, "fprintf");
227 if (download
== POP3_PARTIAL_DLOAD_DLOAD
) {
228 gchar
*folder_id
= folder_item_get_identifier(
230 stat
= g_strdup_printf("%s:%d",
231 folder_id
, msginfo
->msgnum
);
234 else if (download
== POP3_PARTIAL_DLOAD_UNKN
)
235 stat
= g_strdup("1");
236 else if (download
== POP3_PARTIAL_DLOAD_DELE
)
237 stat
= g_strdup("0");
239 if (fprintf(fpnew
, "%s\t%ld\t%s\n",
240 uidl
, (long int) recv_time
, stat
) < 0) {
241 FILE_OP_ERROR(pathnew
, "fprintf");
251 if (fclose(fpnew
) == EOF
) {
252 FILE_OP_ERROR(pathnew
, "fclose");
260 move_file(pathnew
, path
, TRUE
);
265 if ((fp
= g_fopen(filename
,"rb")) == NULL
) {
266 FILE_OP_ERROR(filename
, "fopen");
269 pathnew
= g_strdup_printf("%s.new", filename
);
270 if ((fpnew
= g_fopen(pathnew
, "wb")) == NULL
) {
271 FILE_OP_ERROR(pathnew
, "fopen");
277 if (fprintf(fpnew
, "SC-Marked-For-Download: %d\n",
279 FILE_OP_ERROR(pathnew
, "fprintf");
285 while (fgets(buf
, sizeof(buf
)-1, fp
) != NULL
) {
286 if(strlen(buf
) > strlen("SC-Marked-For-Download: x\n")
287 && !strncmp(buf
, "SC-Marked-For-Download:",
288 strlen("SC-Marked-For-Download:"))) {
289 if (fprintf(fpnew
, "%s",
290 buf
+strlen("SC-Marked-For-Download: x\n")) < 0) {
291 FILE_OP_ERROR(pathnew
, "fprintf");
298 } else if (strlen(buf
) == strlen("SC-Marked-For-Download: x\n")
299 && !strncmp(buf
, "SC-Marked-For-Download:",
300 strlen("SC-Marked-For-Download:"))) {
303 if (fprintf(fpnew
, "%s", buf
) < 0) {
304 FILE_OP_ERROR(pathnew
, "fprintf");
311 if (fclose(fpnew
) == EOF
) {
312 FILE_OP_ERROR(pathnew
, "fclose");
319 if (rename_force(pathnew
, filename
) != 0) {
325 msginfo
->planned_download
= download
;
326 msgcache_update_msg(msginfo
->folder
->cache
, msginfo
);
331 procmsg_msginfo_free(&tinfo
);
336 int partial_mark_for_delete(MsgInfo
*msginfo
)
338 return partial_uidl_mark_mail(msginfo
, POP3_PARTIAL_DLOAD_DELE
);
341 int partial_mark_for_download(MsgInfo
*msginfo
)
343 return partial_uidl_mark_mail(msginfo
, POP3_PARTIAL_DLOAD_DLOAD
);
346 int partial_unmark(MsgInfo
*msginfo
)
348 return partial_uidl_mark_mail(msginfo
, POP3_PARTIAL_DLOAD_UNKN
);
351 void partial_delete_old(const gchar
*file
)
353 gchar
*id
= g_strdup(file
);
354 gchar
*snum
= strrchr(file
, ':');
356 FolderItem
*item
= NULL
;
358 debug_print("too big message updated, should remove %s\n", file
?file
:"(null)");
364 return; /* not a real problem */
369 if (strrchr(id
, ':'))
370 *(strrchr(id
, ':'))='\0';
372 item
= folder_find_item_from_identifier(id
);
374 debug_print("removing %d in %s\n", num
, id
);
375 folder_item_remove_msg(item
, num
);
380 gchar
*partial_get_filename(const gchar
*server
, const gchar
*login
,
384 gchar
*result
= NULL
;
386 gchar buf
[POPBUFSIZE
];
387 gchar uidl
[POPBUFSIZE
];
390 gchar
*sanitized_uid
= g_strdup(login
);
392 subst_for_filename(sanitized_uid
);
394 path
= g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S
,
395 "uidl", G_DIR_SEPARATOR_S
,
396 server
, "-", sanitized_uid
, NULL
);
397 if ((fp
= g_fopen(path
, "rb")) == NULL
) {
398 if (ENOENT
!= errno
) FILE_OP_ERROR(path
, "fopen");
400 path
= g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S
,
402 "-", sanitized_uid
, NULL
);
403 if ((fp
= g_fopen(path
, "rb")) == NULL
) {
404 if (ENOENT
!= errno
) FILE_OP_ERROR(path
, "fopen");
405 g_free(sanitized_uid
);
410 g_free(sanitized_uid
);
415 while (fgets(buf
, sizeof(buf
), fp
) != NULL
) {
416 gchar tmp
[POPBUFSIZE
];
418 recv_time
= RECV_TIME_NONE
;
420 if (sscanf(buf
, "%s\t%ld\t%s", uidl
, (long int *) &recv_time
,
422 if (sscanf(buf
, "%s", uidl
) != 1)
428 if (!strcmp(muidl
, uidl
)) {
429 result
= g_strdup(tmp
);