claws-mail/src/inc.c

1272 lines
33 KiB
C
Raw Normal View History

2001-04-19 14:21:46 +02:00
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
2002-02-21 15:56:09 +01:00
* Copyright (C) 1999-2002 Hiroyuki Yamamoto
2001-04-19 14:21:46 +02:00
*
* 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>
2001-08-23 07:54:21 +02:00
#include <gtk/gtkprogressbar.h>
2001-04-19 14:21:46 +02:00
#include <stdio.h>
#include <unistd.h>
#include <string.h>
2002-06-17 12:02:21 +02:00
#include <time.h>
2001-04-19 14:21:46 +02:00
#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"
2001-08-27 13:07:43 +02:00
#include "ssl.h"
2001-04-19 14:21:46 +02:00
#include "pop.h"
#include "recv.h"
#include "mbox.h"
#include "utils.h"
#include "gtkutils.h"
#include "statusbar.h"
#include "manage_window.h"
2001-12-22 01:30:32 +01:00
#include "stock_pixmap.h"
2001-04-19 14:21:46 +02:00
#include "progressdialog.h"
#include "inputdialog.h"
#include "alertpanel.h"
#include "filter.h"
#include "automaton.h"
#include "folder.h"
2001-05-15 06:50:27 +02:00
#include "filtering.h"
2002-02-22 10:35:36 +01:00
#include "selective_download.h"
2001-04-19 14:21:46 +02:00
2002-03-07 14:22:39 +01:00
static GList *inc_dialog_list = NULL;
2001-09-02 17:07:05 +02:00
static guint inc_lock_count = 0;
static GdkPixmap *currentxpm;
static GdkBitmap *currentxpmmask;
static GdkPixmap *errorxpm;
static GdkBitmap *errorxpmmask;
static GdkPixmap *okxpm;
static GdkBitmap *okxpmmask;
2001-04-27 22:27:24 +02:00
2001-04-19 14:21:46 +02:00
#define MSGBUFSIZE 8192
2001-08-22 12:58:38 +02:00
static void inc_finished (MainWindow *mainwin,
gboolean new_messages);
static gint inc_account_mail (PrefsAccount *account,
2001-04-19 14:21:46 +02:00
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);
2001-08-22 12:58:38 +02:00
static gint inc_start (IncProgressDialog *inc_dialog);
2001-04-19 14:21:46 +02:00
static IncState inc_pop3_session_do (IncSession *session);
2001-04-27 22:27:24 +02:00
static gint pop3_automaton_terminate (SockInfo *source,
2001-04-19 14:21:46 +02:00
Automaton *atm);
2002-02-23 11:52:54 +01:00
static gboolean inc_pop3_recv_func (SockInfo *sock,
2001-07-15 15:42:30 +02:00
gint count,
2001-05-06 22:06:56 +02:00
gint read_bytes,
2001-04-28 00:47:56 +02:00
gpointer data);
2001-04-19 14:21:46 +02:00
static void inc_put_error (IncState istate);
2002-03-07 14:22:39 +01:00
static void inc_cancel_cb (GtkWidget *widget,
2001-04-19 14:21:46 +02:00
gpointer data);
2002-08-29 11:13:53 +02:00
static gint inc_dialog_delete_cb (GtkWidget *widget,
GdkEventAny *event,
gpointer data);
2001-04-19 14:21:46 +02:00
static gint inc_spool (void);
static gint get_spool (FolderItem *dest,
const gchar *mbox);
2002-03-10 15:09:59 +01:00
static void inc_spool_account(PrefsAccount *account);
static void inc_all_spool(void);
2001-09-02 17:07:05 +02:00
static void inc_autocheck_timer_set_interval (guint interval);
static gint inc_autocheck_func (gpointer data);
2001-05-06 22:06:56 +02:00
static void inc_notify_cmd (gint new_msgs,
gboolean notify);
#define FOLDER_SUMMARY_MISMATCH(f, s) \
(f) && (s) ? ((s)->newmsgs != (f)->new) || ((f)->unread != (s)->unread) || ((f)->total != (s)->messages) \
: FALSE
2001-08-22 12:58:38 +02:00
/**
* 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)
2001-04-19 14:21:46 +02:00
{
FolderItem *item;
2002-02-21 15:56:09 +01:00
2001-08-16 13:28:10 +02:00
if (prefs_common.scan_all_after_inc)
2002-02-21 15:56:09 +01:00
folderview_check_new(NULL);
2001-08-22 12:58:38 +02:00
if (!new_messages && !prefs_common.scan_all_after_inc) return;
2001-08-16 13:28:10 +02:00
2001-04-19 14:21:46 +02:00
if (prefs_common.open_inbox_on_inc) {
item = cur_account && cur_account->inbox
2002-04-05 10:20:10 +02:00
? folder_find_item_from_identifier(cur_account->inbox)
2001-04-19 14:21:46 +02:00
: folder_get_default_inbox();
if (FOLDER_SUMMARY_MISMATCH(item, mainwin->summaryview)) {
folderview_unselect(mainwin->folderview);
folderview_select(mainwin->folderview, item);
}
2002-08-16 11:34:01 +02:00
} else if (prefs_common.scan_all_after_inc) {
2001-04-19 14:21:46 +02:00
item = mainwin->summaryview->folder_item;
if (FOLDER_SUMMARY_MISMATCH(item, mainwin->summaryview)) {
2002-08-16 11:34:01 +02:00
folderview_update_item(item, TRUE);
}
2001-04-19 14:21:46 +02:00
}
}
void inc_mail(MainWindow *mainwin, gboolean notify)
2001-04-19 14:21:46 +02:00
{
2001-08-22 12:58:38 +02:00
gint new_msgs = 0;
2001-09-02 17:07:05 +02:00
if (inc_lock_count) return;
2002-04-21 14:11:43 +02:00
if (prefs_common.work_offline)
if (alertpanel(_("Offline warning"),
_("You're working offline. Override?"),
_("Yes"), _("No"), NULL) != G_ALERTDEFAULT)
return;
2001-05-06 22:06:56 +02:00
inc_autocheck_timer_remove();
2001-08-22 12:58:38 +02:00
main_window_lock(mainwin);
2001-04-19 14:21:46 +02:00
2001-09-13 15:38:32 +02:00
if (prefs_common.use_extinc && prefs_common.extinc_cmd) {
2001-04-19 14:21:46 +02:00
/* external incorporating program */
2001-09-13 15:38:32 +02:00
if (execute_command_line(prefs_common.extinc_cmd, FALSE) < 0) {
2001-08-22 12:58:38 +02:00
main_window_unlock(mainwin);
2001-05-23 05:04:46 +02:00
inc_autocheck_timer_set();
2001-04-19 14:21:46 +02:00
return;
}
2001-08-22 12:58:38 +02:00
if (prefs_common.inc_local)
new_msgs = inc_spool();
2002-07-26 11:05:51 +02:00
if (new_msgs <= 0)
new_msgs = 1;
2001-04-19 14:21:46 +02:00
} else {
2002-09-11 09:56:56 +02:00
if (prefs_common.inc_local) {
2001-08-22 12:58:38 +02:00
new_msgs = inc_spool();
2002-09-11 09:56:56 +02:00
if (new_msgs < 0)
new_msgs = 0;
}
2001-04-19 14:21:46 +02:00
2001-08-22 12:58:38 +02:00
new_msgs += inc_account_mail(cur_account, mainwin);
2001-04-19 14:21:46 +02:00
}
2001-08-22 12:58:38 +02:00
inc_finished(mainwin, new_msgs > 0);
main_window_unlock(mainwin);
inc_notify_cmd(new_msgs, notify);
2001-05-23 05:04:46 +02:00
inc_autocheck_timer_set();
2001-04-19 14:21:46 +02:00
}
2002-06-10 23:55:17 +02:00
void inc_selective_download(MainWindow *mainwin, PrefsAccount *acc, gint session)
2002-02-22 10:35:36 +01:00
{
2002-06-10 23:55:17 +02:00
GSList *cur;
gint new_msgs = 0;
2002-02-22 10:35:36 +01:00
2002-06-10 23:55:17 +02:00
acc->session = session;
inc_account_mail(acc, mainwin);
acc->session = STYPE_NORMAL;
2002-02-22 10:35:36 +01:00
2002-06-10 23:55:17 +02:00
for (cur = acc->msg_list; cur != NULL; cur = cur->next) {
HeaderItems *items =(HeaderItems*)cur->data;
if (items->state == SD_DOWNLOADED &&
items->del_by_old_session == FALSE) {
new_msgs++;
}
}
if (new_msgs) {
inc_finished(mainwin, TRUE);
inc_notify_cmd(new_msgs, prefs_common.newmail_notify_manu);
}
2002-02-22 10:35:36 +01:00
}
2002-09-15 12:48:35 +02:00
void inc_pop_before_smtp(PrefsAccount *acc)
{
acc->session = STYPE_POP_BEFORE_SMTP;
inc_account_mail(acc, NULL);
}
2001-08-22 12:58:38 +02:00
static gint inc_account_mail(PrefsAccount *account, MainWindow *mainwin)
2001-04-19 14:21:46 +02:00
{
IncProgressDialog *inc_dialog;
IncSession *session;
2001-04-27 22:27:24 +02:00
gchar *text[3];
2001-04-19 14:21:46 +02:00
2002-03-10 15:09:59 +01:00
switch (account->protocol) {
case A_IMAP4:
case A_NNTP:
2002-02-21 15:56:09 +01:00
folderview_check_new(FOLDER(account->folder));
return 1;
2002-03-07 14:22:39 +01:00
2002-03-10 15:09:59 +01:00
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);
2002-09-15 12:48:35 +02:00
if (mainwin) {
toolbar_set_sensitive(mainwin);
main_window_set_menu_sensitive(mainwin);
}
2002-03-10 15:09:59 +01:00
return inc_start(inc_dialog);
case A_LOCAL:
inc_spool_account(account);
return 1;
}
return 0;
2001-04-19 14:21:46 +02:00
}
void inc_all_account_mail(MainWindow *mainwin, gboolean notify)
2001-04-19 14:21:46 +02:00
{
GList *list, *queue_list = NULL;
IncProgressDialog *inc_dialog;
2001-08-22 12:58:38 +02:00
gint new_msgs = 0;
2002-04-21 14:11:43 +02:00
if (prefs_common.work_offline)
if (alertpanel(_("Offline warning"),
_("You're working offline. Override?"),
_("Yes"), _("No"), NULL) != G_ALERTDEFAULT)
return;
2001-04-19 14:21:46 +02:00
2001-09-02 17:07:05 +02:00
if (inc_lock_count) return;
2001-05-06 22:06:56 +02:00
inc_autocheck_timer_remove();
2001-08-22 12:58:38 +02:00
main_window_lock(mainwin);
2001-04-19 14:21:46 +02:00
2002-07-26 11:05:51 +02:00
if (prefs_common.inc_local) {
2001-08-22 12:58:38 +02:00
new_msgs = inc_spool();
2002-07-26 11:05:51 +02:00
if (new_msgs < 0)
new_msgs = 0;
}
2001-04-19 14:21:46 +02:00
list = account_get_list();
2001-05-06 22:06:56 +02:00
if (!list) {
2001-08-22 12:58:38 +02:00
inc_finished(mainwin, new_msgs > 0);
main_window_unlock(mainwin);
inc_notify_cmd(new_msgs, notify);
2001-05-06 22:06:56 +02:00
inc_autocheck_timer_set();
return;
2001-05-23 05:04:46 +02:00
}
2001-04-19 14:21:46 +02:00
2002-03-10 15:09:59 +01:00
/* check local folders */
inc_all_spool();
2002-02-21 15:56:09 +01:00
/* check IMAP4 folders */
2001-04-19 14:21:46 +02:00
for (; list != NULL; list = list->next) {
2002-02-21 15:56:09 +01:00
PrefsAccount *account = list->data;
if ((account->protocol == A_IMAP4 ||
account->protocol == A_NNTP) && account->recv_at_getall)
folderview_check_new(FOLDER(account->folder));
}
/* check POP3 accounts */
for (list = account_get_list(); list != NULL; list = list->next) {
2001-04-19 14:21:46 +02:00
IncSession *session;
PrefsAccount *account = list->data;
2002-06-10 23:55:17 +02:00
account->session = STYPE_NORMAL;
2001-04-19 14:21:46 +02:00
if (account->recv_at_getall) {
session = inc_session_new(account);
if (session)
queue_list = g_list_append(queue_list, session);
}
}
2001-05-06 22:06:56 +02:00
if (!queue_list) {
2001-08-22 12:58:38 +02:00
inc_finished(mainwin, new_msgs > 0);
main_window_unlock(mainwin);
inc_notify_cmd(new_msgs, notify);
2001-05-06 22:06:56 +02:00
inc_autocheck_timer_set();
return;
2001-05-23 05:04:46 +02:00
}
2001-04-19 14:21:46 +02:00
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;
2001-04-27 22:27:24 +02:00
gchar *text[3];
2001-04-19 14:21:46 +02:00
session->data = inc_dialog;
2001-04-27 22:27:24 +02:00
text[0] = NULL;
text[1] = session->pop3_state->ac_prefs->account_name;
text[2] = _("Standby");
gtk_clist_append(GTK_CLIST(inc_dialog->dialog->clist), text);
2001-04-19 14:21:46 +02:00
}
2002-08-06 16:22:44 +02:00
toolbar_set_sensitive(mainwin);
2002-03-07 14:22:39 +01:00
main_window_set_menu_sensitive(mainwin);
2001-08-22 12:58:38 +02:00
new_msgs += inc_start(inc_dialog);
2001-04-19 14:21:46 +02:00
2001-08-22 12:58:38 +02:00
inc_finished(mainwin, new_msgs > 0);
main_window_unlock(mainwin);
inc_notify_cmd(new_msgs, notify);
2001-05-06 22:06:56 +02:00
inc_autocheck_timer_set();
2001-04-19 14:21:46 +02:00
}
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",
2002-03-07 14:22:39 +01:00
GTK_SIGNAL_FUNC(inc_cancel_cb), dialog);
2001-04-19 14:21:46 +02:00
gtk_signal_connect(GTK_OBJECT(progress->window), "delete_event",
2002-08-29 11:13:53 +02:00
GTK_SIGNAL_FUNC(inc_dialog_delete_cb), dialog);
2001-09-13 15:38:32 +02:00
/* manage_window_set_transient(GTK_WINDOW(progress->window)); */
2001-04-19 14:21:46 +02:00
progress_dialog_set_value(progress, 0.0);
2001-12-22 01:30:32 +01:00
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);
2001-04-27 22:27:24 +02:00
2001-08-22 12:58:38 +02:00
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);
}
2001-04-19 14:21:46 +02:00
dialog->dialog = progress;
dialog->queue_list = NULL;
2002-03-07 14:22:39 +01:00
inc_dialog_list = g_list_append(inc_dialog_list, dialog);
2001-04-19 14:21:46 +02:00
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, "");
2002-09-15 12:48:35 +02:00
if (inc_dialog->mainwin)
gtk_progress_bar_update
(GTK_PROGRESS_BAR(inc_dialog->mainwin->progressbar), 0.0);
2001-04-19 14:21:46 +02:00
}
static void inc_progress_dialog_destroy(IncProgressDialog *inc_dialog)
{
g_return_if_fail(inc_dialog != NULL);
2002-03-07 14:22:39 +01:00
inc_dialog_list = g_list_remove(inc_dialog_list, inc_dialog);
2002-09-15 12:48:35 +02:00
if (inc_dialog->mainwin)
gtk_progress_bar_update
(GTK_PROGRESS_BAR(inc_dialog->mainwin->progressbar), 0.0);
2001-04-19 14:21:46 +02:00
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);
2002-08-31 11:41:45 +02:00
session->pop3_state = pop3_state_new(account);
session->pop3_state->data = session;
session->folder_table = g_hash_table_new(NULL, NULL);
2001-04-19 14:21:46 +02:00
return session;
}
static void inc_session_destroy(IncSession *session)
{
g_return_if_fail(session != NULL);
2002-08-31 11:41:45 +02:00
pop3_state_destroy(session->pop3_state);
g_hash_table_destroy(session->folder_table);
2001-04-19 14:21:46 +02:00
g_free(session);
}
2001-08-22 12:58:38 +02:00
static gint inc_start(IncProgressDialog *inc_dialog)
2001-04-19 14:21:46 +02:00
{
IncSession *session;
2001-04-27 22:27:24 +02:00
GtkCList *clist = GTK_CLIST(inc_dialog->dialog->clist);
2001-04-19 14:21:46 +02:00
Pop3State *pop3_state;
IncState inc_state;
2001-04-27 22:27:24 +02:00
gint num = 0;
2001-07-25 16:49:48 +02:00
gint error_num = 0;
2001-08-22 12:58:38 +02:00
gint new_msgs = 0;
2002-08-31 11:41:45 +02:00
gchar *msg;
2002-08-29 11:13:53 +02:00
gchar *fin_msg;
2001-04-19 14:21:46 +02:00
while (inc_dialog->queue_list != NULL) {
session = inc_dialog->queue_list->data;
pop3_state = session->pop3_state;
inc_progress_dialog_clear(inc_dialog);
2001-08-27 13:07:43 +02:00
gtk_clist_moveto(clist, num, -1, 1.0, 0.0);
2001-04-19 14:21:46 +02:00
pop3_state->user = g_strdup(pop3_state->ac_prefs->userid);
if (pop3_state->ac_prefs->passwd)
pop3_state->pass =
g_strdup(pop3_state->ac_prefs->passwd);
else if (pop3_state->ac_prefs->tmp_pass)
pop3_state->pass =
g_strdup(pop3_state->ac_prefs->tmp_pass);
else {
gchar *pass;
2002-01-16 12:48:36 +01:00
pass = input_dialog_query_password
(pop3_state->ac_prefs->recv_server,
pop3_state->user);
2001-04-19 14:21:46 +02:00
2002-09-15 12:48:35 +02:00
if (inc_dialog->mainwin && inc_dialog->show_dialog)
2001-08-22 12:58:38 +02:00
manage_window_focus_in
(inc_dialog->mainwin->window,
NULL, NULL);
2001-04-19 14:21:46 +02:00
if (pass) {
pop3_state->ac_prefs->tmp_pass = g_strdup(pass);
pop3_state->pass = pass;
} else {
inc_session_destroy(session);
inc_dialog->queue_list = g_list_remove
(inc_dialog->queue_list, session);
continue;
}
}
2001-04-27 22:27:24 +02:00
gtk_clist_set_pixmap(clist, num, 0, currentxpm, currentxpmmask);
gtk_clist_set_text(clist, num, 2, _("Retrieving"));
2001-04-19 14:21:46 +02:00
/* begin POP3 session */
inc_state = inc_pop3_session_do(session);
2002-08-31 11:41:45 +02:00
switch (inc_state) {
case INC_SUCCESS:
2002-08-29 11:13:53 +02:00
if (pop3_state->cur_total_num > 0)
msg = g_strdup_printf
(_("Done (%d message(s) (%s) received)"),
pop3_state->cur_total_num,
to_human_readable(pop3_state->cur_total_recv_bytes));
else
msg = g_strdup_printf(_("Done (no new messages)"));
2001-04-27 22:27:24 +02:00
gtk_clist_set_pixmap(clist, num, 0, okxpm, okxpmmask);
2002-08-29 11:13:53 +02:00
gtk_clist_set_text(clist, num, 2, msg);
g_free(msg);
2002-08-31 11:41:45 +02:00
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_NOSPACE:
gtk_clist_set_pixmap(clist, num, 0, errorxpm, errorxpmmask);
gtk_clist_set_text(clist, num, 2, _("Error"));
break;
case INC_CANCEL:
2001-08-16 13:28:10 +02:00
gtk_clist_set_pixmap(clist, num, 0, okxpm, okxpmmask);
gtk_clist_set_text(clist, num, 2, _("Cancelled"));
2002-08-31 11:41:45 +02:00
break;
default:
break;
2001-04-27 22:27:24 +02:00
}
2002-08-31 11:41:45 +02:00
2001-04-19 14:21:46 +02:00
if (pop3_state->error_val == PS_AUTHFAIL) {
2002-07-02 11:41:25 +02:00
if(!prefs_common.no_recv_err_panel) {
2001-08-22 12:58:38 +02:00
if((prefs_common.recv_dialog_mode == RECV_DIALOG_ALWAYS) ||
((prefs_common.recv_dialog_mode == RECV_DIALOG_ACTIVE) && focus_window)) {
2001-07-12 16:20:38 +02:00
manage_window_focus_in(inc_dialog->dialog->window, NULL, NULL);
}
alertpanel_error
(_("Authorization for %s on %s failed"),
pop3_state->user,
pop3_state->ac_prefs->recv_server);
}
2001-04-19 14:21:46 +02:00
}
statusbar_pop_all();
2001-08-22 12:58:38 +02:00
/* CLAWS: perform filtering actions on dropped message */
if (global_processing != NULL) {
FolderItem *processing, *inbox;
MsgInfo *msginfo;
GSList *msglist, *msglist_element;
/* CLAWS: get default inbox (perhaps per account) */
if (pop3_state->ac_prefs->inbox) {
/* CLAWS: get destination folder / mailbox */
inbox = folder_find_item_from_identifier(pop3_state->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);
2002-06-30 01:33:42 +02:00
msglist = folder_item_get_msg_list(processing);
/* process messages */
for(msglist_element = msglist; msglist_element != NULL; msglist_element = msglist_element->next) {
msginfo = (MsgInfo *) msglist_element->data;
/* filter if enabled in prefs or move to inbox if not */
if(pop3_state->ac_prefs->filter_on_recv) {
filter_message_by_msginfo_with_inbox(global_processing, msginfo,
2002-08-31 11:41:45 +02:00
session->folder_table,
inbox);
} else {
folder_item_move_msg(inbox, msginfo);
2002-08-31 11:41:45 +02:00
g_hash_table_insert(session->folder_table, inbox,
GINT_TO_POINTER(1));
}
procmsg_msginfo_free(msginfo);
}
g_slist_free(msglist);
}
2001-08-22 12:58:38 +02:00
new_msgs += pop3_state->cur_total_num;
2002-08-31 11:41:45 +02:00
if (!prefs_common.scan_all_after_inc) {
folder_item_scan_foreach(session->folder_table);
folderview_update_item_foreach
2002-09-11 09:56:56 +02:00
(session->folder_table,
!prefs_common.open_inbox_on_inc);
2002-08-31 11:41:45 +02:00
}
2001-04-19 14:21:46 +02:00
if (pop3_state->error_val == PS_AUTHFAIL &&
pop3_state->ac_prefs->tmp_pass) {
g_free(pop3_state->ac_prefs->tmp_pass);
pop3_state->ac_prefs->tmp_pass = NULL;
}
2002-08-31 11:41:45 +02:00
pop3_write_uidl_list(pop3_state);
2001-04-19 14:21:46 +02:00
2001-08-16 13:28:10 +02:00
if (inc_state != INC_SUCCESS && inc_state != INC_CANCEL) {
2001-07-25 16:49:48 +02:00
error_num++;
2001-08-03 08:40:24 +02:00
if (inc_state == INC_NOSPACE) {
inc_put_error(inc_state);
break;
}
2001-04-19 14:21:46 +02:00
}
inc_session_destroy(session);
inc_dialog->queue_list =
g_list_remove(inc_dialog->queue_list, session);
2001-04-27 22:27:24 +02:00
num++;
2001-04-19 14:21:46 +02:00
}
2002-08-29 11:13:53 +02:00
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);
2002-07-02 11:41:25 +02:00
if (error_num && !prefs_common.no_recv_err_panel) {
2001-08-22 12:58:38 +02:00
if (inc_dialog->show_dialog)
manage_window_focus_in(inc_dialog->dialog->window,
NULL, NULL);
2002-08-29 11:13:53 +02:00
alertpanel_error(_("Some errors occurred while getting mail."));
2001-08-22 12:58:38 +02:00
if (inc_dialog->show_dialog)
manage_window_focus_out(inc_dialog->dialog->window,
NULL, NULL);
}
2001-07-25 16:49:48 +02:00
2001-04-19 14:21:46 +02:00
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);
}
2002-08-29 11:13:53 +02:00
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);
2001-08-22 12:58:38 +02:00
return new_msgs;
2001-04-19 14:21:46 +02:00
}
static IncState inc_pop3_session_do(IncSession *session)
{
Pop3State *pop3_state = session->pop3_state;
IncProgressDialog *inc_dialog = (IncProgressDialog *)session->data;
Automaton *atm;
SockInfo *sockinfo;
gint i;
gchar *server;
gushort port;
gchar *buf;
2001-04-28 00:47:56 +02:00
static AtmHandler handlers[] = {
2001-04-19 14:21:46 +02:00
pop3_greeting_recv ,
2002-05-29 10:28:56 +02:00
#if USE_SSL
pop3_stls_send , pop3_stls_recv,
#endif
2001-04-19 14:21:46 +02:00
pop3_getauth_user_send , pop3_getauth_user_recv,
pop3_getauth_pass_send , pop3_getauth_pass_recv,
pop3_getauth_apop_send , pop3_getauth_apop_recv,
pop3_getrange_stat_send , pop3_getrange_stat_recv,
pop3_getrange_last_send , pop3_getrange_last_recv,
pop3_getrange_uidl_send , pop3_getrange_uidl_recv,
2001-04-28 00:47:56 +02:00
pop3_getsize_list_send , pop3_getsize_list_recv,
2002-02-22 10:35:36 +01:00
pop3_top_send , pop3_top_recv,
2001-04-19 14:21:46 +02:00
pop3_retr_send , pop3_retr_recv,
pop3_delete_send , pop3_delete_recv,
pop3_logout_send , pop3_logout_recv
};
2002-08-15 09:38:17 +02:00
debug_print("getting new messages of account %s...\n",
2001-04-19 14:21:46 +02:00
pop3_state->ac_prefs->account_name);
atm = automaton_create(N_POP3_PHASE);
session->atm = atm;
atm->data = pop3_state;
buf = g_strdup_printf(_("%s: Retrieving new messages"),
pop3_state->ac_prefs->recv_server);
gtk_window_set_title(GTK_WINDOW(inc_dialog->dialog->window), buf);
g_free(buf);
for (i = POP3_GREETING_RECV; i < N_POP3_PHASE; i++)
atm->state[i].handler = handlers[i];
atm->state[POP3_GREETING_RECV].condition = GDK_INPUT_READ;
2002-05-29 10:28:56 +02:00
for (i = POP3_GREETING_RECV + 1; i < N_POP3_PHASE; ) {
2001-04-19 14:21:46 +02:00
atm->state[i++].condition = GDK_INPUT_WRITE;
atm->state[i++].condition = GDK_INPUT_READ;
}
atm->terminate = (AtmHandler)pop3_automaton_terminate;
2002-05-11 10:10:09 +02:00
atm->ui_func = (AtmUIFunc)inc_progress_update;
2001-04-19 14:21:46 +02:00
atm->num = POP3_GREETING_RECV;
server = pop3_state->ac_prefs->recv_server;
2001-07-12 16:20:38 +02:00
#if USE_SSL
port = pop3_state->ac_prefs->set_popport ?
2001-08-27 13:07:43 +02:00
pop3_state->ac_prefs->popport :
2002-05-29 10:28:56 +02:00
pop3_state->ac_prefs->ssl_pop == SSL_TUNNEL ? 995 : 110;
2001-07-12 16:20:38 +02:00
#else
2001-04-19 14:21:46 +02:00
port = pop3_state->ac_prefs->set_popport ?
pop3_state->ac_prefs->popport : 110;
2001-07-12 16:20:38 +02:00
#endif
2001-04-19 14:21:46 +02:00
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();
2001-08-24 13:19:44 +02:00
statusbar_pop_all();
2001-04-19 14:21:46 +02:00
2001-05-02 20:51:12 +02:00
if ((sockinfo = sock_connect(server, port)) == NULL) {
2001-04-19 14:21:46 +02:00
log_warning(_("Can't connect to POP3 server: %s:%d\n"),
server, port);
2002-07-02 11:41:25 +02:00
if(!prefs_common.no_recv_err_panel) {
2001-08-22 12:58:38 +02:00
if((prefs_common.recv_dialog_mode == RECV_DIALOG_ALWAYS) ||
((prefs_common.recv_dialog_mode == RECV_DIALOG_ACTIVE) && focus_window)) {
2001-07-12 16:20:38 +02:00
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);
}
2001-04-27 22:27:24 +02:00
pop3_automaton_terminate(NULL, atm);
2001-04-19 14:21:46 +02:00
automaton_destroy(atm);
2002-08-31 11:41:45 +02:00
session->inc_state = INC_CONNECT_ERROR;
2001-08-27 13:07:43 +02:00
return INC_CONNECT_ERROR;
}
2001-04-19 14:21:46 +02:00
2001-08-27 13:07:43 +02:00
#if USE_SSL
2002-05-29 10:28:56 +02:00
if (pop3_state->ac_prefs->ssl_pop == SSL_TUNNEL &&
!ssl_init_socket(sockinfo)) {
2001-08-27 13:07:43 +02:00
pop3_automaton_terminate(NULL, atm);
automaton_destroy(atm);
2002-08-31 11:41:45 +02:00
session->inc_state = INC_CONNECT_ERROR;
2001-08-16 13:28:10 +02:00
return INC_CONNECT_ERROR;
2001-04-19 14:21:46 +02:00
}
2001-08-27 13:07:43 +02:00
#endif
2001-04-19 14:21:46 +02:00
2001-04-27 22:27:24 +02:00
/* :WK: Hmmm, with the later sock_gdk_input, we have 2 references
* to the sock structure - implement a reference counter?? */
2001-04-19 14:21:46 +02:00
pop3_state->sockinfo = sockinfo;
2001-04-27 22:27:24 +02:00
atm->help_sock = sockinfo;
2001-04-19 14:21:46 +02:00
2001-08-24 13:19:44 +02:00
log_verbosity_set(TRUE);
2002-06-10 23:55:17 +02:00
/* oha: this messes up inc_progress update:
disabling this would avoid the label "Retrieve Header"
being overwritten by "Retrieve Message"
Setting inc_pop3_recv_func is not necessary
since atm already handles the progress dialog ui
just fine.
*/
2001-04-28 00:47:56 +02:00
recv_set_ui_func(inc_pop3_recv_func, session);
2001-04-27 22:27:24 +02:00
atm->tag = sock_gdk_input_add(sockinfo,
atm->state[atm->num].condition,
automaton_input_cb, atm);
2001-04-19 14:21:46 +02:00
2001-09-20 13:53:09 +02:00
while (!atm->terminated)
gtk_main_iteration();
2001-04-19 14:21:46 +02:00
2001-08-24 13:19:44 +02:00
log_verbosity_set(FALSE);
2002-06-10 23:55:17 +02:00
/* oha: see above */
2001-04-28 00:47:56 +02:00
recv_set_ui_func(NULL, NULL);
2001-04-19 14:21:46 +02:00
automaton_destroy(atm);
2002-08-31 11:41:45 +02:00
if (session->inc_state != INC_SUCCESS)
return session->inc_state;
switch (pop3_state->error_val) {
case PS_SUCCESS:
session->inc_state = INC_SUCCESS;
break;
case PS_AUTHFAIL:
session->inc_state = INC_AUTH_FAILED;
break;
case PS_IOERR:
session->inc_state = INC_NOSPACE;
break;
case PS_LOCKBUSY:
session->inc_state = INC_LOCKED;
break;
default:
session->inc_state = INC_ERROR;
break;
}
return session->inc_state;
2001-04-19 14:21:46 +02:00
}
2001-04-27 22:27:24 +02:00
static gint pop3_automaton_terminate(SockInfo *source, Automaton *atm)
2001-04-19 14:21:46 +02:00
{
2001-10-17 11:25:12 +02:00
if (atm->terminated) return 0;
2001-04-19 14:21:46 +02:00
if (atm->tag > 0) {
gdk_input_remove(atm->tag);
atm->tag = 0;
}
if (atm->timeout_tag > 0) {
gtk_timeout_remove(atm->timeout_tag);
atm->timeout_tag = 0;
}
2001-09-20 13:53:09 +02:00
if (source)
2001-04-19 14:21:46 +02:00
sock_close(source);
atm->terminated = TRUE;
return 0;
}
2002-02-23 11:52:54 +01:00
static gboolean inc_pop3_recv_func(SockInfo *sock, gint count, gint read_bytes,
gpointer data)
2001-04-28 00:47:56 +02:00
{
2001-04-28 20:04:08 +02:00
gchar buf[MSGBUFSIZE];
2001-04-28 00:47:56 +02:00
IncSession *session = (IncSession *)data;
Pop3State *state = session->pop3_state;
2002-08-31 11:41:45 +02:00
IncProgressDialog *inc_dialog = (IncProgressDialog *)session->data;
2001-04-28 00:47:56 +02:00
ProgressDialog *dialog = inc_dialog->dialog;
2001-04-28 20:04:08 +02:00
gint cur_total;
2001-07-16 20:18:53 +02:00
gchar *total_size;
2001-04-28 00:47:56 +02:00
2001-05-06 22:06:56 +02:00
cur_total = state->cur_total_bytes + read_bytes;
2001-04-28 20:04:08 +02:00
if (cur_total > state->total_bytes)
cur_total = state->total_bytes;
2001-04-28 00:47:56 +02:00
2002-02-23 11:52:54 +01:00
Xstrdup_a(total_size, to_human_readable(state->total_bytes),
return FALSE);
2001-04-28 20:04:08 +02:00
g_snprintf(buf, sizeof(buf),
2001-07-16 20:18:53 +02:00
_("Retrieving message (%d / %d) (%s / %s)"),
2001-04-28 20:04:08 +02:00
state->cur_msg, state->count,
2001-07-16 20:18:53 +02:00
to_human_readable(cur_total), total_size);
2001-04-28 20:04:08 +02:00
progress_dialog_set_label(dialog, buf);
2001-04-28 00:47:56 +02:00
progress_dialog_set_percentage
2001-04-28 20:04:08 +02:00
(dialog, (gfloat)cur_total / (gfloat)state->total_bytes);
2002-09-15 12:48:35 +02:00
if (inc_dialog->mainwin)
gtk_progress_bar_update
(GTK_PROGRESS_BAR(inc_dialog->mainwin->progressbar),
(gfloat)cur_total / (gfloat)state->total_bytes);
2001-04-28 00:47:56 +02:00
GTK_EVENTS_FLUSH();
2002-02-23 11:52:54 +01:00
2002-08-31 11:41:45 +02:00
if (session->inc_state == INC_CANCEL)
2002-02-23 11:52:54 +01:00
return FALSE;
else
return TRUE;
2001-04-28 00:47:56 +02:00
}
2001-04-19 14:21:46 +02:00
void inc_progress_update(Pop3State *state, Pop3Phase phase)
{
gchar buf[MSGBUFSIZE];
2002-08-31 11:41:45 +02:00
IncSession *session = (IncSession *)state->data;
IncProgressDialog *inc_dialog = (IncProgressDialog *)session->data;
2001-04-19 14:21:46 +02:00
ProgressDialog *dialog = inc_dialog->dialog;
2001-07-16 20:18:53 +02:00
gchar *total_size;
2001-04-19 14:21:46 +02:00
switch (phase) {
case POP3_GREETING_RECV:
break;
case POP3_GETAUTH_USER_SEND:
case POP3_GETAUTH_PASS_SEND:
case POP3_GETAUTH_APOP_SEND:
2001-08-27 13:07:43 +02:00
progress_dialog_set_label(dialog, _("Authenticating..."));
2001-04-19 14:21:46 +02:00
break;
case POP3_GETRANGE_STAT_SEND:
2001-05-03 23:28:42 +02:00
progress_dialog_set_label
(dialog, _("Getting the number of new messages (STAT)..."));
break;
2001-04-19 14:21:46 +02:00
case POP3_GETRANGE_LAST_SEND:
2001-05-03 23:28:42 +02:00
progress_dialog_set_label
(dialog, _("Getting the number of new messages (LAST)..."));
break;
2001-04-19 14:21:46 +02:00
case POP3_GETRANGE_UIDL_SEND:
2001-05-03 23:28:42 +02:00
progress_dialog_set_label
(dialog, _("Getting the number of new messages (UIDL)..."));
break;
case POP3_GETSIZE_LIST_SEND:
progress_dialog_set_label
(dialog, _("Getting the size of messages (LIST)..."));
2001-04-19 14:21:46 +02:00
break;
2002-02-22 10:35:36 +01:00
case POP3_TOP_SEND:
g_snprintf(buf, sizeof(buf),
_("Retrieving header (%d / %d)"),
state->cur_msg, state->count);
progress_dialog_set_label (dialog, buf);
progress_dialog_set_percentage
(dialog,
(gfloat)(state->cur_msg) /
(gfloat)(state->count));
2002-09-15 12:48:35 +02:00
if (inc_dialog->mainwin)
gtk_progress_bar_update
(GTK_PROGRESS_BAR(inc_dialog->mainwin->progressbar),
(gfloat)(state->cur_msg) /
(gfloat)(state->count));
2002-02-22 10:35:36 +01:00
break;
2001-04-19 14:21:46 +02:00
case POP3_RETR_SEND:
2001-07-16 20:18:53 +02:00
Xstrdup_a(total_size, to_human_readable(state->total_bytes), return);
2001-04-19 14:21:46 +02:00
g_snprintf(buf, sizeof(buf),
2001-07-16 20:18:53 +02:00
_("Retrieving message (%d / %d) (%s / %s)"),
2001-04-28 20:04:08 +02:00
state->cur_msg, state->count,
2001-07-16 20:18:53 +02:00
to_human_readable(state->cur_total_bytes),
total_size);
2001-04-19 14:21:46 +02:00
progress_dialog_set_label(dialog, buf);
progress_dialog_set_percentage
2001-04-28 00:47:56 +02:00
(dialog,
(gfloat)(state->cur_total_bytes) /
(gfloat)(state->total_bytes));
2002-09-15 12:48:35 +02:00
if (inc_dialog->mainwin)
gtk_progress_bar_update
(GTK_PROGRESS_BAR(inc_dialog->mainwin->progressbar),
(gfloat)(state->cur_total_bytes) /
(gfloat)(state->total_bytes));
2001-04-19 14:21:46 +02:00
break;
case POP3_DELETE_SEND:
2002-06-17 12:02:21 +02:00
if (state->msg[state->cur_msg].recv_time < state->current_time) {
g_snprintf(buf, sizeof(buf), _("Deleting message %d"),
state->cur_msg);
progress_dialog_set_label(dialog, buf);
}
2001-04-19 14:21:46 +02:00
break;
case POP3_LOGOUT_SEND:
progress_dialog_set_label(dialog, _("Quitting"));
break;
default:
break;
2001-04-19 14:21:46 +02:00
}
}
gint inc_drop_message(const gchar *file, Pop3State *state)
{
FolderItem *inbox;
FolderItem *dropfolder;
2002-08-31 11:41:45 +02:00
IncSession *session = (IncSession *)state->data;
2001-04-19 14:21:46 +02:00
gint val;
2001-05-15 06:50:27 +02:00
gint msgnum;
2001-11-25 14:47:45 +01:00
/* CLAWS: get default inbox (perhaps per account) */
2001-04-19 14:21:46 +02:00
if (state->ac_prefs->inbox) {
/* CLAWS: get destination folder / mailbox */
2002-04-05 10:20:10 +02:00
inbox = folder_find_item_from_identifier
(state->ac_prefs->inbox);
2001-04-19 14:21:46 +02:00
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. */
if (global_processing == NULL) {
2001-05-15 06:50:27 +02:00
if (state->ac_prefs->filter_on_recv) {
dropfolder =
filter_get_dest_folder(prefs_common.fltlist, file);
if (!dropfolder) dropfolder = inbox;
else if (!strcmp(dropfolder->path, FILTER_NOT_RECEIVE)) {
g_warning(_("a message won't be received\n"));
return 1;
}
} else
dropfolder = inbox;
2001-05-23 05:04:46 +02:00
} else {
dropfolder = folder_get_default_processing();
2001-05-15 06:50:27 +02:00
}
2001-04-19 14:21:46 +02:00
val = GPOINTER_TO_INT(g_hash_table_lookup
2002-08-31 11:41:45 +02:00
(session->folder_table, dropfolder));
2001-04-19 14:21:46 +02:00
if (val == 0) {
2002-08-16 11:34:01 +02:00
folder_item_scan(dropfolder);
/* force updating */
if (FOLDER_IS_LOCAL(dropfolder->folder))
dropfolder->mtime = 0;
2002-08-31 11:41:45 +02:00
g_hash_table_insert(session->folder_table, dropfolder,
2001-04-19 14:21:46 +02:00
GINT_TO_POINTER(1));
}
2001-11-25 14:47:45 +01:00
/* add msg file to drop folder */
2001-11-25 14:47:45 +01:00
if ((msgnum = folder_item_add_msg(dropfolder, file, TRUE)) < 0) {
unlink(file);
return -1;
}
2001-04-19 14:21:46 +02:00
return 0;
}
static void inc_put_error(IncState istate)
{
switch (istate) {
case INC_ERROR:
2002-07-02 11:41:25 +02:00
if (!prefs_common.no_recv_err_panel)
alertpanel_error
(_("Error occurred while processing mail."));
2001-04-19 14:21:46 +02:00
break;
case INC_NOSPACE:
alertpanel_error(_("No disk space left."));
break;
2002-08-31 11:41:45 +02:00
case INC_LOCKED:
if (!prefs_common.no_recv_err_panel)
alertpanel_error(_("Mailbox is locked."));
break;
2001-04-19 14:21:46 +02:00
default:
break;
2001-04-19 14:21:46 +02:00
}
}
2002-03-07 14:22:39 +01:00
static void inc_cancel(IncProgressDialog *dialog)
2001-04-19 14:21:46 +02:00
{
2002-03-07 14:22:39 +01:00
IncSession *session;
SockInfo *sockinfo;
g_return_if_fail(dialog != NULL);
2002-08-29 11:13:53 +02:00
if (dialog->queue_list == NULL) {
inc_progress_dialog_destroy(dialog);
return;
}
2002-03-07 14:22:39 +01:00
session = dialog->queue_list->data;
sockinfo = session->pop3_state->sockinfo;
2001-04-19 14:21:46 +02:00
2001-10-17 11:25:12 +02:00
if (!sockinfo || session->atm->terminated == TRUE) return;
2002-08-31 11:41:45 +02:00
session->pop3_state->cancelled = TRUE;
session->inc_state = INC_CANCEL;
session->atm->cancelled = TRUE;
log_message(_("Incorporation cancelled\n"));
2001-04-19 14:21:46 +02:00
}
2002-03-07 14:22:39 +01:00
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);
}
2002-08-29 11:13:53 +02:00
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;
}
2001-04-19 14:21:46 +02:00
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 void 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();
get_spool(inbox, account->local_mbox);
}
static void inc_all_spool(void)
{
GList *list = NULL;
list = account_get_list();
if (!list) return;
for (; list != NULL; list = list->next) {
PrefsAccount *account = list->data;
2002-03-10 15:09:59 +01:00
if ((account->protocol == A_LOCAL) &&
(account->recv_at_getall))
inc_spool_account(account);
}
}
2001-04-19 14:21:46 +02:00
static gint get_spool(FolderItem *dest, const gchar *mbox)
{
gint msgs, size;
gint lockfd;
2001-05-07 00:31:24 +02:00
gchar tmp_mbox[MAXPATHLEN + 1];
2001-04-19 14:21:46 +02:00
GHashTable *folder_table = NULL;
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) {
2002-08-15 09:38:17 +02:00
debug_print("no messages in local mailbox.\n");
2001-04-19 14:21:46 +02:00
return 0;
} else if (size < 0)
return -1;
if ((lockfd = lock_mbox(mbox, LOCK_FLOCK)) < 0)
return -1;
2002-08-08 07:56:32 +02:00
g_snprintf(tmp_mbox, sizeof(tmp_mbox), "%s%ctmpmbox.%08x",
get_tmp_dir(), G_DIR_SEPARATOR, (gint)mbox);
2002-02-27 09:15:53 +01:00
if (copy_mbox(mbox, tmp_mbox) < 0) {
unlock_mbox(mbox, lockfd, LOCK_FLOCK);
2001-04-19 14:21:46 +02:00
return -1;
2002-02-27 09:15:53 +01:00
}
2001-04-19 14:21:46 +02:00
2002-08-15 09:38:17 +02:00
debug_print("Getting new messages from %s into %s...\n",
2001-04-19 14:21:46 +02:00
mbox, dest->path);
if (prefs_common.filter_on_inc)
folder_table = g_hash_table_new(NULL, NULL);
msgs = proc_mbox(dest, tmp_mbox, folder_table);
unlink(tmp_mbox);
if (msgs >= 0) empty_mbox(mbox);
unlock_mbox(mbox, lockfd, LOCK_FLOCK);
if (folder_table) {
2001-08-16 13:28:10 +02:00
if (!prefs_common.scan_all_after_inc) {
2001-07-12 16:20:38 +02:00
g_hash_table_insert(folder_table, dest,
GINT_TO_POINTER(1));
2002-09-11 09:56:56 +02:00
folderview_update_item_foreach
(folder_table, !prefs_common.open_inbox_on_inc);
2001-08-16 13:28:10 +02:00
}
2001-04-19 14:21:46 +02:00
g_hash_table_destroy(folder_table);
2001-08-16 13:28:10 +02:00
} else if (!prefs_common.scan_all_after_inc) {
2002-08-16 11:34:01 +02:00
folderview_update_item(dest, TRUE);
2001-04-19 14:21:46 +02:00
}
return msgs;
}
2001-05-06 22:06:56 +02:00
2001-09-02 17:07:05 +02:00
void inc_lock(void)
{
inc_lock_count++;
}
void inc_unlock(void)
{
if (inc_lock_count > 0)
inc_lock_count--;
}
2001-05-06 22:06:56 +02:00
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);
}
2001-05-06 22:06:56 +02:00
void inc_autocheck_timer_init(MainWindow *mainwin)
{
autocheck_data = mainwin;
inc_autocheck_timer_set();
}
2001-09-02 17:07:05 +02:00
static void inc_autocheck_timer_set_interval(guint interval)
2001-05-06 22:06:56 +02:00
{
inc_autocheck_timer_remove();
2002-04-21 14:11:43 +02:00
/* 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) {
2001-05-06 22:06:56 +02:00
autocheck_timer = gtk_timeout_add
2001-09-02 17:07:05 +02:00
(interval, inc_autocheck_func, autocheck_data);
debug_print("added timer = %d\n", autocheck_timer);
2001-05-06 22:06:56 +02:00
}
}
2001-09-02 17:07:05 +02:00
void inc_autocheck_timer_set(void)
{
inc_autocheck_timer_set_interval(prefs_common.autochk_itv * 60000);
}
2001-05-06 22:06:56 +02:00
void inc_autocheck_timer_remove(void)
{
if (autocheck_timer) {
2001-09-02 17:07:05 +02:00
debug_print("removed timer = %d\n", autocheck_timer);
2001-05-06 22:06:56 +02:00
gtk_timeout_remove(autocheck_timer);
autocheck_timer = 0;
}
}
static gint inc_autocheck_func(gpointer data)
{
MainWindow *mainwin = (MainWindow *)data;
2001-09-02 17:07:05 +02:00
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);
2001-05-06 22:06:56 +02:00
return FALSE;
}