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