2005-10-03 [colin] 1.9.15cvs4
[claws.git] / src / inc.c
index cd2a2be63711aa7d2440bdce78efe90f42181c2f..186d289c302d8188b3fc51eb59b70c084839217e 100644 (file)
--- a/src/inc.c
+++ b/src/inc.c
@@ -1,6 +1,6 @@
 /*
  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2003 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2004 Hiroyuki Yamamoto
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -14,7 +14,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
 #ifdef HAVE_CONFIG_H
@@ -24,6 +24,7 @@
 #include "defs.h"
 
 #include <glib.h>
+#include <glib/gi18n.h>
 #include <gtk/gtkmain.h>
 #include <gtk/gtkwindow.h>
 #include <gtk/gtksignal.h>
 #include <stdio.h>
 #include <unistd.h>
 #include <string.h>
-#include <time.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <sys/wait.h>
-#include <signal.h>
-#include <errno.h>
-
-#include "intl.h"
+
 #include "main.h"
 #include "inc.h"
 #include "mainwindow.h"
@@ -70,21 +64,20 @@ static GList *inc_dialog_list = NULL;
 
 static guint inc_lock_count = 0;
 
-static GdkPixmap *currentxpm;
-static GdkBitmap *currentxpmmask;
-static GdkPixmap *errorxpm;
-static GdkBitmap *errorxpmmask;
-static GdkPixmap *okxpm;
-static GdkBitmap *okxpmmask;
+static GdkPixbuf *currentpix;
+static GdkPixbuf *errorpix;
+static GdkPixbuf *okpix;
 
 #define MSGBUFSIZE     8192
 
 static void inc_finished               (MainWindow             *mainwin,
                                         gboolean                new_messages);
-static gint inc_account_mail           (PrefsAccount           *account,
-                                        MainWindow             *mainwin);
+static gint inc_account_mail_real      (MainWindow             *mainwin,
+                                        PrefsAccount           *account);
 
-static IncProgressDialog *inc_progress_dialog_create   (void);
+static IncProgressDialog *inc_progress_dialog_create
+                                       (gboolean                autocheck);
+static void inc_progress_dialog_set_list(IncProgressDialog     *inc_dialog);
 static void inc_progress_dialog_destroy        (IncProgressDialog      *inc_dialog);
 
 static IncSession *inc_session_new     (PrefsAccount           *account);
@@ -92,6 +85,20 @@ static void inc_session_destroy              (IncSession             *session);
 static gint inc_start                  (IncProgressDialog      *inc_dialog);
 static IncState inc_pop3_session_do    (IncSession             *session);
 
+static void inc_progress_dialog_update (IncProgressDialog      *inc_dialog,
+                                        IncSession             *inc_session);
+
+static void inc_progress_dialog_set_label
+                                       (IncProgressDialog      *inc_dialog,
+                                        IncSession             *inc_session);
+static void inc_progress_dialog_set_progress
+                                       (IncProgressDialog      *inc_dialog,
+                                        IncSession             *inc_session);
+
+static void inc_progress_dialog_update_periodic
+                                       (IncProgressDialog      *inc_dialog,
+                                        IncSession             *inc_session);
+
 static gint inc_recv_data_progressive  (Session        *session,
                                         guint           cur_len,
                                         guint           total_len,
@@ -102,9 +109,11 @@ static gint inc_recv_data_finished (Session        *session,
 static gint inc_recv_message           (Session        *session,
                                         const gchar    *msg,
                                         gpointer        data);
+static gint inc_drop_message           (Pop3Session    *session,
+                                        const gchar    *file);
 
 static void inc_put_error              (IncState        istate,
-                                        const gchar    *msg);
+                                        Pop3Session    *session);
 
 static void inc_cancel_cb              (GtkWidget      *widget,
                                         gpointer        data);
@@ -112,7 +121,6 @@ static gint inc_dialog_delete_cb    (GtkWidget      *widget,
                                         GdkEventAny    *event,
                                         gpointer        data);
 
-static gint inc_spool                  (void);
 static gint get_spool                  (FolderItem     *dest,
                                         const gchar    *mbox);
 
@@ -123,10 +131,6 @@ static gint inc_autocheck_func                     (gpointer        data);
 
 static void inc_notify_cmd             (gint new_msgs, 
                                         gboolean notify);
-
-#define FOLDER_SUMMARY_MISMATCH(f, s) \
-       (f) && (s) ? ((s)->newmsgs != (f)->new_msgs) || ((f)->unread_msgs != (s)->unread) || ((f)->total_msgs != (s)->messages) \
-       : FALSE
        
 /**
  * inc_finished:
@@ -150,10 +154,8 @@ static void inc_finished(MainWindow *mainwin, gboolean new_messages)
                item = cur_account && cur_account->inbox
                        ? folder_find_item_from_identifier(cur_account->inbox)
                        : folder_get_default_inbox();
-               if (FOLDER_SUMMARY_MISMATCH(item, mainwin->summaryview)) {      
-                       folderview_unselect(mainwin->folderview);
-                       folderview_select(mainwin->folderview, item);
-               }       
+               folderview_unselect(mainwin->folderview);
+               folderview_select(mainwin->folderview, item);
        }
 }
 
@@ -164,10 +166,7 @@ void inc_mail(MainWindow *mainwin, gboolean notify)
 
        if (inc_lock_count) return;
 
-       if (prefs_common.work_offline)
-               if (alertpanel(_("Offline warning"), 
-                              _("You're working offline. Override?"),
-                              _("Yes"), _("No"), NULL) != G_ALERTDEFAULT)
+       if (prefs_common.work_offline && !inc_offline_should_override())
                return;
 
        inc_lock();
@@ -181,20 +180,8 @@ void inc_mail(MainWindow *mainwin, gboolean notify)
                        inc_autocheck_timer_set();
                        return;
                }
-
-               if (prefs_common.inc_local) {
-                       account_new_msgs = inc_spool();
-                       if (account_new_msgs > 0)
-                               new_msgs += account_new_msgs;
-               }
        } else {
-               if (prefs_common.inc_local) {
-                       account_new_msgs = inc_spool();
-                       if (account_new_msgs > 0)
-                               new_msgs += account_new_msgs;
-               }
-
-               account_new_msgs = inc_account_mail(cur_account, mainwin);
+               account_new_msgs = inc_account_mail_real(mainwin, cur_account);
                if (account_new_msgs > 0)
                        new_msgs += account_new_msgs;
        }
@@ -208,19 +195,36 @@ void inc_mail(MainWindow *mainwin, gboolean notify)
 
 void inc_pop_before_smtp(PrefsAccount *acc)
 {
-       inc_account_mail(acc, NULL);
+       IncProgressDialog *inc_dialog;
+       IncSession *session;
+       MainWindow *mainwin;
+
+       mainwin = mainwindow_get_mainwindow();
+
+       session = inc_session_new(acc);
+       if (!session) return;
+       POP3_SESSION(session->session)->pop_before_smtp = TRUE;
+               
+       inc_dialog = inc_progress_dialog_create(FALSE);
+       inc_dialog->queue_list = g_list_append(inc_dialog->queue_list,
+                                              session);
+       /* FIXME: assumes to attach to first main window */
+       inc_dialog->mainwin = mainwin;
+       inc_progress_dialog_set_list(inc_dialog);
+
+       if (mainwin) {
+               toolbar_main_set_sensitive(mainwin);
+               main_window_set_menu_sensitive(mainwin);
+       }
+                       
+       inc_start(inc_dialog);
 }
 
