Revert "Made the gnutls password encryption work on Win32."
[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 #include "password.h"
63
64 extern SessionStats session_stats;
65
66 static GList *inc_dialog_list = NULL;
67
68 guint inc_lock_count = 0;
69
70 static GdkPixbuf *currentpix;
71 static GdkPixbuf *errorpix;
72 static GdkPixbuf *okpix;
73
74 #define MESSAGEBUFSIZE  8192
75
76 static void inc_update_stats(gint new_msgs);
77 static void inc_finished                (MainWindow             *mainwin,
78                                          gboolean                new_messages,
79                                          gboolean                autocheck);
80 static gint inc_account_mail_real       (MainWindow             *mainwin,
81                                          PrefsAccount           *account);
82
83 static IncProgressDialog *inc_progress_dialog_create
84                                         (gboolean                autocheck);
85 static void inc_progress_dialog_set_list(IncProgressDialog      *inc_dialog);
86 static void inc_progress_dialog_destroy (IncProgressDialog      *inc_dialog);
87
88 static IncSession *inc_session_new      (PrefsAccount           *account);
89 static void inc_session_destroy         (IncSession             *session);
90 static gint inc_start                   (IncProgressDialog      *inc_dialog);
91 static IncState inc_pop3_session_do     (IncSession             *session);
92
93 static void inc_progress_dialog_update  (IncProgressDialog      *inc_dialog,
94                                          IncSession             *inc_session);
95
96 static void inc_progress_dialog_set_label
97                                         (IncProgressDialog      *inc_dialog,
98                                          IncSession             *inc_session);
99 static void inc_progress_dialog_set_progress
100                                         (IncProgressDialog      *inc_dialog,
101                                          IncSession             *inc_session);
102
103 static void inc_progress_dialog_update_periodic
104                                         (IncProgressDialog      *inc_dialog,
105                                          IncSession             *inc_session);
106
107 static gint inc_recv_data_progressive   (Session        *session,
108                                          guint           cur_len,
109                                          guint           total_len,
110                                          gpointer        data);
111 static gint inc_recv_data_finished      (Session        *session,
112                                          guint           len,
113                                          gpointer        data);
114 static gint inc_recv_message            (Session        *session,
115                                          const gchar    *msg,
116                                          gpointer        data);
117 static gint inc_drop_message            (Pop3Session    *session,
118                                          const gchar    *file);
119
120 static void inc_put_error               (IncState        istate,
121                                          Pop3Session    *session);
122
123 static void inc_showlog_cb              (GtkWidget      *widget,
124                                          gpointer        data);
125 static void inc_cancel_cb               (GtkWidget      *widget,
126                                          gpointer        data);
127 static gint inc_dialog_delete_cb        (GtkWidget      *widget,
128                                          GdkEventAny    *event,
129                                          gpointer        data);
130
131 static gint get_spool                   (FolderItem     *dest,
132                                          const gchar    *mbox,
133                                          PrefsAccount   *account);
134
135 static gint inc_spool_account(PrefsAccount *account);
136 static gint inc_all_spool(void);
137 static void inc_autocheck_timer_set_interval    (guint           interval);
138 static gint inc_autocheck_func                  (gpointer        data);
139
140 static void inc_notify_cmd              (gint new_msgs, 
141                                          gboolean notify);
142
143 static void inc_update_stats(gint new_msgs)
144 {
145         /* update session statistics */
146         session_stats.received += new_msgs;
147 }
148
149 /**
150  * inc_finished:
151  * @mainwin: Main window.
152  * @new_messages: TRUE if some messages have been received.
153  * 
154  * Update the folder view and the summary view after receiving
155  * messages.  If @new_messages is FALSE, this function avoids unneeded
156  * updating.
157  **/
158 static void inc_finished(MainWindow *mainwin, gboolean new_messages, gboolean autocheck)
159 {
160         if (prefs_common.scan_all_after_inc)
161                 folderview_check_new(NULL);
162
163         if (!autocheck && new_messages && prefs_common.open_inbox_on_inc) {
164                 FolderItem *item = NULL;
165
166                 if (cur_account && cur_account->inbox)
167                         item = folder_find_item_from_identifier(cur_account->inbox);
168                 if (item == NULL && cur_account && cur_account->folder)
169                         item = cur_account->folder->inbox;
170                 if (item == NULL)
171                         item = folder_get_default_inbox();
172
173                 folderview_unselect(mainwin->folderview);
174                 folderview_select(mainwin->folderview, item);
175         }
176 }
177
178 void inc_mail(MainWindow *mainwin, gboolean notify)
179 {
180         gint new_msgs = 0;
181         gint account_new_msgs = 0;
182
183         if (inc_lock_count) return;
184
185         if (prefs_common.work_offline && 
186             !inc_offline_should_override(TRUE,
187                 _("Claws Mail needs network access in order "
188                   "to get mails.")))
189                 return;
190
191         inc_lock();
192         inc_autocheck_timer_remove();
193         main_window_lock(mainwin);
194
195         if (prefs_common.use_extinc && prefs_common.extinc_cmd) {
196                 /* external incorporating program */
197                 if (execute_command_line(prefs_common.extinc_cmd, FALSE) < 0) {
198                         main_window_unlock(mainwin);
199                         inc_autocheck_timer_set();
200                         inc_unlock();
201                         return;
202                 }
203         } else {
204                 account_new_msgs = inc_account_mail_real(mainwin, cur_account);
205                 if (account_new_msgs > 0)
206                         new_msgs += account_new_msgs;
207         }
208
209         inc_update_stats(new_msgs);
210         inc_finished(mainwin, new_msgs > 0, FALSE);
211         main_window_unlock(mainwin);
212         inc_notify_cmd(new_msgs, notify);
213         inc_autocheck_timer_set();
214         inc_unlock();
215 }
216
217 void inc_pop_before_smtp(PrefsAccount *acc)
218 {
219         IncProgressDialog *inc_dialog;
220         IncSession *session;
221         MainWindow *mainwin;
222
223         mainwin = mainwindow_get_mainwindow();
224
225         session = inc_session_new(acc);
226         if (!session) return;
227         POP3_SESSION(session->session)->pop_before_smtp = TRUE;
228                 
229         inc_dialog = inc_progress_dialog_create(FALSE);
230         inc_dialog->queue_list = g_list_append(inc_dialog->queue_list,
231                                                session);
232         /* FIXME: assumes to attach to first main window */
233         inc_dialog->mainwin = mainwin;
234         inc_progress_dialog_set_list(inc_dialog);
235
236         if (mainwin) {
237                 toolbar_main_set_sensitive(mainwin);
238                 main_window_set_menu_sensitive(mainwin);
239         }
240                         
241         inc_start(inc_dialog);
242 }
243
244 static gint inc_account_mail_real(MainWindow *mainwin, PrefsAccount *account)
245 {
246         IncProgressDialog *inc_dialog;
247         IncSession *session;
248         
249         switch (account->protocol) {
250         case A_IMAP4:
251         case A_NNTP:
252                 /* Melvin: bug [14]
253                  * FIXME: it should return foldeview_check_new() value.
254                  * TODO: do it when bug [19] is fixed (IMAP folder sets 
255                  * an incorrect new message count)
256                  */
257                 folderview_check_new(FOLDER(account->folder));
258                 return 0;
259         case A_POP3:
260         case A_APOP:
261                 session = inc_session_new(account);
262                 if (!session) return 0;
263                 
264                 inc_dialog = inc_progress_dialog_create(FALSE);
265                 inc_dialog->queue_list = g_list_append(inc_dialog->queue_list,
266                                                        session);
267                 inc_dialog->mainwin = mainwin;
268                 inc_progress_dialog_set_list(inc_dialog);
269
270                 if (mainwin) {
271                         toolbar_main_set_sensitive(mainwin);
272                         main_window_set_menu_sensitive(mainwin);
273                 }
274                         
275                 return inc_start(inc_dialog);
276
277         case A_LOCAL:
278                 return inc_spool_account(account);
279
280         default:
281                 break;
282         }
283         return 0;
284 }
285
286 gint inc_account_mail(MainWindow *mainwin, PrefsAccount *account)
287 {
288         gint new_msgs;
289
290         if (inc_lock_count) return 0;
291
292         if (account->receive_in_progress) return 0;
293
294         if (prefs_common.work_offline && 
295             !inc_offline_should_override(TRUE,
296                 _("Claws Mail needs network access in order "
297                   "to get mails.")))
298                 return 0;
299
300         inc_autocheck_timer_remove();
301         main_window_lock(mainwin);
302
303         new_msgs = inc_account_mail_real(mainwin, account);
304
305         inc_update_stats(new_msgs);
306         inc_finished(mainwin, new_msgs > 0, FALSE);
307         main_window_unlock(mainwin);
308         inc_autocheck_timer_set();
309
310         return new_msgs;
311 }
312
313 void inc_all_account_mail(MainWindow *mainwin, gboolean autocheck,
314                           gboolean notify)
315 {
316         GList *list, *queue_list = NULL;
317         IncProgressDialog *inc_dialog;
318         gint new_msgs = 0;
319         gint account_new_msgs = 0;
320         
321         if (prefs_common.work_offline && 
322             !inc_offline_should_override( (autocheck == FALSE),
323                 _("Claws Mail needs network access in order "
324                   "to get mails.")))
325                 return;
326
327         if (inc_lock_count) return;
328
329         inc_autocheck_timer_remove();
330         main_window_lock(mainwin);
331
332         list = account_get_list();
333         if (!list) {
334                 inc_update_stats(new_msgs);
335                 inc_finished(mainwin, new_msgs > 0, autocheck);
336                 main_window_unlock(mainwin);
337                 inc_notify_cmd(new_msgs, notify);
338                 inc_autocheck_timer_set();
339                 return;
340         }
341
342         if (prefs_common.use_extinc && prefs_common.extinc_cmd) {
343                 /* external incorporating program */
344                 if (execute_command_line(prefs_common.extinc_cmd, FALSE) < 0) {
345                         log_error(LOG_PROTOCOL, _("%s failed\n"), prefs_common.extinc_cmd);
346                         
347                         main_window_unlock(mainwin);
348                         inc_autocheck_timer_set();
349                         return;
350                 }
351         }
352         
353         /* check local folders */
354         account_new_msgs = inc_all_spool();
355         if (account_new_msgs > 0)
356                 new_msgs += account_new_msgs;
357
358         /* check IMAP4 / News folders */
359         for (list = account_get_list(); list != NULL; list = list->next) {
360                 PrefsAccount *account = list->data;
361                 if ((account->protocol == A_IMAP4 ||
362                      account->protocol == A_NNTP) && account->recv_at_getall) {
363                         new_msgs += folderview_check_new(FOLDER(account->folder));
364                 }
365         }
366
367         /* check POP3 accounts */
368         for (list = account_get_list(); list != NULL; list = list->next) {
369                 IncSession *session;
370                 PrefsAccount *account = list->data;
371
372                 if (account->recv_at_getall) {
373                         if (!(account->receive_in_progress)) {
374                                 session = inc_session_new(account);
375                                 if (session)
376                                         queue_list = g_list_append(queue_list, session);
377                         }
378                 }
379         }
380
381         if (queue_list) {
382                 inc_dialog = inc_progress_dialog_create(autocheck);
383                 inc_dialog->queue_list = queue_list;
384                 inc_dialog->mainwin = mainwin;
385                 inc_progress_dialog_set_list(inc_dialog);
386
387                 toolbar_main_set_sensitive(mainwin);
388                 main_window_set_menu_sensitive(mainwin);
389                 new_msgs += inc_start(inc_dialog);
390         }
391
392         inc_update_stats(new_msgs);
393         inc_finished(mainwin, new_msgs > 0, autocheck);
394         main_window_unlock(mainwin);
395         inc_notify_cmd(new_msgs, notify);
396         inc_autocheck_timer_set();
397 }
398
399 static void inc_progress_dialog_size_allocate_cb(GtkWidget *widget,
400                                          GtkAllocation *allocation)
401 {
402         cm_return_if_fail(allocation != NULL);
403
404         prefs_common.receivewin_width = allocation->width;
405         prefs_common.receivewin_height = allocation->height;
406 }
407
408 static IncProgressDialog *inc_progress_dialog_create(gboolean autocheck)
409 {
410         IncProgressDialog *dialog;
411         ProgressDialog *progress;
412         static GdkGeometry geometry;
413
414         dialog = g_new0(IncProgressDialog, 1);
415
416         progress = progress_dialog_create();
417         gtk_window_set_title(GTK_WINDOW(progress->window),
418                              _("Retrieving new messages"));
419         g_signal_connect(G_OBJECT(progress->showlog_btn), "clicked",
420                          G_CALLBACK(inc_showlog_cb), dialog);
421         g_signal_connect(G_OBJECT(progress->cancel_btn), "clicked",
422                          G_CALLBACK(inc_cancel_cb), dialog);
423         g_signal_connect(G_OBJECT(progress->window), "delete_event",
424                          G_CALLBACK(inc_dialog_delete_cb), dialog);
425         g_signal_connect(G_OBJECT(progress->window), "size_allocate",
426                          G_CALLBACK(inc_progress_dialog_size_allocate_cb), NULL);
427         /* manage_window_set_transient(GTK_WINDOW(progress->window)); */
428
429         progress_dialog_get_fraction(progress);
430
431         stock_pixbuf_gdk(progress->treeview, STOCK_PIXMAP_COMPLETE,
432                          &okpix);
433         stock_pixbuf_gdk(progress->treeview, STOCK_PIXMAP_CONTINUE,
434                          &currentpix);
435         stock_pixbuf_gdk(progress->treeview, STOCK_PIXMAP_ERROR,
436                          &errorpix);
437
438         if (!geometry.min_height) {
439                 geometry.min_width = 460;
440                 geometry.min_height = 250;
441         }
442
443         gtk_window_set_geometry_hints(GTK_WINDOW(progress->window), NULL, &geometry,
444                                       GDK_HINT_MIN_SIZE);
445         gtk_widget_set_size_request(progress->window, prefs_common.receivewin_width,
446                                     prefs_common.receivewin_height);
447
448         if (prefs_common.recv_dialog_mode == RECV_DIALOG_ALWAYS ||
449             (prefs_common.recv_dialog_mode == RECV_DIALOG_MANUAL &&
450              !autocheck)) {
451                 dialog->show_dialog = TRUE;
452                 gtk_widget_show_now(progress->window);
453         }
454
455         dialog->dialog = progress;
456         g_get_current_time(&dialog->progress_tv);
457         g_get_current_time(&dialog->folder_tv);
458         dialog->queue_list = NULL;
459         dialog->cur_row = 0;
460
461         inc_dialog_list = g_list_append(inc_dialog_list, dialog);
462
463         return dialog;
464 }
465
466 static void inc_progress_dialog_set_list(IncProgressDialog *inc_dialog)
467 {
468         GList *list;
469
470         for (list = inc_dialog->queue_list; list != NULL; list = list->next) {
471                 IncSession *session = list->data;
472                 Pop3Session *pop3_session = POP3_SESSION(session->session);
473
474                 session->data = inc_dialog;
475
476                 progress_dialog_list_set(inc_dialog->dialog,
477                                          -1, NULL,
478                                          pop3_session->ac_prefs->account_name,
479                                          _("Standby"));
480         }
481 }
482
483 static void inc_progress_dialog_clear(IncProgressDialog *inc_dialog)
484 {
485         progress_dialog_get_fraction(inc_dialog->dialog);
486         progress_dialog_set_label(inc_dialog->dialog, "");
487         if (inc_dialog->mainwin)
488                 main_window_progress_off(inc_dialog->mainwin);
489 }
490
491 static void inc_progress_dialog_destroy(IncProgressDialog *inc_dialog)
492 {
493         cm_return_if_fail(inc_dialog != NULL);
494
495         inc_dialog_list = g_list_remove(inc_dialog_list, inc_dialog);
496
497         if (inc_dialog->mainwin)
498                 main_window_progress_off(inc_dialog->mainwin);
499         progress_dialog_destroy(inc_dialog->dialog);
500
501         g_free(inc_dialog);
502 }
503
504 static IncSession *inc_session_new(PrefsAccount *account)
505 {
506         IncSession *session;
507
508         cm_return_val_if_fail(account != NULL, NULL);
509
510         if (account->protocol != A_POP3)
511                 return NULL;
512         if (!account->recv_server || !account->userid)
513                 return NULL;
514
515         session = g_new0(IncSession, 1);
516
517         session->session = pop3_session_new(account);
518         session->session->data = session;
519         POP3_SESSION(session->session)->drop_message = inc_drop_message;
520         session_set_recv_message_notify(session->session,
521                                         inc_recv_message, session);
522         session_set_recv_data_progressive_notify(session->session,
523                                                  inc_recv_data_progressive,
524                                                  session);
525         session_set_recv_data_notify(session->session,
526                                      inc_recv_data_finished, session);
527
528         return session;
529 }
530
531 static void inc_session_destroy(IncSession *session)
532 {
533         cm_return_if_fail(session != NULL);
534
535         session_destroy(session->session);
536         g_free(session);
537 }
538
539 static gint pop3_get_port(Pop3Session *pop3_session)
540 {
541 #ifdef USE_GNUTLS
542         return pop3_session->ac_prefs->set_popport ?
543                 pop3_session->ac_prefs->popport :
544                 pop3_session->ac_prefs->ssl_pop == SSL_TUNNEL ? 995 : 110;
545 #else
546         return pop3_session->ac_prefs->set_popport ?
547                 pop3_session->ac_prefs->popport : 110;
548 #endif
549 }
550
551 static gint inc_start(IncProgressDialog *inc_dialog)
552 {
553         IncSession *session;
554         GList *qlist;
555         Pop3Session *pop3_session;
556         IncState inc_state;
557         gint error_num = 0;
558         gint new_msgs = 0;
559         gchar *msg;
560         gchar *fin_msg;
561         FolderItem *processing, *inbox;
562         GSList *msglist, *msglist_element;
563         gboolean cancelled = FALSE;
564
565         qlist = inc_dialog->queue_list;
566         while (qlist != NULL) {
567                 GList *next = qlist->next;
568
569                 session = qlist->data;
570                 pop3_session = POP3_SESSION(session->session); 
571                 pop3_session->user = g_strdup(pop3_session->ac_prefs->userid);
572
573                 if (password_get(pop3_session->user,
574                                         pop3_session->ac_prefs->recv_server,
575                                         "pop3", pop3_get_port(pop3_session),
576                                         &(pop3_session->pass))) {
577                         /* NOP */;
578                 } else if (pop3_session->ac_prefs->passwd)
579                         pop3_session->pass =
580                                 password_decrypt(pop3_session->ac_prefs->passwd, NULL);
581                 else {
582                         gchar *pass;
583
584                         if (inc_dialog->show_dialog)
585                                 manage_window_focus_in
586                                         (inc_dialog->dialog->window,
587                                          NULL, NULL);
588
589                         pass = input_dialog_query_password_keep
590                                 (pop3_session->ac_prefs->recv_server,
591                                  pop3_session->user,
592                                  &(pop3_session->ac_prefs->session_passwd));
593
594                         if (inc_dialog->show_dialog)
595                                 manage_window_focus_out
596                                         (inc_dialog->dialog->window,
597                                          NULL, NULL);
598
599                         if (pass) {
600                                 pop3_session->pass = pass;
601                         }
602                 }
603
604                 qlist = next;
605         }
606
607 #define SET_PIXMAP_AND_TEXT(pix, str)                                      \
608 {                                                                          \
609         progress_dialog_list_set(inc_dialog->dialog,                       \
610                                  inc_dialog->cur_row,                      \
611                                  pix,                                      \
612                                  NULL,                                     \
613                                  str);                                     \
614 }
615
616         for (; inc_dialog->queue_list != NULL && !cancelled; inc_dialog->cur_row++) {
617                 session = inc_dialog->queue_list->data;
618                 pop3_session = POP3_SESSION(session->session);
619                 GSList *filtered, *unfiltered;
620
621                 if (pop3_session->pass == NULL) {
622                         SET_PIXMAP_AND_TEXT(okpix, _("Cancelled"));
623                         inc_session_destroy(session);
624                         inc_dialog->queue_list =
625                                 g_list_remove(inc_dialog->queue_list, session);
626                         continue;
627                 }
628
629                 inc_progress_dialog_clear(inc_dialog);
630                 progress_dialog_scroll_to_row(inc_dialog->dialog,
631                                               inc_dialog->cur_row);
632
633                 SET_PIXMAP_AND_TEXT(currentpix, _("Retrieving"));
634
635                 /* begin POP3 session */
636                 inc_state = inc_pop3_session_do(session);
637
638                 switch (inc_state) {
639                 case INC_SUCCESS:
640                         if (pop3_session->cur_total_num > 0)
641                                 msg = g_strdup_printf(
642                                         ngettext("Done (%d message (%s) received)",
643                                                  "Done (%d messages (%s) received)",
644                                          pop3_session->cur_total_num),
645                                          pop3_session->cur_total_num,
646                                          to_human_readable((goffset)pop3_session->cur_total_recv_bytes));
647                         else
648                                 msg = g_strdup_printf(_("Done (no new messages)"));
649                         SET_PIXMAP_AND_TEXT(okpix, msg);
650                         g_free(msg);
651                         break;
652                 case INC_CONNECT_ERROR:
653                         SET_PIXMAP_AND_TEXT(errorpix, _("Connection failed"));
654                         break;
655                 case INC_AUTH_FAILED:
656                         SET_PIXMAP_AND_TEXT(errorpix, _("Auth failed"));
657                         if (pop3_session->ac_prefs->session_passwd) {
658                                 g_free(pop3_session->ac_prefs->session_passwd);
659                                 pop3_session->ac_prefs->session_passwd = NULL;
660                         }
661                         break;
662                 case INC_LOCKED:
663                         SET_PIXMAP_AND_TEXT(errorpix, _("Locked"));
664                         break;
665                 case INC_ERROR:
666                 case INC_NO_SPACE:
667                 case INC_IO_ERROR:
668                 case INC_SOCKET_ERROR:
669                 case INC_EOF:
670                         SET_PIXMAP_AND_TEXT(errorpix, _("Error"));
671                         break;
672                 case INC_TIMEOUT:
673                         SET_PIXMAP_AND_TEXT(errorpix, _("Timeout"));
674                         break;
675                 case INC_CANCEL:
676                         SET_PIXMAP_AND_TEXT(okpix, _("Cancelled"));
677                         if (!inc_dialog->show_dialog)
678                                 cancelled = TRUE;
679                         break;
680                 default:
681                         break;
682                 }
683                 
684                 if (pop3_session->error_val == PS_AUTHFAIL) {
685                         if(!prefs_common.no_recv_err_panel) {
686                                 if((prefs_common.recv_dialog_mode == RECV_DIALOG_ALWAYS) ||
687                                     ((prefs_common.recv_dialog_mode == RECV_DIALOG_MANUAL) && focus_window))
688                                         manage_window_focus_in(inc_dialog->dialog->window, NULL, NULL);
689                         }
690                 }
691
692                 /* CLAWS: perform filtering actions on dropped message */
693                 /* CLAWS: get default inbox (perhaps per account) */
694                 if (pop3_session->ac_prefs->inbox) {
695                         /* CLAWS: get destination folder / mailbox */
696                         inbox = folder_find_item_from_identifier(pop3_session->ac_prefs->inbox);
697                         if (!inbox)
698                                 inbox = folder_get_default_inbox();
699                 } else
700                         inbox = folder_get_default_inbox();
701
702                 /* get list of messages in processing */
703                 processing = folder_get_default_processing(pop3_session->ac_prefs->account_id);
704                 folder_item_scan(processing);
705                 msglist = folder_item_get_msg_list(processing);
706
707                 /* process messages */
708                 folder_item_update_freeze();
709                 
710                 procmsg_msglist_filter(msglist, pop3_session->ac_prefs, 
711                                 &filtered, &unfiltered, 
712                                 pop3_session->ac_prefs->filter_on_recv);
713
714                 filtering_move_and_copy_msgs(msglist);
715                 if (unfiltered != NULL)         
716                         folder_item_move_msgs(inbox, unfiltered);
717
718                 for(msglist_element = msglist; msglist_element != NULL; 
719                     msglist_element = msglist_element->next) {
720                         procmsg_msginfo_free((MsgInfo**)&(msglist_element->data));
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 }