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/>.
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>
38 #include "mainwindow.h"
39 #include "folderview.h"
40 #include "summaryview.h"
41 #include "prefs_common.h"
42 #include "prefs_account.h"
52 #include "statusbar.h"
54 #include "manage_window.h"
55 #include "stock_pixmap.h"
56 #include "progressdialog.h"
57 #include "inputdialog.h"
58 #include "alertpanel.h"
60 #include "filtering.h"
65 #include <hildon-widgets/hildon-banner.h>
66 #include <hildon-widgets/hildon-system-sound.h>
70 #include <conicconnection.h>
71 #include <conicconnectionevent.h>
73 static ConIcConnection
*maemo_connection
= NULL
;
74 static gboolean maemo_warned_offline
= FALSE
;
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
,
91 static gint
inc_account_mail_real (MainWindow
*mainwin
,
92 PrefsAccount
*account
);
94 static IncProgressDialog
*inc_progress_dialog_create
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
,
122 static gint
inc_recv_data_finished (Session
*session
,
125 static gint
inc_recv_message (Session
*session
,
128 static gint
inc_drop_message (Pop3Session
*session
,
131 static void inc_put_error (IncState istate
,
132 Pop3Session
*session
);
134 static void inc_cancel_cb (GtkWidget
*widget
,
136 static gint
inc_dialog_delete_cb (GtkWidget
*widget
,
140 static gint
get_spool (FolderItem
*dest
,
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
,
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
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
;
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
)
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 "
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();
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();
218 void inc_pop_before_smtp(PrefsAccount
*acc
)
220 IncProgressDialog
*inc_dialog
;
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
,
233 /* FIXME: assumes to attach to first main window */
234 inc_dialog
->mainwin
= mainwin
;
235 inc_progress_dialog_set_list(inc_dialog
);
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
;
250 switch (account
->protocol
) {
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
));
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
,
268 inc_dialog
->mainwin
= mainwin
;
269 inc_progress_dialog_set_list(inc_dialog
);
272 toolbar_main_set_sensitive(mainwin
);
273 main_window_set_menu_sensitive(mainwin
);
276 return inc_start(inc_dialog
);
279 return inc_spool_account(account
);
287 gint
inc_account_mail(MainWindow
*mainwin
, PrefsAccount
*account
)
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 "
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();
311 void inc_all_account_mail(MainWindow
*mainwin
, gboolean autocheck
,
314 GList
*list
, *queue_list
= NULL
;
315 IncProgressDialog
*inc_dialog
;
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 "
325 if (inc_lock_count
) return;
327 inc_autocheck_timer_remove();
328 main_window_lock(mainwin
);
330 list
= account_get_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();
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
) {
356 PrefsAccount
*account
= list
->data
;
358 if (account
->recv_at_getall
) {
359 session
= inc_session_new(account
);
361 queue_list
= g_list_append(queue_list
, session
);
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
,
414 stock_pixbuf_gdk(progress
->treeview
, STOCK_PIXMAP_CONTINUE
,
416 stock_pixbuf_gdk(progress
->treeview
, STOCK_PIXMAP_ERROR
,
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
,
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
&&
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
;
442 inc_dialog_list
= g_list_append(inc_dialog_list
, dialog
);
447 static void inc_progress_dialog_set_list(IncProgressDialog
*inc_dialog
)
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
,
459 pop3_session
->ac_prefs
->account_name
,
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
);
485 static IncSession
*inc_session_new(PrefsAccount
*account
)
489 g_return_val_if_fail(account
!= NULL
, NULL
);
491 if (account
->protocol
!= A_POP3
)
493 if (!account
->recv_server
|| !account
->userid
)
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
,
506 session_set_recv_data_notify(session
->session
,
507 inc_recv_data_finished
, session
);
512 static void inc_session_destroy(IncSession
*session
)
514 g_return_if_fail(session
!= NULL
);
516 session_destroy(session
->session
);
520 static gint
inc_start(IncProgressDialog
*inc_dialog
)
524 Pop3Session
*pop3_session
;
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
)
543 g_strdup(pop3_session
->ac_prefs
->passwd
);
544 else if (pop3_session
->ac_prefs
->tmp_pass
)
546 g_strdup(pop3_session
->ac_prefs
->tmp_pass
);
550 if (inc_dialog
->show_dialog
)
551 manage_window_focus_in
552 (inc_dialog
->dialog
->window
,
555 pass
= input_dialog_query_password
556 (pop3_session
->ac_prefs
->recv_server
,
559 if (inc_dialog
->show_dialog
)
560 manage_window_focus_out
561 (inc_dialog
->dialog
->window
,
565 pop3_session
->ac_prefs
->tmp_pass
=
567 pop3_session
->pass
= pass
;
574 #define SET_PIXMAP_AND_TEXT(pix, str) \
576 progress_dialog_list_set(inc_dialog->dialog, \
577 inc_dialog->cur_row, \
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
);
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
);
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
));
615 msg
= g_strdup_printf(_("Done (no new messages)"));
616 SET_PIXMAP_AND_TEXT(okpix
, msg
);
619 case INC_CONNECT_ERROR
:
620 SET_PIXMAP_AND_TEXT(errorpix
, _("Connection failed"));
622 case INC_AUTH_FAILED
:
623 SET_PIXMAP_AND_TEXT(errorpix
, _("Auth failed"));
626 SET_PIXMAP_AND_TEXT(errorpix
, _("Locked"));
631 case INC_SOCKET_ERROR
:
633 SET_PIXMAP_AND_TEXT(errorpix
, _("Error"));
636 SET_PIXMAP_AND_TEXT(errorpix
, _("Timeout"));
639 SET_PIXMAP_AND_TEXT(okpix
, _("Cancelled"));
640 if (!inc_dialog
->show_dialog
)
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
);
661 inbox
= folder_get_default_inbox();
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
);
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
) {
706 if (inc_dialog
->show_dialog
)
707 manage_window_focus_in
708 (inc_dialog
->dialog
->window
,
710 inc_put_error(inc_state
, pop3_session
);
711 if (inc_dialog
->show_dialog
)
712 manage_window_focus_out
713 (inc_dialog
->dialog
->window
,
715 if (inc_state
== INC_NO_SPACE
||
716 inc_state
== INC_IO_ERROR
)
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
729 fin_msg
= g_strdup_printf(ngettext("Finished (%d new message)",
730 "Finished (%d new messages)",
731 new_msgs
), new_msgs
);
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
);
747 gtk_window_set_title(GTK_WINDOW(inc_dialog
->dialog
->window
),
749 gtk_button_set_label(GTK_BUTTON(inc_dialog
->dialog
->cancel_btn
),
758 static IncState
inc_pop3_session_do(IncSession
*session
)
760 Pop3Session
*pop3_session
= POP3_SESSION(session
->session
);
761 IncProgressDialog
*inc_dialog
= (IncProgressDialog
*)session
->data
;
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
);
776 server
= pop3_session
->ac_prefs
->recv_server
;
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
;
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 "
794 GTK_STOCK_CANCEL
, _("Con_tinue connecting"),
795 NULL
, FALSE
, NULL
, ALERT_WARNING
,
796 G_ALERTDEFAULT
) != G_ALERTALTERNATE
)
799 port
= pop3_session
->ac_prefs
->set_popport
?
800 pop3_session
->ac_prefs
->popport
: 110;
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
);
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"),
822 manage_window_focus_out(inc_dialog
->dialog
->window
, NULL
, NULL
);
824 log_error(LOG_PROTOCOL
, _("Can't connect to POP3 server: %s:%d\n"),
827 session
->inc_state
= INC_CONNECT_ERROR
;
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
) {
839 switch (SESSION(pop3_session
)->state
) {
841 if (pop3_session
->state
== POP3_READY
)
842 session
->inc_state
= INC_CONNECT_ERROR
;
844 session
->inc_state
= INC_ERROR
;
847 session
->inc_state
= INC_EOF
;
849 case SESSION_TIMEOUT
:
850 session
->inc_state
= INC_TIMEOUT
;
853 session
->inc_state
= INC_SUCCESS
;
858 session
->inc_state
= INC_AUTH_FAILED
;
861 session
->inc_state
= INC_IO_ERROR
;
864 session
->inc_state
= INC_SOCKET_ERROR
;
867 session
->inc_state
= INC_LOCKED
;
870 session
->inc_state
= INC_ERROR
;
875 session_disconnect(SESSION(pop3_session
));
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
) {
901 case POP3_GETAUTH_USER
:
902 case POP3_GETAUTH_PASS
:
903 case POP3_GETAUTH_APOP
:
904 progress_dialog_set_label(dialog
, _("Authenticating..."));
906 statusbar_print_all(_("Retrieving messages from %s (%s) ..."),
907 SESSION(session
)->server
,
908 session
->ac_prefs
->account_name
);
910 case POP3_GETRANGE_STAT
:
911 progress_dialog_set_label
912 (dialog
, _("Getting the number of new messages (STAT)..."));
914 case POP3_GETRANGE_LAST
:
915 progress_dialog_set_label
916 (dialog
, _("Getting the number of new messages (LAST)..."));
918 case POP3_GETRANGE_UIDL
:
919 progress_dialog_set_label
920 (dialog
, _("Getting the number of new messages (UIDL)..."));
922 case POP3_GETSIZE_LIST
:
923 progress_dialog_set_label
924 (dialog
, _("Getting the size of messages (LIST)..."));
931 progress_dialog_set_label(dialog
, _("Quitting"));
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
;
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
,
980 (pop3_session
->cur_total_recv_bytes
));
981 progress_dialog_list_set_status(inc_dialog
->dialog
,
987 static void inc_progress_dialog_update_periodic(IncProgressDialog
*inc_dialog
,
988 IncSession
*inc_session
)
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) {
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
;
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
);
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
);
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
);
1077 inc_recv_data_progressive(session
, 0, 0, inc_session
);
1080 inc_progress_dialog_update(inc_dialog
, inc_session
);
1089 static gint
inc_drop_message(Pop3Session
*session
, const gchar
*file
)
1092 FolderItem
*dropfolder
;
1093 IncSession
*inc_session
= (IncSession
*)(SESSION(session
)->data
);
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
);
1102 inbox
= folder_get_default_inbox();
1104 inbox
= folder_get_default_inbox();
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) {
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
;
1130 case INC_CONNECT_ERROR
:
1131 log_msg
= _("Connection failed.");
1133 if (prefs_common
.no_recv_err_panel
)
1135 err_msg
= g_strdup_printf(_("Connection to %s:%d failed."),
1136 SESSION(session
)->server
,
1137 SESSION(session
)->port
);
1140 log_msg
= _("Error occurred while processing mail.");
1142 if (prefs_common
.no_recv_err_panel
)
1144 if (session
->error_msg
)
1145 err_msg
= g_strdup_printf
1146 (_("Error occurred while processing mail:\n%s"),
1147 session
->error_msg
);
1149 err_msg
= g_strdup(log_msg
);
1152 log_msg
= _("No disk space left.");
1153 err_msg
= g_strdup(log_msg
);
1157 log_msg
= _("Can't write file.");
1158 err_msg
= g_strdup(log_msg
);
1161 case INC_SOCKET_ERROR
:
1162 log_msg
= _("Socket error.");
1163 if (prefs_common
.no_recv_err_panel
)
1165 err_msg
= g_strdup_printf(_("Socket error on connection to %s:%d."),
1166 SESSION(session
)->server
,
1167 SESSION(session
)->port
);
1170 log_msg
= _("Connection closed by the remote host.");
1171 if (prefs_common
.no_recv_err_panel
)
1173 err_msg
= g_strdup_printf(_("Connection to %s:%d closed by the remote host."),
1174 SESSION(session
)->server
,
1175 SESSION(session
)->port
);
1178 log_msg
= _("Mailbox is locked.");
1179 if (prefs_common
.no_recv_err_panel
)
1181 if (session
->error_msg
)
1182 err_msg
= g_strdup_printf(_("Mailbox is locked:\n%s"),
1183 session
->error_msg
);
1185 err_msg
= g_strdup(log_msg
);
1187 case INC_AUTH_FAILED
:
1188 log_msg
= _("Authentication failed.");
1190 if (prefs_common
.no_recv_err_panel
)
1192 if (session
->error_msg
)
1193 err_msg
= g_strdup_printf
1194 (_("Authentication failed:\n%s"), session
->error_msg
);
1196 err_msg
= g_strdup(log_msg
);
1199 log_msg
= _("Session timed out.");
1200 if (prefs_common
.no_recv_err_panel
)
1202 err_msg
= g_strdup_printf(_("Connection to %s:%d timed out."),
1203 SESSION(session
)->server
,
1204 SESSION(session
)->port
);
1212 log_error(LOG_PROTOCOL
, "%s\n", log_msg
);
1214 log_warning(LOG_PROTOCOL
, "%s\n", log_msg
);
1216 if (prefs_common
.no_recv_err_panel
&& fatal_error
)
1217 mainwindow_show_error();
1220 alertpanel_error_log("%s", 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
);
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)
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
,
1264 IncProgressDialog
*dialog
= (IncProgressDialog
*)data
;
1266 if (dialog
->queue_list
== NULL
)
1267 inc_progress_dialog_destroy(dialog
);
1272 static gint
inc_spool_account(PrefsAccount
*account
)
1278 if (account
->local_inbox
) {
1279 inbox
= folder_find_item_from_identifier(account
->local_inbox
);
1281 inbox
= folder_get_default_inbox();
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
);
1292 debug_print("%s: local mailbox not found.\n",
1293 account
->local_mbox
);
1297 debug_print("local mailbox not set in account info.\n");
1301 result
= get_spool(inbox
, mbox
, account
);
1304 statusbar_pop_all();
1309 static gint
inc_all_spool(void)
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
;
1332 static gint
get_spool(FolderItem
*dest
, const gchar
*mbox
, PrefsAccount
*account
)
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
);
1345 } else if (size
< 0)
1348 if ((lockfd
= lock_mbox(mbox
, LOCK_FLOCK
)) < 0)
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
);
1359 debug_print("Getting new messages from %s into %s...\n",
1362 msgs
= proc_mbox(dest
, tmp_mbox
, account
->filter_on_recv
, account
);
1365 if (msgs
>= 0) empty_mbox(mbox
);
1366 unlock_mbox(mbox
, lockfd
, LOCK_FLOCK
);
1376 void inc_unlock(void)
1378 if (inc_lock_count
> 0)
1382 static guint autocheck_timer
= 0;
1383 static gpointer autocheck_data
= NULL
;
1386 osso_context_t
*get_osso_context(void);
1389 static void inc_notify_cmd(gint new_msgs
, gboolean notify
)
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
))
1400 buf
= g_strdup(prefs_common
.newmail_notify_cmd
);
1401 if ((numpos
= strstr(buf
, "%d")) != NULL
) {
1405 buf2
= g_strdup_printf("%s%d%s", buf
, new_msgs
, numpos
+ 2);
1410 ret_str
= g_locale_from_utf8(buf
, strlen(buf
), &by_read
, &by_written
,
1412 if (ret_str
&& by_written
) {
1416 debug_print("executing new mail notification command: %s\n", buf
);
1417 execute_command_line(buf
, TRUE
);
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
);
1436 #if (defined(MAEMO) && defined(CONIC))
1437 static void maemo_connection_event(ConIcConnection
*connection
,
1438 ConIcConnectionEvent
*event
,
1441 ConIcConnectionStatus status
=
1442 con_ic_connection_event_get_status(event
);
1443 MainWindow
*mainwin
= (MainWindow
*)user_data
;
1445 case CON_IC_STATUS_CONNECTED
:
1446 debug_print("we're connected\n");
1447 main_window_toggle_work_offline(mainwin
, FALSE
, FALSE
);
1450 debug_print("we're disconnected\n");
1451 main_window_toggle_work_offline(mainwin
, TRUE
, FALSE
);
1452 maemo_warned_offline
= FALSE
;
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
);
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
;
1476 autocheck_data
= mainwin
;
1477 inc_autocheck_timer_set();
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
);
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);
1522 inc_all_account_mail(mainwin
, TRUE
, prefs_common
.newmail_notify_auto
);
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
,
1541 _("Unable to connect: you are offline."));
1542 maemo_warned_offline
= TRUE
;
1550 if (prefs_common
.autochk_newmail
)
1551 length
= prefs_common
.autochk_itv
; /* minutes */
1554 overridden_no
= (time_t)0;
1557 if (prefs_common
.work_offline
) {
1560 if (time(NULL
) - overridden_yes
< length
* 60) /* seconds */
1562 else if (time(NULL
) - overridden_no
< length
* 60) /* seconds */
1566 tmp
= g_strdup_printf(
1567 _("%s%sYou're working offline. Override for %d minutes?"),
1572 tmp
= g_strdup_printf(
1573 _("%s%sYou're working offline. Override?"),
1577 answer
= alertpanel(_("Offline warning"),
1579 GTK_STOCK_NO
, "+" GTK_STOCK_YES
,
1580 !force_ask
? _("On_ly once"):NULL
);
1582 if (answer
== G_ALERTALTERNATE
) {
1583 overridden_yes
= time(NULL
);
1585 } else if (answer
== G_ALERTDEFAULT
) {
1587 overridden_no
= time(NULL
);
1590 overridden_yes
= (time_t)0;
1591 overridden_no
= (time_t)0;