-static gint inc_account_mail(PrefsAccount *account, MainWindow *mainwin)
+static gint inc_account_mail_real(MainWindow *mainwin, PrefsAccount *account)
 {
        IncProgressDialog *inc_dialog;
        IncSession *session;
-       gchar *text[3];
-       FolderItem *item = NULL;
        
-       if(mainwin && mainwin->summaryview)
-               item = mainwin->summaryview->folder_item;
-
        switch (account->protocol) {
        case A_IMAP4:
        case A_NNTP:
@@ -236,17 +240,12 @@ static gint inc_account_mail(PrefsAccount *account, MainWindow *mainwin)
                session = inc_session_new(account);
                if (!session) return 0;
                
-               inc_dialog = inc_progress_dialog_create();
+               inc_dialog = inc_progress_dialog_create(FALSE);
                inc_dialog->queue_list = g_list_append(inc_dialog->queue_list,
                                                       session);
                inc_dialog->mainwin = mainwin;
-               session->data = inc_dialog;
-       
-               text[0] = NULL;
-               text[1] = account->account_name;
-               text[2] = _("Standby");
-               gtk_clist_append(GTK_CLIST(inc_dialog->dialog->clist), text);
-               
+               inc_progress_dialog_set_list(inc_dialog);
+
                if (mainwin) {
                        toolbar_main_set_sensitive(mainwin);
                        main_window_set_menu_sensitive(mainwin);
@@ -263,17 +262,36 @@ static gint inc_account_mail(PrefsAccount *account, MainWindow *mainwin)
        return 0;
 }
 
-void inc_all_account_mail(MainWindow *mainwin, gboolean notify)
+gint inc_account_mail(MainWindow *mainwin, PrefsAccount *account)
+{
+       gint new_msgs;
+
+       if (inc_lock_count) return 0;
+
+       if (prefs_common.work_offline && !inc_offline_should_override())
+               return 0;
+
+       inc_autocheck_timer_remove();
+       main_window_lock(mainwin);
+
+       new_msgs = inc_account_mail_real(mainwin, account);
+
+       inc_finished(mainwin, new_msgs > 0);
+       main_window_unlock(mainwin);
+       inc_autocheck_timer_set();
+
+       return new_msgs;
+}
+
+void inc_all_account_mail(MainWindow *mainwin, gboolean autocheck,
+                         gboolean notify)
 {
        GList *list, *queue_list = NULL;
        IncProgressDialog *inc_dialog;
        gint new_msgs = 0;
        gint account_new_msgs = 0;
        
-       if (prefs_common.work_offline)
-               if (alertpanel(_("Offline warning"), 
-                              _("You're working offline. Override?"),
-                              _("Yes"), _("No"), NULL) != G_ALERTDEFAULT)
+       if (prefs_common.work_offline && !inc_offline_should_override())
                return;
 
        if (inc_lock_count) return;
@@ -281,12 +299,6 @@ void inc_all_account_mail(MainWindow *mainwin, gboolean notify)
        inc_autocheck_timer_remove();
        main_window_lock(mainwin);
 
-       if (prefs_common.inc_local) {
-               account_new_msgs = inc_spool();
-               if (account_new_msgs > 0)
-                       new_msgs += account_new_msgs;   
-       }
-
        list = account_get_list();
        if (!list) {
                inc_finished(mainwin, new_msgs > 0);
@@ -301,8 +313,8 @@ void inc_all_account_mail(MainWindow *mainwin, gboolean notify)
        if (account_new_msgs > 0)
                new_msgs += account_new_msgs;
 
-       /* check IMAP4 folders */
-       for (; list != NULL; list = list->next) {
+       /* check IMAP4 / News folders */
+       for (list = account_get_list(); list != NULL; list = list->next) {
                PrefsAccount *account = list->data;
                if ((account->protocol == A_IMAP4 ||
                     account->protocol == A_NNTP) && account->recv_at_getall) {
@@ -322,41 +334,24 @@ void inc_all_account_mail(MainWindow *mainwin, gboolean notify)
                }
        }
 
-       if (!queue_list) {
-               inc_finished(mainwin, new_msgs > 0);
-               main_window_unlock(mainwin);
-               inc_notify_cmd(new_msgs, notify);
-               inc_autocheck_timer_set();
-               return;
-       }
-
-       inc_dialog = inc_progress_dialog_create();
-       inc_dialog->queue_list = queue_list;
-       inc_dialog->mainwin = mainwin;
-       for (list = queue_list; list != NULL; list = list->next) {
-               IncSession *session = list->data;
-               Pop3Session *pop3_session = POP3_SESSION(session->session);
-               gchar *text[3];
-
-               session->data = inc_dialog;
+       if (queue_list) {
+               inc_dialog = inc_progress_dialog_create(autocheck);
+               inc_dialog->queue_list = queue_list;
+               inc_dialog->mainwin = mainwin;
+               inc_progress_dialog_set_list(inc_dialog);
 
-               text[0] = NULL;
-               text[1] = pop3_session->ac_prefs->account_name;
-               text[2] = _("Standby");
-               gtk_clist_append(GTK_CLIST(inc_dialog->dialog->clist), text);
+               toolbar_main_set_sensitive(mainwin);
+               main_window_set_menu_sensitive(mainwin);
+               new_msgs += inc_start(inc_dialog);
        }
 
-       toolbar_main_set_sensitive(mainwin);
-       main_window_set_menu_sensitive(mainwin);
-
-       new_msgs += inc_start(inc_dialog);
        inc_finished(mainwin, new_msgs > 0);
        main_window_unlock(mainwin);
        inc_notify_cmd(new_msgs, notify);
        inc_autocheck_timer_set();
 }
 
-static IncProgressDialog *inc_progress_dialog_create(void)
+static IncProgressDialog *inc_progress_dialog_create(gboolean autocheck)
 {
        IncProgressDialog *dialog;
        ProgressDialog *progress;
@@ -366,43 +361,62 @@ static IncProgressDialog *inc_progress_dialog_create(void)
        progress = progress_dialog_create();
        gtk_window_set_title(GTK_WINDOW(progress->window),
                             _("Retrieving new messages"));
-       gtk_signal_connect(GTK_OBJECT(progress->cancel_btn), "clicked",
-                          GTK_SIGNAL_FUNC(inc_cancel_cb), dialog);
-       gtk_signal_connect(GTK_OBJECT(progress->window), "delete_event",
-                          GTK_SIGNAL_FUNC(inc_dialog_delete_cb), dialog);
+       g_signal_connect(G_OBJECT(progress->cancel_btn), "clicked",
+                        G_CALLBACK(inc_cancel_cb), dialog);
+       g_signal_connect(G_OBJECT(progress->window), "delete_event",
+                        G_CALLBACK(inc_dialog_delete_cb), dialog);
        /* manage_window_set_transient(GTK_WINDOW(progress->window)); */
 
-       progress_dialog_set_value(progress, 0.0);
+       progress_dialog_get_fraction(progress);
 
-       stock_pixmap_gdk(progress->clist, STOCK_PIXMAP_COMPLETE,
-                        &okxpm, &okxpmmask);
-       stock_pixmap_gdk(progress->clist, STOCK_PIXMAP_CONTINUE,
-                        &currentxpm, &currentxpmmask);
-       stock_pixmap_gdk(progress->clist, STOCK_PIXMAP_ERROR,
-                        &errorxpm, &errorxpmmask);
+       stock_pixbuf_gdk(progress->treeview, STOCK_PIXMAP_COMPLETE,
+                        &okpix);
+       stock_pixbuf_gdk(progress->treeview, STOCK_PIXMAP_CONTINUE,
+                        &currentpix);
+       stock_pixbuf_gdk(progress->treeview, STOCK_PIXMAP_ERROR,
+                        &errorpix);
 
        if (prefs_common.recv_dialog_mode == RECV_DIALOG_ALWAYS ||
-           (prefs_common.recv_dialog_mode == RECV_DIALOG_ACTIVE &&
-            manage_window_get_focus_window())) {
+           (prefs_common.recv_dialog_mode == RECV_DIALOG_MANUAL &&
+            !autocheck)) {
                dialog->show_dialog = TRUE;
                gtk_widget_show_now(progress->window);
        }
 
        dialog->dialog = progress;
+       g_get_current_time(&dialog->progress_tv);
+       g_get_current_time(&dialog->folder_tv);
        dialog->queue_list = NULL;
+       dialog->cur_row = 0;
 
        inc_dialog_list = g_list_append(inc_dialog_list, dialog);
 
        return dialog;
 }
 
+static void inc_progress_dialog_set_list(IncProgressDialog *inc_dialog)
+{
+       GList *list;
+
+       for (list = inc_dialog->queue_list; list != NULL; list = list->next) {
+               IncSession *session = list->data;
+               Pop3Session *pop3_session = POP3_SESSION(session->session);
+
+               session->data = inc_dialog;
+
+               progress_dialog_list_set(inc_dialog->dialog,
+                                        -1, NULL,
+                                        pop3_session->ac_prefs->account_name,
+                                        _("Standby"));
+       }
+}
+
 static void inc_progress_dialog_clear(IncProgressDialog *inc_dialog)
 {
-       progress_dialog_set_value(inc_dialog->dialog, 0.0);
+       progress_dialog_get_fraction(inc_dialog->dialog);
        progress_dialog_set_label(inc_dialog->dialog, "");
        if (inc_dialog->mainwin)
-               gtk_progress_bar_update
-                       (GTK_PROGRESS_BAR(inc_dialog->mainwin->progressbar), 0.0);
+               main_window_progress_off(inc_dialog->mainwin);
 }
 
 static void inc_progress_dialog_destroy(IncProgressDialog *inc_dialog)
@@ -410,9 +424,9 @@ static void inc_progress_dialog_destroy(IncProgressDialog *inc_dialog)
        g_return_if_fail(inc_dialog != NULL);
 
        inc_dialog_list = g_list_remove(inc_dialog_list, inc_dialog);
+
        if (inc_dialog->mainwin)
-               gtk_progress_bar_update
-                       (GTK_PROGRESS_BAR(inc_dialog->mainwin->progressbar), 0.0);
+               main_window_progress_off(inc_dialog->mainwin);
        progress_dialog_destroy(inc_dialog->dialog);
 
        g_free(inc_dialog);
@@ -424,14 +438,23 @@ static IncSession *inc_session_new(PrefsAccount *account)
 
        g_return_val_if_fail(account != NULL, NULL);
 
-       if (account->protocol != A_POP3 && account->protocol != A_APOP)
+       if (account->protocol != A_POP3)
                return NULL;
        if (!account->recv_server || !account->userid)
                return NULL;
 
        session = g_new0(IncSession, 1);
+
        session->session = pop3_session_new(account);
        session->session->data = session;
+       POP3_SESSION(session->session)->drop_message = inc_drop_message;
+       session_set_recv_message_notify(session->session,
+                                       inc_recv_message, session);
+       session_set_recv_data_progressive_notify(session->session,
+                                                inc_recv_data_progressive,
+                                                session);
+       session_set_recv_data_notify(session->session,
+                                    inc_recv_data_finished, session);
 
        return session;
 }
@@ -447,10 +470,9 @@ static void inc_session_destroy(IncSession *session)
 static gint inc_start(IncProgressDialog *inc_dialog)
 {
        IncSession *session;
-       GtkCList *clist = GTK_CLIST(inc_dialog->dialog->clist);
+       GList *qlist;
        Pop3Session *pop3_session;
        IncState inc_state;
-       gint num = 0;
        gint error_num = 0;
        gint new_msgs = 0;
        gchar *msg;
@@ -458,15 +480,14 @@ static gint inc_start(IncProgressDialog *inc_dialog)
        FolderItem *processing, *inbox;
        MsgInfo *msginfo;
        GSList *msglist, *msglist_element;
+       gboolean cancelled = FALSE;
 
-       while (inc_dialog->queue_list != NULL) {
-               session = inc_dialog->queue_list->data;
-               pop3_session = POP3_SESSION(session->session);
-
-               inc_progress_dialog_clear(inc_dialog);
-
-               gtk_clist_moveto(clist, num, -1, 1.0, 0.0);
+       qlist = inc_dialog->queue_list;
+       while (qlist != NULL) {
+               GList *next = qlist->next;
 
+               session = qlist->data;
+               pop3_session = POP3_SESSION(session->session); 
                pop3_session->user = g_strdup(pop3_session->ac_prefs->userid);
                if (pop3_session->ac_prefs->passwd)
                        pop3_session->pass =
@@ -477,35 +498,57 @@ static gint inc_start(IncProgressDialog *inc_dialog)
                else {
                        gchar *pass;
 
+                       if (inc_dialog->show_dialog)
+                               manage_window_focus_in
+                                       (inc_dialog->dialog->window,
+                                        NULL, NULL);
+
                        pass = input_dialog_query_password
                                (pop3_session->ac_prefs->recv_server,
                                 pop3_session->user);
 
-                       if (inc_dialog->mainwin && inc_dialog->show_dialog)
-                               manage_window_focus_in
-                                       (inc_dialog->mainwin->window,
+                       if (inc_dialog->show_dialog)
+                               manage_window_focus_out
+                                       (inc_dialog->dialog->window,
                                         NULL, NULL);
+
                        if (pass) {
                                pop3_session->ac_prefs->tmp_pass =
                                        g_strdup(pass);
                                pop3_session->pass = pass;
-                       } else {
-                               inc_session_destroy(session);
-                               inc_dialog->queue_list = g_list_remove
-                                       (inc_dialog->queue_list, session);
-                               continue;
                        }
                }
 
-               gtk_clist_set_pixmap(clist, num, 0, currentxpm, currentxpmmask);
-               gtk_clist_set_text(clist, num, 2, _("Retrieving"));
+               qlist = next;
+       }
+
+#define SET_PIXMAP_AND_TEXT(pix, str)                                     \
+{                                                                         \
+       progress_dialog_list_set(inc_dialog->dialog,                       \
+                                inc_dialog->cur_row,                      \
+                                pix,                                      \
+                                NULL,                                     \
+                                str);                                     \
+}
+
+       for (; inc_dialog->queue_list != NULL && !cancelled; inc_dialog->cur_row++) {
+               int cur = 0, total = 0;
+               session = inc_dialog->queue_list->data;
+               pop3_session = POP3_SESSION(session->session);
+
+               if (pop3_session->pass == NULL) {
+                       SET_PIXMAP_AND_TEXT(okpix, _("Cancelled"));
+                       inc_session_destroy(session);
+                       inc_dialog->queue_list =
+                               g_list_remove(inc_dialog->queue_list, session);
+                       continue;
+               }
 
-               session_set_recv_message_notify(session->session,
-                                               inc_recv_message, session);
-               session_set_recv_data_progressive_notify
-                       (session->session, inc_recv_data_progressive, session);
-               session_set_recv_data_notify(session->session,
-                                            inc_recv_data_finished, session);
+               inc_progress_dialog_clear(inc_dialog);
+               progress_dialog_scroll_to_row(inc_dialog->dialog,
+                                             inc_dialog->cur_row);
+
+               SET_PIXMAP_AND_TEXT(currentpix, _("Retrieving"));
 
                /* begin POP3 session */
                inc_state = inc_pop3_session_do(session);
@@ -513,38 +556,40 @@ static gint inc_start(IncProgressDialog *inc_dialog)
                switch (inc_state) {
                case INC_SUCCESS:
                        if (pop3_session->cur_total_num > 0)
-                               msg = g_strdup_printf
-                                       (_("Done (%d message(s) (%s) received)"),
+                               msg = g_strdup_printf(
+                                       ngettext("Done (%d message (%s) received)",
+                                                "Done (%d messages (%s) received)",
+                                        pop3_session->cur_total_num),
                                         pop3_session->cur_total_num,
                                         to_human_readable(pop3_session->cur_total_recv_bytes));
                        else
                                msg = g_strdup_printf(_("Done (no new messages)"));
-                       gtk_clist_set_pixmap(clist, num, 0, okxpm, okxpmmask);
-                       gtk_clist_set_text(clist, num, 2, msg);
+                       SET_PIXMAP_AND_TEXT(okpix, msg);
                        g_free(msg);
                        break;
                case INC_CONNECT_ERROR:
-                       gtk_clist_set_pixmap(clist, num, 0, errorxpm, errorxpmmask);
-                       gtk_clist_set_text(clist, num, 2, _("Connection failed"));
+                       SET_PIXMAP_AND_TEXT(errorpix, _("Connection failed"));
                        break;
                case INC_AUTH_FAILED:
-                       gtk_clist_set_pixmap(clist, num, 0, errorxpm, errorxpmmask);
-                       gtk_clist_set_text(clist, num, 2, _("Auth failed"));
+                       SET_PIXMAP_AND_TEXT(errorpix, _("Auth failed"));
                        break;
                case INC_LOCKED:
-                       gtk_clist_set_pixmap(clist, num, 0, errorxpm, errorxpmmask);
-                       gtk_clist_set_text(clist, num, 2, _("Locked"));
+                       SET_PIXMAP_AND_TEXT(errorpix, _("Locked"));
                        break;
                case INC_ERROR:
                case INC_NO_SPACE:
                case INC_IO_ERROR:
                case INC_SOCKET_ERROR:
-                       gtk_clist_set_pixmap(clist, num, 0, errorxpm, errorxpmmask);
-                       gtk_clist_set_text(clist, num, 2, _("Error"));
+               case INC_EOF:
+                       SET_PIXMAP_AND_TEXT(errorpix, _("Error"));
+                       break;
+               case INC_TIMEOUT:
+                       SET_PIXMAP_AND_TEXT(errorpix, _("Timeout"));
                        break;
                case INC_CANCEL:
-                       gtk_clist_set_pixmap(clist, num, 0, okxpm, okxpmmask);
-                       gtk_clist_set_text(clist, num, 2, _("Cancelled"));
+                       SET_PIXMAP_AND_TEXT(okpix, _("Cancelled"));
+                       if (!inc_dialog->show_dialog)
+                               cancelled = TRUE;
                        break;
                default:
                        break;
@@ -553,13 +598,8 @@ static gint inc_start(IncProgressDialog *inc_dialog)
                if (pop3_session->error_val == PS_AUTHFAIL) {
                        if(!prefs_common.no_recv_err_panel) {
                                if((prefs_common.recv_dialog_mode == RECV_DIALOG_ALWAYS) ||
-                                   ((prefs_common.recv_dialog_mode == RECV_DIALOG_ACTIVE) && focus_window)) {
+                                   ((prefs_common.recv_dialog_mode == RECV_DIALOG_MANUAL) && focus_window))
                                        manage_window_focus_in(inc_dialog->dialog->window, NULL, NULL);
-                               }
-                               alertpanel_error
-                                       (_("Authorization for %s on %s failed"),
-                                        pop3_session->user,
-                                        pop3_session->ac_prefs->recv_server);
                        }
                }
 
@@ -578,19 +618,35 @@ static gint inc_start(IncProgressDialog *inc_dialog)
                folder_item_scan(processing);
                msglist = folder_item_get_msg_list(processing);
 
+               /* process messages */
                folder_item_update_freeze();
+               if (pop3_session->ac_prefs->filter_on_recv)
+                       statusbar_print_all(_("Filtering messages...\n"));
+               total = g_slist_length(msglist);
 
-               /* process messages */
-               for(msglist_element = msglist; msglist_element != NULL; msglist_element = msglist_element->next) {
+               for(msglist_element = msglist; msglist_element != NULL; 
+                   msglist_element = msglist_element->next) {
+                       gchar *filename;
                        msginfo = (MsgInfo *) msglist_element->data;
-                       if (!pop3_session->ac_prefs->filter_on_recv || !procmsg_msginfo_filter(msginfo))
+                       filename = folder_item_fetch_msg(processing, msginfo->msgnum);
+                       g_free(filename);
+
+                       if (pop3_session->ac_prefs->filter_on_recv)
+                               statusbar_progress_all(cur++,total, prefs_common.statusbar_update_step);
+
+                       if (!pop3_session->ac_prefs->filter_on_recv || 
+                           !procmsg_msginfo_filter(msginfo))
                                folder_item_move_msg(inbox, msginfo);
                        procmsg_msginfo_free(msginfo);
                }
-               g_slist_free(msglist);
-
                folder_item_update_thaw();
+               
+               statusbar_progress_all(0,0,0);
+               statusbar_pop_all();
+
+               g_slist_free(msglist);
 
+               statusbar_pop_all();
 
                new_msgs += pop3_session->cur_total_num;
 
@@ -608,7 +664,7 @@ static gint inc_start(IncProgressDialog *inc_dialog)
                                manage_window_focus_in
                                        (inc_dialog->dialog->window,
                                         NULL, NULL);
-                       inc_put_error(inc_state, pop3_session->error_msg);
+                       inc_put_error(inc_state, pop3_session);
                        if (inc_dialog->show_dialog)
                                manage_window_focus_out
                                        (inc_dialog->dialog->window,
@@ -621,18 +677,20 @@ static gint inc_start(IncProgressDialog *inc_dialog)
                inc_session_destroy(session);
                inc_dialog->queue_list =
                        g_list_remove(inc_dialog->queue_list, session);
-
-               num++;
        }
 
+#undef SET_PIXMAP_AND_TEXT
+
        if (new_msgs > 0)
-               fin_msg = g_strdup_printf(_("Finished (%d new message(s))"),
-                                         new_msgs);
+               fin_msg = g_strdup_printf(ngettext("Finished (%d new message)",
+                                                  "Finished (%d new messages)",
+                                                  new_msgs), new_msgs);
        else
                fin_msg = g_strdup_printf(_("Finished (no new messages)"));
 
        progress_dialog_set_label(inc_dialog->dialog, fin_msg);
 
+#if 0
        if (error_num && !prefs_common.no_recv_err_panel) {
                if (inc_dialog->show_dialog)
                        manage_window_focus_in(inc_dialog->dialog->window,
@@ -642,6 +700,7 @@ static gint inc_start(IncProgressDialog *inc_dialog)
                        manage_window_focus_out(inc_dialog->dialog->window,
                                                NULL, NULL);
        }
+#endif
 
        while (inc_dialog->queue_list != NULL) {
                session = inc_dialog->queue_list->data;
@@ -650,13 +709,13 @@ static gint inc_start(IncProgressDialog *inc_dialog)
                        g_list_remove(inc_dialog->queue_list, session);
        }
 
-       if (prefs_common.close_recv_dialog)
+       if (prefs_common.close_recv_dialog || !inc_dialog->show_dialog)
                inc_progress_dialog_destroy(inc_dialog);
        else {
                gtk_window_set_title(GTK_WINDOW(inc_dialog->dialog->window),
                                     fin_msg);
-               gtk_label_set_text(GTK_LABEL(GTK_BIN(inc_dialog->dialog->cancel_btn)->child),
-                                  _("Close"));
+               gtk_button_set_label(GTK_BUTTON(inc_dialog->dialog->cancel_btn),
+                                    GTK_STOCK_CLOSE);
        }
 
        g_free(fin_msg);
@@ -674,6 +733,8 @@ static IncState inc_pop3_session_do(IncSession *session)
 
        debug_print("getting new messages of account %s...\n",
                    pop3_session->ac_prefs->account_name);
+                   
+       pop3_session->ac_prefs->last_pop_login_time = time(NULL);
 
        buf = g_strdup_printf(_("%s: Retrieving new messages"),
                              pop3_session->ac_prefs->recv_server);
@@ -686,27 +747,43 @@ static IncState inc_pop3_session_do(IncSession *session)
                pop3_session->ac_prefs->popport :
                pop3_session->ac_prefs->ssl_pop == SSL_TUNNEL ? 995 : 110;
        SESSION(pop3_session)->ssl_type = pop3_session->ac_prefs->ssl_pop;
+       if (pop3_session->ac_prefs->ssl_pop != SSL_NONE)
+               SESSION(pop3_session)->nonblocking =
+                       pop3_session->ac_prefs->use_nonblocking_ssl;
 #else
+       if (pop3_session->ac_prefs->ssl_pop != SSL_NONE) {
+               if (alertpanel_full(_("Insecure connection"),
+                       _("This connection is configured to be secured "
+                         "using SSL, but SSL is not available in this "
+                         "build of Sylpheed-Claws. \n\n"
+                         "Do you want to continue connecting to this "
+                         "server? The communication would not be "
+                         "secure."),
+                         _("Con_tinue connecting"), 
+                         GTK_STOCK_CANCEL, NULL,
+                         FALSE, NULL, ALERT_WARNING,
+                         G_ALERTALTERNATE) != G_ALERTDEFAULT)
+                       return INC_CONNECT_ERROR;
+       }
        port = pop3_session->ac_prefs->set_popport ?
                pop3_session->ac_prefs->popport : 110;
 #endif
 
-       statusbar_verbosity_set(TRUE);
-       buf = g_strdup_printf(_("Connecting to POP3 server: %s ..."), server);
+       buf = g_strdup_printf(_("Connecting to POP3 server: %s..."), server);
        log_message("%s\n", buf);
 
        progress_dialog_set_label(inc_dialog->dialog, buf);
        g_free(buf);
-       GTK_EVENTS_FLUSH();
 
-       statusbar_verbosity_set(FALSE);
+       session_set_timeout(SESSION(pop3_session),
+                           prefs_common.io_timeout_secs * 1000);
 
        if (session_connect(SESSION(pop3_session), server, port) < 0) {
                log_warning(_("Can't connect to POP3 server: %s:%d\n"),
                            server, port);
                if(!prefs_common.no_recv_err_panel) {
                        if((prefs_common.recv_dialog_mode == RECV_DIALOG_ALWAYS) ||
-                           ((prefs_common.recv_dialog_mode == RECV_DIALOG_ACTIVE) && focus_window)) {
+                           ((prefs_common.recv_dialog_mode == RECV_DIALOG_MANUAL) && focus_window)) {
                                manage_window_focus_in(inc_dialog->dialog->window, NULL, NULL);
                        }
                        alertpanel_error(_("Can't connect to POP3 server: %s:%d"),
@@ -714,27 +791,34 @@ static IncState inc_pop3_session_do(IncSession *session)
                        manage_window_focus_out(inc_dialog->dialog->window, NULL, NULL);
                }
                session->inc_state = INC_CONNECT_ERROR;
+               statusbar_pop_all();
                return INC_CONNECT_ERROR;
        }
 
-       statusbar_verbosity_set(TRUE);
-
-       while (SESSION(pop3_session)->state != SESSION_DISCONNECTED &&
-              SESSION(pop3_session)->state != SESSION_ERROR)
+       while (session_is_connected(SESSION(pop3_session)) &&
+              session->inc_state != INC_CANCEL)
                gtk_main_iteration();
 
-
-       statusbar_verbosity_set(FALSE);
        if (session->inc_state == INC_SUCCESS) {
                switch (pop3_session->error_val) {
                case PS_SUCCESS:
-                       if (SESSION(pop3_session)->state == SESSION_ERROR) {
+                       switch (SESSION(pop3_session)->state) {
+                       case SESSION_ERROR:
                                if (pop3_session->state == POP3_READY)
                                        session->inc_state = INC_CONNECT_ERROR;
                                else
                                        session->inc_state = INC_ERROR;
-                       } else
+                               break;
+                       case SESSION_EOF:
+                               session->inc_state = INC_EOF;
+                               break;
+                       case SESSION_TIMEOUT:
+                               session->inc_state = INC_TIMEOUT;
+                               break;
+                       default:
                                session->inc_state = INC_SUCCESS;
+                               break;
+                       }
                        break;
                case PS_AUTHFAIL:
                        session->inc_state = INC_AUTH_FAILED;
@@ -754,43 +838,175 @@ static IncState inc_pop3_session_do(IncSession *session)
                }
        }
 
+       session_disconnect(SESSION(pop3_session));
+       statusbar_pop_all();
+
        return session->inc_state;
 }
 
+static void inc_progress_dialog_update(IncProgressDialog *inc_dialog,
+                                      IncSession *inc_session)
+{
+       inc_progress_dialog_set_label(inc_dialog, inc_session);
+       inc_progress_dialog_set_progress(inc_dialog, inc_session);
+}
+
+static void inc_progress_dialog_set_label(IncProgressDialog *inc_dialog,
+                                         IncSession *inc_session)
+{
+       ProgressDialog *dialog = inc_dialog->dialog;
+       Pop3Session *session;
+
+       g_return_if_fail(inc_session != NULL);
+
+       session = POP3_SESSION(inc_session->session);
+
+       switch (session->state) {
+       case POP3_GREETING:
+               break;
+       case POP3_GETAUTH_USER:
+       case POP3_GETAUTH_PASS:
+       case POP3_GETAUTH_APOP:
+               progress_dialog_set_label(dialog, _("Authenticating..."));
+               statusbar_print_all(_("Retrieving messages from %s (%s) ..."),
+                                   SESSION(session)->server,
+                                   session->ac_prefs->account_name);
+               break;
+       case POP3_GETRANGE_STAT:
+               progress_dialog_set_label
+                       (dialog, _("Getting the number of new messages (STAT)..."));
+               break;
+       case POP3_GETRANGE_LAST:
+               progress_dialog_set_label
+                       (dialog, _("Getting the number of new messages (LAST)..."));
+               break;
+       case POP3_GETRANGE_UIDL:
+               progress_dialog_set_label
+                       (dialog, _("Getting the number of new messages (UIDL)..."));
+               break;
+       case POP3_GETSIZE_LIST:
+               progress_dialog_set_label
+                       (dialog, _("Getting the size of messages (LIST)..."));
+               break;
+       case POP3_RETR:
+       case POP3_RETR_RECV:
+               break;
+       case POP3_DELETE:
+#if 0
+               if (session->msg[session->cur_msg].recv_time <
+                       session->current_time) {
+                       gchar buf[MSGBUFSIZE];
+                       g_snprintf(buf, sizeof(buf), _("Deleting message %d"),
+                                  session->cur_msg);
+                       progress_dialog_set_label(dialog, buf);
+               }
+#endif
+               break;
+       case POP3_LOGOUT:
+               progress_dialog_set_label(dialog, _("Quitting"));
+               break;
+       default:
+               break;
+       }
+}
+
+static void inc_progress_dialog_set_progress(IncProgressDialog *inc_dialog,
+                                            IncSession *inc_session)
+{
+       gchar buf[MSGBUFSIZE];
+       Pop3Session *pop3_session = POP3_SESSION(inc_session->session);
+       gchar *total_size_str;
+       gint cur_total;
+       gint total;
+
+       if (!pop3_session->new_msg_exist) return;
+
+       cur_total = inc_session->cur_total_bytes;
+       total = pop3_session->total_bytes;
+       if (pop3_session->state == POP3_RETR ||
+           pop3_session->state == POP3_RETR_RECV ||
+           pop3_session->state == POP3_DELETE) {
+               Xstrdup_a(total_size_str, to_human_readable(total), return);
+               g_snprintf(buf, sizeof(buf),
+                          _("Retrieving message (%d / %d) (%s / %s)"),
+                          pop3_session->cur_msg, pop3_session->count,
+                          to_human_readable(cur_total), total_size_str);
+               progress_dialog_set_label(inc_dialog->dialog, buf);
+       }
+
+       progress_dialog_set_fraction
+               (inc_dialog->dialog,(gfloat)cur_total / (gfloat)total);
+
+       g_snprintf(buf, sizeof(buf), "%d / %d",
+                  pop3_session->cur_msg, pop3_session->count);
+       gtk_progress_bar_set_text
+               (GTK_PROGRESS_BAR(inc_dialog->mainwin->progressbar), buf);
+       gtk_progress_bar_set_fraction
+               (GTK_PROGRESS_BAR(inc_dialog->mainwin->progressbar),
+                (gfloat)cur_total / (gfloat)total);
+
+       if (pop3_session->cur_total_num > 0) {
+               g_snprintf(buf, sizeof(buf),
+                          ngettext("Retrieving (%d message (%s) received)",
+                                   "Retrieving (%d messages (%s) received)",
+                                   pop3_session->cur_total_num),
+                          pop3_session->cur_total_num,
+                          to_human_readable
+                          (pop3_session->cur_total_recv_bytes));
+               progress_dialog_list_set_status(inc_dialog->dialog,
+                                               inc_dialog->cur_row,
+                                               buf);
+       }
+}
+
+static void inc_progress_dialog_update_periodic(IncProgressDialog *inc_dialog,
+                                               IncSession *inc_session)
+{
+       GTimeVal tv_cur;
+       GTimeVal tv_result;
+       gint msec;
+
+       g_get_current_time(&tv_cur);
+
+       tv_result.tv_sec = tv_cur.tv_sec - inc_dialog->progress_tv.tv_sec;
+       tv_result.tv_usec = tv_cur.tv_usec - inc_dialog->progress_tv.tv_usec;
+       if (tv_result.tv_usec < 0) {
+               tv_result.tv_sec--;
+               tv_result.tv_usec += G_USEC_PER_SEC;
+       }
+
+       msec = tv_result.tv_sec * 1000 + tv_result.tv_usec / 1000;
+       if (msec > PROGRESS_UPDATE_INTERVAL) {
+               inc_progress_dialog_update(inc_dialog, inc_session);
+               inc_dialog->progress_tv.tv_sec = tv_cur.tv_sec;
+               inc_dialog->progress_tv.tv_usec = tv_cur.tv_usec;
+       }
+}
+
 static gint inc_recv_data_progressive(Session *session, guint cur_len,
                                      guint total_len, gpointer data)
 {
-       gchar buf[MSGBUFSIZE];
        IncSession *inc_session = (IncSession *)data;
        Pop3Session *pop3_session = POP3_SESSION(session);
        IncProgressDialog *inc_dialog;
-       ProgressDialog *dialog;
        gint cur_total;
-       gchar *total_size;
 
        g_return_val_if_fail(inc_session != NULL, -1);
 
-       inc_dialog = (IncProgressDialog *)inc_session->data;
-       dialog = inc_dialog->dialog;
+       if (pop3_session->state != POP3_RETR &&
+           pop3_session->state != POP3_RETR_RECV &&
+           pop3_session->state != POP3_DELETE &&
+           pop3_session->state != POP3_LOGOUT) return 0;
+
+       if (!pop3_session->new_msg_exist) return 0;
 
        cur_total = pop3_session->cur_total_bytes + cur_len;
        if (cur_total > pop3_session->total_bytes)
                cur_total = pop3_session->total_bytes;
+       inc_session->cur_total_bytes = cur_total;
 
-       Xstrdup_a(total_size, to_human_readable(pop3_session->total_bytes),
-                 return FALSE);
-       g_snprintf(buf, sizeof(buf),
-                  _("Retrieving message (%d / %d) (%s / %s)"),
-                  pop3_session->cur_msg, pop3_session->count,
-                  to_human_readable(cur_total), total_size);
-       progress_dialog_set_label(dialog, buf);
-       progress_dialog_set_percentage
-               (dialog, (gfloat)cur_total / (gfloat)pop3_session->total_bytes);
-       if (inc_dialog->mainwin)
-               gtk_progress_bar_update
-                       (GTK_PROGRESS_BAR(inc_dialog->mainwin->progressbar),
-                        (gfloat)cur_total / (gfloat)pop3_session->total_bytes);
-       GTK_EVENTS_FLUSH();
+       inc_dialog = (IncProgressDialog *)inc_session->data;
+       inc_progress_dialog_update_periodic(inc_dialog, inc_session);
 
        return 0;
 }
@@ -798,65 +1014,45 @@ static gint inc_recv_data_progressive(Session *session, guint cur_len,
 static gint inc_recv_data_finished(Session *session, guint len, gpointer data)
 {
        IncSession *inc_session = (IncSession *)data;
+       IncProgressDialog *inc_dialog;
 
        g_return_val_if_fail(inc_session != NULL, -1);
 
-       inc_recv_data_progressive(session, 0, len, inc_session);
+       inc_dialog = (IncProgressDialog *)inc_session->data;
+
+       inc_recv_data_progressive(session, 0, 0, inc_session);
+
+       if (POP3_SESSION(session)->state == POP3_LOGOUT) {
+               inc_progress_dialog_update(inc_dialog, inc_session);
+       }
+
        return 0;
 }
 
 static gint inc_recv_message(Session *session, const gchar *msg, gpointer data)
 {
-       gchar buf[MSGBUFSIZE];
        IncSession *inc_session = (IncSession *)data;
-       Pop3Session *pop3_session = POP3_SESSION(session);
        IncProgressDialog *inc_dialog;
-       ProgressDialog *dialog;
 
        g_return_val_if_fail(inc_session != NULL, -1);
 
        inc_dialog = (IncProgressDialog *)inc_session->data;
-       dialog = inc_dialog->dialog;
 
-       switch (pop3_session->state) {
-       case POP3_GREETING:
-               break;
+       switch (POP3_SESSION(session)->state) {
        case POP3_GETAUTH_USER:
        case POP3_GETAUTH_PASS:
        case POP3_GETAUTH_APOP:
-               progress_dialog_set_label(dialog, _("Authenticating..."));
-               break;
        case POP3_GETRANGE_STAT:
-               progress_dialog_set_label
-                       (dialog, _("Getting the number of new messages (STAT)..."));
-               break;
        case POP3_GETRANGE_LAST:
-               progress_dialog_set_label
-                       (dialog, _("Getting the number of new messages (LAST)..."));
-               break;
        case POP3_GETRANGE_UIDL:
-               progress_dialog_set_label
-                       (dialog, _("Getting the number of new messages (UIDL)..."));
-               break;
        case POP3_GETSIZE_LIST:
-               progress_dialog_set_label
-                       (dialog, _("Getting the size of messages (LIST)..."));
+               inc_progress_dialog_update(inc_dialog, inc_session);
                break;
        case POP3_RETR:
-               inc_recv_data_progressive
-                       (session, 0,
-                        pop3_session->msg[pop3_session->cur_msg].size, data);
-               break;
-       case POP3_DELETE:
-               if (pop3_session->msg[pop3_session->cur_msg].recv_time <
-                       pop3_session->current_time) {
-                       g_snprintf(buf, sizeof(buf), _("Deleting message %d"),
-                                  pop3_session->cur_msg);
-                       progress_dialog_set_label(dialog, buf);
-               }
+               inc_recv_data_progressive(session, 0, 0, inc_session);
                break;
        case POP3_LOGOUT:
-               progress_dialog_set_label(dialog, _("Quitting"));
+               inc_progress_dialog_update(inc_dialog, inc_session);
                break;
        default:
                break;
@@ -865,13 +1061,14 @@ static gint inc_recv_message(Session *session, const gchar *msg, gpointer data)
        return 0;
 }
 
-gint inc_drop_message(const gchar *file, Pop3Session *session)
+static gint inc_drop_message(Pop3Session *session, const gchar *file)
 {
        FolderItem *inbox;
        FolderItem *dropfolder;
-       gint msgnum;
        IncSession *inc_session = (IncSession *)(SESSION(session)->data);
-       gint val;
+       gint msgnum;
+
+       g_return_val_if_fail(inc_session != NULL, -1);
 
        if (session->ac_prefs->inbox) {
                inbox = folder_find_item_from_identifier
@@ -881,7 +1078,7 @@ gint inc_drop_message(const gchar *file, Pop3Session *session)
        } else
                inbox = folder_get_default_inbox();
        if (!inbox) {
-               unlink(file);
+               g_unlink(file);
                return -1;
        }
 
@@ -889,56 +1086,109 @@ gint inc_drop_message(const gchar *file, Pop3Session *session)
        dropfolder = folder_get_default_processing();
 
        /* add msg file to drop folder */
-       if ((msgnum = folder_item_add_msg(dropfolder, file, TRUE)) < 0) {
-               unlink(file);
+       if ((msgnum = folder_item_add_msg(
+                       dropfolder, file, NULL, TRUE)) < 0) {
+               g_unlink(file);
                return -1;
        }
 
        return 0;
 }
 
-static void inc_put_error(IncState istate, const gchar *msg)
+static void inc_put_error(IncState istate, Pop3Session *session)
 {
+       gchar *log_msg = NULL;
+       gchar *err_msg = NULL;
+       gboolean fatal_error = FALSE;
+
        switch (istate) {
+       case INC_CONNECT_ERROR:
+               log_msg = _("Connection failed.");
+               if (prefs_common.no_recv_err_panel)
+                       break;
+               err_msg = g_strdup_printf(_("Connection to %s:%d failed."),
+                                         SESSION(session)->server, 
+                                         SESSION(session)->port);
+               break;
        case INC_ERROR:
+               log_msg = _("Error occurred while processing mail.");
                if (prefs_common.no_recv_err_panel)
                        break;
-               if (msg)
-                       alertpanel_error(_("Error occurred while processing mail:\n%s"), msg);
+               if (session->error_msg)
+                       err_msg = g_strdup_printf
+                               (_("Error occurred while processing mail:\n%s"),
+                                session->error_msg);
                else
-                       alertpanel_error(_("Error occurred while processing mail."));
+                       err_msg = g_strdup(log_msg);
                break;
        case INC_NO_SPACE:
-               alertpanel_error(_("No disk space left."));
+               log_msg = _("No disk space left.");
+               err_msg = g_strdup(log_msg);
+               fatal_error = TRUE;
                break;
        case INC_IO_ERROR:
-               alertpanel_error(_("Can't write file."));
+               log_msg = _("Can't write file.");
+               err_msg = g_strdup(log_msg);
+               fatal_error = TRUE;
                break;
        case INC_SOCKET_ERROR:
+               log_msg = _("Socket error.");
+               if (prefs_common.no_recv_err_panel)
+                       break;
+               err_msg = g_strdup_printf(_("Socket error on connection to %s:%d."),
+                                         SESSION(session)->server, 
+                                         SESSION(session)->port);
+               break;
+       case INC_EOF:
+               log_msg = _("Connection closed by the remote host.");
                if (prefs_common.no_recv_err_panel)
                        break;
-               alertpanel_error(_("Socket error."));
+               err_msg = g_strdup_printf(_("Connection to %s:%d closed by the remote host."), 
+                                         SESSION(session)->server, 
+                                         SESSION(session)->port);
                break;
        case INC_LOCKED:
+               log_msg = _("Mailbox is locked.");
                if (prefs_common.no_recv_err_panel)
                        break;
-               if (msg)
-                       alertpanel_error(_("Mailbox is locked:\n%s"), msg);
+               if (session->error_msg)
+                       err_msg = g_strdup_printf(_("Mailbox is locked:\n%s"),
+                                                 session->error_msg);
                else
-                       alertpanel_error(_("Mailbox is locked."));
+                       err_msg = g_strdup(log_msg);
                break;
        case INC_AUTH_FAILED:
+               log_msg = _("Authentication failed.");
                if (prefs_common.no_recv_err_panel)
                        break;
-               if (msg)
-                       alertpanel_error(_("Authentication failed:\n%s"),
-                                        msg);
+               if (session->error_msg)
+                       err_msg = g_strdup_printf
+                               (_("Authentication failed:\n%s"), session->error_msg);
                else
-                       alertpanel_error(_("Authentication failed."));
+                       err_msg = g_strdup(log_msg);
+               break;
+       case INC_TIMEOUT:
+               log_msg = _("Session timed out.");
+               if (prefs_common.no_recv_err_panel)
+                       break;
+               err_msg = g_strdup_printf(_("Connection to %s:%d timed out."), 
+                                         SESSION(session)->server, 
+                                         SESSION(session)->port);
                break;
        default:
                break;
        }
+
+       if (log_msg) {
+               if (fatal_error)
+                       log_error("%s\n", log_msg);
+               else
+                       log_warning("%s\n", log_msg);
+       }
+       if (err_msg) {
+               alertpanel_error_log(err_msg);
+               g_free(err_msg);
+       }
 }
 
 static void inc_cancel(IncProgressDialog *dialog)
@@ -954,7 +1204,6 @@ static void inc_cancel(IncProgressDialog *dialog)
 
        session = dialog->queue_list->data;
 
-       session->session->state = SESSION_DISCONNECTED;
        session->inc_state = INC_CANCEL;
 
        log_message(_("Incorporation cancelled\n"));
@@ -989,24 +1238,11 @@ static gint inc_dialog_delete_cb(GtkWidget *widget, GdkEventAny *event,
        return TRUE;
 }
 
-static gint inc_spool(void)
-{
-       gchar *mbox, *logname;
-       gint msgs;
-
-       logname = g_get_user_name();
-       mbox = g_strconcat(prefs_common.spool_path
-                          ? prefs_common.spool_path : DEFAULT_SPOOL_PATH,
-                          G_DIR_SEPARATOR_S, logname, NULL);
-       msgs = get_spool(folder_get_default_inbox(), mbox);
-       g_free(mbox);
-
-       return msgs;
-}
-
 static gint inc_spool_account(PrefsAccount *account)
 {
        FolderItem *inbox;
+       gchar *mbox;
+       gint result;
 
        if (account->inbox) {
                inbox = folder_find_item_from_path(account->inbox);
@@ -1015,7 +1251,23 @@ static gint inc_spool_account(PrefsAccount *account)
        } else
                inbox = folder_get_default_inbox();
 
-       return get_spool(inbox, account->local_mbox);
+       if (is_file_exist(account->local_mbox))
+               mbox = g_strdup(account->local_mbox);
+       else if (is_dir_exist(account->local_mbox)) 
+               mbox = g_strconcat(account->local_mbox, G_DIR_SEPARATOR_S,
+                                  g_get_user_name(), NULL);
+       else {
+               debug_print("%s: local mailbox not found.\n", 
+                           account->local_mbox);
+               return -1;
+       }
+       
+       result = get_spool(inbox, mbox);
+       g_free(mbox);
+       
+       statusbar_pop_all();
+       
+       return result;
 }
 
 static gint inc_all_spool(void)
@@ -1051,7 +1303,7 @@ static gint get_spool(FolderItem *dest, const gchar *mbox)
        g_return_val_if_fail(mbox != NULL, -1);
 
        if (!is_file_exist(mbox) || (size = get_file_size(mbox)) == 0) {
-               debug_print("no messages in local mailbox.\n");
+               debug_print("%s: no messages in local mailbox.\n", mbox);
                return 0;
        } else if (size < 0)
                return -1;
@@ -1070,9 +1322,9 @@ static gint get_spool(FolderItem *dest, const gchar *mbox)
        debug_print("Getting new messages from %s into %s...\n",
                    mbox, dest->path);
 
-       msgs = proc_mbox(dest, tmp_mbox);
+       msgs = proc_mbox(dest, tmp_mbox, TRUE);
 
-       unlink(tmp_mbox);
+       g_unlink(tmp_mbox);
        if (msgs >= 0) empty_mbox(mbox);
        unlock_mbox(mbox, lockfd, LOCK_FLOCK);
 
@@ -1096,18 +1348,29 @@ static gpointer autocheck_data = NULL;
 static void inc_notify_cmd(gint new_msgs, gboolean notify)
 {
 
-       gchar *buf;
+       gchar *buf, *numpos, *ret_str;
+       gssize by_read = 0, by_written = 0;
 
        if (!(new_msgs && notify && prefs_common.newmail_notify_cmd &&
            *prefs_common.newmail_notify_cmd))
                     return;
-       if ((buf = strchr(prefs_common.newmail_notify_cmd, '%')) &&
-               buf[1] == 'd' && !strchr(&buf[1], '%'))
-               buf = g_strdup_printf(prefs_common.newmail_notify_cmd, 
-                                     new_msgs);
-       else
-               buf = g_strdup(prefs_common.newmail_notify_cmd);
+       buf = g_strdup(prefs_common.newmail_notify_cmd);
+       if ((numpos = strstr(buf, "%d")) != NULL) {
+               gchar *buf2;
+
+               *numpos = '\0';
+               buf2 = g_strdup_printf("%s%d%s", buf, new_msgs, numpos + 2);
+               g_free(buf);
+               buf = buf2;
+       }
 
+       ret_str = g_locale_from_utf8(buf, strlen(buf), &by_read, &by_written,
+                                    NULL);
+       if (ret_str && by_written) {
+               g_free(buf);
+               buf = ret_str;
+       }
+       debug_print("executing new mail notification command: %s\n", buf);
        execute_command_line(buf, TRUE);
 
        g_free(buf);
@@ -1156,7 +1419,45 @@ static gint inc_autocheck_func(gpointer data)
                return FALSE;
        }
 
-       inc_all_account_mail(mainwin, prefs_common.newmail_notify_auto);
+       inc_all_account_mail(mainwin, TRUE, prefs_common.newmail_notify_auto);
 
        return FALSE;
 }
+
+gboolean inc_offline_should_override(void)
+{
+       static time_t overridden_yes = 0;
+       static time_t overridden_no  = 0;
+       int length = 600;
+       gint answer = G_ALERTDEFAULT;
+       
+       if (prefs_common.autochk_newmail)
+               length = prefs_common.autochk_itv;
+
+       if (prefs_common.work_offline) {
+               gchar *tmp = g_strdup_printf(
+                               _("You're working offline. Override for %d minutes?"),
+                               length);
+               if (time(NULL) - overridden_yes < length * 10)
+                        return TRUE;
+               else if (time(NULL) - overridden_no < length * 10)
+                        return FALSE;
+               
+               answer = alertpanel(_("Offline warning"), 
+                              tmp,
+                              GTK_STOCK_YES, GTK_STOCK_NO, _("On_ly once"));
+               g_free(tmp);
+               if (answer == G_ALERTDEFAULT) {
+                       overridden_yes = time(NULL);
+                       return TRUE;
+               } else if (answer == G_ALERTALTERNATE) {
+                       overridden_no  = time(NULL);
+                       return FALSE;
+               } else {
+                       overridden_yes = (time_t)0;
+                       overridden_no  = (time_t)0;
+                       return TRUE;
+               }
+       }
+       return TRUE;
+}