2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2002 Hiroyuki Yamamoto
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.
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.
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.
27 #include <gtk/gtkmain.h>
28 #include <gtk/gtkwindow.h>
29 #include <gtk/gtksignal.h>
30 #include <gtk/gtkprogressbar.h>
35 #include <sys/types.h>
44 #include "mainwindow.h"
45 #include "folderview.h"
46 #include "summaryview.h"
47 #include "prefs_common.h"
48 #include "prefs_account.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"
66 #include "filtering.h"
67 #include "selective_download.h"
69 static GList *inc_dialog_list = NULL;
71 static guint inc_lock_count = 0;
73 static GdkPixmap *currentxpm;
74 static GdkBitmap *currentxpmmask;
75 static GdkPixmap *errorxpm;
76 static GdkBitmap *errorxpmmask;
77 static GdkPixmap *okxpm;
78 static GdkBitmap *okxpmmask;
80 #define MSGBUFSIZE 8192
82 static void inc_finished (MainWindow *mainwin,
83 gboolean new_messages);
84 static gint inc_account_mail (PrefsAccount *account,
87 static IncProgressDialog *inc_progress_dialog_create (void);
88 static void inc_progress_dialog_destroy (IncProgressDialog *inc_dialog);
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,
97 static gboolean inc_pop3_recv_func (SockInfo *sock,
102 static void inc_put_error (IncState istate);
104 static void inc_cancel_cb (GtkWidget *widget,
106 static gint inc_dialog_delete_cb (GtkWidget *widget,
110 static gint inc_spool (void);
111 static gint get_spool (FolderItem *dest,
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);
119 static void inc_notify_cmd (gint new_msgs,
122 #define FOLDER_SUMMARY_MISMATCH(f, s) \
123 (f) && (s) ? ((s)->newmsgs != (f)->new) || ((f)->unread != (s)->unread) || ((f)->total != (s)->messages) \
128 * @mainwin: Main window.
129 * @new_messages: TRUE if some messages have been received.
131 * Update the folder view and the summary view after receiving
132 * messages. If @new_messages is FALSE, this function avoids unneeded
135 static void inc_finished(MainWindow *mainwin, gboolean new_messages)
139 if (prefs_common.scan_all_after_inc)
140 folderview_check_new(NULL);
142 if (!new_messages && !prefs_common.scan_all_after_inc) return;
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);
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);
160 void inc_mail(MainWindow *mainwin, gboolean notify)
164 if (inc_lock_count) return;
166 if (prefs_common.work_offline)
167 if (alertpanel(_("Offline warning"),
168 _("You're working offline. Override?"),
169 _("Yes"), _("No"), NULL) != G_ALERTDEFAULT)
173 inc_autocheck_timer_remove();
174 main_window_lock(mainwin);
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();
184 if (prefs_common.inc_local)
185 new_msgs = inc_spool();
190 if (prefs_common.inc_local) {
191 new_msgs = inc_spool();
195 cur_account->session = STYPE_NORMAL;
196 new_msgs += inc_account_mail(cur_account, mainwin);
199 inc_finished(mainwin, new_msgs > 0);
200 main_window_unlock(mainwin);
201 inc_notify_cmd(new_msgs, notify);
202 inc_autocheck_timer_set();
206 void inc_selective_download(MainWindow *mainwin, PrefsAccount *acc, gint session)
211 acc->session = session;
212 inc_account_mail(acc, mainwin);
213 acc->session = STYPE_NORMAL;
215 for (cur = acc->msg_list; cur != NULL; cur = cur->next) {
216 HeaderItems *items =(HeaderItems*)cur->data;
218 if (items->state == SD_DOWNLOADED &&
219 items->del_by_old_session == FALSE) {
225 inc_finished(mainwin, TRUE);
226 inc_notify_cmd(new_msgs, prefs_common.newmail_notify_manu);
230 void inc_pop_before_smtp(PrefsAccount *acc)
232 acc->session = STYPE_POP_BEFORE_SMTP;
233 inc_account_mail(acc, NULL);
236 static gint inc_account_mail(PrefsAccount *account, MainWindow *mainwin)
238 IncProgressDialog *inc_dialog;
241 FolderItem *item = NULL;
243 if(mainwin && mainwin->summaryview)
244 item = mainwin->summaryview->folder_item;
246 switch (account->protocol) {
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);
257 session = inc_session_new(account);
258 if (!session) return 0;
260 inc_dialog = inc_progress_dialog_create();
261 inc_dialog->queue_list = g_list_append(inc_dialog->queue_list,
263 inc_dialog->mainwin = mainwin;
264 session->data = inc_dialog;
267 text[1] = account->account_name;
268 text[2] = _("Standby");
269 gtk_clist_append(GTK_CLIST(inc_dialog->dialog->clist), text);
272 toolbar_set_sensitive(mainwin);
273 main_window_set_menu_sensitive(mainwin);
276 return inc_start(inc_dialog);
279 inc_spool_account(account);
288 void inc_all_account_mail(MainWindow *mainwin, gboolean notify)
290 GList *list, *queue_list = NULL;
291 IncProgressDialog *inc_dialog;
294 if (prefs_common.work_offline)
295 if (alertpanel(_("Offline warning"),
296 _("You're working offline. Override?"),
297 _("Yes"), _("No"), NULL) != G_ALERTDEFAULT)
300 if (inc_lock_count) return;
302 inc_autocheck_timer_remove();
303 main_window_lock(mainwin);
305 if (prefs_common.inc_local) {
306 new_msgs = inc_spool();
311 list = account_get_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();
320 /* check local folders */
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;
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);
337 /* check POP3 accounts */
338 for (list = account_get_list(); list != NULL; list = list->next) {
340 PrefsAccount *account = list->data;
341 account->session = STYPE_NORMAL;
342 if (account->recv_at_getall) {
343 session = inc_session_new(account);
345 queue_list = g_list_append(queue_list, session);
350 inc_finished(mainwin, new_msgs > 0);
351 main_window_unlock(mainwin);
352 inc_notify_cmd(new_msgs, notify);
353 inc_autocheck_timer_set();
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;
364 session->data = inc_dialog;
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);
372 toolbar_set_sensitive(mainwin);
373 main_window_set_menu_sensitive(mainwin);
375 new_msgs += inc_start(inc_dialog);
377 inc_finished(mainwin, new_msgs > 0);
378 main_window_unlock(mainwin);
379 inc_notify_cmd(new_msgs, notify);
380 inc_autocheck_timer_set();
383 static IncProgressDialog *inc_progress_dialog_create(void)
385 IncProgressDialog *dialog;
386 ProgressDialog *progress;
388 dialog = g_new0(IncProgressDialog, 1);
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)); */
399 progress_dialog_set_value(progress, 0.0);
401 stock_pixmap_gdk(progress->clist, STOCK_PIXMAP_COMPLETE,
403 stock_pixmap_gdk(progress->clist, STOCK_PIXMAP_CONTINUE,
404 ¤txpm, ¤txpmmask);
405 stock_pixmap_gdk(progress->clist, STOCK_PIXMAP_ERROR,
406 &errorxpm, &errorxpmmask);
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);
415 dialog->dialog = progress;
416 dialog->queue_list = NULL;
418 inc_dialog_list = g_list_append(inc_dialog_list, dialog);
423 static void inc_progress_dialog_clear(IncProgressDialog *inc_dialog)
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);
432 static void inc_progress_dialog_destroy(IncProgressDialog *inc_dialog)
434 g_return_if_fail(inc_dialog != NULL);
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);
445 static IncSession *inc_session_new(PrefsAccount *account)
449 g_return_val_if_fail(account != NULL, NULL);
451 if (account->protocol != A_POP3 && account->protocol != A_APOP)
453 if (!account->recv_server || !account->userid)
456 session = g_new0(IncSession, 1);
457 session->pop3_state = pop3_state_new(account);
458 session->pop3_state->data = session;
463 static void inc_session_destroy(IncSession *session)
465 g_return_if_fail(session != NULL);
467 pop3_state_destroy(session->pop3_state);
471 static gint inc_start(IncProgressDialog *inc_dialog)
474 GtkCList *clist = GTK_CLIST(inc_dialog->dialog->clist);
475 Pop3State *pop3_state;
482 FolderItem *processing, *inbox;
484 GSList *msglist, *msglist_element;
486 while (inc_dialog->queue_list != NULL) {
487 session = inc_dialog->queue_list->data;
488 pop3_state = session->pop3_state;
490 inc_progress_dialog_clear(inc_dialog);
492 gtk_clist_moveto(clist, num, -1, 1.0, 0.0);
494 pop3_state->user = g_strdup(pop3_state->ac_prefs->userid);
495 if (pop3_state->ac_prefs->passwd)
497 g_strdup(pop3_state->ac_prefs->passwd);
498 else if (pop3_state->ac_prefs->tmp_pass)
500 g_strdup(pop3_state->ac_prefs->tmp_pass);
504 pass = input_dialog_query_password
505 (pop3_state->ac_prefs->recv_server,
508 if (inc_dialog->mainwin && inc_dialog->show_dialog)
509 manage_window_focus_in
510 (inc_dialog->mainwin->window,
513 pop3_state->ac_prefs->tmp_pass = g_strdup(pass);
514 pop3_state->pass = pass;
516 inc_session_destroy(session);
517 inc_dialog->queue_list = g_list_remove
518 (inc_dialog->queue_list, session);
523 gtk_clist_set_pixmap(clist, num, 0, currentxpm, currentxpmmask);
524 gtk_clist_set_text(clist, num, 2, _("Retrieving"));
526 /* begin POP3 session */
527 inc_state = inc_pop3_session_do(session);
531 if (pop3_state->cur_total_num > 0)
532 msg = g_strdup_printf
533 (_("Done (%d message(s) (%s) received)"),
534 pop3_state->cur_total_num,
535 to_human_readable(pop3_state->cur_total_recv_bytes));
537 msg = g_strdup_printf(_("Done (no new messages)"));
538 gtk_clist_set_pixmap(clist, num, 0, okxpm, okxpmmask);
539 gtk_clist_set_text(clist, num, 2, msg);
542 case INC_CONNECT_ERROR:
543 gtk_clist_set_pixmap(clist, num, 0, errorxpm, errorxpmmask);
544 gtk_clist_set_text(clist, num, 2, _("Connection failed"));
546 case INC_AUTH_FAILED:
547 gtk_clist_set_pixmap(clist, num, 0, errorxpm, errorxpmmask);
548 gtk_clist_set_text(clist, num, 2, _("Auth failed"));
551 gtk_clist_set_pixmap(clist, num, 0, errorxpm, errorxpmmask);
552 gtk_clist_set_text(clist, num, 2, _("Locked"));
557 case INC_SOCKET_ERROR:
558 gtk_clist_set_pixmap(clist, num, 0, errorxpm, errorxpmmask);
559 gtk_clist_set_text(clist, num, 2, _("Error"));
562 gtk_clist_set_pixmap(clist, num, 0, okxpm, okxpmmask);
563 gtk_clist_set_text(clist, num, 2, _("Cancelled"));
569 if (pop3_state->error_val == PS_AUTHFAIL) {
570 if(!prefs_common.no_recv_err_panel) {
571 if((prefs_common.recv_dialog_mode == RECV_DIALOG_ALWAYS) ||
572 ((prefs_common.recv_dialog_mode == RECV_DIALOG_ACTIVE) && focus_window)) {
573 manage_window_focus_in(inc_dialog->dialog->window, NULL, NULL);
576 (_("Authorization for %s on %s failed"),
578 pop3_state->ac_prefs->recv_server);
584 /* CLAWS: perform filtering actions on dropped message */
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);
590 inbox = folder_get_default_inbox();
592 inbox = folder_get_default_inbox();
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);
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(global_processing && pop3_state->ac_prefs->filter_on_recv) {
604 filter_message_by_msginfo_with_inbox(global_processing, msginfo,
607 folder_item_move_msg(inbox, msginfo);
609 procmsg_msginfo_free(msginfo);
611 g_slist_free(msglist);
614 new_msgs += pop3_state->cur_total_num;
616 if (!prefs_common.scan_all_after_inc) {
617 folder_update_items_when_required
618 (!prefs_common.open_inbox_on_inc);
621 if (pop3_state->error_val == PS_AUTHFAIL &&
622 pop3_state->ac_prefs->tmp_pass) {
623 g_free(pop3_state->ac_prefs->tmp_pass);
624 pop3_state->ac_prefs->tmp_pass = NULL;
627 pop3_write_uidl_list(pop3_state);
629 if (inc_state != INC_SUCCESS && inc_state != INC_CANCEL) {
631 if (inc_state == INC_ERROR ||
632 inc_state == INC_NO_SPACE ||
633 inc_state == INC_IO_ERROR ||
634 inc_state == INC_SOCKET_ERROR) {
635 inc_put_error(inc_state);
640 inc_session_destroy(session);
641 inc_dialog->queue_list =
642 g_list_remove(inc_dialog->queue_list, session);
648 fin_msg = g_strdup_printf(_("Finished (%d new message(s))"),
651 fin_msg = g_strdup_printf(_("Finished (no new messages)"));
653 progress_dialog_set_label(inc_dialog->dialog, fin_msg);
655 if (error_num && !prefs_common.no_recv_err_panel) {
656 if (inc_dialog->show_dialog)
657 manage_window_focus_in(inc_dialog->dialog->window,
659 alertpanel_error(_("Some errors occurred while getting mail."));
660 if (inc_dialog->show_dialog)
661 manage_window_focus_out(inc_dialog->dialog->window,
665 while (inc_dialog->queue_list != NULL) {
666 session = inc_dialog->queue_list->data;
667 inc_session_destroy(session);
668 inc_dialog->queue_list =
669 g_list_remove(inc_dialog->queue_list, session);
672 if (prefs_common.close_recv_dialog)
673 inc_progress_dialog_destroy(inc_dialog);
675 gtk_window_set_title(GTK_WINDOW(inc_dialog->dialog->window),
677 gtk_label_set_text(GTK_LABEL(GTK_BIN(inc_dialog->dialog->cancel_btn)->child),
686 static IncState inc_pop3_session_do(IncSession *session)
688 Pop3State *pop3_state = session->pop3_state;
689 IncProgressDialog *inc_dialog = (IncProgressDialog *)session->data;
696 static AtmHandler handlers[] = {
699 pop3_stls_send , pop3_stls_recv,
701 pop3_getauth_user_send , pop3_getauth_user_recv,
702 pop3_getauth_pass_send , pop3_getauth_pass_recv,
703 pop3_getauth_apop_send , pop3_getauth_apop_recv,
704 pop3_getrange_stat_send , pop3_getrange_stat_recv,
705 pop3_getrange_last_send , pop3_getrange_last_recv,
706 pop3_getrange_uidl_send , pop3_getrange_uidl_recv,
707 pop3_getsize_list_send , pop3_getsize_list_recv,
708 pop3_top_send , pop3_top_recv,
709 pop3_retr_send , pop3_retr_recv,
710 pop3_delete_send , pop3_delete_recv,
711 pop3_logout_send , pop3_logout_recv
714 debug_print("getting new messages of account %s...\n",
715 pop3_state->ac_prefs->account_name);
717 pop3_state->ac_prefs->last_pop_login_time = time(NULL);
718 atm = automaton_create(N_POP3_PHASE);
721 atm->data = pop3_state;
723 buf = g_strdup_printf(_("%s: Retrieving new messages"),
724 pop3_state->ac_prefs->recv_server);
725 gtk_window_set_title(GTK_WINDOW(inc_dialog->dialog->window), buf);
728 for (i = POP3_GREETING_RECV; i < N_POP3_PHASE; i++)
729 atm->state[i].handler = handlers[i];
730 atm->state[POP3_GREETING_RECV].condition = GDK_INPUT_READ;
731 for (i = POP3_GREETING_RECV + 1; i < N_POP3_PHASE; ) {
732 atm->state[i++].condition = GDK_INPUT_WRITE;
733 atm->state[i++].condition = GDK_INPUT_READ;
736 atm->terminate = (AtmHandler)pop3_automaton_terminate;
737 atm->ui_func = (AtmUIFunc)inc_progress_update;
739 atm->num = POP3_GREETING_RECV;
741 server = pop3_state->ac_prefs->recv_server;
743 port = pop3_state->ac_prefs->set_popport ?
744 pop3_state->ac_prefs->popport :
745 pop3_state->ac_prefs->ssl_pop == SSL_TUNNEL ? 995 : 110;
747 port = pop3_state->ac_prefs->set_popport ?
748 pop3_state->ac_prefs->popport : 110;
751 buf = g_strdup_printf(_("Connecting to POP3 server: %s ..."), server);
752 log_message("%s\n", buf);
753 progress_dialog_set_label(inc_dialog->dialog, buf);
758 if ((sockinfo = sock_connect(server, port)) == NULL) {
759 log_warning(_("Can't connect to POP3 server: %s:%d\n"),
761 if(!prefs_common.no_recv_err_panel) {
762 if((prefs_common.recv_dialog_mode == RECV_DIALOG_ALWAYS) ||
763 ((prefs_common.recv_dialog_mode == RECV_DIALOG_ACTIVE) && focus_window)) {
764 manage_window_focus_in(inc_dialog->dialog->window, NULL, NULL);
766 alertpanel_error(_("Can't connect to POP3 server: %s:%d"),
768 manage_window_focus_out(inc_dialog->dialog->window, NULL, NULL);
770 pop3_automaton_terminate(NULL, atm);
771 automaton_destroy(atm);
772 session->inc_state = INC_CONNECT_ERROR;
773 return INC_CONNECT_ERROR;
777 if (pop3_state->ac_prefs->ssl_pop == SSL_TUNNEL &&
778 !ssl_init_socket(sockinfo)) {
779 pop3_automaton_terminate(sockinfo, atm);
780 automaton_destroy(atm);
781 session->inc_state = INC_CONNECT_ERROR;
782 return INC_CONNECT_ERROR;
786 /* :WK: Hmmm, with the later sock_gdk_input, we have 2 references
787 * to the sock structure - implement a reference counter?? */
788 pop3_state->sockinfo = sockinfo;
789 atm->help_sock = sockinfo;
791 log_verbosity_set(TRUE);
792 /* oha: this messes up inc_progress update:
793 disabling this would avoid the label "Retrieve Header"
794 being overwritten by "Retrieve Message"
795 Setting inc_pop3_recv_func is not necessary
796 since atm already handles the progress dialog ui
799 recv_set_ui_func(inc_pop3_recv_func, session);
801 atm->tag = sock_gdk_input_add(sockinfo,
802 atm->state[atm->num].condition,
803 automaton_input_cb, atm);
805 while (!atm->terminated && !atm->cancelled)
806 gtk_main_iteration();
808 if (!atm->terminated)
809 pop3_automaton_terminate(sockinfo, atm);
811 log_verbosity_set(FALSE);
813 recv_set_ui_func(NULL, NULL);
815 automaton_destroy(atm);
817 if (session->inc_state != INC_SUCCESS)
818 return session->inc_state;
820 switch (pop3_state->error_val) {
822 session->inc_state = INC_SUCCESS;
825 session->inc_state = INC_AUTH_FAILED;
828 session->inc_state = INC_IO_ERROR;
831 session->inc_state = INC_SOCKET_ERROR;
834 session->inc_state = INC_LOCKED;
837 session->inc_state = INC_ERROR;
841 return session->inc_state;
844 static gint pop3_automaton_terminate(SockInfo *source, Automaton *atm)
846 if (atm->terminated) return 0;
849 gdk_input_remove(atm->tag);
852 if (atm->timeout_tag > 0) {
853 gtk_timeout_remove(atm->timeout_tag);
854 atm->timeout_tag = 0;
859 atm->terminated = TRUE;
864 static gboolean inc_pop3_recv_func(SockInfo *sock, gint count, gint read_bytes,
867 gchar buf[MSGBUFSIZE];
868 IncSession *session = (IncSession *)data;
869 Pop3State *state = session->pop3_state;
870 IncProgressDialog *inc_dialog = (IncProgressDialog *)session->data;
871 ProgressDialog *dialog = inc_dialog->dialog;
875 cur_total = state->cur_total_bytes + read_bytes;
876 if (cur_total > state->total_bytes)
877 cur_total = state->total_bytes;
879 Xstrdup_a(total_size, to_human_readable(state->total_bytes),
881 g_snprintf(buf, sizeof(buf),
882 _("Retrieving message (%d / %d) (%s / %s)"),
883 state->cur_msg, state->count,
884 to_human_readable(cur_total), total_size);
885 progress_dialog_set_label(dialog, buf);
887 progress_dialog_set_percentage
888 (dialog, (gfloat)cur_total / (gfloat)state->total_bytes);
889 if (inc_dialog->mainwin)
890 gtk_progress_bar_update
891 (GTK_PROGRESS_BAR(inc_dialog->mainwin->progressbar),
892 (gfloat)cur_total / (gfloat)state->total_bytes);
895 if (session->inc_state == INC_CANCEL)
901 void inc_progress_update(Pop3State *state, Pop3Phase phase)
903 gchar buf[MSGBUFSIZE];
904 IncSession *session = (IncSession *)state->data;
905 IncProgressDialog *inc_dialog = (IncProgressDialog *)session->data;
906 ProgressDialog *dialog = inc_dialog->dialog;
910 case POP3_GREETING_RECV:
912 case POP3_GETAUTH_USER_SEND:
913 case POP3_GETAUTH_PASS_SEND:
914 case POP3_GETAUTH_APOP_SEND:
915 progress_dialog_set_label(dialog, _("Authenticating..."));
917 case POP3_GETRANGE_STAT_SEND:
918 progress_dialog_set_label
919 (dialog, _("Getting the number of new messages (STAT)..."));
921 case POP3_GETRANGE_LAST_SEND:
922 progress_dialog_set_label
923 (dialog, _("Getting the number of new messages (LAST)..."));
925 case POP3_GETRANGE_UIDL_SEND:
926 progress_dialog_set_label
927 (dialog, _("Getting the number of new messages (UIDL)..."));
929 case POP3_GETSIZE_LIST_SEND:
930 progress_dialog_set_label
931 (dialog, _("Getting the size of messages (LIST)..."));
934 g_snprintf(buf, sizeof(buf),
935 _("Retrieving header (%d / %d)"),
936 state->cur_msg, state->count);
937 progress_dialog_set_label (dialog, buf);
938 progress_dialog_set_percentage
940 (gfloat)(state->cur_msg) /
941 (gfloat)(state->count));
942 if (inc_dialog->mainwin)
943 gtk_progress_bar_update
944 (GTK_PROGRESS_BAR(inc_dialog->mainwin->progressbar),
945 (gfloat)(state->cur_msg) /
946 (gfloat)(state->count));
949 Xstrdup_a(total_size, to_human_readable(state->total_bytes), return);
950 g_snprintf(buf, sizeof(buf),
951 _("Retrieving message (%d / %d) (%s / %s)"),
952 state->cur_msg, state->count,
953 to_human_readable(state->cur_total_bytes),
955 progress_dialog_set_label(dialog, buf);
956 progress_dialog_set_percentage
958 (gfloat)(state->cur_total_bytes) /
959 (gfloat)(state->total_bytes));
960 if (inc_dialog->mainwin)
961 gtk_progress_bar_update
962 (GTK_PROGRESS_BAR(inc_dialog->mainwin->progressbar),
963 (gfloat)(state->cur_total_bytes) /
964 (gfloat)(state->total_bytes));
966 case POP3_DELETE_SEND:
967 if (state->msg[state->cur_msg].recv_time < state->current_time) {
968 g_snprintf(buf, sizeof(buf), _("Deleting message %d"),
970 progress_dialog_set_label(dialog, buf);
973 case POP3_LOGOUT_SEND:
974 progress_dialog_set_label(dialog, _("Quitting"));
981 gint inc_drop_message(const gchar *file, Pop3State *state)
984 FolderItem *dropfolder;
987 /* CLAWS: get default inbox (perhaps per account) */
988 if (state->ac_prefs->inbox) {
989 /* CLAWS: get destination folder / mailbox */
990 inbox = folder_find_item_from_identifier
991 (state->ac_prefs->inbox);
993 inbox = folder_get_default_inbox();
995 inbox = folder_get_default_inbox();
1001 /* CLAWS: claws uses a global .processing folder for the filtering. */
1002 dropfolder = folder_get_default_processing();
1004 /* add msg file to drop folder */
1005 if ((msgnum = folder_item_add_msg(dropfolder, file, TRUE)) < 0) {
1013 static void inc_put_error(IncState istate)
1017 if (!prefs_common.no_recv_err_panel)
1019 (_("Error occurred while processing mail."));
1022 alertpanel_error(_("No disk space left."));
1025 alertpanel_error(_("Can't write file."));
1027 case INC_SOCKET_ERROR:
1028 alertpanel_error(_("Socket error."));
1031 if (!prefs_common.no_recv_err_panel)
1032 alertpanel_error(_("Mailbox is locked."));
1039 static void inc_cancel(IncProgressDialog *dialog)
1041 IncSession *session;
1044 g_return_if_fail(dialog != NULL);
1046 if (dialog->queue_list == NULL) {
1047 inc_progress_dialog_destroy(dialog);
1051 session = dialog->queue_list->data;
1052 sockinfo = session->pop3_state->sockinfo;
1054 if (!sockinfo || session->atm->terminated == TRUE) return;
1056 session->pop3_state->cancelled = TRUE;
1057 session->inc_state = INC_CANCEL;
1058 session->atm->cancelled = TRUE;
1060 log_message(_("Incorporation cancelled\n"));
1063 gboolean inc_is_active(void)
1065 return (inc_dialog_list != NULL);
1068 void inc_cancel_all(void)
1072 for (cur = inc_dialog_list; cur != NULL; cur = cur->next)
1073 inc_cancel((IncProgressDialog *)cur->data);
1076 static void inc_cancel_cb(GtkWidget *widget, gpointer data)
1078 inc_cancel((IncProgressDialog *)data);
1081 static gint inc_dialog_delete_cb(GtkWidget *widget, GdkEventAny *event,
1084 IncProgressDialog *dialog = (IncProgressDialog *)data;
1086 if (dialog->queue_list == NULL)
1087 inc_progress_dialog_destroy(dialog);
1092 static gint inc_spool(void)
1094 gchar *mbox, *logname;
1097 logname = g_get_user_name();
1098 mbox = g_strconcat(prefs_common.spool_path
1099 ? prefs_common.spool_path : DEFAULT_SPOOL_PATH,
1100 G_DIR_SEPARATOR_S, logname, NULL);
1101 msgs = get_spool(folder_get_default_inbox(), mbox);
1107 static void inc_spool_account(PrefsAccount *account)
1111 if (account->inbox) {
1112 inbox = folder_find_item_from_path(account->inbox);
1114 inbox = folder_get_default_inbox();
1116 inbox = folder_get_default_inbox();
1118 get_spool(inbox, account->local_mbox);
1121 static void inc_all_spool(void)
1125 list = account_get_list();
1128 for (; list != NULL; list = list->next) {
1129 PrefsAccount *account = list->data;
1131 if ((account->protocol == A_LOCAL) &&
1132 (account->recv_at_getall))
1133 inc_spool_account(account);
1137 static gint get_spool(FolderItem *dest, const gchar *mbox)
1141 gchar tmp_mbox[MAXPATHLEN + 1];
1143 g_return_val_if_fail(dest != NULL, -1);
1144 g_return_val_if_fail(mbox != NULL, -1);
1146 if (!is_file_exist(mbox) || (size = get_file_size(mbox)) == 0) {
1147 debug_print("no messages in local mailbox.\n");
1149 } else if (size < 0)
1152 if ((lockfd = lock_mbox(mbox, LOCK_FLOCK)) < 0)
1155 g_snprintf(tmp_mbox, sizeof(tmp_mbox), "%s%ctmpmbox.%08x",
1156 get_tmp_dir(), G_DIR_SEPARATOR, (gint)mbox);
1158 if (copy_mbox(mbox, tmp_mbox) < 0) {
1159 unlock_mbox(mbox, lockfd, LOCK_FLOCK);
1163 debug_print("Getting new messages from %s into %s...\n",
1166 msgs = proc_mbox(dest, tmp_mbox);
1169 if (msgs >= 0) empty_mbox(mbox);
1170 unlock_mbox(mbox, lockfd, LOCK_FLOCK);
1172 if (!prefs_common.scan_all_after_inc) {
1173 folder_update_items_when_required
1174 (!prefs_common.open_inbox_on_inc);
1175 } else if (!prefs_common.scan_all_after_inc) {
1176 folder_update_item(dest, TRUE);
1187 void inc_unlock(void)
1189 if (inc_lock_count > 0)
1193 static guint autocheck_timer = 0;
1194 static gpointer autocheck_data = NULL;
1196 static void inc_notify_cmd(gint new_msgs, gboolean notify)
1201 if (!(new_msgs && notify && prefs_common.newmail_notify_cmd &&
1202 *prefs_common.newmail_notify_cmd))
1204 if ((buf = strchr(prefs_common.newmail_notify_cmd, '%')) &&
1205 buf[1] == 'd' && !strchr(&buf[1], '%'))
1206 buf = g_strdup_printf(prefs_common.newmail_notify_cmd,
1209 buf = g_strdup(prefs_common.newmail_notify_cmd);
1211 execute_command_line(buf, TRUE);
1216 void inc_autocheck_timer_init(MainWindow *mainwin)
1218 autocheck_data = mainwin;
1219 inc_autocheck_timer_set();
1222 static void inc_autocheck_timer_set_interval(guint interval)
1224 inc_autocheck_timer_remove();
1225 /* last test is to avoid re-enabling auto_check after modifying
1226 the common preferences */
1227 if (prefs_common.autochk_newmail && autocheck_data
1228 && prefs_common.work_offline == FALSE) {
1229 autocheck_timer = gtk_timeout_add
1230 (interval, inc_autocheck_func, autocheck_data);
1231 debug_print("added timer = %d\n", autocheck_timer);
1235 void inc_autocheck_timer_set(void)
1237 inc_autocheck_timer_set_interval(prefs_common.autochk_itv * 60000);
1240 void inc_autocheck_timer_remove(void)
1242 if (autocheck_timer) {
1243 debug_print("removed timer = %d\n", autocheck_timer);
1244 gtk_timeout_remove(autocheck_timer);
1245 autocheck_timer = 0;
1249 static gint inc_autocheck_func(gpointer data)
1251 MainWindow *mainwin = (MainWindow *)data;
1253 if (inc_lock_count) {
1254 debug_print("autocheck is locked.\n");
1255 inc_autocheck_timer_set_interval(1000);
1259 inc_all_account_mail(mainwin, prefs_common.newmail_notify_auto);