Fix possibly non-null-terminated string
[claws.git] / src / inc.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2013 Hiroyuki Yamamoto and the Claws Mail team
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  * 
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #include "claws-features.h"
23 #endif
24
25 #include "defs.h"
26
27 #include <glib.h>
28 #include <glib/gi18n.h>
29 #include <gtk/gtk.h>
30 #include <stdio.h>
31 #include <unistd.h>
32 #include <string.h>
33
34 #include "main.h"
35 #include "inc.h"
36 #include "mainwindow.h"
37 #include "folderview.h"
38 #include "summaryview.h"
39 #include "prefs_common.h"
40 #include "prefs_account.h"
41 #include "account.h"
42 #include "procmsg.h"
43 #include "socket.h"
44 #include "ssl.h"
45 #include "pop.h"
46 #include "recv.h"
47 #include "mbox.h"
48 #include "utils.h"
49 #include "gtkutils.h"
50 #include "statusbar.h"
51 #include "msgcache.h"
52 #include "manage_window.h"
53 #include "stock_pixmap.h"
54 #include "progressdialog.h"
55 #include "inputdialog.h"
56 #include "alertpanel.h"
57 #include "folder.h"
58 #include "filtering.h"
59 #include "log.h"
60 #include "hooks.h"
61 #include "logwindow.h"
62
63 extern SessionStats session_stats;
64
65 static GList *inc_dialog_list = NULL;
66
67 guint inc_lock_count = 0;
68
69 static GdkPixbuf *currentpix;
70 static GdkPixbuf *errorpix;
71 static GdkPixbuf *okpix;
72
73 #define MESSAGEBUFSIZE  8192
74
75 static void inc_update_stats(gint new_msgs);
76 static void inc_finished                (MainWindow             *mainwin,
77                                          gboolean                new_messages,
78                                          gboolean                autocheck);
79 static gint inc_account_mail_real       (MainWindow             *mainwin,
80                                          PrefsAccount           *account);
81
82 static IncProgressDialog *inc_progress_dialog_create
83                                         (gboolean                autocheck);
84 static void inc_progress_dialog_set_list(IncProgressDialog      *inc_dialog);
85 static void inc_progress_dialog_destroy (IncProgressDialog      *inc_dialog);
86
87 static IncSession *inc_session_new      (PrefsAccount           *account);
88 static void inc_session_destroy         (IncSession             *session);
89 static gint inc_start                   (IncProgressDialog      *inc_dialog);
90 static IncState inc_pop3_session_do     (IncSession             *session);
91
92 static void inc_progress_dialog_update  (IncProgressDialog      *inc_dialog,
93                                          IncSession             *inc_session);
94
95 static void inc_progress_dialog_set_label
96                                         (IncProgressDialog      *inc_dialog,
97                                          IncSession             *inc_session);
98 static void inc_progress_dialog_set_progress
99                                         (IncProgressDialog      *inc_dialog,
100                                          IncSession             *inc_session);
101
102 static void inc_progress_dialog_update_periodic
103                                         (IncProgressDialog      *inc_dialog,
104                                          IncSession             *inc_session);
105
106 static gint inc_recv_data_progressive   (Session        *session,
107                                          guint           cur_len,
108                                          guint           total_len,
109                                          gpointer        data);
110 static gint inc_recv_data_finished      (Session        *session,
111                                          guint           len,
112                                          gpointer        data);
113 static gint inc_recv_message            (Session        *session,
114                                          const gchar    *msg,
115                                          gpointer        data);
116 static gint inc_drop_message            (Pop3Session    *session,
117                                          const gchar    *file);
118
119 static void inc_put_error               (IncState        istate,
120                                          Pop3Session    *session);
121
122 static void inc_showlog_cb              (GtkWidget      *widget,
123                                          gpointer        data);
124 static void inc_cancel_cb               (GtkWidget      *widget,
125                                          gpointer        data);
126 static gint inc_dialog_delete_cb        (GtkWidget      *widget,
127                                          GdkEventAny    *event,
128                                          gpointer        data);
129
130 static gint get_spool                   (FolderItem     *dest,
131                                          const gchar    *mbox,
132                                          PrefsAccount   *account);
133
134 static gint inc_spool_account(PrefsAccount *account);
135 static gint inc_all_spool(void);
136 static void inc_autocheck_timer_set_interval    (guint           interval);
137 static gint inc_autocheck_func                  (gpointer        data);
138
139 static void inc_notify_cmd              (gint new_msgs, 
140                                          gboolean notify);
141
142 static void inc_update_stats(gint new_msgs)
143 {
144         /* update session statistics */
145         session_stats.received += new_msgs;
146 }
147
148 /**
149  * inc_finished:
150  * @mainwin: Main window.
151  * @new_messages: TRUE if some messages have been received.
152  * 
153  * Update the folder view and the summary view after receiving
154  * messages.  If @new_messages is FALSE, this function avoids unneeded
155  * updating.
156  **/
157 static void inc_finished(MainWindow *mainwin, gboolean new_messages, gboolean autocheck)
158 {
159         if (prefs_common.scan_all_after_inc)
160                 folderview_check_new(NULL);
161
162         if (!autocheck && new_messages && prefs_common.open_inbox_on_inc) {
163                 FolderItem *item = NULL;
164
165                 if (cur_account && cur_account->inbox)
166                         item = folder_find_item_from_identifier(cur_account->inbox);
167                 if (item == NULL && cur_account && cur_account->folder)
168                         item = cur_account->folder->inbox;
169                 if (item == NULL)
170                         item = folder_get_default_inbox();
171
172                 folderview_unselect(mainwin->folderview);
173                 folderview_select(mainwin->folderview, item);
174         }
175 }
176
177 void inc_mail(MainWindow *mainwin, gboolean notify)
178 {
179         gint new_msgs = 0;
180         gint account_new_msgs = 0;
181
182         if (inc_lock_count) return;
183
184         if (prefs_common.work_offline && 
185             !inc_offline_should_override(TRUE,
186                 _("Claws Mail needs network access in order "
187                   "to get mails.")))
188                 return;
189
190         inc_lock();
191         inc_autocheck_timer_remove();
192         main_window_lock(mainwin);
193
194         if (prefs_common.use_extinc && prefs_common.extinc_cmd) {
195                 /* external incorporating program */
196                 if (execute_command_line(prefs_common.extinc_cmd, FALSE) < 0) {
197                         main_window_unlock(mainwin);
198                         inc_autocheck_timer_set();
199                         inc_unlock();
200                         return;
201                 }
202         } else {
203                 account_new_msgs = inc_account_mail_real(mainwin, cur_account);
204                 if (account_new_msgs > 0)
205                         new_msgs += account_new_msgs;
206         }
207
208         inc_update_stats(new_msgs);
209         inc_finished(mainwin, new_msgs > 0, FALSE);
210         main_window_unlock(mainwin);
211         inc_notify_cmd(new_msgs, notify);
212         inc_autocheck_timer_set();
213         inc_unlock();
214 }
215
216 void inc_pop_before_smtp(PrefsAccount *acc)
217 {
218         IncProgressDialog *inc_dialog;
219         IncSession *session;
220         MainWindow *mainwin;
221
222         mainwin = mainwindow_get_mainwindow();
223
224         session = inc_session_new(acc);
225         if (!session) return;
226         POP3_SESSION(session->session)->pop_before_smtp = TRUE;
227                 
228         inc_dialog = inc_progress_dialog_create(FALSE);
229         inc_dialog->queue_list = g_list_append(inc_dialog->queue_list,
230                                                session);
231         /* FIXME: assumes to attach to first main window */
232         inc_dialog->mainwin = mainwin;
233         inc_progress_dialog_set_list(inc_dialog);
234
235         if (mainwin) {
236                 toolbar_main_set_sensitive(mainwin);
237                 main_window_set_menu_sensitive(mainwin);
238         }
239                         
240         inc_start(inc_dialog);
241 }
242
243 static gint inc_account_mail_real(MainWindow *mainwin, PrefsAccount *account)
244 {
245         IncProgressDialog *inc_dialog;
246         IncSession *session;
247         
248         switch (account->protocol) {
249         case A_IMAP4:
250         case A_NNTP:
251                 /* Melvin: bug [14]
252                  * FIXME: it should return foldeview_check_new() value.
253                  * TODO: do it when bug [19] is fixed (IMAP folder sets 
254                  * an incorrect new message count)
255                  */
256                 folderview_check_new(FOLDER(account->folder));
257                 return 0;
258         case A_POP3:
259         case A_APOP:
260                 session = inc_session_new(account);
261                 if (!session) return 0;
262                 
263                 inc_dialog = inc_progress_dialog_create(FALSE);
264                 inc_dialog->queue_list = g_list_append(inc_dialog->queue_list,
265                                                        session);
266                 inc_dialog->mainwin = mainwin;
267                 inc_progress_dialog_set_list(inc_dialog);
268
269                 if (mainwin) {
270                         toolbar_main_set_sensitive(mainwin);
271                         main_window_set_menu_sensitive(mainwin);
272                 }
273                         
274                 return inc_start(inc_dialog);
275
276         case A_LOCAL:
277                 return inc_spool_account(account);
278
279         default:
280                 break;
281         }
282         return 0;
283 }
284
285 gint inc_account_mail(MainWindow *mainwin, PrefsAccount *account)
286 {
287         gint new_msgs;
288
289         if (inc_lock_count) return 0;
290
291         if (account->receive_in_progress) return 0;
292
293         if (prefs_common.work_offline && 
294             !inc_offline_should_override(TRUE,
295                 _("Claws Mail needs network access in order "
296                   "to get mails.")))
297                 return 0;
298
299         inc_autocheck_timer_remove();
300         main_window_lock(mainwin);
301
302         new_msgs = inc_account_mail_real(mainwin, account);
303
304         inc_update_stats(new_msgs);
305         inc_finished(mainwin, new_msgs > 0, FALSE);
306         main_window_unlock(mainwin);
307         inc_autocheck_timer_set();
308
309         return new_msgs;
310 }
311
312 void inc_all_account_mail(MainWindow *mainwin, gboolean autocheck,
313                           gboolean notify)
314 {
315         GList *list, *queue_list = NULL;
316         IncProgressDialog *inc_dialog;
317         gint new_msgs = 0;
318         gint account_new_msgs = 0;
319         
320         if (prefs_common.work_offline && 
321             !inc_offline_should_override( (autocheck == FALSE),
322                 _("Claws Mail needs network access in order "
323                   "to get mails.")))
324                 return;
325
326         if (inc_lock_count) return;
327
328         inc_autocheck_timer_remove();
329         main_window_lock(mainwin);
330
331         list = account_get_list();
332         if (!list) {
333                 inc_update_stats(new_msgs);
334                 inc_finished(mainwin, new_msgs > 0, autocheck);
335                 main_window_unlock(mainwin);
336                 inc_notify_cmd(new_msgs, notify);
337                 inc_autocheck_timer_set();
338                 return;
339         }
340
341         if (prefs_common.use_extinc && prefs_common.extinc_cmd) {
342                 /* external incorporating program */
343                 if (execute_command_line(prefs_common.extinc_cmd, FALSE) < 0) {
344                         log_error(LOG_PROTOCOL, _("%s failed\n"), prefs_common.extinc_cmd);
345                         
346                         main_window_unlock(mainwin);
347                         inc_autocheck_timer_set();
348                         return;
349                 }
350         }
351         
352         /* check local folders */
353         account_new_msgs = inc_all_spool();
354         if (account_new_msgs > 0)
355                 new_msgs += account_new_msgs;
356
357         /* check IMAP4 / News folders */
358         for (list = account_get_list(); list != NULL; list = list->next) {
359                 PrefsAccount *account = list->data;
360                 if ((account->protocol == A_IMAP4 ||
361                      account->protocol == A_NNTP) && account->recv_at_getall) {
362                         new_msgs += folderview_check_new(FOLDER(account->folder));
363                 }
364         }
365
366         /* check POP3 accounts */
367         for (list = account_get_list(); list != NULL; list = list->next) {
368                 IncSession *session;
369                 PrefsAccount *account = list->data;
370
371                 if (account->recv_at_getall) {
372                         if (!(account->receive_in_progress)) {
373                                 session = inc_session_new(account);
374                                 if (session)
375                                         queue_list = g_list_append(queue_list, session);
376                         }
377                 }
378         }
379
380         if (queue_list) {
381                 inc_dialog = inc_progress_dialog_create(autocheck);
382                 inc_dialog->queue_list = queue_list;
383                 inc_dialog->mainwin = mainwin;
384                 inc_progress_dialog_set_list(inc_dialog);
385
386                 toolbar_main_set_sensitive(mainwin);
387                 main_window_set_menu_sensitive(mainwin);
388                 new_msgs += inc_start(inc_dialog);
389         }
390
391         inc_update_stats(new_msgs);
392         inc_finished(mainwin, new_msgs > 0, autocheck);
393         main_window_unlock(mainwin);
394         inc_notify_cmd(new_msgs, notify);
395         inc_autocheck_timer_set();
396 }
397
398 static void inc_progress_dialog_size_allocate_cb(GtkWidget *widget,
399                                          GtkAllocation *allocation)
400 {
401         cm_return_if_fail(allocation != NULL);
402
403         prefs_common.receivewin_width = allocation->width;
404         prefs_common.receivewin_height = allocation->height;
405 }
406
407 static IncProgressDialog *inc_progress_dialog_create(gboolean autocheck)
408 {
409         IncProgressDialog *dialog;
410         ProgressDialog *progress;
411         static GdkGeometry geometry;
412
413         dialog = g_new0(IncProgressDialog, 1);
414
415         progress = progress_dialog_create();
416         gtk_window_set_title(GTK_WINDOW(progress->window),
417                              _("Retrieving new messages"));
418         g_signal_connect(G_OBJECT(progress->showlog_btn), "clicked",
419                          G_CALLBACK(inc_showlog_cb), dialog);
420         g_signal_connect(G_OBJECT(progress->cancel_btn), "clicked",
421                          G_CALLBACK(inc_cancel_cb), dialog);
422         g_signal_connect(G_OBJECT(progress->window), "delete_event",
423                          G_CALLBACK(inc_dialog_delete_cb), dialog);
424         g_signal_connect(G_OBJECT(progress->window), "size_allocate",
425                          G_CALLBACK(inc_progress_dialog_size_allocate_cb), NULL);
426         /* manage_window_set_transient(GTK_WINDOW(progress->window)); */
427
428         progress_dialog_get_fraction(progress);
429
430         stock_pixbuf_gdk(progress->treeview, STOCK_PIXMAP_COMPLETE,
431                          &okpix);
432         stock_pixbuf_gdk(progress->treeview, STOCK_PIXMAP_CONTINUE,
433                          &currentpix);
434         stock_pixbuf_gdk(progress->treeview, STOCK_PIXMAP_ERROR,
435                          &errorpix);
436
437         if (!geometry.min_height) {
438                 geometry.min_width = 460;
439                 geometry.min_height = 250;
440         }
441
442         gtk_window_set_geometry_hints(GTK_WINDOW(progress->window), NULL, &geometry,
443                                       GDK_HINT_MIN_SIZE);
444         gtk_widget_set_size_request(progress->window, prefs_common.receivewin_width,
445                                     prefs_common.receivewin_height);
446
447         if (prefs_common.recv_dialog_mode == RECV_DIALOG_ALWAYS ||
448             (prefs_common.recv_dialog_mode == RECV_DIALOG_MANUAL &&
449              !autocheck)) {
450                 dialog->show_dialog = TRUE;
451                 gtk_widget_show_now(progress->window);
452         }
453
454         dialog->dialog = progress;
455         g_get_current_time(&dialog->progress_tv);
456         g_get_current_time(&dialog->folder_tv);
457         dialog->queue_list = NULL;
458         dialog->cur_row = 0;
459
460         inc_dialog_list = g_list_append(inc_dialog_list, dialog);
461
462         return dialog;
463 }
464
465 static void inc_progress_dialog_set_list(IncProgressDialog *inc_dialog)
466 {
467         GList *list;
468
469         for (list = inc_dialog->queue_list; list != NULL; list = list->next) {
470                 IncSession *session = list->data;
471                 Pop3Session *pop3_session = POP3_SESSION(session->session);
472
473                 session->data = inc_dialog;
474
475                 progress_dialog_list_set(inc_dialog->dialog,
476                                          -1, NULL,
477                                          pop3_session->ac_prefs->account_name,
478                                          _("Standby"));
479         }
480 }
481
482 static void inc_progress_dialog_clear(IncProgressDialog *inc_dialog)
483 {
484         progress_dialog_get_fraction(inc_dialog->dialog);
485         progress_dialog_set_label(inc_dialog->dialog, "");
486         if (inc_dialog->mainwin)
487                 main_window_progress_off(inc_dialog->mainwin);
488 }
489
490 static void inc_progress_dialog_destroy(IncProgressDialog *inc_dialog)
491 {
492         cm_return_if_fail(inc_dialog != NULL);
493
494         inc_dialog_list = g_list_remove(inc_dialog_list, inc_dialog);
495
496         if (inc_dialog->mainwin)
497                 main_window_progress_off(inc_dialog->mainwin);
498         progress_dialog_destroy(inc_dialog->dialog);
499
500         g_free(inc_dialog);
501 }
502
503 static IncSession *inc_session_new(PrefsAccount *account)
504 {
505         IncSession *session;
506
507         cm_return_val_if_fail(account != NULL, NULL);
508
509         if (account->protocol != A_POP3)
510                 return NULL;
511         if (!account->recv_server || !account->userid)
512                 return NULL;
513
514         session = g_new0(IncSession, 1);
515
516         session->session = pop3_session_new(account);
517         session->session->data = session;
518         POP3_SESSION(session->session)->drop_message = inc_drop_message;
519         session_set_recv_message_notify(session->session,
520                                         inc_recv_message, session);
521         session_set_recv_data_progressive_notify(session->session,
522                                                  inc_recv_data_progressive,
523                                                  session);
524         session_set_recv_data_notify(session->session,
525                                      inc_recv_data_finished, session);
526
527         return session;
528 }
529
530 static void inc_session_destroy(IncSession *session)
531 {
532         cm_return_if_fail(session != NULL);
533
534         session_destroy(session->session);
535         g_free(session);
536 }
537
538 static gint pop3_get_port(Pop3Session *pop3_session)
539 {
540 #ifdef USE_GNUTLS
541         return pop3_session->ac_prefs->set_popport ?
542                 pop3_session->ac_prefs->popport :
543                 pop3_session->ac_prefs->ssl_pop == SSL_TUNNEL ? 995 : 110;
544 #else
545         return pop3_session->ac_prefs->set_popport ?
546                 pop3_session->ac_prefs->popport : 110;
547 #endif
548 }
549
550 static gint inc_start(IncProgressDialog *inc_dialog)
551 {
552         IncSession *session;
553         GList *qlist;
554         Pop3Session *pop3_session;
555         IncState inc_state;
556         gint error_num = 0;
557         gint new_msgs = 0;
558         gchar *msg;
559         gchar *fin_msg;
560         FolderItem *processing, *inbox;
561         GSList *msglist, *msglist_element;
562         gboolean cancelled = FALSE;
563
564         qlist = inc_dialog->queue_list;
565         while (qlist != NULL) {
566                 GList *next = qlist->next;
567
568                 session = qlist->data;
569                 pop3_session = POP3_SESSION(session->session); 
570                 pop3_session->user = g_strdup(pop3_session->ac_prefs->userid);
571
572                 if (password_get(pop3_session->user,
573                                         pop3_session->ac_prefs->recv_server,
574                                         "pop3", pop3_get_port(pop3_session),
575                                         &(pop3_session->pass))) {
576                         /* NOP */;
577                 } else if (pop3_session->ac_prefs->passwd)
578                         pop3_session->pass =
579                                 g_strdup(pop3_session->ac_prefs->passwd);
580                 else {
581                         gchar *pass;
582
583                         if (inc_dialog->show_dialog)
584                                 manage_window_focus_in
585                                         (inc_dialog->dialog->window,
586                                          NULL, NULL);
587
588                         pass = input_dialog_query_password_keep
589                                 (pop3_session->ac_prefs->recv_server,
590                                  pop3_session->user,
591                                  &(pop3_session->ac_prefs->session_passwd));
592
593                         if (inc_dialog->show_dialog)
594                                 manage_window_focus_out
595                                         (inc_dialog->dialog->window,
596                                          NULL, NULL);
597
598                         if (pass) {
599                                 pop3_session->pass = pass;
600                         }
601                 }
602
603                 qlist = next;
604         }
605
606 #define SET_PIXMAP_AND_TEXT(pix, str)                                      \
607 {                                                                          \
608         progress_dialog_list_set(inc_dialog->dialog,                       \
609                                  inc_dialog->cur_row,                      \
610                                  pix,                                      \
611                                  NULL,                                     \
612                                  str);                                     \
613 }
614
615         for (; inc_dialog->queue_list != NULL && !cancelled; inc_dialog->cur_row++) {
616                 session = inc_dialog->queue_list->data;
617                 pop3_session = POP3_SESSION(session->session);
618                 GSList *filtered, *unfiltered;
619
620                 if (pop3_session->pass == NULL) {
621                         SET_PIXMAP_AND_TEXT(okpix, _("Cancelled"));
622                         inc_session_destroy(session);
623                         inc_dialog->queue_list =
624                                 g_list_remove(inc_dialog->queue_list, session);
625                         continue;
626                 }
627
628                 inc_progress_dialog_clear(inc_dialog);
629                 progress_dialog_scroll_to_row(inc_dialog->dialog,
630                                               inc_dialog->cur_row);
631
632                 SET_PIXMAP_AND_TEXT(currentpix, _("Retrieving"));
633
634                 /* begin POP3 session */
635                 inc_state = inc_pop3_session_do(session);
636
637                 switch (inc_state) {
638                 case INC_SUCCESS:
639                         if (pop3_session->cur_total_num > 0)
640                                 msg = g_strdup_printf(
641                                         ngettext("Done (%d message (%s) received)",
642                                                  "Done (%d messages (%s) received)",
643                                          pop3_session->cur_total_num),
644                                          pop3_session->cur_total_num,
645                                          to_human_readable((goffset)pop3_session->cur_total_recv_bytes));
646                         else
647                                 msg = g_strdup_printf(_("Done (no new messages)"));
648                         SET_PIXMAP_AND_TEXT(okpix, msg);
649                         g_free(msg);
650                         break;
651                 case INC_CONNECT_ERROR:
652                         SET_PIXMAP_AND_TEXT(errorpix, _("Connection failed"));
653                         break;
654                 case INC_AUTH_FAILED:
655                         SET_PIXMAP_AND_TEXT(errorpix, _("Auth failed"));
656                         if (pop3_session->ac_prefs->session_passwd) {
657                                 g_free(pop3_session->ac_prefs->session_passwd);
658                                 pop3_session->ac_prefs->session_passwd = NULL;
659                         }
660                         break;
661                 case INC_LOCKED:
662                         SET_PIXMAP_AND_TEXT(errorpix, _("Locked"));
663                         break;
664                 case INC_ERROR:
665                 case INC_NO_SPACE:
666                 case INC_IO_ERROR:
667                 case INC_SOCKET_ERROR:
668                 case INC_EOF:
669                         SET_PIXMAP_AND_TEXT(errorpix, _("Error"));
670                         break;
671                 case INC_TIMEOUT:
672                         SET_PIXMAP_AND_TEXT(errorpix, _("Timeout"));
673                         break;
674                 case INC_CANCEL:
675                         SET_PIXMAP_AND_TEXT(okpix, _("Cancelled"));
676                         if (!inc_dialog->show_dialog)
677                                 cancelled = TRUE;
678                         break;
679                 default:
680                         break;
681                 }
682                 
683                 if (pop3_session->error_val == PS_AUTHFAIL) {
684                         if(!prefs_common.no_recv_err_panel) {
685                                 if((prefs_common.recv_dialog_mode == RECV_DIALOG_ALWAYS) ||
686                                     ((prefs_common.recv_dialog_mode == RECV_DIALOG_MANUAL) && focus_window))
687                                         manage_window_focus_in(inc_dialog->dialog->window, NULL, NULL);
688                         }
689                 }
690
691                 /* CLAWS: perform filtering actions on dropped message */
692                 /* CLAWS: get default inbox (perhaps per account) */
693                 if (pop3_session->ac_prefs->inbox) {
694                         /* CLAWS: get destination folder / mailbox */
695                         inbox = folder_find_item_from_identifier(pop3_session->ac_prefs->inbox);
696                         if (!inbox)
697                                 inbox = folder_get_default_inbox();
698                 } else
699                         inbox = folder_get_default_inbox();
700
701                 /* get list of messages in processing */
702                 processing = folder_get_default_processing(pop3_session->ac_prefs->account_id);
703                 folder_item_scan(processing);
704                 msglist = folder_item_get_msg_list(processing);
705
706                 /* process messages */
707                 folder_item_update_freeze();
708                 
709                 procmsg_msglist_filter(msglist, pop3_session->ac_prefs, 
710                                 &filtered, &unfiltered, 
711                                 pop3_session->ac_prefs->filter_on_recv);
712
713                 filtering_move_and_copy_msgs(msglist);
714                 if (unfiltered != NULL)         
715                         folder_item_move_msgs(inbox, unfiltered);
716
717                 for(msglist_element = msglist; msglist_element != NULL; 
718                     msglist_element = msglist_element->next) {
719                         MsgInfo *msginfo = (MsgInfo *)msglist_element->data;
720                         procmsg_msginfo_free(msginfo);
721                 }
722                 folder_item_update_thaw();
723                 
724                 g_slist_free(msglist);
725                 g_slist_free(filtered);
726                 g_slist_free(unfiltered);
727
728                 statusbar_pop_all();
729
730                 new_msgs += pop3_session->cur_total_num;
731
732                 pop3_write_uidl_list(pop3_session);
733
734                 if (inc_state != INC_SUCCESS && inc_state != INC_CANCEL) {
735                         error_num++;
736                         if (inc_dialog->show_dialog)
737                                 manage_window_focus_in
738                                         (inc_dialog->dialog->window,
739                                          NULL, NULL);
740                         inc_put_error(inc_state, pop3_session);
741                         if (inc_dialog->show_dialog)
742                                 manage_window_focus_out
743                                         (inc_dialog->dialog->window,
744                                          NULL, NULL);
745                         if (inc_state == INC_NO_SPACE ||
746                             inc_state == INC_IO_ERROR)
747                                 break;
748                 }
749                 folder_item_free_cache(processing, TRUE);
750
751                 inc_session_destroy(session);
752                 inc_dialog->queue_list =
753                         g_list_remove(inc_dialog->queue_list, session);
754         }
755
756 #undef SET_PIXMAP_AND_TEXT
757
758         if (new_msgs > 0)
759                 fin_msg = g_strdup_printf(ngettext("Finished (%d new message)",
760                                                    "Finished (%d new messages)",
761                                                    new_msgs), new_msgs);
762         else
763                 fin_msg = g_strdup_printf(_("Finished (no new messages)"));
764
765         progress_dialog_set_label(inc_dialog->dialog, fin_msg);
766
767         while (inc_dialog->queue_list != NULL) {
768                 session = inc_dialog->queue_list->data;
769                 inc_session_destroy(session);
770                 inc_dialog->queue_list =
771                         g_list_remove(inc_dialog->queue_list, session);
772         }
773
774         if (prefs_common.close_recv_dialog || !inc_dialog->show_dialog)
775                 inc_progress_dialog_destroy(inc_dialog);
776         else {
777                 gtk_window_set_title(GTK_WINDOW(inc_dialog->dialog->window),
778                                      fin_msg);
779                 gtk_button_set_label(GTK_BUTTON(inc_dialog->dialog->cancel_btn),
780                                      GTK_STOCK_CLOSE);
781         }
782
783         g_free(fin_msg);
784
785         return new_msgs;
786 }
787
788 static IncState inc_pop3_session_do(IncSession *session)
789 {
790         Pop3Session *pop3_session = POP3_SESSION(session->session);
791         IncProgressDialog *inc_dialog = (IncProgressDialog *)session->data;
792         gchar *server;
793         gchar *account_name;
794         gushort port;
795         gchar *buf;
796
797         debug_print("getting new messages of account %s...\n",
798                     pop3_session->ac_prefs->account_name);
799                     
800         pop3_session->ac_prefs->last_pop_login_time = time(NULL);
801
802         buf = g_strdup_printf(_("%s: Retrieving new messages"),
803                               pop3_session->ac_prefs->recv_server);
804         gtk_window_set_title(GTK_WINDOW(inc_dialog->dialog->window), buf);
805         g_free(buf);
806
807         server = pop3_session->ac_prefs->recv_server;
808         account_name = pop3_session->ac_prefs->account_name;
809         port = pop3_get_port(pop3_session);
810
811 #ifdef USE_GNUTLS
812         SESSION(pop3_session)->ssl_type = pop3_session->ac_prefs->ssl_pop;
813         if (pop3_session->ac_prefs->ssl_pop != SSL_NONE)
814                 SESSION(pop3_session)->nonblocking =
815                         pop3_session->ac_prefs->use_nonblocking_ssl;
816 #else
817         if (pop3_session->ac_prefs->ssl_pop != SSL_NONE) {
818                 if (alertpanel_full(_("Insecure connection"),
819                         _("This connection is configured to be secured "
820                           "using SSL, but SSL is not available in this "
821                           "build of Claws Mail. \n\n"
822                           "Do you want to continue connecting to this "
823                           "server? The communication would not be "
824                           "secure."),
825                           GTK_STOCK_CANCEL, _("Con_tinue connecting"), 
826                           NULL, FALSE, NULL, ALERT_WARNING,
827                           G_ALERTDEFAULT) != G_ALERTALTERNATE)
828                         return INC_CANCEL;
829         }
830 #endif
831
832         buf = g_strdup_printf(_("Account '%s': Connecting to POP3 server: %s:%d..."),
833                                 account_name, server, port);
834         statuswindow_print_all("%s", buf);
835         log_message(LOG_PROTOCOL, "%s\n", buf);
836
837         progress_dialog_set_label(inc_dialog->dialog, buf);
838         GTK_EVENTS_FLUSH();
839         g_free(buf);
840
841         session_set_timeout(SESSION(pop3_session),
842                             prefs_common.io_timeout_secs * 1000);
843         
844         if (session_connect(SESSION(pop3_session), server, port) < 0) {
845                 if(!prefs_common.no_recv_err_panel) {
846                         if((prefs_common.recv_dialog_mode == RECV_DIALOG_ALWAYS) ||
847                             ((prefs_common.recv_dialog_mode == RECV_DIALOG_MANUAL) && focus_window)) {
848                                 manage_window_focus_in(inc_dialog->dialog->window, NULL, NULL);
849                         }
850                         alertpanel_error(_("Can't connect to POP3 server: %s:%d"),
851                                          server, port);
852                         manage_window_focus_out(inc_dialog->dialog->window, NULL, NULL);
853                 } else {
854                         log_error(LOG_PROTOCOL, _("Can't connect to POP3 server: %s:%d\n"),
855                             server, port);
856                 }
857                 session->inc_state = INC_CONNECT_ERROR;
858                 statuswindow_pop_all();
859                 return INC_CONNECT_ERROR;
860         }
861
862         while (session_is_running(SESSION(pop3_session)) &&
863                session->inc_state != INC_CANCEL)
864                 gtk_main_iteration();
865
866         if (session->inc_state == INC_SUCCESS) {
867                 switch (pop3_session->error_val) {
868                 case PS_SUCCESS:
869                         switch (SESSION(pop3_session)->state) {
870                         case SESSION_ERROR:
871                                 if (pop3_session->state == POP3_READY)
872                                         session->inc_state = INC_CONNECT_ERROR;
873                                 else
874                                         session->inc_state = INC_ERROR;
875                                 break;
876                         case SESSION_EOF:
877                                 session->inc_state = INC_EOF;
878                                 break;
879                         case SESSION_TIMEOUT:
880                                 session->inc_state = INC_TIMEOUT;
881                                 break;
882                         default:
883                                 session->inc_state = INC_SUCCESS;
884                                 break;
885                         }
886                         break;
887                 case PS_AUTHFAIL:
888                         session->inc_state = INC_AUTH_FAILED;
889                         break;
890                 case PS_IOERR:
891                         session->inc_state = INC_IO_ERROR;
892                         break;
893                 case PS_SOCKET:
894                         session->inc_state = INC_SOCKET_ERROR;
895                         break;
896                 case PS_LOCKBUSY:
897                         session->inc_state = INC_LOCKED;
898                         break;
899                 default:
900                         session->inc_state = INC_ERROR;
901                         break;
902                 }
903         }
904
905         session_disconnect(SESSION(pop3_session));
906         statusbar_pop_all();
907
908         return session->inc_state;
909 }
910
911 static void inc_progress_dialog_update(IncProgressDialog *inc_dialog,
912                                        IncSession *inc_session)
913 {
914         inc_progress_dialog_set_label(inc_dialog, inc_session);
915         inc_progress_dialog_set_progress(inc_dialog, inc_session);
916 }
917
918 static void inc_progress_dialog_set_label(IncProgressDialog *inc_dialog,
919                                           IncSession *inc_session)
920 {
921         ProgressDialog *dialog = inc_dialog->dialog;
922         Pop3Session *session;
923
924         cm_return_if_fail(inc_session != NULL);
925
926         session = POP3_SESSION(inc_session->session);
927
928         switch (session->state) {
929         case POP3_GREETING:
930                 break;
931         case POP3_GETAUTH_USER:
932         case POP3_GETAUTH_PASS:
933         case POP3_GETAUTH_APOP:
934                 progress_dialog_set_label(dialog, _("Authenticating..."));
935                 statuswindow_pop_all();
936                 statusbar_print_all(_("Retrieving messages from %s (%s)..."),
937                                     SESSION(session)->server,
938                                     session->ac_prefs->account_name);
939                 break;
940         case POP3_GETRANGE_STAT:
941                 progress_dialog_set_label
942                         (dialog, _("Getting the number of new messages (STAT)..."));
943                 break;
944         case POP3_GETRANGE_LAST:
945                 progress_dialog_set_label
946                         (dialog, _("Getting the number of new messages (LAST)..."));
947                 break;
948         case POP3_GETRANGE_UIDL:
949                 progress_dialog_set_label
950                         (dialog, _("Getting the number of new messages (UIDL)..."));
951                 break;
952         case POP3_GETSIZE_LIST:
953                 progress_dialog_set_label
954                         (dialog, _("Getting the size of messages (LIST)..."));
955                 break;
956         case POP3_RETR:
957         case POP3_RETR_RECV:
958         case POP3_DELETE:
959                 break;
960         case POP3_LOGOUT:
961                 progress_dialog_set_label(dialog, _("Quitting"));
962                 break;
963         default:
964                 break;
965         }
966 }
967
968 static void inc_progress_dialog_set_progress(IncProgressDialog *inc_dialog,
969                                              IncSession *inc_session)
970 {
971         gchar buf[MESSAGEBUFSIZE];
972         Pop3Session *pop3_session = POP3_SESSION(inc_session->session);
973         gchar *total_size_str;
974         gint cur_total;
975         gint total;
976
977         if (!pop3_session->new_msg_exist) return;
978
979         cur_total = inc_session->cur_total_bytes;
980         total = pop3_session->total_bytes;
981         if (pop3_session->state == POP3_RETR ||
982             pop3_session->state == POP3_RETR_RECV ||
983             pop3_session->state == POP3_DELETE) {
984                 Xstrdup_a(total_size_str, to_human_readable((goffset)total), return);
985                 g_snprintf(buf, sizeof(buf),
986                            _("Retrieving message (%d / %d) (%s / %s)"),
987                            pop3_session->cur_msg, pop3_session->count,
988                            to_human_readable((goffset)cur_total), total_size_str);
989                 progress_dialog_set_label(inc_dialog->dialog, buf);
990         }
991
992         progress_dialog_set_fraction
993                 (inc_dialog->dialog, (total == 0) ? 0: (gfloat)cur_total / (gfloat)total);
994
995         statusbar_progress_all(pop3_session->cur_msg, pop3_session->count, 1);
996
997         if (pop3_session->cur_total_num > 0) {
998                 g_snprintf(buf, sizeof(buf),
999                            ngettext("Retrieving (%d message (%s) received)",
1000                                     "Retrieving (%d messages (%s) received)",
1001                                     pop3_session->cur_total_num),
1002                            pop3_session->cur_total_num,
1003                            to_human_readable
1004                            ((goffset)pop3_session->cur_total_recv_bytes));
1005                 progress_dialog_list_set_status(inc_dialog->dialog,
1006                                                 inc_dialog->cur_row,
1007                                                 buf);
1008         }
1009 }
1010
1011 static void inc_progress_dialog_update_periodic(IncProgressDialog *inc_dialog,
1012                                                 IncSession *inc_session)
1013 {
1014         GTimeVal tv_cur;
1015         GTimeVal tv_result;
1016         gint msec;
1017
1018         g_get_current_time(&tv_cur);
1019
1020         tv_result.tv_sec = tv_cur.tv_sec - inc_dialog->progress_tv.tv_sec;
1021         tv_result.tv_usec = tv_cur.tv_usec - inc_dialog->progress_tv.tv_usec;
1022         if (tv_result.tv_usec < 0) {
1023                 tv_result.tv_sec--;
1024                 tv_result.tv_usec += G_USEC_PER_SEC;
1025         }
1026
1027         msec = tv_result.tv_sec * 1000 + tv_result.tv_usec / 1000;
1028         if (msec > PROGRESS_UPDATE_INTERVAL) {
1029                 inc_progress_dialog_update(inc_dialog, inc_session);
1030                 inc_dialog->progress_tv.tv_sec = tv_cur.tv_sec;
1031                 inc_dialog->progress_tv.tv_usec = tv_cur.tv_usec;
1032         }
1033 }
1034
1035 static gint inc_recv_data_progressive(Session *session, guint cur_len,
1036                                       guint total_len, gpointer data)
1037 {
1038         IncSession *inc_session = (IncSession *)data;
1039         Pop3Session *pop3_session = POP3_SESSION(session);
1040         IncProgressDialog *inc_dialog;
1041         gint cur_total;
1042
1043         cm_return_val_if_fail(inc_session != NULL, -1);
1044
1045         if (pop3_session->state != POP3_RETR &&
1046             pop3_session->state != POP3_RETR_RECV &&
1047             pop3_session->state != POP3_DELETE &&
1048             pop3_session->state != POP3_LOGOUT) return 0;
1049
1050         if (!pop3_session->new_msg_exist) return 0;
1051
1052         cur_total = pop3_session->cur_total_bytes + cur_len;
1053         if (cur_total > pop3_session->total_bytes)
1054                 cur_total = pop3_session->total_bytes;
1055         inc_session->cur_total_bytes = cur_total;
1056
1057         inc_dialog = (IncProgressDialog *)inc_session->data;
1058         inc_progress_dialog_update_periodic(inc_dialog, inc_session);
1059
1060         return 0;
1061 }
1062
1063 static gint inc_recv_data_finished(Session *session, guint len, gpointer data)
1064 {
1065         IncSession *inc_session = (IncSession *)data;
1066         IncProgressDialog *inc_dialog;
1067
1068         cm_return_val_if_fail(inc_session != NULL, -1);
1069
1070         inc_dialog = (IncProgressDialog *)inc_session->data;
1071
1072         inc_recv_data_progressive(session, 0, 0, inc_session);
1073
1074         if (POP3_SESSION(session)->state == POP3_LOGOUT) {
1075                 inc_progress_dialog_update(inc_dialog, inc_session);
1076         }
1077
1078         return 0;
1079 }
1080
1081 static gint inc_recv_message(Session *session, const gchar *msg, gpointer data)
1082 {
1083         IncSession *inc_session = (IncSession *)data;
1084         IncProgressDialog *inc_dialog;
1085
1086         cm_return_val_if_fail(inc_session != NULL, -1);
1087
1088         inc_dialog = (IncProgressDialog *)inc_session->data;
1089
1090         switch (POP3_SESSION(session)->state) {
1091         case POP3_GETAUTH_USER:
1092         case POP3_GETAUTH_PASS:
1093         case POP3_GETAUTH_APOP:
1094         case POP3_GETRANGE_STAT:
1095         case POP3_GETRANGE_LAST:
1096         case POP3_GETRANGE_UIDL:
1097         case POP3_GETSIZE_LIST:
1098                 inc_progress_dialog_update(inc_dialog, inc_session);
1099                 break;
1100         case POP3_RETR:
1101                 inc_recv_data_progressive(session, 0, 0, inc_session);
1102                 break;
1103         case POP3_LOGOUT:
1104                 inc_progress_dialog_update(inc_dialog, inc_session);
1105                 break;
1106         default:
1107                 break;
1108         }
1109
1110         return 0;
1111 }
1112
1113 static gint inc_drop_message(Pop3Session *session, const gchar *file)
1114 {
1115         FolderItem *inbox;
1116         FolderItem *dropfolder;
1117         IncSession *inc_session = (IncSession *)(SESSION(session)->data);
1118         gint msgnum;
1119
1120         cm_return_val_if_fail(inc_session != NULL, -1);
1121
1122         if (session->ac_prefs->inbox) {
1123                 inbox = folder_find_item_from_identifier
1124                         (session->ac_prefs->inbox);
1125                 if (!inbox)
1126                         inbox = folder_get_default_inbox();
1127         } else
1128                 inbox = folder_get_default_inbox();
1129         if (!inbox) {
1130                 claws_unlink(file);
1131                 return -1;
1132         }
1133
1134         /* CLAWS: claws uses a global .processing folder for the filtering. */
1135         dropfolder = folder_get_default_processing(session->ac_prefs->account_id);
1136
1137         /* add msg file to drop folder */
1138         if ((msgnum = folder_item_add_msg(
1139                         dropfolder, file, NULL, TRUE)) < 0) {
1140                 claws_unlink(file);
1141                 return -1;
1142         }
1143
1144         return 0;
1145 }
1146
1147 static void inc_put_error(IncState istate, Pop3Session *session)
1148 {
1149         gchar *log_msg = NULL;
1150         gchar *err_msg = NULL;
1151         gboolean fatal_error = FALSE;
1152
1153         switch (istate) {
1154         case INC_CONNECT_ERROR:
1155                 fatal_error = TRUE;
1156                 if (prefs_common.no_recv_err_panel)
1157                         break;
1158                 err_msg = g_strdup_printf(_("Connection to %s:%d failed."),
1159                                           SESSION(session)->server, 
1160                                           SESSION(session)->port);
1161                 break;
1162         case INC_ERROR:
1163                 log_msg = _("Error occurred while processing mail.");
1164                 fatal_error = TRUE;
1165                 if (prefs_common.no_recv_err_panel)
1166                         break;
1167                 if (session->error_msg)
1168                         err_msg = g_strdup_printf
1169                                 (_("Error occurred while processing mail:\n%s"),
1170                                  session->error_msg);
1171                 else
1172                         err_msg = g_strdup(log_msg);
1173                 break;
1174         case INC_NO_SPACE:
1175                 log_msg = _("No disk space left.");
1176                 err_msg = g_strdup(log_msg);
1177                 fatal_error = TRUE;
1178                 break;
1179         case INC_IO_ERROR:
1180                 log_msg = _("Can't write file.");
1181                 err_msg = g_strdup(log_msg);
1182                 fatal_error = TRUE;
1183                 break;
1184         case INC_SOCKET_ERROR:
1185                 log_msg = _("Socket error.");
1186                 if (prefs_common.no_recv_err_panel)
1187                         break;
1188                 err_msg = g_strdup_printf(_("Socket error on connection to %s:%d."),
1189                                           SESSION(session)->server, 
1190                                           SESSION(session)->port);
1191                 break;
1192         case INC_EOF:
1193                 log_msg = _("Connection closed by the remote host.");
1194                 if (prefs_common.no_recv_err_panel)
1195                         break;
1196                 err_msg = g_strdup_printf(_("Connection to %s:%d closed by the remote host."), 
1197                                           SESSION(session)->server, 
1198                                           SESSION(session)->port);
1199                 break;
1200         case INC_LOCKED:
1201                 log_msg = _("Mailbox is locked.");
1202                 if (prefs_common.no_recv_err_panel)
1203                         break;
1204                 if (session->error_msg)
1205                         err_msg = g_strdup_printf(_("Mailbox is locked:\n%s"),
1206                                                   session->error_msg);
1207                 else
1208                         err_msg = g_strdup(log_msg);
1209                 break;
1210         case INC_AUTH_FAILED:
1211                 log_msg = _("Authentication failed.");
1212                 fatal_error = TRUE;
1213                 if (prefs_common.no_recv_err_panel)
1214                         break;
1215                 if (session->error_msg)
1216                         err_msg = g_strdup_printf
1217                                 (_("Authentication failed:\n%s"), session->error_msg);
1218                 else
1219                         err_msg = g_strdup(log_msg);
1220                 break;
1221         case INC_TIMEOUT:
1222                 log_msg = _("Session timed out. You may be able to "
1223                             "recover by increasing the timeout value in "
1224                             "Preferences/Other/Miscellaneous.");
1225                 if (prefs_common.no_recv_err_panel)
1226                         break;
1227                 err_msg = g_strdup_printf(_("Connection to %s:%d timed out."), 
1228                                           SESSION(session)->server, 
1229                                           SESSION(session)->port);
1230                 break;
1231         default:
1232                 break;
1233         }
1234
1235         if (log_msg) {
1236                 if (fatal_error)
1237                         log_error(LOG_PROTOCOL, "%s\n", log_msg);
1238                 else
1239                         log_warning(LOG_PROTOCOL, "%s\n", log_msg);
1240         }
1241         if (prefs_common.no_recv_err_panel && fatal_error)
1242                 mainwindow_show_error();
1243
1244         if (err_msg) {
1245                 alertpanel_error_log("%s", err_msg);
1246                 g_free(err_msg);
1247         }
1248 }
1249
1250 static void inc_cancel(IncProgressDialog *dialog)
1251 {
1252         IncSession *session;
1253
1254         cm_return_if_fail(dialog != NULL);
1255
1256         if (dialog->queue_list == NULL) {
1257                 inc_progress_dialog_destroy(dialog);
1258                 return;
1259         }
1260
1261         session = dialog->queue_list->data;
1262
1263         session->inc_state = INC_CANCEL;
1264
1265         log_message(LOG_PROTOCOL, _("Incorporation cancelled\n"));
1266 }
1267
1268 gboolean inc_is_active(void)
1269 {
1270         return (inc_dialog_list != NULL);
1271 }
1272
1273 void inc_cancel_all(void)
1274 {
1275         GList *cur;
1276
1277         for (cur = inc_dialog_list; cur != NULL; cur = cur->next)
1278                 inc_cancel((IncProgressDialog *)cur->data);
1279 }
1280
1281 static void inc_showlog_cb(GtkWidget *widget, gpointer data)
1282 {
1283         MainWindow *mainwin = mainwindow_get_mainwindow();
1284
1285         log_window_show(mainwin->logwin);
1286 }
1287
1288 static void inc_cancel_cb(GtkWidget *widget, gpointer data)
1289 {
1290         inc_cancel((IncProgressDialog *)data);
1291 }
1292
1293 static gint inc_dialog_delete_cb(GtkWidget *widget, GdkEventAny *event,
1294                                  gpointer data)
1295 {
1296         IncProgressDialog *dialog = (IncProgressDialog *)data;
1297
1298         if (dialog->queue_list == NULL)
1299                 inc_progress_dialog_destroy(dialog);
1300
1301         return TRUE;
1302 }
1303
1304 static gint inc_spool_account(PrefsAccount *account)
1305 {
1306         FolderItem *inbox;
1307         gchar *mbox;
1308         gint result;
1309
1310         if (account->local_inbox) {
1311                 inbox = folder_find_item_from_identifier(account->local_inbox);
1312                 if (!inbox)
1313                         inbox = folder_get_default_inbox();
1314         } else
1315                 inbox = folder_get_default_inbox();
1316
1317         if (account->local_mbox) {
1318                 if (is_file_exist(account->local_mbox))
1319                         mbox = g_strdup(account->local_mbox);
1320                 else if (is_dir_exist(account->local_mbox)) 
1321                         mbox = g_strconcat(account->local_mbox, G_DIR_SEPARATOR_S,
1322                                            g_get_user_name(), NULL);
1323                 else {
1324                         debug_print("%s: local mailbox not found.\n", 
1325                                     account->local_mbox);
1326                         return -1;
1327                 }
1328         } else {
1329                 debug_print("local mailbox not set in account info.\n");
1330                 return -1;
1331         }       
1332
1333         result = get_spool(inbox, mbox, account);
1334         g_free(mbox);
1335         
1336         statusbar_pop_all();
1337         
1338         return result;
1339 }
1340
1341 static gint inc_all_spool(void)
1342 {
1343         GList *list = NULL;
1344         gint new_msgs = 0;
1345         gint account_new_msgs = 0;
1346
1347         list = account_get_list();
1348         if (!list) return 0;
1349
1350         for (; list != NULL; list = list->next) {
1351                 PrefsAccount *account = list->data;
1352
1353                 if ((account->protocol == A_LOCAL) &&
1354                     (account->recv_at_getall)) {
1355                         account_new_msgs = inc_spool_account(account);
1356                         if (account_new_msgs > 0)
1357                                 new_msgs += account_new_msgs;
1358                 }
1359         }
1360
1361         return new_msgs;
1362 }
1363
1364 static gint get_spool(FolderItem *dest, const gchar *mbox, PrefsAccount *account)
1365 {
1366         gint msgs, size;
1367         gint lockfd;
1368         gchar tmp_mbox[MAXPATHLEN + 1];
1369
1370         cm_return_val_if_fail(dest != NULL, -1);
1371         cm_return_val_if_fail(mbox != NULL, -1);
1372         cm_return_val_if_fail(account != NULL, -1);
1373
1374         if (!is_file_exist(mbox) || (size = get_file_size(mbox)) == 0) {
1375                 debug_print("%s: no messages in local mailbox.\n", mbox);
1376                 return 0;
1377         } else if (size < 0)
1378                 return -1;
1379
1380         if ((lockfd = lock_mbox(mbox, LOCK_FLOCK)) < 0)
1381                 return -1;
1382
1383         g_snprintf(tmp_mbox, sizeof(tmp_mbox), "%s%ctmpmbox.%p",
1384                    get_tmp_dir(), G_DIR_SEPARATOR, mbox);
1385
1386         if (copy_mbox(lockfd, tmp_mbox) < 0) {
1387                 unlock_mbox(mbox, lockfd, LOCK_FLOCK);
1388                 return -1;
1389         }
1390
1391         debug_print("Getting new messages from %s into %s...\n",
1392                     mbox, dest->path);
1393
1394         msgs = proc_mbox(dest, tmp_mbox, account->filter_on_recv, account);
1395
1396         claws_unlink(tmp_mbox);
1397         if (msgs >= 0) empty_mbox(mbox);
1398         unlock_mbox(mbox, lockfd, LOCK_FLOCK);
1399
1400         return msgs;
1401 }
1402
1403 void inc_lock_real(void)
1404 {
1405         inc_lock_count++;
1406 }
1407
1408 void inc_unlock_real(void)
1409 {
1410         if (inc_lock_count > 0)
1411                 inc_lock_count--;
1412 }
1413
1414 static guint autocheck_timer = 0;
1415 static gpointer autocheck_data = NULL;
1416
1417 static void inc_notify_cmd(gint new_msgs, gboolean notify)
1418 {
1419         gchar *buf, *numpos, *ret_str;
1420         gssize by_read = 0, by_written = 0;
1421
1422         if (!(new_msgs && notify && prefs_common.newmail_notify_cmd &&
1423             *prefs_common.newmail_notify_cmd))
1424                      return;
1425
1426         buf = g_strdup(prefs_common.newmail_notify_cmd);
1427         if ((numpos = strstr(buf, "%d")) != NULL) {
1428                 gchar *buf2;
1429
1430                 *numpos = '\0';
1431                 buf2 = g_strdup_printf("%s%d%s", buf, new_msgs, numpos + 2);
1432                 g_free(buf);
1433                 buf = buf2;
1434         }
1435
1436         ret_str = g_locale_from_utf8(buf, strlen(buf), &by_read, &by_written,
1437                                      NULL);
1438         if (ret_str && by_written) {
1439                 g_free(buf);
1440                 buf = ret_str;
1441         }
1442         debug_print("executing new mail notification command: %s\n", buf);
1443         execute_command_line(buf, TRUE);
1444
1445         g_free(buf);
1446 }
1447
1448 void inc_autocheck_timer_init(MainWindow *mainwin)
1449 {
1450         autocheck_data = mainwin;
1451         inc_autocheck_timer_set();
1452 }
1453
1454 static void inc_autocheck_timer_set_interval(guint interval)
1455 {
1456         inc_autocheck_timer_remove();
1457         /* last test is to avoid re-enabling auto_check after modifying 
1458            the common preferences */
1459         if (prefs_common.autochk_newmail && autocheck_data
1460             && prefs_common.work_offline == FALSE) {
1461                 if (interval % 1000 == 0)
1462                         autocheck_timer =
1463                                 g_timeout_add_seconds(interval/1000, inc_autocheck_func, autocheck_data);
1464                 else
1465                         autocheck_timer = g_timeout_add
1466                                 (interval, inc_autocheck_func, autocheck_data);
1467                 debug_print("added timer = %d\n", autocheck_timer);
1468         }
1469 }
1470
1471 void inc_autocheck_timer_set(void)
1472 {
1473         inc_autocheck_timer_set_interval(prefs_common.autochk_itv * 60000);
1474 }
1475
1476 void inc_autocheck_timer_remove(void)
1477 {
1478         if (autocheck_timer) {
1479                 debug_print("removed timer = %d\n", autocheck_timer);
1480                 g_source_remove(autocheck_timer);
1481                 autocheck_timer = 0;
1482         }
1483 }
1484
1485 static gint inc_autocheck_func(gpointer data)
1486 {
1487         MainWindow *mainwin = (MainWindow *)data;
1488
1489         if (inc_lock_count) {
1490                 debug_print("autocheck is locked.\n");
1491                 inc_autocheck_timer_set_interval(1000);
1492                 return FALSE;
1493         }
1494
1495         inc_all_account_mail(mainwin, TRUE, prefs_common.newmail_notify_auto);
1496
1497         return FALSE;
1498 }
1499
1500 gboolean inc_offline_should_override(gboolean force_ask, const gchar *msg)
1501 {
1502         static time_t overridden_yes = 0;
1503         static time_t overridden_no  = 0;
1504         int length = 10; /* minutes */
1505         gint answer = G_ALERTDEFAULT;
1506
1507 #ifdef HAVE_NETWORKMANAGER_SUPPORT
1508         /* If no network connection is available, override is not possible */
1509         if(!networkmanager_is_online(NULL))
1510                 return FALSE;
1511 #endif
1512
1513         if (prefs_common.autochk_newmail)
1514                 length = prefs_common.autochk_itv; /* minutes */
1515
1516         if (force_ask) {
1517                 overridden_no = (time_t)0;
1518         }
1519
1520         if (prefs_common.work_offline) {
1521                 gchar *tmp = NULL;
1522                 
1523                 if (time(NULL) - overridden_yes < length * 60) /* seconds */
1524                          return TRUE;
1525                 else if (time(NULL) - overridden_no < length * 60) /* seconds */
1526                          return FALSE;
1527
1528                 if (!force_ask)
1529                         tmp = g_strdup_printf(
1530                                 _("%s%sYou're working offline. Override for %d minutes?"),
1531                                 msg?msg:"", 
1532                                 msg?"\n\n":"",
1533                                 length);
1534                 else
1535                         tmp = g_strdup_printf(
1536                                 _("%s%sYou're working offline. Override?"),
1537                                 msg?msg:"", 
1538                                 msg?"\n\n":"");
1539
1540                 answer = alertpanel(_("Offline warning"), 
1541                                tmp,
1542                                GTK_STOCK_NO, "+" GTK_STOCK_YES, 
1543                                 !force_ask? _("On_ly once"):NULL);
1544                 g_free(tmp);
1545                 if (answer == G_ALERTALTERNATE) {
1546                         overridden_yes = time(NULL);
1547                         return TRUE;
1548                 } else if (answer == G_ALERTDEFAULT) {
1549                         if (!force_ask)
1550                                 overridden_no  = time(NULL);
1551                         return FALSE;
1552                 } else {
1553                         overridden_yes = (time_t)0;
1554                         overridden_no  = (time_t)0;
1555                         return TRUE;
1556                 }
1557         }
1558         return TRUE;
1559 }