claws-mail/src/inc.c
2003-04-17 08:18:15 +00:00

1163 lines
30 KiB
C

/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
* Copyright (C) 1999-2003 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
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* 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.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "defs.h"
#include <glib.h>
#include <gtk/gtkmain.h>
#include <gtk/gtkwindow.h>
#include <gtk/gtksignal.h>
#include <gtk/gtkprogressbar.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"
#include "folderview.h"
#include "summaryview.h"
#include "prefs_common.h"
#include "prefs_account.h"
#include "account.h"
#include "procmsg.h"
#include "socket.h"
#include "ssl.h"
#include "pop.h"
#include "recv.h"
#include "mbox.h"
#include "utils.h"
#include "gtkutils.h"
#include "statusbar.h"
#include "manage_window.h"
#include "stock_pixmap.h"
#include "progressdialog.h"
#include "inputdialog.h"
#include "alertpanel.h"
#include "folder.h"
#include "filtering.h"
#include "log.h"
#include "hooks.h"
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;
#define MSGBUFSIZE 8192
static void inc_finished (MainWindow *mainwin,
gboolean new_messages);
static gint inc_account_mail (PrefsAccount *account,
MainWindow *mainwin);
static IncProgressDialog *inc_progress_dialog_create (void);
static void inc_progress_dialog_destroy (IncProgressDialog *inc_dialog);
static IncSession *inc_session_new (PrefsAccount *account);
static void inc_session_destroy (IncSession *session);
static gint inc_start (IncProgressDialog *inc_dialog);
static IncState inc_pop3_session_do (IncSession *session);
static gint inc_recv_data_progressive (Session *session,
guint cur_len,
guint total_len,
gpointer data);
static gint inc_recv_data_finished (Session *session,
guint len,
gpointer data);
static gint inc_recv_message (Session *session,
const gchar *msg,
gpointer data);
static void inc_put_error (IncState istate,
const gchar *msg);
static void inc_cancel_cb (GtkWidget *widget,
gpointer data);
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);
static gint inc_spool_account(PrefsAccount *account);
static gint inc_all_spool(void);
static void inc_autocheck_timer_set_interval (guint interval);
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:
* @mainwin: Main window.
* @new_messages: TRUE if some messages have been received.
*
* Update the folder view and the summary view after receiving
* messages. If @new_messages is FALSE, this function avoids unneeded
* updating.
**/
static void inc_finished(MainWindow *mainwin, gboolean new_messages)
{
FolderItem *item;
if (prefs_common.scan_all_after_inc)
folderview_check_new(NULL);
if (!new_messages && !prefs_common.scan_all_after_inc) return;
if (prefs_common.open_inbox_on_inc) {
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);
}
}
}
void inc_mail(MainWindow *mainwin, gboolean notify)
{
gint new_msgs = 0;
gint account_new_msgs = 0;
if (inc_lock_count) return;
if (prefs_common.work_offline)
if (alertpanel(_("Offline warning"),
_("You're working offline. Override?"),
_("Yes"), _("No"), NULL) != G_ALERTDEFAULT)
return;
inc_lock();
inc_autocheck_timer_remove();
main_window_lock(mainwin);
if (prefs_common.use_extinc && prefs_common.extinc_cmd) {
/* external incorporating program */
if (execute_command_line(prefs_common.extinc_cmd, FALSE) < 0) {
main_window_unlock(mainwin);
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;
}
cur_account->session = STYPE_NORMAL;
account_new_msgs = inc_account_mail(cur_account, mainwin);
if (account_new_msgs > 0)
new_msgs += account_new_msgs;
}
inc_finished(mainwin, new_msgs > 0);
main_window_unlock(mainwin);
inc_notify_cmd(new_msgs, notify);
inc_autocheck_timer_set();
inc_unlock();
}
void inc_pop_before_smtp(PrefsAccount *acc)
{
acc->session = STYPE_POP_BEFORE_SMTP;
inc_account_mail(acc, NULL);
}
static gint inc_account_mail(PrefsAccount *account, MainWindow *mainwin)
{
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:
/* Melvin: bug [14]
* FIXME: it should return foldeview_check_new() value.
* TODO: do it when bug [19] is fixed (IMAP folder sets
* an incorrect new message count)
*/
folderview_check_new(FOLDER(account->folder));
return 0;
case A_POP3:
case A_APOP:
session = inc_session_new(account);
if (!session) return 0;
inc_dialog = inc_progress_dialog_create();
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);
if (mainwin) {
toolbar_main_set_sensitive(mainwin);
main_window_set_menu_sensitive(mainwin);
}
return inc_start(inc_dialog);
case A_LOCAL:
return inc_spool_account(account);
default:
break;
}
return 0;
}
void inc_all_account_mail(MainWindow *mainwin, 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)
return;
if (inc_lock_count) return;
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);
main_window_unlock(mainwin);
inc_notify_cmd(new_msgs, notify);
inc_autocheck_timer_set();
return;
}
/* check local folders */
account_new_msgs = inc_all_spool();
if (account_new_msgs > 0)
new_msgs += account_new_msgs;
/* check IMAP4 folders */
for (; list != NULL; list = list->next) {
PrefsAccount *account = list->data;
if ((account->protocol == A_IMAP4 ||
account->protocol == A_NNTP) && account->recv_at_getall) {
new_msgs += folderview_check_new(FOLDER(account->folder));
}
}
/* check POP3 accounts */
for (list = account_get_list(); list != NULL; list = list->next) {
IncSession *session;
PrefsAccount *account = list->data;
account->session = STYPE_NORMAL;
if (account->recv_at_getall) {
session = inc_session_new(account);
if (session)
queue_list = g_list_append(queue_list, session);
}
}
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;
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);
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)
{
IncProgressDialog *dialog;
ProgressDialog *progress;
dialog = g_new0(IncProgressDialog, 1);
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);
/* manage_window_set_transient(GTK_WINDOW(progress->window)); */
progress_dialog_set_value(progress, 0.0);
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);
if (prefs_common.recv_dialog_mode == RECV_DIALOG_ALWAYS ||
(prefs_common.recv_dialog_mode == RECV_DIALOG_ACTIVE &&
manage_window_get_focus_window())) {
dialog->show_dialog = TRUE;
gtk_widget_show_now(progress->window);
}
dialog->dialog = progress;
dialog->queue_list = NULL;
inc_dialog_list = g_list_append(inc_dialog_list, dialog);
return dialog;
}
static void inc_progress_dialog_clear(IncProgressDialog *inc_dialog)
{
progress_dialog_set_value(inc_dialog->dialog, 0.0);
progress_dialog_set_label(inc_dialog->dialog, "");
if (inc_dialog->mainwin)
gtk_progress_bar_update
(GTK_PROGRESS_BAR(inc_dialog->mainwin->progressbar), 0.0);
}
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);
progress_dialog_destroy(inc_dialog->dialog);
g_free(inc_dialog);
}
static IncSession *inc_session_new(PrefsAccount *account)
{
IncSession *session;
g_return_val_if_fail(account != NULL, NULL);
if (account->protocol != A_POP3 && account->protocol != A_APOP)
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;
return session;
}
static void inc_session_destroy(IncSession *session)
{
g_return_if_fail(session != NULL);
session_destroy(session->session);
g_free(session);
}
static gint inc_start(IncProgressDialog *inc_dialog)
{
IncSession *session;
GtkCList *clist = GTK_CLIST(inc_dialog->dialog->clist);
Pop3Session *pop3_session;
IncState inc_state;
gint num = 0;
gint error_num = 0;
gint new_msgs = 0;
gchar *msg;
gchar *fin_msg;
FolderItem *processing, *inbox;
MsgInfo *msginfo;
GSList *msglist, *msglist_element;
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);
pop3_session->user = g_strdup(pop3_session->ac_prefs->userid);
if (pop3_session->ac_prefs->passwd)
pop3_session->pass =
g_strdup(pop3_session->ac_prefs->passwd);
else if (pop3_session->ac_prefs->tmp_pass)
pop3_session->pass =
g_strdup(pop3_session->ac_prefs->tmp_pass);
else {
gchar *pass;
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,
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"));
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);
/* begin POP3 session */
inc_state = inc_pop3_session_do(session);
switch (inc_state) {
case INC_SUCCESS:
if (pop3_session->cur_total_num > 0)
msg = g_strdup_printf
(_("Done (%d message(s) (%s) received)"),
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);
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"));
break;
case INC_AUTH_FAILED:
gtk_clist_set_pixmap(clist, num, 0, errorxpm, errorxpmmask);
gtk_clist_set_text(clist, num, 2, _("Auth failed"));
break;
case INC_LOCKED:
gtk_clist_set_pixmap(clist, num, 0, errorxpm, errorxpmmask);
gtk_clist_set_text(clist, num, 2, _("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"));
break;
case INC_CANCEL:
gtk_clist_set_pixmap(clist, num, 0, okxpm, okxpmmask);
gtk_clist_set_text(clist, num, 2, _("Cancelled"));
break;
default:
break;
}
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)) {
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);
}
}
/* CLAWS: perform filtering actions on dropped message */
/* CLAWS: get default inbox (perhaps per account) */
if (pop3_session->ac_prefs->inbox) {
/* CLAWS: get destination folder / mailbox */
inbox = folder_find_item_from_identifier(pop3_session->ac_prefs->inbox);
if (!inbox)
inbox = folder_get_default_inbox();
} else
inbox = folder_get_default_inbox();
/* get list of messages in processing */
processing = folder_get_default_processing();
folder_item_scan(processing);
msglist = folder_item_get_msg_list(processing);
folder_item_update_freeze();
/* process messages */
for(msglist_element = msglist; msglist_element != NULL; msglist_element = msglist_element->next) {
msginfo = (MsgInfo *) msglist_element->data;
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();
new_msgs += pop3_session->cur_total_num;
if (pop3_session->error_val == PS_AUTHFAIL &&
pop3_session->ac_prefs->tmp_pass) {
g_free(pop3_session->ac_prefs->tmp_pass);
pop3_session->ac_prefs->tmp_pass = NULL;
}
pop3_write_uidl_list(pop3_session);
if (inc_state != INC_SUCCESS && inc_state != INC_CANCEL) {
error_num++;
if (inc_dialog->show_dialog)
manage_window_focus_in
(inc_dialog->dialog->window,
NULL, NULL);
inc_put_error(inc_state, pop3_session->error_msg);
if (inc_dialog->show_dialog)
manage_window_focus_out
(inc_dialog->dialog->window,
NULL, NULL);
if (inc_state == INC_NO_SPACE ||
inc_state == INC_IO_ERROR)
break;
}
inc_session_destroy(session);
inc_dialog->queue_list =
g_list_remove(inc_dialog->queue_list, session);
num++;
}
if (new_msgs > 0)
fin_msg = g_strdup_printf(_("Finished (%d new message(s))"),
new_msgs);
else
fin_msg = g_strdup_printf(_("Finished (no new messages)"));
progress_dialog_set_label(inc_dialog->dialog, fin_msg);
if (error_num && !prefs_common.no_recv_err_panel) {
if (inc_dialog->show_dialog)
manage_window_focus_in(inc_dialog->dialog->window,
NULL, NULL);
alertpanel_error_log(_("Some errors occurred while getting mail."));
if (inc_dialog->show_dialog)
manage_window_focus_out(inc_dialog->dialog->window,
NULL, NULL);
}
while (inc_dialog->queue_list != NULL) {
session = inc_dialog->queue_list->data;
inc_session_destroy(session);
inc_dialog->queue_list =
g_list_remove(inc_dialog->queue_list, session);
}
if (prefs_common.close_recv_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"));
}
g_free(fin_msg);
return new_msgs;
}
static IncState inc_pop3_session_do(IncSession *session)
{
Pop3Session *pop3_session = POP3_SESSION(session->session);
IncProgressDialog *inc_dialog = (IncProgressDialog *)session->data;
gchar *server;
gushort port;
gchar *buf;
debug_print("getting new messages of account %s...\n",
pop3_session->ac_prefs->account_name);
buf = g_strdup_printf(_("%s: Retrieving new messages"),
pop3_session->ac_prefs->recv_server);
gtk_window_set_title(GTK_WINDOW(inc_dialog->dialog->window), buf);
g_free(buf);
server = pop3_session->ac_prefs->recv_server;
#if USE_OPENSSL
port = pop3_session->ac_prefs->set_popport ?
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;
#else
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);
log_message("%s\n", buf);
progress_dialog_set_label(inc_dialog->dialog, buf);
g_free(buf);
GTK_EVENTS_FLUSH();
statusbar_verbosity_set(FALSE);
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)) {
manage_window_focus_in(inc_dialog->dialog->window, NULL, NULL);
}
alertpanel_error(_("Can't connect to POP3 server: %s:%d"),
server, port);
manage_window_focus_out(inc_dialog->dialog->window, NULL, NULL);
}
session->inc_state = INC_CONNECT_ERROR;
return INC_CONNECT_ERROR;
}
statusbar_verbosity_set(TRUE);
while (SESSION(pop3_session)->state != SESSION_DISCONNECTED &&
SESSION(pop3_session)->state != SESSION_ERROR)
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) {
if (pop3_session->state == POP3_READY)
session->inc_state = INC_CONNECT_ERROR;
else
session->inc_state = INC_ERROR;
} else
session->inc_state = INC_SUCCESS;
break;
case PS_AUTHFAIL:
session->inc_state = INC_AUTH_FAILED;
break;
case PS_IOERR:
session->inc_state = INC_IO_ERROR;
break;
case PS_SOCKET:
session->inc_state = INC_SOCKET_ERROR;
break;
case PS_LOCKBUSY:
session->inc_state = INC_LOCKED;
break;
default:
session->inc_state = INC_ERROR;
break;
}
}
return session->inc_state;
}
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;
cur_total = pop3_session->cur_total_bytes + cur_len;
if (cur_total > pop3_session->total_bytes)
cur_total = pop3_session->total_bytes;
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();
return 0;
}
static gint inc_recv_data_finished(Session *session, guint len, gpointer data)
{
IncSession *inc_session = (IncSession *)data;
g_return_val_if_fail(inc_session != NULL, -1);
inc_recv_data_progressive(session, 0, len, 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;
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)..."));
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);
}
break;
case POP3_LOGOUT:
progress_dialog_set_label(dialog, _("Quitting"));
break;
default:
break;
}
return 0;
}
gint inc_drop_message(const gchar *file, Pop3Session *session)
{
FolderItem *inbox;
FolderItem *dropfolder;
gint msgnum;
IncSession *inc_session = (IncSession *)(SESSION(session)->data);
gint val;
if (session->ac_prefs->inbox) {
inbox = folder_find_item_from_identifier
(session->ac_prefs->inbox);
if (!inbox)
inbox = folder_get_default_inbox();
} else
inbox = folder_get_default_inbox();
if (!inbox) {
unlink(file);
return -1;
}
/* CLAWS: claws uses a global .processing folder for the filtering. */
dropfolder = folder_get_default_processing();
/* add msg file to drop folder */
if ((msgnum = folder_item_add_msg(dropfolder, file, TRUE)) < 0) {
unlink(file);
return -1;
}
return 0;
}
static void inc_put_error(IncState istate, const gchar *msg)
{
switch (istate) {
case INC_ERROR:
if (prefs_common.no_recv_err_panel)
break;
if (msg)
alertpanel_error(_("Error occurred while processing mail:\n%s"), msg);
else
alertpanel_error(_("Error occurred while processing mail."));
break;
case INC_NO_SPACE:
alertpanel_error(_("No disk space left."));
break;
case INC_IO_ERROR:
alertpanel_error(_("Can't write file."));
break;
case INC_SOCKET_ERROR:
if (prefs_common.no_recv_err_panel)
break;
alertpanel_error(_("Socket error."));
break;
case INC_LOCKED:
if (prefs_common.no_recv_err_panel)
break;
if (msg)
alertpanel_error(_("Mailbox is locked:\n%s"), msg);
else
alertpanel_error(_("Mailbox is locked."));
break;
case INC_AUTH_FAILED:
if (prefs_common.no_recv_err_panel)
break;
if (msg)
alertpanel_error(_("Authentication failed:\n%s"),
msg);
else
alertpanel_error(_("Authentication failed."));
break;
default:
break;
}
}
static void inc_cancel(IncProgressDialog *dialog)
{
IncSession *session;
g_return_if_fail(dialog != NULL);
if (dialog->queue_list == NULL) {
inc_progress_dialog_destroy(dialog);
return;
}
session = dialog->queue_list->data;
session->session->state = SESSION_DISCONNECTED;
session->inc_state = INC_CANCEL;
log_message(_("Incorporation cancelled\n"));
}
gboolean inc_is_active(void)
{
return (inc_dialog_list != NULL);
}
void inc_cancel_all(void)
{
GList *cur;
for (cur = inc_dialog_list; cur != NULL; cur = cur->next)
inc_cancel((IncProgressDialog *)cur->data);
}
static void inc_cancel_cb(GtkWidget *widget, gpointer data)
{
inc_cancel((IncProgressDialog *)data);
}
static gint inc_dialog_delete_cb(GtkWidget *widget, GdkEventAny *event,
gpointer data)
{
IncProgressDialog *dialog = (IncProgressDialog *)data;
if (dialog->queue_list == NULL)
inc_progress_dialog_destroy(dialog);
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;
if (account->inbox) {
inbox = folder_find_item_from_path(account->inbox);
if (!inbox)
inbox = folder_get_default_inbox();
} else
inbox = folder_get_default_inbox();
return get_spool(inbox, account->local_mbox);
}
static gint inc_all_spool(void)
{
GList *list = NULL;
gint new_msgs = 0;
gint account_new_msgs = 0;
list = account_get_list();
if (!list) return 0;
for (; list != NULL; list = list->next) {
PrefsAccount *account = list->data;
if ((account->protocol == A_LOCAL) &&
(account->recv_at_getall)) {
account_new_msgs = inc_spool_account(account);
if (account_new_msgs > 0)
new_msgs += account_new_msgs;
}
}
return new_msgs;
}
static gint get_spool(FolderItem *dest, const gchar *mbox)
{
gint msgs, size;
gint lockfd;
gchar tmp_mbox[MAXPATHLEN + 1];
g_return_val_if_fail(dest != NULL, -1);
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");
return 0;
} else if (size < 0)
return -1;
if ((lockfd = lock_mbox(mbox, LOCK_FLOCK)) < 0)
return -1;
g_snprintf(tmp_mbox, sizeof(tmp_mbox), "%s%ctmpmbox.%08x",
get_tmp_dir(), G_DIR_SEPARATOR, (gint)mbox);
if (copy_mbox(mbox, tmp_mbox) < 0) {
unlock_mbox(mbox, lockfd, LOCK_FLOCK);
return -1;
}
debug_print("Getting new messages from %s into %s...\n",
mbox, dest->path);
msgs = proc_mbox(dest, tmp_mbox);
unlink(tmp_mbox);
if (msgs >= 0) empty_mbox(mbox);
unlock_mbox(mbox, lockfd, LOCK_FLOCK);
return msgs;
}
void inc_lock(void)
{
inc_lock_count++;
}
void inc_unlock(void)
{
if (inc_lock_count > 0)
inc_lock_count--;
}
static guint autocheck_timer = 0;
static gpointer autocheck_data = NULL;
static void inc_notify_cmd(gint new_msgs, gboolean notify)
{
gchar *buf;
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);
execute_command_line(buf, TRUE);
g_free(buf);
}
void inc_autocheck_timer_init(MainWindow *mainwin)
{
autocheck_data = mainwin;
inc_autocheck_timer_set();
}
static void inc_autocheck_timer_set_interval(guint interval)
{
inc_autocheck_timer_remove();
/* last test is to avoid re-enabling auto_check after modifying
the common preferences */
if (prefs_common.autochk_newmail && autocheck_data
&& prefs_common.work_offline == FALSE) {
autocheck_timer = gtk_timeout_add
(interval, inc_autocheck_func, autocheck_data);
debug_print("added timer = %d\n", autocheck_timer);
}
}
void inc_autocheck_timer_set(void)
{
inc_autocheck_timer_set_interval(prefs_common.autochk_itv * 60000);
}
void inc_autocheck_timer_remove(void)
{
if (autocheck_timer) {
debug_print("removed timer = %d\n", autocheck_timer);
gtk_timeout_remove(autocheck_timer);
autocheck_timer = 0;
}
}
static gint inc_autocheck_func(gpointer data)
{
MainWindow *mainwin = (MainWindow *)data;
if (inc_lock_count) {
debug_print("autocheck is locked.\n");
inc_autocheck_timer_set_interval(1000);
return FALSE;
}
inc_all_account_mail(mainwin, prefs_common.newmail_notify_auto);
return FALSE;
}