2007-08-27 [colin] 2.10.0cvs179
[claws.git] / src / inc.c
blob4266e2d7937e6800cb0c74c275d2a79d2d51bff2
1 /*
2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2007 Hiroyuki Yamamoto and the Claws Mail team
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
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, see <http://www.gnu.org/licenses/>.
20 #ifdef HAVE_CONFIG_H
21 # include "config.h"
22 #endif
24 #include "defs.h"
26 #include <glib.h>
27 #include <glib/gi18n.h>
28 #include <gtk/gtkmain.h>
29 #include <gtk/gtkwindow.h>
30 #include <gtk/gtksignal.h>
31 #include <gtk/gtkprogressbar.h>
32 #include <stdio.h>
33 #include <unistd.h>
34 #include <string.h>
36 #include "main.h"
37 #include "inc.h"
38 #include "mainwindow.h"
39 #include "folderview.h"
40 #include "summaryview.h"
41 #include "prefs_common.h"
42 #include "prefs_account.h"
43 #include "account.h"
44 #include "procmsg.h"
45 #include "socket.h"
46 #include "ssl.h"
47 #include "pop.h"
48 #include "recv.h"
49 #include "mbox.h"
50 #include "utils.h"
51 #include "gtkutils.h"
52 #include "statusbar.h"
53 #include "msgcache.h"
54 #include "manage_window.h"
55 #include "stock_pixmap.h"
56 #include "progressdialog.h"
57 #include "inputdialog.h"
58 #include "alertpanel.h"
59 #include "folder.h"
60 #include "filtering.h"
61 #include "log.h"
62 #include "hooks.h"
64 #ifdef MAEMO
65 #include <hildon-widgets/hildon-banner.h>
66 #include <hildon-widgets/hildon-system-sound.h>
67 #include <libosso.h>
69 #ifdef CONIC
70 #include <conicconnection.h>
71 #include <conicconnectionevent.h>
73 static ConIcConnection *maemo_connection = NULL;
74 static gboolean maemo_warned_offline = FALSE;
75 #endif
76 #endif
78 static GList *inc_dialog_list = NULL;
80 static guint inc_lock_count = 0;
82 static GdkPixbuf *currentpix;
83 static GdkPixbuf *errorpix;
84 static GdkPixbuf *okpix;
86 #define MSGBUFSIZE 8192
88 static void inc_finished (MainWindow *mainwin,
89 gboolean new_messages,
90 gboolean autocheck);
91 static gint inc_account_mail_real (MainWindow *mainwin,
92 PrefsAccount *account);
94 static IncProgressDialog *inc_progress_dialog_create
95 (gboolean autocheck);
96 static void inc_progress_dialog_set_list(IncProgressDialog *inc_dialog);
97 static void inc_progress_dialog_destroy (IncProgressDialog *inc_dialog);
99 static IncSession *inc_session_new (PrefsAccount *account);
100 static void inc_session_destroy (IncSession *session);
101 static gint inc_start (IncProgressDialog *inc_dialog);
102 static IncState inc_pop3_session_do (IncSession *session);
104 static void inc_progress_dialog_update (IncProgressDialog *inc_dialog,
105 IncSession *inc_session);
107 static void inc_progress_dialog_set_label
108 (IncProgressDialog *inc_dialog,
109 IncSession *inc_session);
110 static void inc_progress_dialog_set_progress
111 (IncProgressDialog *inc_dialog,
112 IncSession *inc_session);
114 static void inc_progress_dialog_update_periodic
115 (IncProgressDialog *inc_dialog,
116 IncSession *inc_session);
118 static gint inc_recv_data_progressive (Session *session,
119 guint cur_len,
120 guint total_len,
121 gpointer data);
122 static gint inc_recv_data_finished (Session *session,
123 guint len,
124 gpointer data);
125 static gint inc_recv_message (Session *session,
126 const gchar *msg,
127 gpointer data);
128 static gint inc_drop_message (Pop3Session *session,
129 const gchar *file);
131 static void inc_put_error (IncState istate,
132 Pop3Session *session);
134 static void inc_cancel_cb (GtkWidget *widget,
135 gpointer data);
136 static gint inc_dialog_delete_cb (GtkWidget *widget,
137 GdkEventAny *event,
138 gpointer data);
140 static gint get_spool (FolderItem *dest,
141 const gchar *mbox,
142 PrefsAccount *account);
144 static gint inc_spool_account(PrefsAccount *account);
145 static gint inc_all_spool(void);
146 static void inc_autocheck_timer_set_interval (guint interval);
147 static gint inc_autocheck_func (gpointer data);
149 static void inc_notify_cmd (gint new_msgs,
150 gboolean notify);
153 * inc_finished:
154 * @mainwin: Main window.
155 * @new_messages: TRUE if some messages have been received.
157 * Update the folder view and the summary view after receiving
158 * messages. If @new_messages is FALSE, this function avoids unneeded
159 * updating.
161 static void inc_finished(MainWindow *mainwin, gboolean new_messages, gboolean autocheck)
163 if (prefs_common.scan_all_after_inc)
164 folderview_check_new(NULL);
166 if (!autocheck && prefs_common.open_inbox_on_inc) {
167 FolderItem *item = NULL;
169 if (cur_account && cur_account->inbox)
170 item = folder_find_item_from_identifier(cur_account->inbox);
171 if (item == NULL && cur_account->folder)
172 item = cur_account->folder->inbox;
173 if (item == NULL)
174 item = folder_get_default_inbox();
176 folderview_unselect(mainwin->folderview);
177 folderview_select(mainwin->folderview, item);
181 void inc_mail(MainWindow *mainwin, gboolean notify)
183 gint new_msgs = 0;
184 gint account_new_msgs = 0;
186 if (inc_lock_count) return;
188 if (prefs_common.work_offline &&
189 !inc_offline_should_override(TRUE,
190 _("Claws Mail needs network access in order "
191 "to get mails.")))
192 return;
194 inc_lock();
195 inc_autocheck_timer_remove();
196 main_window_lock(mainwin);
198 if (prefs_common.use_extinc && prefs_common.extinc_cmd) {
199 /* external incorporating program */
200 if (execute_command_line(prefs_common.extinc_cmd, FALSE) < 0) {
201 main_window_unlock(mainwin);
202 inc_autocheck_timer_set();
203 return;
205 } else {
206 account_new_msgs = inc_account_mail_real(mainwin, cur_account);
207 if (account_new_msgs > 0)
208 new_msgs += account_new_msgs;
211 inc_finished(mainwin, new_msgs > 0, FALSE);
212 main_window_unlock(mainwin);
213 inc_notify_cmd(new_msgs, notify);
214 inc_autocheck_timer_set();
215 inc_unlock();
218 void inc_pop_before_smtp(PrefsAccount *acc)
220 IncProgressDialog *inc_dialog;
221 IncSession *session;
222 MainWindow *mainwin;
224 mainwin = mainwindow_get_mainwindow();
226 session = inc_session_new(acc);
227 if (!session) return;
228 POP3_SESSION(session->session)->pop_before_smtp = TRUE;
230 inc_dialog = inc_progress_dialog_create(FALSE);
231 inc_dialog->queue_list = g_list_append(inc_dialog->queue_list,
232 session);
233 /* FIXME: assumes to attach to first main window */
234 inc_dialog->mainwin = mainwin;
235 inc_progress_dialog_set_list(inc_dialog);
237 if (mainwin) {
238 toolbar_main_set_sensitive(mainwin);
239 main_window_set_menu_sensitive(mainwin);
242 inc_start(inc_dialog);
245 static gint inc_account_mail_real(MainWindow *mainwin, PrefsAccount *account)
247 IncProgressDialog *inc_dialog;
248 IncSession *session;
250 switch (account->protocol) {
251 case A_IMAP4:
252 case A_NNTP:
253 /* Melvin: bug [14]
254 * FIXME: it should return foldeview_check_new() value.
255 * TODO: do it when bug [19] is fixed (IMAP folder sets
256 * an incorrect new message count)
258 folderview_check_new(FOLDER(account->folder));
259 return 0;
260 case A_POP3:
261 case A_APOP:
262 session = inc_session_new(account);
263 if (!session) return 0;
265 inc_dialog = inc_progress_dialog_create(FALSE);
266 inc_dialog->queue_list = g_list_append(inc_dialog->queue_list,
267 session);
268 inc_dialog->mainwin = mainwin;
269 inc_progress_dialog_set_list(inc_dialog);
271 if (mainwin) {
272 toolbar_main_set_sensitive(mainwin);
273 main_window_set_menu_sensitive(mainwin);
276 return inc_start(inc_dialog);
278 case A_LOCAL:
279 return inc_spool_account(account);
281 default:
282 break;
284 return 0;
287 gint inc_account_mail(MainWindow *mainwin, PrefsAccount *account)
289 gint new_msgs;
291 if (inc_lock_count) return 0;
293 if (prefs_common.work_offline &&
294 !inc_offline_should_override(TRUE,
295 _("Claws Mail needs network access in order "
296 "to get mails.")))
297 return 0;
299 inc_autocheck_timer_remove();
300 main_window_lock(mainwin);
302 new_msgs = inc_account_mail_real(mainwin, account);
304 inc_finished(mainwin, new_msgs > 0, FALSE);
305 main_window_unlock(mainwin);
306 inc_autocheck_timer_set();
308 return new_msgs;
311 void inc_all_account_mail(MainWindow *mainwin, gboolean autocheck,
312 gboolean notify)
314 GList *list, *queue_list = NULL;
315 IncProgressDialog *inc_dialog;
316 gint new_msgs = 0;
317 gint account_new_msgs = 0;
319 if (prefs_common.work_offline &&
320 !inc_offline_should_override( (autocheck == FALSE),
321 _("Claws Mail needs network access in order "
322 "to get mails.")))
323 return;
325 if (inc_lock_count) return;
327 inc_autocheck_timer_remove();
328 main_window_lock(mainwin);
330 list = account_get_list();
331 if (!list) {
332 inc_finished(mainwin, new_msgs > 0, autocheck);
333 main_window_unlock(mainwin);
334 inc_notify_cmd(new_msgs, notify);
335 inc_autocheck_timer_set();
336 return;
339 /* check local folders */
340 account_new_msgs = inc_all_spool();
341 if (account_new_msgs > 0)
342 new_msgs += account_new_msgs;
344 /* check IMAP4 / News folders */
345 for (list = account_get_list(); list != NULL; list = list->next) {
346 PrefsAccount *account = list->data;
347 if ((account->protocol == A_IMAP4 ||
348 account->protocol == A_NNTP) && account->recv_at_getall) {
349 new_msgs += folderview_check_new(FOLDER(account->folder));
353 /* check POP3 accounts */
354 for (list = account_get_list(); list != NULL; list = list->next) {
355 IncSession *session;
356 PrefsAccount *account = list->data;
358 if (account->recv_at_getall) {
359 session = inc_session_new(account);
360 if (session)
361 queue_list = g_list_append(queue_list, session);
365 if (queue_list) {
366 inc_dialog = inc_progress_dialog_create(autocheck);
367 inc_dialog->queue_list = queue_list;
368 inc_dialog->mainwin = mainwin;
369 inc_progress_dialog_set_list(inc_dialog);
371 toolbar_main_set_sensitive(mainwin);
372 main_window_set_menu_sensitive(mainwin);
373 new_msgs += inc_start(inc_dialog);
376 inc_finished(mainwin, new_msgs > 0, autocheck);
377 main_window_unlock(mainwin);
378 inc_notify_cmd(new_msgs, notify);
379 inc_autocheck_timer_set();
382 static void inc_progress_dialog_size_allocate_cb(GtkWidget *widget,
383 GtkAllocation *allocation)
385 g_return_if_fail(allocation != NULL);
387 prefs_common.receivewin_width = allocation->width;
388 prefs_common.receivewin_height = allocation->height;
391 static IncProgressDialog *inc_progress_dialog_create(gboolean autocheck)
393 IncProgressDialog *dialog;
394 ProgressDialog *progress;
395 static GdkGeometry geometry;
397 dialog = g_new0(IncProgressDialog, 1);
399 progress = progress_dialog_create();
400 gtk_window_set_title(GTK_WINDOW(progress->window),
401 _("Retrieving new messages"));
402 g_signal_connect(G_OBJECT(progress->cancel_btn), "clicked",
403 G_CALLBACK(inc_cancel_cb), dialog);
404 g_signal_connect(G_OBJECT(progress->window), "delete_event",
405 G_CALLBACK(inc_dialog_delete_cb), dialog);
406 g_signal_connect(G_OBJECT(progress->window), "size_allocate",
407 G_CALLBACK(inc_progress_dialog_size_allocate_cb), NULL);
408 /* manage_window_set_transient(GTK_WINDOW(progress->window)); */
410 progress_dialog_get_fraction(progress);
412 stock_pixbuf_gdk(progress->treeview, STOCK_PIXMAP_COMPLETE,
413 &okpix);
414 stock_pixbuf_gdk(progress->treeview, STOCK_PIXMAP_CONTINUE,
415 &currentpix);
416 stock_pixbuf_gdk(progress->treeview, STOCK_PIXMAP_ERROR,
417 &errorpix);
419 if (!geometry.min_height) {
420 geometry.min_width = 460;
421 geometry.min_height = 250;
424 gtk_window_set_geometry_hints(GTK_WINDOW(progress->window), NULL, &geometry,
425 GDK_HINT_MIN_SIZE);
426 gtk_widget_set_size_request(progress->window, prefs_common.receivewin_width,
427 prefs_common.receivewin_height);
429 if (prefs_common.recv_dialog_mode == RECV_DIALOG_ALWAYS ||
430 (prefs_common.recv_dialog_mode == RECV_DIALOG_MANUAL &&
431 !autocheck)) {
432 dialog->show_dialog = TRUE;
433 gtk_widget_show_now(progress->window);
436 dialog->dialog = progress;
437 g_get_current_time(&dialog->progress_tv);
438 g_get_current_time(&dialog->folder_tv);
439 dialog->queue_list = NULL;
440 dialog->cur_row = 0;
442 inc_dialog_list = g_list_append(inc_dialog_list, dialog);
444 return dialog;
447 static void inc_progress_dialog_set_list(IncProgressDialog *inc_dialog)
449 GList *list;
451 for (list = inc_dialog->queue_list; list != NULL; list = list->next) {
452 IncSession *session = list->data;
453 Pop3Session *pop3_session = POP3_SESSION(session->session);
455 session->data = inc_dialog;
457 progress_dialog_list_set(inc_dialog->dialog,
458 -1, NULL,
459 pop3_session->ac_prefs->account_name,
460 _("Standby"));
464 static void inc_progress_dialog_clear(IncProgressDialog *inc_dialog)
466 progress_dialog_get_fraction(inc_dialog->dialog);
467 progress_dialog_set_label(inc_dialog->dialog, "");
468 if (inc_dialog->mainwin)
469 main_window_progress_off(inc_dialog->mainwin);
472 static void inc_progress_dialog_destroy(IncProgressDialog *inc_dialog)
474 g_return_if_fail(inc_dialog != NULL);
476 inc_dialog_list = g_list_remove(inc_dialog_list, inc_dialog);
478 if (inc_dialog->mainwin)
479 main_window_progress_off(inc_dialog->mainwin);
480 progress_dialog_destroy(inc_dialog->dialog);
482 g_free(inc_dialog);
485 static IncSession *inc_session_new(PrefsAccount *account)
487 IncSession *session;
489 g_return_val_if_fail(account != NULL, NULL);
491 if (account->protocol != A_POP3)
492 return NULL;
493 if (!account->recv_server || !account->userid)
494 return NULL;
496 session = g_new0(IncSession, 1);
498 session->session = pop3_session_new(account);
499 session->session->data = session;
500 POP3_SESSION(session->session)->drop_message = inc_drop_message;
501 session_set_recv_message_notify(session->session,
502 inc_recv_message, session);
503 session_set_recv_data_progressive_notify(session->session,
504 inc_recv_data_progressive,
505 session);
506 session_set_recv_data_notify(session->session,
507 inc_recv_data_finished, session);
509 return session;
512 static void inc_session_destroy(IncSession *session)
514 g_return_if_fail(session != NULL);
516 session_destroy(session->session);
517 g_free(session);
520 static gint inc_start(IncProgressDialog *inc_dialog)
522 IncSession *session;
523 GList *qlist;
524 Pop3Session *pop3_session;
525 IncState inc_state;
526 gint error_num = 0;
527 gint new_msgs = 0;
528 gchar *msg;
529 gchar *fin_msg;
530 FolderItem *processing, *inbox;
531 GSList *msglist, *msglist_element;
532 gboolean cancelled = FALSE;
534 qlist = inc_dialog->queue_list;
535 while (qlist != NULL) {
536 GList *next = qlist->next;
538 session = qlist->data;
539 pop3_session = POP3_SESSION(session->session);
540 pop3_session->user = g_strdup(pop3_session->ac_prefs->userid);
541 if (pop3_session->ac_prefs->passwd)
542 pop3_session->pass =
543 g_strdup(pop3_session->ac_prefs->passwd);
544 else if (pop3_session->ac_prefs->tmp_pass)
545 pop3_session->pass =
546 g_strdup(pop3_session->ac_prefs->tmp_pass);
547 else {
548 gchar *pass;
550 if (inc_dialog->show_dialog)
551 manage_window_focus_in
552 (inc_dialog->dialog->window,
553 NULL, NULL);
555 pass = input_dialog_query_password
556 (pop3_session->ac_prefs->recv_server,
557 pop3_session->user);
559 if (inc_dialog->show_dialog)
560 manage_window_focus_out
561 (inc_dialog->dialog->window,
562 NULL, NULL);
564 if (pass) {
565 pop3_session->ac_prefs->tmp_pass =
566 g_strdup(pass);
567 pop3_session->pass = pass;
571 qlist = next;
574 #define SET_PIXMAP_AND_TEXT(pix, str) \
576 progress_dialog_list_set(inc_dialog->dialog, \
577 inc_dialog->cur_row, \
578 pix, \
579 NULL, \
580 str); \
583 for (; inc_dialog->queue_list != NULL && !cancelled; inc_dialog->cur_row++) {
584 session = inc_dialog->queue_list->data;
585 pop3_session = POP3_SESSION(session->session);
586 GSList *filtered, *unfiltered;
588 if (pop3_session->pass == NULL) {
589 SET_PIXMAP_AND_TEXT(okpix, _("Cancelled"));
590 inc_session_destroy(session);
591 inc_dialog->queue_list =
592 g_list_remove(inc_dialog->queue_list, session);
593 continue;
596 inc_progress_dialog_clear(inc_dialog);
597 progress_dialog_scroll_to_row(inc_dialog->dialog,
598 inc_dialog->cur_row);
600 SET_PIXMAP_AND_TEXT(currentpix, _("Retrieving"));
602 /* begin POP3 session */
603 inc_state = inc_pop3_session_do(session);
605 switch (inc_state) {
606 case INC_SUCCESS:
607 if (pop3_session->cur_total_num > 0)
608 msg = g_strdup_printf(
609 ngettext("Done (%d message (%s) received)",
610 "Done (%d messages (%s) received)",
611 pop3_session->cur_total_num),
612 pop3_session->cur_total_num,
613 to_human_readable(pop3_session->cur_total_recv_bytes));
614 else
615 msg = g_strdup_printf(_("Done (no new messages)"));
616 SET_PIXMAP_AND_TEXT(okpix, msg);
617 g_free(msg);
618 break;
619 case INC_CONNECT_ERROR:
620 SET_PIXMAP_AND_TEXT(errorpix, _("Connection failed"));
621 break;
622 case INC_AUTH_FAILED:
623 SET_PIXMAP_AND_TEXT(errorpix, _("Auth failed"));
624 break;
625 case INC_LOCKED:
626 SET_PIXMAP_AND_TEXT(errorpix, _("Locked"));
627 break;
628 case INC_ERROR:
629 case INC_NO_SPACE:
630 case INC_IO_ERROR:
631 case INC_SOCKET_ERROR:
632 case INC_EOF:
633 SET_PIXMAP_AND_TEXT(errorpix, _("Error"));
634 break;
635 case INC_TIMEOUT:
636 SET_PIXMAP_AND_TEXT(errorpix, _("Timeout"));
637 break;
638 case INC_CANCEL:
639 SET_PIXMAP_AND_TEXT(okpix, _("Cancelled"));
640 if (!inc_dialog->show_dialog)
641 cancelled = TRUE;
642 break;
643 default:
644 break;
647 if (pop3_session->error_val == PS_AUTHFAIL) {
648 if(!prefs_common.no_recv_err_panel) {
649 if((prefs_common.recv_dialog_mode == RECV_DIALOG_ALWAYS) ||
650 ((prefs_common.recv_dialog_mode == RECV_DIALOG_MANUAL) && focus_window))
651 manage_window_focus_in(inc_dialog->dialog->window, NULL, NULL);
655 /* CLAWS: perform filtering actions on dropped message */
656 /* CLAWS: get default inbox (perhaps per account) */
657 if (pop3_session->ac_prefs->inbox) {
658 /* CLAWS: get destination folder / mailbox */
659 inbox = folder_find_item_from_identifier(pop3_session->ac_prefs->inbox);
660 if (!inbox)
661 inbox = folder_get_default_inbox();
662 } else
663 inbox = folder_get_default_inbox();
665 /* get list of messages in processing */
666 processing = folder_get_default_processing();
667 folder_item_scan(processing);
668 msglist = folder_item_get_msg_list(processing);
670 /* process messages */
671 folder_item_update_freeze();
673 procmsg_msglist_filter(msglist, pop3_session->ac_prefs,
674 &filtered, &unfiltered,
675 pop3_session->ac_prefs->filter_on_recv);
677 filtering_move_and_copy_msgs(msglist);
678 if (unfiltered != NULL)
679 folder_item_move_msgs(inbox, unfiltered);
681 for(msglist_element = msglist; msglist_element != NULL;
682 msglist_element = msglist_element->next) {
683 MsgInfo *msginfo = (MsgInfo *)msglist_element->data;
684 procmsg_msginfo_free(msginfo);
686 folder_item_update_thaw();
688 g_slist_free(msglist);
689 g_slist_free(filtered);
690 g_slist_free(unfiltered);
692 statusbar_pop_all();
694 new_msgs += pop3_session->cur_total_num;
696 if (pop3_session->error_val == PS_AUTHFAIL &&
697 pop3_session->ac_prefs->tmp_pass) {
698 g_free(pop3_session->ac_prefs->tmp_pass);
699 pop3_session->ac_prefs->tmp_pass = NULL;
702 pop3_write_uidl_list(pop3_session);
704 if (inc_state != INC_SUCCESS && inc_state != INC_CANCEL) {
705 error_num++;
706 if (inc_dialog->show_dialog)
707 manage_window_focus_in
708 (inc_dialog->dialog->window,
709 NULL, NULL);
710 inc_put_error(inc_state, pop3_session);
711 if (inc_dialog->show_dialog)
712 manage_window_focus_out
713 (inc_dialog->dialog->window,
714 NULL, NULL);
715 if (inc_state == INC_NO_SPACE ||
716 inc_state == INC_IO_ERROR)
717 break;
719 folder_item_free_cache(processing, TRUE);
721 inc_session_destroy(session);
722 inc_dialog->queue_list =
723 g_list_remove(inc_dialog->queue_list, session);
726 #undef SET_PIXMAP_AND_TEXT
728 if (new_msgs > 0)
729 fin_msg = g_strdup_printf(ngettext("Finished (%d new message)",
730 "Finished (%d new messages)",
731 new_msgs), new_msgs);
732 else
733 fin_msg = g_strdup_printf(_("Finished (no new messages)"));
735 progress_dialog_set_label(inc_dialog->dialog, fin_msg);
737 while (inc_dialog->queue_list != NULL) {
738 session = inc_dialog->queue_list->data;
739 inc_session_destroy(session);
740 inc_dialog->queue_list =
741 g_list_remove(inc_dialog->queue_list, session);
744 if (prefs_common.close_recv_dialog || !inc_dialog->show_dialog)
745 inc_progress_dialog_destroy(inc_dialog);
746 else {
747 gtk_window_set_title(GTK_WINDOW(inc_dialog->dialog->window),
748 fin_msg);
749 gtk_button_set_label(GTK_BUTTON(inc_dialog->dialog->cancel_btn),
750 GTK_STOCK_CLOSE);
753 g_free(fin_msg);
755 return new_msgs;
758 static IncState inc_pop3_session_do(IncSession *session)
760 Pop3Session *pop3_session = POP3_SESSION(session->session);
761 IncProgressDialog *inc_dialog = (IncProgressDialog *)session->data;
762 gchar *server;
763 gushort port;
764 gchar *buf;
766 debug_print("getting new messages of account %s...\n",
767 pop3_session->ac_prefs->account_name);
769 pop3_session->ac_prefs->last_pop_login_time = time(NULL);
771 buf = g_strdup_printf(_("%s: Retrieving new messages"),
772 pop3_session->ac_prefs->recv_server);
773 gtk_window_set_title(GTK_WINDOW(inc_dialog->dialog->window), buf);
774 g_free(buf);
776 server = pop3_session->ac_prefs->recv_server;
777 #if USE_OPENSSL
778 port = pop3_session->ac_prefs->set_popport ?
779 pop3_session->ac_prefs->popport :
780 pop3_session->ac_prefs->ssl_pop == SSL_TUNNEL ? 995 : 110;
781 SESSION(pop3_session)->ssl_type = pop3_session->ac_prefs->ssl_pop;
782 if (pop3_session->ac_prefs->ssl_pop != SSL_NONE)
783 SESSION(pop3_session)->nonblocking =
784 pop3_session->ac_prefs->use_nonblocking_ssl;
785 #else
786 if (pop3_session->ac_prefs->ssl_pop != SSL_NONE) {
787 if (alertpanel_full(_("Insecure connection"),
788 _("This connection is configured to be secured "
789 "using SSL, but SSL is not available in this "
790 "build of Claws Mail. \n\n"
791 "Do you want to continue connecting to this "
792 "server? The communication would not be "
793 "secure."),
794 GTK_STOCK_CANCEL, _("Con_tinue connecting"),
795 NULL, FALSE, NULL, ALERT_WARNING,
796 G_ALERTDEFAULT) != G_ALERTALTERNATE)
797 return INC_CANCEL;
799 port = pop3_session->ac_prefs->set_popport ?
800 pop3_session->ac_prefs->popport : 110;
801 #endif
803 buf = g_strdup_printf(_("Connecting to POP3 server: %s..."), server);
804 statusbar_print_all("%s", buf);
805 log_message(LOG_PROTOCOL, "%s\n", buf);
807 progress_dialog_set_label(inc_dialog->dialog, buf);
808 GTK_EVENTS_FLUSH();
809 g_free(buf);
811 session_set_timeout(SESSION(pop3_session),
812 prefs_common.io_timeout_secs * 1000);
814 if (session_connect(SESSION(pop3_session), server, port) < 0) {
815 if(!prefs_common.no_recv_err_panel) {
816 if((prefs_common.recv_dialog_mode == RECV_DIALOG_ALWAYS) ||
817 ((prefs_common.recv_dialog_mode == RECV_DIALOG_MANUAL) && focus_window)) {
818 manage_window_focus_in(inc_dialog->dialog->window, NULL, NULL);
820 alertpanel_error(_("Can't connect to POP3 server: %s:%d"),
821 server, port);
822 manage_window_focus_out(inc_dialog->dialog->window, NULL, NULL);
823 } else {
824 log_error(LOG_PROTOCOL, _("Can't connect to POP3 server: %s:%d\n"),
825 server, port);
827 session->inc_state = INC_CONNECT_ERROR;
828 statusbar_pop_all();
829 return INC_CONNECT_ERROR;
832 while (session_is_connected(SESSION(pop3_session)) &&
833 session->inc_state != INC_CANCEL)
834 gtk_main_iteration();
836 if (session->inc_state == INC_SUCCESS) {
837 switch (pop3_session->error_val) {
838 case PS_SUCCESS:
839 switch (SESSION(pop3_session)->state) {
840 case SESSION_ERROR:
841 if (pop3_session->state == POP3_READY)
842 session->inc_state = INC_CONNECT_ERROR;
843 else
844 session->inc_state = INC_ERROR;
845 break;
846 case SESSION_EOF:
847 session->inc_state = INC_EOF;
848 break;
849 case SESSION_TIMEOUT:
850 session->inc_state = INC_TIMEOUT;
851 break;
852 default:
853 session->inc_state = INC_SUCCESS;
854 break;
856 break;
857 case PS_AUTHFAIL:
858 session->inc_state = INC_AUTH_FAILED;
859 break;
860 case PS_IOERR:
861 session->inc_state = INC_IO_ERROR;
862 break;
863 case PS_SOCKET:
864 session->inc_state = INC_SOCKET_ERROR;
865 break;
866 case PS_LOCKBUSY:
867 session->inc_state = INC_LOCKED;
868 break;
869 default:
870 session->inc_state = INC_ERROR;
871 break;
875 session_disconnect(SESSION(pop3_session));
876 statusbar_pop_all();
878 return session->inc_state;
881 static void inc_progress_dialog_update(IncProgressDialog *inc_dialog,
882 IncSession *inc_session)
884 inc_progress_dialog_set_label(inc_dialog, inc_session);
885 inc_progress_dialog_set_progress(inc_dialog, inc_session);
888 static void inc_progress_dialog_set_label(IncProgressDialog *inc_dialog,
889 IncSession *inc_session)
891 ProgressDialog *dialog = inc_dialog->dialog;
892 Pop3Session *session;
894 g_return_if_fail(inc_session != NULL);
896 session = POP3_SESSION(inc_session->session);
898 switch (session->state) {
899 case POP3_GREETING:
900 break;
901 case POP3_GETAUTH_USER:
902 case POP3_GETAUTH_PASS:
903 case POP3_GETAUTH_APOP:
904 progress_dialog_set_label(dialog, _("Authenticating..."));
905 statusbar_pop_all();
906 statusbar_print_all(_("Retrieving messages from %s (%s) ..."),
907 SESSION(session)->server,
908 session->ac_prefs->account_name);
909 break;
910 case POP3_GETRANGE_STAT:
911 progress_dialog_set_label
912 (dialog, _("Getting the number of new messages (STAT)..."));
913 break;
914 case POP3_GETRANGE_LAST:
915 progress_dialog_set_label
916 (dialog, _("Getting the number of new messages (LAST)..."));
917 break;
918 case POP3_GETRANGE_UIDL:
919 progress_dialog_set_label
920 (dialog, _("Getting the number of new messages (UIDL)..."));
921 break;
922 case POP3_GETSIZE_LIST:
923 progress_dialog_set_label
924 (dialog, _("Getting the size of messages (LIST)..."));
925 break;
926 case POP3_RETR:
927 case POP3_RETR_RECV:
928 case POP3_DELETE:
929 break;
930 case POP3_LOGOUT:
931 progress_dialog_set_label(dialog, _("Quitting"));
932 break;
933 default:
934 break;
938 static void inc_progress_dialog_set_progress(IncProgressDialog *inc_dialog,
939 IncSession *inc_session)
941 gchar buf[MSGBUFSIZE];
942 Pop3Session *pop3_session = POP3_SESSION(inc_session->session);
943 gchar *total_size_str;
944 gint cur_total;
945 gint total;
947 if (!pop3_session->new_msg_exist) return;
949 cur_total = inc_session->cur_total_bytes;
950 total = pop3_session->total_bytes;
951 if (pop3_session->state == POP3_RETR ||
952 pop3_session->state == POP3_RETR_RECV ||
953 pop3_session->state == POP3_DELETE) {
954 Xstrdup_a(total_size_str, to_human_readable(total), return);
955 g_snprintf(buf, sizeof(buf),
956 _("Retrieving message (%d / %d) (%s / %s)"),
957 pop3_session->cur_msg, pop3_session->count,
958 to_human_readable(cur_total), total_size_str);
959 progress_dialog_set_label(inc_dialog->dialog, buf);
962 progress_dialog_set_fraction
963 (inc_dialog->dialog, (total == 0) ? 0: (gfloat)cur_total / (gfloat)total);
965 g_snprintf(buf, sizeof(buf), "%d / %d",
966 pop3_session->cur_msg, pop3_session->count);
967 gtk_progress_bar_set_text
968 (GTK_PROGRESS_BAR(inc_dialog->mainwin->progressbar), buf);
969 gtk_progress_bar_set_fraction
970 (GTK_PROGRESS_BAR(inc_dialog->mainwin->progressbar),
971 (total == 0) ? 0 : (gfloat)cur_total / (gfloat)total);
973 if (pop3_session->cur_total_num > 0) {
974 g_snprintf(buf, sizeof(buf),
975 ngettext("Retrieving (%d message (%s) received)",
976 "Retrieving (%d messages (%s) received)",
977 pop3_session->cur_total_num),
978 pop3_session->cur_total_num,
979 to_human_readable
980 (pop3_session->cur_total_recv_bytes));
981 progress_dialog_list_set_status(inc_dialog->dialog,
982 inc_dialog->cur_row,
983 buf);
987 static void inc_progress_dialog_update_periodic(IncProgressDialog *inc_dialog,
988 IncSession *inc_session)
990 GTimeVal tv_cur;
991 GTimeVal tv_result;
992 gint msec;
994 g_get_current_time(&tv_cur);
996 tv_result.tv_sec = tv_cur.tv_sec - inc_dialog->progress_tv.tv_sec;
997 tv_result.tv_usec = tv_cur.tv_usec - inc_dialog->progress_tv.tv_usec;
998 if (tv_result.tv_usec < 0) {
999 tv_result.tv_sec--;
1000 tv_result.tv_usec += G_USEC_PER_SEC;
1003 msec = tv_result.tv_sec * 1000 + tv_result.tv_usec / 1000;
1004 if (msec > PROGRESS_UPDATE_INTERVAL) {
1005 inc_progress_dialog_update(inc_dialog, inc_session);
1006 inc_dialog->progress_tv.tv_sec = tv_cur.tv_sec;
1007 inc_dialog->progress_tv.tv_usec = tv_cur.tv_usec;
1011 static gint inc_recv_data_progressive(Session *session, guint cur_len,
1012 guint total_len, gpointer data)
1014 IncSession *inc_session = (IncSession *)data;
1015 Pop3Session *pop3_session = POP3_SESSION(session);
1016 IncProgressDialog *inc_dialog;
1017 gint cur_total;
1019 g_return_val_if_fail(inc_session != NULL, -1);
1021 if (pop3_session->state != POP3_RETR &&
1022 pop3_session->state != POP3_RETR_RECV &&
1023 pop3_session->state != POP3_DELETE &&
1024 pop3_session->state != POP3_LOGOUT) return 0;
1026 if (!pop3_session->new_msg_exist) return 0;
1028 cur_total = pop3_session->cur_total_bytes + cur_len;
1029 if (cur_total > pop3_session->total_bytes)
1030 cur_total = pop3_session->total_bytes;
1031 inc_session->cur_total_bytes = cur_total;
1033 inc_dialog = (IncProgressDialog *)inc_session->data;
1034 inc_progress_dialog_update_periodic(inc_dialog, inc_session);
1036 return 0;
1039 static gint inc_recv_data_finished(Session *session, guint len, gpointer data)
1041 IncSession *inc_session = (IncSession *)data;
1042 IncProgressDialog *inc_dialog;
1044 g_return_val_if_fail(inc_session != NULL, -1);
1046 inc_dialog = (IncProgressDialog *)inc_session->data;
1048 inc_recv_data_progressive(session, 0, 0, inc_session);
1050 if (POP3_SESSION(session)->state == POP3_LOGOUT) {
1051 inc_progress_dialog_update(inc_dialog, inc_session);
1054 return 0;
1057 static gint inc_recv_message(Session *session, const gchar *msg, gpointer data)
1059 IncSession *inc_session = (IncSession *)data;
1060 IncProgressDialog *inc_dialog;
1062 g_return_val_if_fail(inc_session != NULL, -1);
1064 inc_dialog = (IncProgressDialog *)inc_session->data;
1066 switch (POP3_SESSION(session)->state) {
1067 case POP3_GETAUTH_USER:
1068 case POP3_GETAUTH_PASS:
1069 case POP3_GETAUTH_APOP:
1070 case POP3_GETRANGE_STAT:
1071 case POP3_GETRANGE_LAST:
1072 case POP3_GETRANGE_UIDL:
1073 case POP3_GETSIZE_LIST:
1074 inc_progress_dialog_update(inc_dialog, inc_session);
1075 break;
1076 case POP3_RETR:
1077 inc_recv_data_progressive(session, 0, 0, inc_session);
1078 break;
1079 case POP3_LOGOUT:
1080 inc_progress_dialog_update(inc_dialog, inc_session);
1081 break;
1082 default:
1083 break;
1086 return 0;
1089 static gint inc_drop_message(Pop3Session *session, const gchar *file)
1091 FolderItem *inbox;
1092 FolderItem *dropfolder;
1093 IncSession *inc_session = (IncSession *)(SESSION(session)->data);
1094 gint msgnum;
1096 g_return_val_if_fail(inc_session != NULL, -1);
1098 if (session->ac_prefs->inbox) {
1099 inbox = folder_find_item_from_identifier
1100 (session->ac_prefs->inbox);
1101 if (!inbox)
1102 inbox = folder_get_default_inbox();
1103 } else
1104 inbox = folder_get_default_inbox();
1105 if (!inbox) {
1106 g_unlink(file);
1107 return -1;
1110 /* CLAWS: claws uses a global .processing folder for the filtering. */
1111 dropfolder = folder_get_default_processing();
1113 /* add msg file to drop folder */
1114 if ((msgnum = folder_item_add_msg(
1115 dropfolder, file, NULL, TRUE)) < 0) {
1116 g_unlink(file);
1117 return -1;
1120 return 0;
1123 static void inc_put_error(IncState istate, Pop3Session *session)
1125 gchar *log_msg = NULL;
1126 gchar *err_msg = NULL;
1127 gboolean fatal_error = FALSE;
1129 switch (istate) {
1130 case INC_CONNECT_ERROR:
1131 log_msg = _("Connection failed.");
1132 fatal_error = TRUE;
1133 if (prefs_common.no_recv_err_panel)
1134 break;
1135 err_msg = g_strdup_printf(_("Connection to %s:%d failed."),
1136 SESSION(session)->server,
1137 SESSION(session)->port);
1138 break;
1139 case INC_ERROR:
1140 log_msg = _("Error occurred while processing mail.");
1141 fatal_error = TRUE;
1142 if (prefs_common.no_recv_err_panel)
1143 break;
1144 if (session->error_msg)
1145 err_msg = g_strdup_printf
1146 (_("Error occurred while processing mail:\n%s"),
1147 session->error_msg);
1148 else
1149 err_msg = g_strdup(log_msg);
1150 break;
1151 case INC_NO_SPACE:
1152 log_msg = _("No disk space left.");
1153 err_msg = g_strdup(log_msg);
1154 fatal_error = TRUE;
1155 break;
1156 case INC_IO_ERROR:
1157 log_msg = _("Can't write file.");
1158 err_msg = g_strdup(log_msg);
1159 fatal_error = TRUE;
1160 break;
1161 case INC_SOCKET_ERROR:
1162 log_msg = _("Socket error.");
1163 if (prefs_common.no_recv_err_panel)
1164 break;
1165 err_msg = g_strdup_printf(_("Socket error on connection to %s:%d."),
1166 SESSION(session)->server,
1167 SESSION(session)->port);
1168 break;
1169 case INC_EOF:
1170 log_msg = _("Connection closed by the remote host.");
1171 if (prefs_common.no_recv_err_panel)
1172 break;
1173 err_msg = g_strdup_printf(_("Connection to %s:%d closed by the remote host."),
1174 SESSION(session)->server,
1175 SESSION(session)->port);
1176 break;
1177 case INC_LOCKED:
1178 log_msg = _("Mailbox is locked.");
1179 if (prefs_common.no_recv_err_panel)
1180 break;
1181 if (session->error_msg)
1182 err_msg = g_strdup_printf(_("Mailbox is locked:\n%s"),
1183 session->error_msg);
1184 else
1185 err_msg = g_strdup(log_msg);
1186 break;
1187 case INC_AUTH_FAILED:
1188 log_msg = _("Authentication failed.");
1189 fatal_error = TRUE;
1190 if (prefs_common.no_recv_err_panel)
1191 break;
1192 if (session->error_msg)
1193 err_msg = g_strdup_printf
1194 (_("Authentication failed:\n%s"), session->error_msg);
1195 else
1196 err_msg = g_strdup(log_msg);
1197 break;
1198 case INC_TIMEOUT:
1199 log_msg = _("Session timed out.");
1200 if (prefs_common.no_recv_err_panel)
1201 break;
1202 err_msg = g_strdup_printf(_("Connection to %s:%d timed out."),
1203 SESSION(session)->server,
1204 SESSION(session)->port);
1205 break;
1206 default:
1207 break;
1210 if (log_msg) {
1211 if (fatal_error)
1212 log_error(LOG_PROTOCOL, "%s\n", log_msg);
1213 else
1214 log_warning(LOG_PROTOCOL, "%s\n", log_msg);
1216 if (prefs_common.no_recv_err_panel && fatal_error)
1217 mainwindow_show_error();
1219 if (err_msg) {
1220 alertpanel_error_log("%s", err_msg);
1221 g_free(err_msg);
1225 static void inc_cancel(IncProgressDialog *dialog)
1227 IncSession *session;
1229 g_return_if_fail(dialog != NULL);
1231 if (dialog->queue_list == NULL) {
1232 inc_progress_dialog_destroy(dialog);
1233 return;
1236 session = dialog->queue_list->data;
1238 session->inc_state = INC_CANCEL;
1240 log_message(LOG_PROTOCOL, _("Incorporation cancelled\n"));
1243 gboolean inc_is_active(void)
1245 return (inc_dialog_list != NULL);
1248 void inc_cancel_all(void)
1250 GList *cur;
1252 for (cur = inc_dialog_list; cur != NULL; cur = cur->next)
1253 inc_cancel((IncProgressDialog *)cur->data);
1256 static void inc_cancel_cb(GtkWidget *widget, gpointer data)
1258 inc_cancel((IncProgressDialog *)data);
1261 static gint inc_dialog_delete_cb(GtkWidget *widget, GdkEventAny *event,
1262 gpointer data)
1264 IncProgressDialog *dialog = (IncProgressDialog *)data;
1266 if (dialog->queue_list == NULL)
1267 inc_progress_dialog_destroy(dialog);
1269 return TRUE;
1272 static gint inc_spool_account(PrefsAccount *account)
1274 FolderItem *inbox;
1275 gchar *mbox;
1276 gint result;
1278 if (account->local_inbox) {
1279 inbox = folder_find_item_from_identifier(account->local_inbox);
1280 if (!inbox)
1281 inbox = folder_get_default_inbox();
1282 } else
1283 inbox = folder_get_default_inbox();
1285 if (account->local_mbox) {
1286 if (is_file_exist(account->local_mbox))
1287 mbox = g_strdup(account->local_mbox);
1288 else if (is_dir_exist(account->local_mbox))
1289 mbox = g_strconcat(account->local_mbox, G_DIR_SEPARATOR_S,
1290 g_get_user_name(), NULL);
1291 else {
1292 debug_print("%s: local mailbox not found.\n",
1293 account->local_mbox);
1294 return -1;
1296 } else {
1297 debug_print("local mailbox not set in account info.\n");
1298 return -1;
1301 result = get_spool(inbox, mbox, account);
1302 g_free(mbox);
1304 statusbar_pop_all();
1306 return result;
1309 static gint inc_all_spool(void)
1311 GList *list = NULL;
1312 gint new_msgs = 0;
1313 gint account_new_msgs = 0;
1315 list = account_get_list();
1316 if (!list) return 0;
1318 for (; list != NULL; list = list->next) {
1319 PrefsAccount *account = list->data;
1321 if ((account->protocol == A_LOCAL) &&
1322 (account->recv_at_getall)) {
1323 account_new_msgs = inc_spool_account(account);
1324 if (account_new_msgs > 0)
1325 new_msgs += account_new_msgs;
1329 return new_msgs;
1332 static gint get_spool(FolderItem *dest, const gchar *mbox, PrefsAccount *account)
1334 gint msgs, size;
1335 gint lockfd;
1336 gchar tmp_mbox[MAXPATHLEN + 1];
1338 g_return_val_if_fail(dest != NULL, -1);
1339 g_return_val_if_fail(mbox != NULL, -1);
1340 g_return_val_if_fail(account != NULL, -1);
1342 if (!is_file_exist(mbox) || (size = get_file_size(mbox)) == 0) {
1343 debug_print("%s: no messages in local mailbox.\n", mbox);
1344 return 0;
1345 } else if (size < 0)
1346 return -1;
1348 if ((lockfd = lock_mbox(mbox, LOCK_FLOCK)) < 0)
1349 return -1;
1351 g_snprintf(tmp_mbox, sizeof(tmp_mbox), "%s%ctmpmbox.%p",
1352 get_tmp_dir(), G_DIR_SEPARATOR, mbox);
1354 if (copy_mbox(lockfd, tmp_mbox) < 0) {
1355 unlock_mbox(mbox, lockfd, LOCK_FLOCK);
1356 return -1;
1359 debug_print("Getting new messages from %s into %s...\n",
1360 mbox, dest->path);
1362 msgs = proc_mbox(dest, tmp_mbox, account->filter_on_recv, account);
1364 g_unlink(tmp_mbox);
1365 if (msgs >= 0) empty_mbox(mbox);
1366 unlock_mbox(mbox, lockfd, LOCK_FLOCK);
1368 return msgs;
1371 void inc_lock(void)
1373 inc_lock_count++;
1376 void inc_unlock(void)
1378 if (inc_lock_count > 0)
1379 inc_lock_count--;
1382 static guint autocheck_timer = 0;
1383 static gpointer autocheck_data = NULL;
1385 #ifdef MAEMO
1386 osso_context_t *get_osso_context(void);
1387 #endif
1389 static void inc_notify_cmd(gint new_msgs, gboolean notify)
1392 #ifndef MAEMO
1393 gchar *buf, *numpos, *ret_str;
1394 gssize by_read = 0, by_written = 0;
1396 if (!(new_msgs && notify && prefs_common.newmail_notify_cmd &&
1397 *prefs_common.newmail_notify_cmd))
1398 return;
1400 buf = g_strdup(prefs_common.newmail_notify_cmd);
1401 if ((numpos = strstr(buf, "%d")) != NULL) {
1402 gchar *buf2;
1404 *numpos = '\0';
1405 buf2 = g_strdup_printf("%s%d%s", buf, new_msgs, numpos + 2);
1406 g_free(buf);
1407 buf = buf2;
1410 ret_str = g_locale_from_utf8(buf, strlen(buf), &by_read, &by_written,
1411 NULL);
1412 if (ret_str && by_written) {
1413 g_free(buf);
1414 buf = ret_str;
1416 debug_print("executing new mail notification command: %s\n", buf);
1417 execute_command_line(buf, TRUE);
1419 g_free(buf);
1421 #else
1422 if (new_msgs) {
1423 if (prefs_common.maemo_play_sound)
1424 hildon_play_system_sound("/usr/share/sounds/ui-new_email.wav");
1425 if (prefs_common.maemo_show_banner) {
1426 gchar *info = g_strdup_printf(ngettext("Claws Mail: %d new message",
1427 "Claws Mail: %d new messages",
1428 new_msgs), new_msgs);
1429 osso_system_note_infoprint(get_osso_context(), info, NULL);
1430 g_free(info);
1433 #endif
1436 #if (defined(MAEMO) && defined(CONIC))
1437 static void maemo_connection_event(ConIcConnection *connection,
1438 ConIcConnectionEvent *event,
1439 gpointer user_data)
1441 ConIcConnectionStatus status =
1442 con_ic_connection_event_get_status(event);
1443 MainWindow *mainwin = (MainWindow *)user_data;
1444 switch(status) {
1445 case CON_IC_STATUS_CONNECTED:
1446 debug_print("we're connected\n");
1447 main_window_toggle_work_offline(mainwin, FALSE, FALSE);
1448 break;
1449 default:
1450 debug_print("we're disconnected\n");
1451 main_window_toggle_work_offline(mainwin, TRUE, FALSE);
1452 maemo_warned_offline = FALSE;
1453 break;
1457 #endif
1459 void inc_autocheck_timer_init(MainWindow *mainwin)
1461 #if (defined(MAEMO) && defined(CONIC))
1462 GValue *val = g_new0(GValue, 1);
1463 maemo_connection = con_ic_connection_new();
1465 g_value_init(val, G_TYPE_BOOLEAN);
1466 g_value_set_boolean(val, TRUE);
1467 g_object_set_property(G_OBJECT(maemo_connection),
1468 "automatic-connection-events", val);
1469 g_free(val);
1470 g_signal_connect (maemo_connection, "connection-event",
1471 G_CALLBACK(maemo_connection_event), mainwin);
1472 con_ic_connection_connect (maemo_connection,
1473 CON_IC_CONNECT_FLAG_AUTOMATICALLY_TRIGGERED);
1474 autocheck_data = mainwin;
1475 #else
1476 autocheck_data = mainwin;
1477 inc_autocheck_timer_set();
1478 #endif
1481 static void inc_autocheck_timer_set_interval(guint interval)
1483 inc_autocheck_timer_remove();
1484 /* last test is to avoid re-enabling auto_check after modifying
1485 the common preferences */
1486 if (prefs_common.autochk_newmail && autocheck_data
1487 && prefs_common.work_offline == FALSE) {
1488 autocheck_timer = g_timeout_add
1489 (interval, inc_autocheck_func, autocheck_data);
1490 debug_print("added timer = %d\n", autocheck_timer);
1494 void inc_autocheck_timer_set(void)
1496 inc_autocheck_timer_set_interval(prefs_common.autochk_itv * 60000);
1497 #if (defined(MAEMO) && defined(CONIC))
1498 con_ic_connection_connect (maemo_connection,
1499 CON_IC_CONNECT_FLAG_AUTOMATICALLY_TRIGGERED);
1500 #endif
1503 void inc_autocheck_timer_remove(void)
1505 if (autocheck_timer) {
1506 debug_print("removed timer = %d\n", autocheck_timer);
1507 g_source_remove(autocheck_timer);
1508 autocheck_timer = 0;
1512 static gint inc_autocheck_func(gpointer data)
1514 MainWindow *mainwin = (MainWindow *)data;
1516 if (inc_lock_count) {
1517 debug_print("autocheck is locked.\n");
1518 inc_autocheck_timer_set_interval(1000);
1519 return FALSE;
1522 inc_all_account_mail(mainwin, TRUE, prefs_common.newmail_notify_auto);
1524 return FALSE;
1527 gboolean inc_offline_should_override(gboolean force_ask, const gchar *msg)
1529 static time_t overridden_yes = 0;
1530 static time_t overridden_no = 0;
1531 int length = 10; /* minutes */
1532 gint answer = G_ALERTDEFAULT;
1534 #if (defined(MAEMO) && defined(CONIC))
1535 if (prefs_common.work_offline) {
1536 if (force_ask && !maemo_warned_offline) {
1537 if (mainwindow_get_mainwindow())
1538 hildon_banner_show_information(
1539 mainwindow_get_mainwindow()->window,
1540 NULL,
1541 _("Unable to connect: you are offline."));
1542 maemo_warned_offline = TRUE;
1544 return FALSE;
1545 } else {
1546 return TRUE;
1548 #endif
1550 if (prefs_common.autochk_newmail)
1551 length = prefs_common.autochk_itv; /* minutes */
1553 if (force_ask) {
1554 overridden_no = (time_t)0;
1557 if (prefs_common.work_offline) {
1558 gchar *tmp = NULL;
1560 if (time(NULL) - overridden_yes < length * 60) /* seconds */
1561 return TRUE;
1562 else if (time(NULL) - overridden_no < length * 60) /* seconds */
1563 return FALSE;
1565 if (!force_ask)
1566 tmp = g_strdup_printf(
1567 _("%s%sYou're working offline. Override for %d minutes?"),
1568 msg?msg:"",
1569 msg?"\n\n":"",
1570 length);
1571 else
1572 tmp = g_strdup_printf(
1573 _("%s%sYou're working offline. Override?"),
1574 msg?msg:"",
1575 msg?"\n\n":"");
1577 answer = alertpanel(_("Offline warning"),
1578 tmp,
1579 GTK_STOCK_NO, "+" GTK_STOCK_YES,
1580 !force_ask? _("On_ly once"):NULL);
1581 g_free(tmp);
1582 if (answer == G_ALERTALTERNATE) {
1583 overridden_yes = time(NULL);
1584 return TRUE;
1585 } else if (answer == G_ALERTDEFAULT) {
1586 if (!force_ask)
1587 overridden_no = time(NULL);
1588 return FALSE;
1589 } else {
1590 overridden_yes = (time_t)0;
1591 overridden_no = (time_t)0;
1592 return TRUE;
1595 return TRUE;