cleaner messages, no popup if required
[claws.git] / src / inc.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2002 Hiroyuki Yamamoto
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 2 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, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #include "defs.h"
25
26 #include <glib.h>
27 #include <gtk/gtkmain.h>
28 #include <gtk/gtkwindow.h>
29 #include <gtk/gtksignal.h>
30 #include <gtk/gtkprogressbar.h>
31 #include <stdio.h>
32 #include <unistd.h>
33 #include <string.h>
34 #include <time.h>
35 #include <sys/types.h>
36 #include <sys/stat.h>
37 #include <sys/wait.h>
38 #include <signal.h>
39 #include <errno.h>
40
41 #include "intl.h"
42 #include "main.h"
43 #include "inc.h"
44 #include "mainwindow.h"
45 #include "folderview.h"
46 #include "summaryview.h"
47 #include "prefs_common.h"
48 #include "prefs_account.h"
49 #include "account.h"
50 #include "procmsg.h"
51 #include "socket.h"
52 #include "ssl.h"
53 #include "pop.h"
54 #include "recv.h"
55 #include "mbox.h"
56 #include "utils.h"
57 #include "gtkutils.h"
58 #include "statusbar.h"
59 #include "manage_window.h"
60 #include "stock_pixmap.h"
61 #include "progressdialog.h"
62 #include "inputdialog.h"
63 #include "alertpanel.h"
64 #include "automaton.h"
65 #include "folder.h"
66 #include "filtering.h"
67 #include "selective_download.h"
68
69 static GList *inc_dialog_list = NULL;
70
71 static guint inc_lock_count = 0;
72
73 static GdkPixmap *currentxpm;
74 static GdkBitmap *currentxpmmask;
75 static GdkPixmap *errorxpm;
76 static GdkBitmap *errorxpmmask;
77 static GdkPixmap *okxpm;
78 static GdkBitmap *okxpmmask;
79
80 #define MSGBUFSIZE      8192
81
82 static void inc_finished                (MainWindow             *mainwin,
83                                          gboolean                new_messages);
84 static gint inc_account_mail            (PrefsAccount           *account,
85                                          MainWindow             *mainwin);
86
87 static IncProgressDialog *inc_progress_dialog_create    (void);
88 static void inc_progress_dialog_destroy (IncProgressDialog      *inc_dialog);
89
90 static IncSession *inc_session_new      (PrefsAccount           *account);
91 static void inc_session_destroy         (IncSession             *session);
92 static gint inc_start                   (IncProgressDialog      *inc_dialog);
93 static IncState inc_pop3_session_do     (IncSession             *session);
94 static gint pop3_automaton_terminate    (SockInfo               *source,
95                                          Automaton              *atm);
96
97 static gboolean inc_pop3_recv_func      (SockInfo       *sock,
98                                          gint            count,
99                                          gint            read_bytes,
100                                          gpointer        data);
101
102 static void inc_put_error               (IncState        istate);
103
104 static void inc_cancel_cb               (GtkWidget      *widget,
105                                          gpointer        data);
106 static gint inc_dialog_delete_cb        (GtkWidget      *widget,
107                                          GdkEventAny    *event,
108                                          gpointer        data);
109
110 static gint inc_spool                   (void);
111 static gint get_spool                   (FolderItem     *dest,
112                                          const gchar    *mbox);
113
114 static void inc_spool_account(PrefsAccount *account);
115 static void inc_all_spool(void);
116 static void inc_autocheck_timer_set_interval    (guint           interval);
117 static gint inc_autocheck_func                  (gpointer        data);
118
119 static void inc_notify_cmd              (gint new_msgs, 
120                                          gboolean notify);
121
122 #define FOLDER_SUMMARY_MISMATCH(f, s) \
123         (f) && (s) ? ((s)->newmsgs != (f)->new) || ((f)->unread != (s)->unread) || ((f)->total != (s)->messages) \
124         : FALSE
125         
126 /**
127  * inc_finished:
128  * @mainwin: Main window.
129  * @new_messages: TRUE if some messages have been received.
130  * 
131  * Update the folder view and the summary view after receiving
132  * messages.  If @new_messages is FALSE, this function avoids unneeded
133  * updating.
134  **/
135 static void inc_finished(MainWindow *mainwin, gboolean new_messages)
136 {
137         FolderItem *item;
138
139         if (prefs_common.scan_all_after_inc)
140                 folderview_check_new(NULL);
141
142         if (!new_messages && !prefs_common.scan_all_after_inc) return;
143
144         if (prefs_common.open_inbox_on_inc) {
145                 item = cur_account && cur_account->inbox
146                         ? folder_find_item_from_identifier(cur_account->inbox)
147                         : folder_get_default_inbox();
148                 if (FOLDER_SUMMARY_MISMATCH(item, mainwin->summaryview)) {      
149                         folderview_unselect(mainwin->folderview);
150                         folderview_select(mainwin->folderview, item);
151                 }       
152         } else if (prefs_common.scan_all_after_inc) {
153                 item = mainwin->summaryview->folder_item;
154                 if (FOLDER_SUMMARY_MISMATCH(item, mainwin->summaryview)) {
155                         folder_update_item(item, TRUE);
156                 }       
157         }
158 }
159
160 void inc_mail(MainWindow *mainwin, gboolean notify)
161 {
162         gint new_msgs = 0;
163
164         if (inc_lock_count) return;
165
166         if (prefs_common.work_offline)
167                 if (alertpanel(_("Offline warning"), 
168                                _("You're working offline. Override?"),
169                                _("Yes"), _("No"), NULL) != G_ALERTDEFAULT)
170                 return;
171
172         inc_lock();
173         inc_autocheck_timer_remove();
174         main_window_lock(mainwin);
175
176         if (prefs_common.use_extinc && prefs_common.extinc_cmd) {
177                 /* external incorporating program */
178                 if (execute_command_line(prefs_common.extinc_cmd, FALSE) < 0) {
179                         main_window_unlock(mainwin);
180                         inc_autocheck_timer_set();
181                         return;
182                 }
183
184                 if (prefs_common.inc_local)
185                         new_msgs = inc_spool();
186
187                 if (new_msgs <= 0)
188                         new_msgs = 1;
189         } else {
190                 if (prefs_common.inc_local) {
191                         new_msgs = inc_spool();
192                         if (new_msgs < 0)
193                                 new_msgs = 0;
194                 }
195                 cur_account->session = STYPE_NORMAL;
196                 new_msgs += inc_account_mail(cur_account, mainwin);
197         }
198
199         inc_finished(mainwin, new_msgs > 0);
200         main_window_unlock(mainwin);
201         inc_notify_cmd(new_msgs, notify);
202         inc_autocheck_timer_set();
203         inc_unlock();
204 }
205
206 void inc_selective_download(MainWindow *mainwin, PrefsAccount *acc, gint session)
207 {
208         GSList *cur;
209         gint new_msgs = 0;
210
211         acc->session = session;
212         inc_account_mail(acc, mainwin);
213         acc->session = STYPE_NORMAL;
214         
215         for (cur = acc->msg_list; cur != NULL; cur = cur->next) {
216                 HeaderItems *items =(HeaderItems*)cur->data;
217
218                 if (items->state == SD_DOWNLOADED && 
219                     items->del_by_old_session == FALSE) {
220                         new_msgs++;                     
221                 }
222         }
223
224         if (new_msgs) {
225                 inc_finished(mainwin, TRUE);
226                 inc_notify_cmd(new_msgs, prefs_common.newmail_notify_manu);
227         }
228 }
229
230 void inc_pop_before_smtp(PrefsAccount *acc)
231 {
232         acc->session = STYPE_POP_BEFORE_SMTP;
233         inc_account_mail(acc, NULL);
234 }
235
236 static gint inc_account_mail(PrefsAccount *account, MainWindow *mainwin)
237 {
238         IncProgressDialog *inc_dialog;
239         IncSession *session;
240         gchar *text[3];
241         FolderItem *item;
242         
243         if(mainwin && mainwin->summaryview)
244                 item = mainwin->summaryview->folder_item;
245
246         switch (account->protocol) {
247         case A_IMAP4:
248         case A_NNTP:
249                 folderview_check_new(FOLDER(account->folder));
250                 if (!prefs_common.scan_all_after_inc && item != NULL &&
251                     FOLDER(account->folder) == item->folder)
252                         folder_update_item(item, TRUE);
253                 return 1;
254
255         case A_POP3:
256         case A_APOP:
257                 session = inc_session_new(account);
258                 if (!session) return 0;
259                 
260                 inc_dialog = inc_progress_dialog_create();
261                 inc_dialog->queue_list = g_list_append(inc_dialog->queue_list,
262                                                        session);
263                 inc_dialog->mainwin = mainwin;
264                 session->data = inc_dialog;
265         
266                 text[0] = NULL;
267                 text[1] = account->account_name;
268                 text[2] = _("Standby");
269                 gtk_clist_append(GTK_CLIST(inc_dialog->dialog->clist), text);
270                 
271                 if (mainwin) {
272                         toolbar_set_sensitive(mainwin);
273                         main_window_set_menu_sensitive(mainwin);
274                 }
275                         
276                 return inc_start(inc_dialog);
277
278         case A_LOCAL:
279                 inc_spool_account(account);
280                 return 1;
281
282         default:
283                 break;
284         }
285         return 0;
286 }
287
288 void inc_all_account_mail(MainWindow *mainwin, gboolean notify)
289 {
290         GList *list, *queue_list = NULL;
291         IncProgressDialog *inc_dialog;
292         gint new_msgs = 0;
293         
294         if (prefs_common.work_offline)
295                 if (alertpanel(_("Offline warning"), 
296                                _("You're working offline. Override?"),
297                                _("Yes"), _("No"), NULL) != G_ALERTDEFAULT)
298                 return;
299
300         if (inc_lock_count) return;
301
302         inc_autocheck_timer_remove();
303         main_window_lock(mainwin);
304
305         if (prefs_common.inc_local) {
306                 new_msgs = inc_spool();
307                 if (new_msgs < 0)
308                         new_msgs = 0;
309         }
310
311         list = account_get_list();
312         if (!list) {
313                 inc_finished(mainwin, new_msgs > 0);
314                 main_window_unlock(mainwin);
315                 inc_notify_cmd(new_msgs, notify);
316                 inc_autocheck_timer_set();
317                 return;
318         }
319
320         /* check local folders */
321         inc_all_spool();
322
323         /* check IMAP4 folders */
324         for (; list != NULL; list = list->next) {
325                 PrefsAccount *account = list->data;
326                 if ((account->protocol == A_IMAP4 ||
327                      account->protocol == A_NNTP) && account->recv_at_getall) {
328                         FolderItem *item = mainwin->summaryview->folder_item;
329
330                         folderview_check_new(FOLDER(account->folder));
331                         if (!prefs_common.scan_all_after_inc && item != NULL &&
332                             FOLDER(account->folder) == item->folder)
333                                 folder_update_item(item, TRUE);
334                 }
335         }
336
337         /* check POP3 accounts */
338         for (list = account_get_list(); list != NULL; list = list->next) {
339                 IncSession *session;
340                 PrefsAccount *account = list->data;
341                 account->session = STYPE_NORMAL;
342                 if (account->recv_at_getall) {
343                         session = inc_session_new(account);
344                         if (session)
345                                 queue_list = g_list_append(queue_list, session);
346                 }
347         }
348
349         if (!queue_list) {
350                 inc_finished(mainwin, new_msgs > 0);
351                 main_window_unlock(mainwin);
352                 inc_notify_cmd(new_msgs, notify);
353                 inc_autocheck_timer_set();
354                 return;
355         }
356
357         inc_dialog = inc_progress_dialog_create();
358         inc_dialog->queue_list = queue_list;
359         inc_dialog->mainwin = mainwin;
360         for (list = queue_list; list != NULL; list = list->next) {
361                 IncSession *session = list->data;
362                 gchar *text[3];
363
364                 session->data = inc_dialog;
365
366                 text[0] = NULL;
367                 text[1] = session->pop3_state->ac_prefs->account_name;
368                 text[2] = _("Standby");
369                 gtk_clist_append(GTK_CLIST(inc_dialog->dialog->clist), text);
370         }
371
372         toolbar_set_sensitive(mainwin);
373         main_window_set_menu_sensitive(mainwin);
374
375         new_msgs += inc_start(inc_dialog);
376
377         inc_finished(mainwin, new_msgs > 0);
378         main_window_unlock(mainwin);
379         inc_notify_cmd(new_msgs, notify);
380         inc_autocheck_timer_set();
381 }
382
383 static IncProgressDialog *inc_progress_dialog_create(void)
384 {
385         IncProgressDialog *dialog;
386         ProgressDialog *progress;
387
388         dialog = g_new0(IncProgressDialog, 1);
389
390         progress = progress_dialog_create();
391         gtk_window_set_title(GTK_WINDOW(progress->window),
392                              _("Retrieving new messages"));
393         gtk_signal_connect(GTK_OBJECT(progress->cancel_btn), "clicked",
394                            GTK_SIGNAL_FUNC(inc_cancel_cb), dialog);
395         gtk_signal_connect(GTK_OBJECT(progress->window), "delete_event",
396                            GTK_SIGNAL_FUNC(inc_dialog_delete_cb), dialog);
397         /* manage_window_set_transient(GTK_WINDOW(progress->window)); */
398
399         progress_dialog_set_value(progress, 0.0);
400
401         stock_pixmap_gdk(progress->clist, STOCK_PIXMAP_COMPLETE,
402                          &okxpm, &okxpmmask);
403         stock_pixmap_gdk(progress->clist, STOCK_PIXMAP_CONTINUE,
404                          &currentxpm, &currentxpmmask);
405         stock_pixmap_gdk(progress->clist, STOCK_PIXMAP_ERROR,
406                          &errorxpm, &errorxpmmask);
407
408         if (prefs_common.recv_dialog_mode == RECV_DIALOG_ALWAYS ||
409             (prefs_common.recv_dialog_mode == RECV_DIALOG_ACTIVE &&
410              manage_window_get_focus_window())) {
411                 dialog->show_dialog = TRUE;
412                 gtk_widget_show_now(progress->window);
413         }
414
415         dialog->dialog = progress;
416         dialog->queue_list = NULL;
417
418         inc_dialog_list = g_list_append(inc_dialog_list, dialog);
419
420         return dialog;
421 }
422
423 static void inc_progress_dialog_clear(IncProgressDialog *inc_dialog)
424 {
425         progress_dialog_set_value(inc_dialog->dialog, 0.0);
426         progress_dialog_set_label(inc_dialog->dialog, "");
427         if (inc_dialog->mainwin)
428                 gtk_progress_bar_update
429                         (GTK_PROGRESS_BAR(inc_dialog->mainwin->progressbar), 0.0);
430 }
431
432 static void inc_progress_dialog_destroy(IncProgressDialog *inc_dialog)
433 {
434         g_return_if_fail(inc_dialog != NULL);
435
436         inc_dialog_list = g_list_remove(inc_dialog_list, inc_dialog);
437         if (inc_dialog->mainwin)
438                 gtk_progress_bar_update
439                         (GTK_PROGRESS_BAR(inc_dialog->mainwin->progressbar), 0.0);
440         progress_dialog_destroy(inc_dialog->dialog);
441
442         g_free(inc_dialog);
443 }
444
445 static IncSession *inc_session_new(PrefsAccount *account)
446 {
447         IncSession *session;
448
449         g_return_val_if_fail(account != NULL, NULL);
450
451         if (account->protocol != A_POP3 && account->protocol != A_APOP)
452                 return NULL;
453         if (!account->recv_server || !account->userid)
454                 return NULL;
455
456         session = g_new0(IncSession, 1);
457         session->pop3_state = pop3_state_new(account);
458         session->pop3_state->data = session;
459
460         return session;
461 }
462
463 static void inc_session_destroy(IncSession *session)
464 {
465         g_return_if_fail(session != NULL);
466
467         pop3_state_destroy(session->pop3_state);
468         g_free(session);
469 }
470
471 static gint inc_start(IncProgressDialog *inc_dialog)
472 {
473         IncSession *session;
474         GtkCList *clist = GTK_CLIST(inc_dialog->dialog->clist);
475         Pop3State *pop3_state;
476         IncState inc_state;
477         gint num = 0;
478         gint error_num = 0;
479         gint new_msgs = 0;
480         gchar *msg;
481         gchar *fin_msg;
482
483         while (inc_dialog->queue_list != NULL) {
484                 session = inc_dialog->queue_list->data;
485                 pop3_state = session->pop3_state;
486
487                 inc_progress_dialog_clear(inc_dialog);
488
489                 gtk_clist_moveto(clist, num, -1, 1.0, 0.0);
490
491                 pop3_state->user = g_strdup(pop3_state->ac_prefs->userid);
492                 if (pop3_state->ac_prefs->passwd)
493                         pop3_state->pass =
494                                 g_strdup(pop3_state->ac_prefs->passwd);
495                 else if (pop3_state->ac_prefs->tmp_pass)
496                         pop3_state->pass =
497                                 g_strdup(pop3_state->ac_prefs->tmp_pass);
498                 else {
499                         gchar *pass;
500
501                         pass = input_dialog_query_password
502                                 (pop3_state->ac_prefs->recv_server,
503                                  pop3_state->user);
504
505                         if (inc_dialog->mainwin && inc_dialog->show_dialog)
506                                 manage_window_focus_in
507                                         (inc_dialog->mainwin->window,
508                                          NULL, NULL);
509                         if (pass) {
510                                 pop3_state->ac_prefs->tmp_pass = g_strdup(pass);
511                                 pop3_state->pass = pass;
512                         } else {
513                                 inc_session_destroy(session);
514                                 inc_dialog->queue_list = g_list_remove
515                                         (inc_dialog->queue_list, session);
516                                 continue;
517                         }
518                 }
519
520                 gtk_clist_set_pixmap(clist, num, 0, currentxpm, currentxpmmask);
521                 gtk_clist_set_text(clist, num, 2, _("Retrieving"));
522
523                 /* begin POP3 session */
524                 inc_state = inc_pop3_session_do(session);
525
526                 switch (inc_state) {
527                 case INC_SUCCESS:
528                         if (pop3_state->cur_total_num > 0)
529                                 msg = g_strdup_printf
530                                         (_("Done (%d message(s) (%s) received)"),
531                                          pop3_state->cur_total_num,
532                                          to_human_readable(pop3_state->cur_total_recv_bytes));
533                         else
534                                 msg = g_strdup_printf(_("Done (no new messages)"));
535                         gtk_clist_set_pixmap(clist, num, 0, okxpm, okxpmmask);
536                         gtk_clist_set_text(clist, num, 2, msg);
537                         g_free(msg);
538                         break;
539                 case INC_CONNECT_ERROR:
540                         gtk_clist_set_pixmap(clist, num, 0, errorxpm, errorxpmmask);
541                         gtk_clist_set_text(clist, num, 2, _("Connection failed"));
542                         break;
543                 case INC_AUTH_FAILED:
544                         gtk_clist_set_pixmap(clist, num, 0, errorxpm, errorxpmmask);
545                         gtk_clist_set_text(clist, num, 2, _("Auth failed"));
546                         break;
547                 case INC_LOCKED:
548                         gtk_clist_set_pixmap(clist, num, 0, errorxpm, errorxpmmask);
549                         gtk_clist_set_text(clist, num, 2, _("Locked"));
550                         break;
551                 case INC_ERROR:
552                 case INC_NO_SPACE:
553                 case INC_IO_ERROR:
554                 case INC_SOCKET_ERROR:
555                         gtk_clist_set_pixmap(clist, num, 0, errorxpm, errorxpmmask);
556                         gtk_clist_set_text(clist, num, 2, _("Error"));
557                         break;
558                 case INC_CANCEL:
559                         gtk_clist_set_pixmap(clist, num, 0, okxpm, okxpmmask);
560                         gtk_clist_set_text(clist, num, 2, _("Cancelled"));
561                         break;
562                 default:
563                         break;
564                 }
565                 
566                 if (pop3_state->error_val == PS_AUTHFAIL) {
567                         if(!prefs_common.no_recv_err_panel) {
568                                 if((prefs_common.recv_dialog_mode == RECV_DIALOG_ALWAYS) ||
569                                     ((prefs_common.recv_dialog_mode == RECV_DIALOG_ACTIVE) && focus_window)) {
570                                         manage_window_focus_in(inc_dialog->dialog->window, NULL, NULL);
571                                 }
572                                 alertpanel_error
573                                         (_("Authorization for %s on %s failed"),
574                                          pop3_state->user,
575                                          pop3_state->ac_prefs->recv_server);
576                         }
577                 }
578
579                 statusbar_pop_all();
580
581                 /* CLAWS: perform filtering actions on dropped message */
582                 if (global_processing != NULL) {
583                         FolderItem *processing, *inbox;
584                         MsgInfo *msginfo;
585                         GSList *msglist, *msglist_element;
586
587                         /* CLAWS: get default inbox (perhaps per account) */
588                         if (pop3_state->ac_prefs->inbox) {
589                                 /* CLAWS: get destination folder / mailbox */
590                                 inbox = folder_find_item_from_identifier(pop3_state->ac_prefs->inbox);
591                                 if (!inbox)
592                                         inbox = folder_get_default_inbox();
593                         } else
594                                 inbox = folder_get_default_inbox();
595
596                         /* get list of messages in processing */
597                         processing = folder_get_default_processing();
598                         folder_item_scan(processing);
599                         msglist = folder_item_get_msg_list(processing);
600
601                         /* process messages */
602                         for(msglist_element = msglist; msglist_element != NULL; msglist_element = msglist_element->next) {
603                                 msginfo = (MsgInfo *) msglist_element->data;
604                                 /* filter if enabled in prefs or move to inbox if not */
605                                 if(pop3_state->ac_prefs->filter_on_recv) {
606                                         filter_message_by_msginfo_with_inbox(global_processing, msginfo,
607                                                                              inbox);
608                                 } else {
609                                         folder_item_move_msg(inbox, msginfo);
610                                 }
611                                 procmsg_msginfo_free(msginfo);
612                         }
613                         g_slist_free(msglist);
614                 }
615
616
617                 new_msgs += pop3_state->cur_total_num;
618
619                 if (!prefs_common.scan_all_after_inc) {
620                         folder_update_items_when_required
621                                  (!prefs_common.open_inbox_on_inc);
622                 }
623
624                 if (pop3_state->error_val == PS_AUTHFAIL &&
625                     pop3_state->ac_prefs->tmp_pass) {
626                         g_free(pop3_state->ac_prefs->tmp_pass);
627                         pop3_state->ac_prefs->tmp_pass = NULL;
628                 }
629
630                 pop3_write_uidl_list(pop3_state);
631
632                 if (inc_state != INC_SUCCESS && inc_state != INC_CANCEL) {
633                         error_num++;
634                         if (inc_state == INC_NO_SPACE ||
635                             inc_state == INC_IO_ERROR) {
636                                 inc_put_error(inc_state);
637                                 break;
638                         }
639                 }
640
641                 inc_session_destroy(session);
642                 inc_dialog->queue_list =
643                         g_list_remove(inc_dialog->queue_list, session);
644
645                 num++;
646         }
647
648         if (new_msgs > 0)
649                 fin_msg = g_strdup_printf(_("Finished (%d new message(s))"),
650                                           new_msgs);
651         else
652                 fin_msg = g_strdup_printf(_("Finished (no new messages)"));
653
654         progress_dialog_set_label(inc_dialog->dialog, fin_msg);
655
656         if (error_num && !prefs_common.no_recv_err_panel) {
657                 if (inc_dialog->show_dialog)
658                         manage_window_focus_in(inc_dialog->dialog->window,
659                                                NULL, NULL);
660                 alertpanel_error(_("Some errors occurred while getting mail."));
661                 if (inc_dialog->show_dialog)
662                         manage_window_focus_out(inc_dialog->dialog->window,
663                                                 NULL, NULL);
664         }
665
666         while (inc_dialog->queue_list != NULL) {
667                 session = inc_dialog->queue_list->data;
668                 inc_session_destroy(session);
669                 inc_dialog->queue_list =
670                         g_list_remove(inc_dialog->queue_list, session);
671         }
672
673         if (prefs_common.close_recv_dialog)
674                 inc_progress_dialog_destroy(inc_dialog);
675         else {
676                 gtk_window_set_title(GTK_WINDOW(inc_dialog->dialog->window),
677                                      fin_msg);
678                 gtk_label_set_text(GTK_LABEL(GTK_BIN(inc_dialog->dialog->cancel_btn)->child),
679                                    _("Close"));
680         }
681
682         g_free(fin_msg);
683
684         return new_msgs;
685 }
686
687 static IncState inc_pop3_session_do(IncSession *session)
688 {
689         Pop3State *pop3_state = session->pop3_state;
690         IncProgressDialog *inc_dialog = (IncProgressDialog *)session->data;
691         Automaton *atm;
692         SockInfo *sockinfo;
693         gint i;
694         gchar *server;
695         gushort port;
696         gchar *buf;
697         static AtmHandler handlers[] = {
698                 pop3_greeting_recv      ,
699 #if USE_SSL
700                 pop3_stls_send          , pop3_stls_recv,
701 #endif
702                 pop3_getauth_user_send  , pop3_getauth_user_recv,
703                 pop3_getauth_pass_send  , pop3_getauth_pass_recv,
704                 pop3_getauth_apop_send  , pop3_getauth_apop_recv,
705                 pop3_getrange_stat_send , pop3_getrange_stat_recv,
706                 pop3_getrange_last_send , pop3_getrange_last_recv,
707                 pop3_getrange_uidl_send , pop3_getrange_uidl_recv,
708                 pop3_getsize_list_send  , pop3_getsize_list_recv,
709                 pop3_top_send           , pop3_top_recv,
710                 pop3_retr_send          , pop3_retr_recv,
711                 pop3_delete_send        , pop3_delete_recv,
712                 pop3_logout_send        , pop3_logout_recv
713         };
714
715         debug_print("getting new messages of account %s...\n",
716                     pop3_state->ac_prefs->account_name);
717
718         pop3_state->ac_prefs->last_pop_login_time = time(NULL);
719         atm = automaton_create(N_POP3_PHASE);
720
721         session->atm = atm;
722         atm->data = pop3_state;
723
724         buf = g_strdup_printf(_("%s: Retrieving new messages"),
725                               pop3_state->ac_prefs->recv_server);
726         gtk_window_set_title(GTK_WINDOW(inc_dialog->dialog->window), buf);
727         g_free(buf);
728
729         for (i = POP3_GREETING_RECV; i < N_POP3_PHASE; i++)
730                 atm->state[i].handler = handlers[i];
731         atm->state[POP3_GREETING_RECV].condition = GDK_INPUT_READ;
732         for (i = POP3_GREETING_RECV + 1; i < N_POP3_PHASE; ) {
733                 atm->state[i++].condition = GDK_INPUT_WRITE;
734                 atm->state[i++].condition = GDK_INPUT_READ;
735         }
736
737         atm->terminate = (AtmHandler)pop3_automaton_terminate;
738         atm->ui_func = (AtmUIFunc)inc_progress_update;
739
740         atm->num = POP3_GREETING_RECV;
741
742         server = pop3_state->ac_prefs->recv_server;
743 #if USE_SSL
744         port = pop3_state->ac_prefs->set_popport ?
745                 pop3_state->ac_prefs->popport :
746                 pop3_state->ac_prefs->ssl_pop == SSL_TUNNEL ? 995 : 110;
747 #else
748         port = pop3_state->ac_prefs->set_popport ?
749                 pop3_state->ac_prefs->popport : 110;
750 #endif
751
752         buf = g_strdup_printf(_("Connecting to POP3 server: %s ..."), server);
753         log_message("%s\n", buf);
754         progress_dialog_set_label(inc_dialog->dialog, buf);
755         g_free(buf);
756         GTK_EVENTS_FLUSH();
757         statusbar_pop_all();
758
759         if ((sockinfo = sock_connect(server, port)) == NULL) {
760                 log_warning(_("Can't connect to POP3 server: %s:%d\n"),
761                             server, port);
762                 if(!prefs_common.no_recv_err_panel) {
763                         if((prefs_common.recv_dialog_mode == RECV_DIALOG_ALWAYS) ||
764                             ((prefs_common.recv_dialog_mode == RECV_DIALOG_ACTIVE) && focus_window)) {
765                                 manage_window_focus_in(inc_dialog->dialog->window, NULL, NULL);
766                         }
767                         alertpanel_error(_("Can't connect to POP3 server: %s:%d"),
768                                          server, port);
769                         manage_window_focus_out(inc_dialog->dialog->window, NULL, NULL);
770                 }
771                 pop3_automaton_terminate(NULL, atm);
772                 automaton_destroy(atm);
773                 session->inc_state = INC_CONNECT_ERROR;
774                 return INC_CONNECT_ERROR;
775         }
776
777 #if USE_SSL
778         if (pop3_state->ac_prefs->ssl_pop == SSL_TUNNEL &&
779             !ssl_init_socket(sockinfo)) {
780                 pop3_automaton_terminate(sockinfo, atm);
781                 automaton_destroy(atm);
782                 session->inc_state = INC_CONNECT_ERROR;
783                 return INC_CONNECT_ERROR;
784         }
785 #endif
786
787         /* :WK: Hmmm, with the later sock_gdk_input, we have 2 references
788          * to the sock structure - implement a reference counter?? */
789         pop3_state->sockinfo = sockinfo;
790         atm->help_sock = sockinfo;
791
792         log_verbosity_set(TRUE);
793         /* oha: this messes up inc_progress update:
794            disabling this would avoid the label "Retrieve Header"
795            being overwritten by "Retrieve Message"
796            Setting inc_pop3_recv_func is not necessary
797            since atm already handles the progress dialog ui
798            just fine.
799         */
800         recv_set_ui_func(inc_pop3_recv_func, session);
801
802         atm->tag = sock_gdk_input_add(sockinfo,
803                                       atm->state[atm->num].condition,
804                                       automaton_input_cb, atm);
805
806         while (!atm->terminated && !atm->cancelled)
807                 gtk_main_iteration();
808
809         if (!atm->terminated)
810                 pop3_automaton_terminate(sockinfo, atm);
811
812         log_verbosity_set(FALSE);
813         /* oha: see above */
814         recv_set_ui_func(NULL, NULL);
815
816         automaton_destroy(atm);
817
818         if (session->inc_state != INC_SUCCESS)
819                 return session->inc_state;
820
821         switch (pop3_state->error_val) {
822         case PS_SUCCESS:
823                 session->inc_state = INC_SUCCESS;
824                 break;
825         case PS_AUTHFAIL:
826                 session->inc_state = INC_AUTH_FAILED;
827                 break;
828         case PS_IOERR:
829                 session->inc_state = INC_IO_ERROR;
830                 break;
831         case PS_SOCKET:
832                 session->inc_state = INC_SOCKET_ERROR;
833                 break;
834         case PS_LOCKBUSY:
835                 session->inc_state = INC_LOCKED;
836                 break;
837         default:
838                 session->inc_state = INC_ERROR;
839                 break;
840         }
841
842         return session->inc_state;
843 }
844
845 static gint pop3_automaton_terminate(SockInfo *source, Automaton *atm)
846 {
847         if (atm->terminated) return 0;
848
849         if (atm->tag > 0) {
850                 gdk_input_remove(atm->tag);
851                 atm->tag = 0;
852         }
853         if (atm->timeout_tag > 0) {
854                 gtk_timeout_remove(atm->timeout_tag);
855                 atm->timeout_tag = 0;
856         }
857         if (source)
858                 sock_close(source);
859
860         atm->terminated = TRUE;
861
862         return 0;
863 }
864
865 static gboolean inc_pop3_recv_func(SockInfo *sock, gint count, gint read_bytes,
866                                    gpointer data)
867 {
868         gchar buf[MSGBUFSIZE];
869         IncSession *session = (IncSession *)data;
870         Pop3State *state = session->pop3_state;
871         IncProgressDialog *inc_dialog = (IncProgressDialog *)session->data;
872         ProgressDialog *dialog = inc_dialog->dialog;
873         gint cur_total;
874         gchar *total_size;
875
876         cur_total = state->cur_total_bytes + read_bytes;
877         if (cur_total > state->total_bytes)
878                 cur_total = state->total_bytes;
879
880         Xstrdup_a(total_size, to_human_readable(state->total_bytes),
881                   return FALSE);
882         g_snprintf(buf, sizeof(buf),
883                    _("Retrieving message (%d / %d) (%s / %s)"),
884                    state->cur_msg, state->count,
885                    to_human_readable(cur_total), total_size);
886         progress_dialog_set_label(dialog, buf);
887
888         progress_dialog_set_percentage
889                 (dialog, (gfloat)cur_total / (gfloat)state->total_bytes);
890         if (inc_dialog->mainwin)
891                 gtk_progress_bar_update
892                         (GTK_PROGRESS_BAR(inc_dialog->mainwin->progressbar),
893                          (gfloat)cur_total / (gfloat)state->total_bytes);
894         GTK_EVENTS_FLUSH();
895
896         if (session->inc_state == INC_CANCEL)
897                 return FALSE;
898         else
899                 return TRUE;
900 }
901
902 void inc_progress_update(Pop3State *state, Pop3Phase phase)
903 {
904         gchar buf[MSGBUFSIZE];
905         IncSession *session = (IncSession *)state->data;
906         IncProgressDialog *inc_dialog = (IncProgressDialog *)session->data;
907         ProgressDialog *dialog = inc_dialog->dialog;
908         gchar *total_size;
909
910         switch (phase) {
911         case POP3_GREETING_RECV:
912                 break;
913         case POP3_GETAUTH_USER_SEND:
914         case POP3_GETAUTH_PASS_SEND:
915         case POP3_GETAUTH_APOP_SEND:
916                 progress_dialog_set_label(dialog, _("Authenticating..."));
917                 break;
918         case POP3_GETRANGE_STAT_SEND:
919                 progress_dialog_set_label
920                         (dialog, _("Getting the number of new messages (STAT)..."));
921                 break;
922         case POP3_GETRANGE_LAST_SEND:
923                 progress_dialog_set_label
924                         (dialog, _("Getting the number of new messages (LAST)..."));
925                 break;
926         case POP3_GETRANGE_UIDL_SEND:
927                 progress_dialog_set_label
928                         (dialog, _("Getting the number of new messages (UIDL)..."));
929                 break;
930         case POP3_GETSIZE_LIST_SEND:
931                 progress_dialog_set_label
932                         (dialog, _("Getting the size of messages (LIST)..."));
933                 break;
934         case POP3_TOP_SEND:
935                 g_snprintf(buf, sizeof(buf),
936                            _("Retrieving header (%d / %d)"),
937                            state->cur_msg, state->count);
938                 progress_dialog_set_label (dialog, buf);
939                 progress_dialog_set_percentage
940                         (dialog,
941                          (gfloat)(state->cur_msg) /
942                          (gfloat)(state->count));
943                 if (inc_dialog->mainwin)
944                         gtk_progress_bar_update 
945                                 (GTK_PROGRESS_BAR(inc_dialog->mainwin->progressbar),
946                                  (gfloat)(state->cur_msg) /
947                                  (gfloat)(state->count));
948                 break;
949         case POP3_RETR_SEND:
950                 Xstrdup_a(total_size, to_human_readable(state->total_bytes), return);
951                 g_snprintf(buf, sizeof(buf),
952                            _("Retrieving message (%d / %d) (%s / %s)"),
953                            state->cur_msg, state->count,
954                            to_human_readable(state->cur_total_bytes),
955                            total_size);
956                 progress_dialog_set_label(dialog, buf);
957                 progress_dialog_set_percentage
958                         (dialog,
959                          (gfloat)(state->cur_total_bytes) /
960                          (gfloat)(state->total_bytes));
961                 if (inc_dialog->mainwin)
962                         gtk_progress_bar_update
963                                 (GTK_PROGRESS_BAR(inc_dialog->mainwin->progressbar),
964                                  (gfloat)(state->cur_total_bytes) /
965                                  (gfloat)(state->total_bytes));
966                 break;
967         case POP3_DELETE_SEND:
968                 if (state->msg[state->cur_msg].recv_time < state->current_time) {
969                         g_snprintf(buf, sizeof(buf), _("Deleting message %d"),
970                                    state->cur_msg);
971                         progress_dialog_set_label(dialog, buf);
972                 }
973                 break;
974         case POP3_LOGOUT_SEND:
975                 progress_dialog_set_label(dialog, _("Quitting"));
976                 break;
977         default:
978                 break;
979         }
980 }
981
982 gint inc_drop_message(const gchar *file, Pop3State *state)
983 {
984         FolderItem *inbox;
985         FolderItem *dropfolder;
986         gint msgnum;
987
988         /* CLAWS: get default inbox (perhaps per account) */
989         if (state->ac_prefs->inbox) {
990                 /* CLAWS: get destination folder / mailbox */
991                 inbox = folder_find_item_from_identifier
992                         (state->ac_prefs->inbox);
993                 if (!inbox)
994                         inbox = folder_get_default_inbox();
995         } else
996                 inbox = folder_get_default_inbox();
997         if (!inbox) {
998                 unlink(file);
999                 return -1;
1000         }
1001
1002         /* CLAWS: claws uses a global .processing folder for the filtering. */
1003         dropfolder = folder_get_default_processing();
1004
1005         /* add msg file to drop folder */
1006         if ((msgnum = folder_item_add_msg(dropfolder, file, TRUE)) < 0) {
1007                 unlink(file);
1008                 return -1;
1009         }
1010
1011         return 0;
1012 }
1013
1014 static void inc_put_error(IncState istate)
1015 {
1016         switch (istate) {
1017         case INC_ERROR:
1018                 if (!prefs_common.no_recv_err_panel)
1019                         alertpanel_error
1020                                 (_("Error occurred while processing mail."));
1021                 break;
1022         case INC_NO_SPACE:
1023                 alertpanel_error(_("No disk space left."));
1024                 break;
1025         case INC_IO_ERROR:
1026                 alertpanel_error(_("Can't write file."));
1027                 break;
1028         case INC_SOCKET_ERROR:
1029                 alertpanel_error(_("Socket error."));
1030                 break;
1031         case INC_LOCKED:
1032                 if (!prefs_common.no_recv_err_panel)
1033                         alertpanel_error(_("Mailbox is locked."));
1034                 break;
1035         default:
1036                 break;
1037         }
1038 }
1039
1040 static void inc_cancel(IncProgressDialog *dialog)
1041 {
1042         IncSession *session;
1043         SockInfo *sockinfo;
1044
1045         g_return_if_fail(dialog != NULL);
1046
1047         if (dialog->queue_list == NULL) {
1048                 inc_progress_dialog_destroy(dialog);
1049                 return;
1050         }
1051
1052         session = dialog->queue_list->data;
1053         sockinfo = session->pop3_state->sockinfo;
1054
1055         if (!sockinfo || session->atm->terminated == TRUE) return;
1056
1057         session->pop3_state->cancelled = TRUE;
1058         session->inc_state = INC_CANCEL;
1059         session->atm->cancelled = TRUE;
1060
1061         log_message(_("Incorporation cancelled\n"));
1062 }
1063
1064 gboolean inc_is_active(void)
1065 {
1066         return (inc_dialog_list != NULL);
1067 }
1068
1069 void inc_cancel_all(void)
1070 {
1071         GList *cur;
1072
1073         for (cur = inc_dialog_list; cur != NULL; cur = cur->next)
1074                 inc_cancel((IncProgressDialog *)cur->data);
1075 }
1076
1077 static void inc_cancel_cb(GtkWidget *widget, gpointer data)
1078 {
1079         inc_cancel((IncProgressDialog *)data);
1080 }
1081
1082 static gint inc_dialog_delete_cb(GtkWidget *widget, GdkEventAny *event,
1083                                  gpointer data)
1084 {
1085         IncProgressDialog *dialog = (IncProgressDialog *)data;
1086
1087         if (dialog->queue_list == NULL)
1088                 inc_progress_dialog_destroy(dialog);
1089
1090         return TRUE;
1091 }
1092
1093 static gint inc_spool(void)
1094 {
1095         gchar *mbox, *logname;
1096         gint msgs;
1097
1098         logname = g_get_user_name();
1099         mbox = g_strconcat(prefs_common.spool_path
1100                            ? prefs_common.spool_path : DEFAULT_SPOOL_PATH,
1101                            G_DIR_SEPARATOR_S, logname, NULL);
1102         msgs = get_spool(folder_get_default_inbox(), mbox);
1103         g_free(mbox);
1104
1105         return msgs;
1106 }
1107
1108 static void inc_spool_account(PrefsAccount *account)
1109 {
1110         FolderItem *inbox;
1111
1112         if (account->inbox) {
1113                 inbox = folder_find_item_from_path(account->inbox);
1114                 if (!inbox)
1115                         inbox = folder_get_default_inbox();
1116         } else
1117                 inbox = folder_get_default_inbox();
1118
1119         get_spool(inbox, account->local_mbox);
1120 }
1121
1122 static void inc_all_spool(void)
1123 {
1124         GList *list = NULL;
1125
1126         list = account_get_list();
1127         if (!list) return;
1128
1129         for (; list != NULL; list = list->next) {
1130                 PrefsAccount *account = list->data;
1131
1132                 if ((account->protocol == A_LOCAL) &&
1133                     (account->recv_at_getall))
1134                         inc_spool_account(account);
1135         }
1136 }
1137
1138 static gint get_spool(FolderItem *dest, const gchar *mbox)
1139 {
1140         gint msgs, size;
1141         gint lockfd;
1142         gchar tmp_mbox[MAXPATHLEN + 1];
1143
1144         g_return_val_if_fail(dest != NULL, -1);
1145         g_return_val_if_fail(mbox != NULL, -1);
1146
1147         if (!is_file_exist(mbox) || (size = get_file_size(mbox)) == 0) {
1148                 debug_print("no messages in local mailbox.\n");
1149                 return 0;
1150         } else if (size < 0)
1151                 return -1;
1152
1153         if ((lockfd = lock_mbox(mbox, LOCK_FLOCK)) < 0)
1154                 return -1;
1155
1156         g_snprintf(tmp_mbox, sizeof(tmp_mbox), "%s%ctmpmbox.%08x",
1157                    get_tmp_dir(), G_DIR_SEPARATOR, (gint)mbox);
1158
1159         if (copy_mbox(mbox, tmp_mbox) < 0) {
1160                 unlock_mbox(mbox, lockfd, LOCK_FLOCK);
1161                 return -1;
1162         }
1163
1164         debug_print("Getting new messages from %s into %s...\n",
1165                     mbox, dest->path);
1166
1167         msgs = proc_mbox(dest, tmp_mbox);
1168
1169         unlink(tmp_mbox);
1170         if (msgs >= 0) empty_mbox(mbox);
1171         unlock_mbox(mbox, lockfd, LOCK_FLOCK);
1172
1173         if (!prefs_common.scan_all_after_inc) {
1174                 folder_update_items_when_required
1175                         (!prefs_common.open_inbox_on_inc);
1176         } else if (!prefs_common.scan_all_after_inc) {
1177                 folder_update_item(dest, TRUE);
1178         }
1179
1180         return msgs;
1181 }
1182
1183 void inc_lock(void)
1184 {
1185         inc_lock_count++;
1186 }
1187
1188 void inc_unlock(void)
1189 {
1190         if (inc_lock_count > 0)
1191                 inc_lock_count--;
1192 }
1193
1194 static guint autocheck_timer = 0;
1195 static gpointer autocheck_data = NULL;
1196
1197 static void inc_notify_cmd(gint new_msgs, gboolean notify)
1198 {
1199
1200         gchar *buf;
1201
1202         if (!(new_msgs && notify && prefs_common.newmail_notify_cmd &&
1203             *prefs_common.newmail_notify_cmd))
1204                      return;
1205         if ((buf = strchr(prefs_common.newmail_notify_cmd, '%')) &&
1206                 buf[1] == 'd' && !strchr(&buf[1], '%'))
1207                 buf = g_strdup_printf(prefs_common.newmail_notify_cmd, 
1208                                       new_msgs);
1209         else
1210                 buf = g_strdup(prefs_common.newmail_notify_cmd);
1211
1212         execute_command_line(buf, TRUE);
1213
1214         g_free(buf);
1215 }
1216  
1217 void inc_autocheck_timer_init(MainWindow *mainwin)
1218 {
1219         autocheck_data = mainwin;
1220         inc_autocheck_timer_set();
1221 }
1222
1223 static void inc_autocheck_timer_set_interval(guint interval)
1224 {
1225         inc_autocheck_timer_remove();
1226         /* last test is to avoid re-enabling auto_check after modifying 
1227            the common preferences */
1228         if (prefs_common.autochk_newmail && autocheck_data
1229             && prefs_common.work_offline == FALSE) {
1230                 autocheck_timer = gtk_timeout_add
1231                         (interval, inc_autocheck_func, autocheck_data);
1232                 debug_print("added timer = %d\n", autocheck_timer);
1233         }
1234 }
1235
1236 void inc_autocheck_timer_set(void)
1237 {
1238         inc_autocheck_timer_set_interval(prefs_common.autochk_itv * 60000);
1239 }
1240
1241 void inc_autocheck_timer_remove(void)
1242 {
1243         if (autocheck_timer) {
1244                 debug_print("removed timer = %d\n", autocheck_timer);
1245                 gtk_timeout_remove(autocheck_timer);
1246                 autocheck_timer = 0;
1247         }
1248 }
1249
1250 static gint inc_autocheck_func(gpointer data)
1251 {
1252         MainWindow *mainwin = (MainWindow *)data;
1253
1254         if (inc_lock_count) {
1255                 debug_print("autocheck is locked.\n");
1256                 inc_autocheck_timer_set_interval(1000);
1257                 return FALSE;
1258         }
1259
1260         inc_all_account_mail(mainwin, prefs_common.newmail_notify_auto);
1261
1262         return FALSE;
1263 }