sync with 0.7.4cvs51
[claws.git] / src / account.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2002 Hiroyuki Yamamoto
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #include "defs.h"
25
26 #include <glib.h>
27 #include <gtk/gtk.h>
28 #include <gdk/gdkkeysyms.h>
29 #include <stdio.h>
30 #include <errno.h>
31
32 #include "intl.h"
33 #include "main.h"
34 #include "mainwindow.h"
35 #include "folderview.h"
36 #include "folder.h"
37 #include "account.h"
38 #include "prefs.h"
39 #include "prefs_account.h"
40 #include "prefs_folder_item.h"
41 #include "compose.h"
42 #include "manage_window.h"
43 #include "stock_pixmap.h"
44 #include "inc.h"
45 #include "gtkutils.h"
46 #include "utils.h"
47 #include "alertpanel.h"
48
49 typedef enum
50 {
51         COL_DEFAULT     = 0,
52         COL_GETALL      = 1,
53         COL_NAME        = 2,
54         COL_PROTOCOL    = 3,
55         COL_SERVER      = 4
56 } EditAccountColumnPos;
57
58 # define N_EDIT_ACCOUNT_COLS    5
59
60 #define PREFSBUFSIZE            1024
61
62 PrefsAccount *cur_account;
63
64 static GList *account_list = NULL;
65
66 static struct EditAccount {
67         GtkWidget *window;
68         GtkWidget *clist;
69         GtkWidget *close_btn;
70 } edit_account;
71
72 static GdkPixmap *markxpm;
73 static GdkBitmap *markxpmmask;
74 static GdkPixmap *checkboxonxpm;
75 static GdkPixmap *checkboxonxpmmask;
76 static GdkPixmap *checkboxoffxpm;
77 static GdkPixmap *checkboxoffxpmmask;
78
79 static void account_edit_create         (void);
80
81 static void account_edit_prefs          (void);
82 static void account_delete              (void);
83
84 static void account_up                  (void);
85 static void account_down                (void);
86
87 static void account_set_default         (void);
88
89 static void account_edit_close          (void);
90 static gint account_delete_event        (GtkWidget      *widget,
91                                          GdkEventAny    *event,
92                                          gpointer        data);
93 static void account_selected            (GtkCList       *clist,
94                                          gint            row,
95                                          gint            column,
96                                          GdkEvent       *event,
97                                          gpointer        data);
98 static void account_row_moved           (GtkCList       *clist,
99                                          gint            source_row,
100                                          gint            dest_row);
101 static void account_key_pressed         (GtkWidget      *widget,
102                                          GdkEventKey    *event,
103                                          gpointer        data);
104
105 static gint account_clist_set_row       (PrefsAccount   *ac_prefs,
106                                          gint            row);
107 static void account_clist_set           (void);
108
109 static void account_list_set            (void);
110
111 void account_read_config_all(void)
112 {
113         GSList *ac_label_list = NULL, *cur;
114         gchar *rcpath;
115         FILE *fp;
116         gchar buf[PREFSBUFSIZE];
117         PrefsAccount *ac_prefs;
118
119         debug_print(_("Reading all config for each account...\n"));
120
121         rcpath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, ACCOUNT_RC, NULL);
122         if ((fp = fopen(rcpath, "rb")) == NULL) {
123                 if (ENOENT != errno) FILE_OP_ERROR(rcpath, "fopen");
124                 g_free(rcpath);
125                 return;
126         }
127         g_free(rcpath);
128
129         while (fgets(buf, sizeof(buf), fp) != NULL) {
130                 if (!strncmp(buf, "[Account: ", 10)) {
131                         strretchomp(buf);
132                         memmove(buf, buf + 1, strlen(buf));
133                         buf[strlen(buf) - 1] = '\0';
134                         debug_print(_("Found label: %s\n"), buf);
135                         ac_label_list = g_slist_append(ac_label_list,
136                                                        g_strdup(buf));
137                 }
138         }
139         fclose(fp);
140
141         /* read config data from file */
142         cur_account = NULL;
143         for (cur = ac_label_list; cur != NULL; cur = cur->next) {
144                 ac_prefs = g_new0(PrefsAccount, 1);
145                 prefs_account_read_config(ac_prefs, (gchar *)cur->data);
146                 account_list = g_list_append(account_list, ac_prefs);
147                 if (ac_prefs->is_default)
148                         cur_account = ac_prefs;
149         }
150         /* if default is not set, assume first account as default */
151         if (!cur_account && account_list) {
152                 ac_prefs = (PrefsAccount *)account_list->data;
153                 account_set_as_default(ac_prefs);
154                 cur_account = ac_prefs;
155         }
156
157         account_set_menu();
158         main_window_reflect_prefs_all();
159
160         while (ac_label_list) {
161                 g_free(ac_label_list->data);
162                 ac_label_list = g_slist_remove(ac_label_list,
163                                                ac_label_list->data);
164         }
165 }
166
167 void account_save_config_all(void)
168 {
169         prefs_account_save_config_all(account_list);
170 }
171
172 PrefsAccount *account_find_from_smtp_server(const gchar *address,
173                                             const gchar *smtp_server)
174 {
175         GList *cur;
176         PrefsAccount *ac;
177
178         g_return_val_if_fail(address != NULL, NULL);
179         g_return_val_if_fail(smtp_server != NULL, NULL);
180
181         for (cur = account_list; cur != NULL; cur = cur->next) {
182                 ac = (PrefsAccount *)cur->data;
183                 if (!strcmp2(address, ac->address) &&
184                     !strcmp2(smtp_server, ac->smtp_server))
185                         return ac;
186         }
187
188         return NULL;
189 }
190
191 /*
192  * account_find_from_address:
193  * @address: Email address string.
194  *
195  * Find a mail (not news) account with the specified email address.
196  *
197  * Return value: The found account, or NULL if not found.
198  */
199 PrefsAccount *account_find_from_address(const gchar *address)
200 {
201         GList *cur;
202         PrefsAccount *ac;
203
204         g_return_val_if_fail(address != NULL, NULL);
205
206         for (cur = account_list; cur != NULL; cur = cur->next) {
207                 ac = (PrefsAccount *)cur->data;
208                 if (ac->protocol != A_NNTP && ac->address &&
209                     strcasestr(address, ac->address))
210                         return ac;
211         }
212
213         return NULL;
214 }
215
216 PrefsAccount *account_find_from_id(gint id)
217 {
218         GList *cur;
219         PrefsAccount *ac;
220
221         for (cur = account_list; cur != NULL; cur = cur->next) {
222                 ac = (PrefsAccount *)cur->data;
223                 if (id == ac->account_id)
224                         return ac;
225         }
226
227         return NULL;
228 }
229
230 void account_set_menu(void)
231 {
232         main_window_set_account_menu(account_list);
233 }
234
235 void account_foreach(AccountFunc func, gpointer user_data)
236 {
237         GList *cur;
238
239         for (cur = account_list; cur != NULL; cur = cur->next)
240                 if (func((PrefsAccount *)cur->data, user_data) != 0)
241                         return;
242 }
243
244 GList *account_get_list(void)
245 {
246         return account_list;
247 }
248
249 void account_edit_open(void)
250 {
251         inc_lock();
252
253         if (compose_get_compose_list()) {
254                 alertpanel_notice(_("Some composing windows are open.\n"
255                                     "Please close all the composing windows before editing the accounts."));
256                 inc_unlock();
257                 return;
258         }
259
260         debug_print(_("Opening account edit window...\n"));
261
262         if (!edit_account.window)
263                 account_edit_create();
264
265         account_clist_set();
266
267         manage_window_set_transient(GTK_WINDOW(edit_account.window));
268         gtk_widget_grab_focus(edit_account.close_btn);
269         gtk_widget_show(edit_account.window);
270
271         manage_window_focus_in(edit_account.window, NULL, NULL);
272 }
273
274 void account_add(void)
275 {
276         PrefsAccount *ac_prefs;
277
278         ac_prefs = prefs_account_open(NULL);
279
280         if (!ac_prefs) return;
281
282         account_list = g_list_append(account_list, ac_prefs);
283
284         if (ac_prefs->is_default)
285                 account_set_as_default(ac_prefs);
286
287         account_clist_set();
288
289         if (ac_prefs->protocol == A_IMAP4 || ac_prefs->protocol == A_NNTP) {
290                 Folder *folder;
291
292                 if (ac_prefs->protocol == A_IMAP4) {
293                         folder = folder_new(F_IMAP, ac_prefs->account_name,
294                                             ac_prefs->recv_server);
295                 } else {
296                         folder = folder_new(F_NEWS, ac_prefs->account_name,
297                                             ac_prefs->nntp_server);
298                 }
299
300                 folder->account = ac_prefs;
301                 ac_prefs->folder = REMOTE_FOLDER(folder);
302                 folder_add(folder);
303                 if (ac_prefs->protocol == A_IMAP4)
304                         folder->create_tree(folder);
305                 folderview_set_all();
306         }
307 }
308
309 void account_set_as_default(PrefsAccount *ac_prefs)
310 {
311         PrefsAccount *ap;
312         GList *cur;
313
314         for (cur = account_list; cur != NULL; cur = cur->next) {
315                 ap = (PrefsAccount *)cur->data;
316                 if (ap->is_default)
317                         ap->is_default = FALSE;
318         }
319
320         ac_prefs->is_default = TRUE;
321 }
322
323 PrefsAccount *account_get_default(void)
324 {
325         PrefsAccount *ap;
326         GList *cur;
327
328         for (cur = account_list; cur != NULL; cur = cur->next) {
329                 ap = (PrefsAccount *)cur->data;
330                 if (ap->is_default)
331                         return ap;
332         }
333
334         return NULL;
335 }
336
337 void account_set_missing_folder(void)
338 {
339         PrefsAccount *ap;
340         GList *cur;
341
342         for (cur = account_list; cur != NULL; cur = cur->next) {
343                 ap = (PrefsAccount *)cur->data;
344                 if ((ap->protocol == A_IMAP4 || ap->protocol == A_NNTP) &&
345                     !ap->folder) {
346                         Folder *folder;
347
348                         if (ap->protocol == A_IMAP4) {
349                                 folder = folder_new(F_IMAP, ap->account_name,
350                                                     ap->recv_server);
351                         } else {
352                                 folder = folder_new(F_NEWS, ap->account_name,
353                                                     ap->nntp_server);
354                         }
355
356                         folder->account = ap;
357                         ap->folder = REMOTE_FOLDER(folder);
358                         folder_add(folder);
359                         if (ap->protocol == A_IMAP4)
360                                 folder->create_tree(folder);
361                 }
362         }
363 }
364
365 FolderItem *account_get_special_folder(PrefsAccount *ac_prefs,
366                                        SpecialFolderItemType type)
367 {
368         FolderItem *item = NULL;
369
370         g_return_val_if_fail(ac_prefs != NULL, NULL);
371
372         if (type == F_OUTBOX) {
373                 if (ac_prefs->set_sent_folder && ac_prefs->sent_folder) {
374                         item = folder_find_item_from_identifier
375                                 (ac_prefs->sent_folder);
376                 }
377                 if (!item) {
378                         if (ac_prefs->folder)
379                                 item = FOLDER(ac_prefs->folder)->outbox;
380                         if (!item)
381                                 item = folder_get_default_outbox();
382                 }
383         } else if (type == F_DRAFT) {
384                 if (ac_prefs->set_draft_folder && ac_prefs->draft_folder) {
385                         item = folder_find_item_from_identifier
386                                 (ac_prefs->draft_folder);
387                 }
388                 if (!item) {
389                         if (ac_prefs->folder)
390                                 item = FOLDER(ac_prefs->folder)->draft;
391                         if (!item)
392                                 item = folder_get_default_draft();
393                 }
394         } else if (type == F_QUEUE) {
395                 if (ac_prefs->folder)
396                         item = FOLDER(ac_prefs->folder)->queue;
397                 if (!item)
398                         item = folder_get_default_queue();
399         } else if (type == F_TRASH) {
400                 if (ac_prefs->set_trash_folder && ac_prefs->trash_folder) {
401                         item = folder_find_item_from_identifier
402                                 (ac_prefs->trash_folder);
403                 }
404                 if (!item) {
405                         if (ac_prefs->folder)
406                                 item = FOLDER(ac_prefs->folder)->trash;
407                         if (!item)
408                                 item = folder_get_default_trash();
409                 }
410         }
411
412         return item;
413 }
414
415 void account_destroy(PrefsAccount *ac_prefs)
416 {
417         g_return_if_fail(ac_prefs != NULL);
418
419         prefs_account_free(ac_prefs);
420         account_list = g_list_remove(account_list, ac_prefs);
421
422         if (cur_account == ac_prefs) cur_account = NULL;
423         if (!cur_account && account_list) {
424                 cur_account = account_get_default();
425                 if (!cur_account) {
426                         ac_prefs = (PrefsAccount *)account_list->data;
427                         account_set_as_default(ac_prefs);
428                         cur_account = ac_prefs;
429                 }
430         }
431 }
432
433
434 static void account_edit_create(void)
435 {
436         GtkWidget *window;
437         GtkWidget *vbox;
438         GtkWidget *label;
439         GtkWidget *hbox;
440         GtkWidget *scrolledwin;
441         GtkWidget *clist;
442         gchar *titles[N_EDIT_ACCOUNT_COLS];
443         gint i;
444
445         GtkWidget *vbox2;
446         GtkWidget *add_btn;
447         GtkWidget *edit_btn;
448         GtkWidget *del_btn;
449         GtkWidget *up_btn;
450         GtkWidget *down_btn;
451
452         GtkWidget *default_btn;
453
454         GtkWidget *hbbox;
455         GtkWidget *close_btn;
456
457         debug_print(_("Creating account edit window...\n"));
458
459         window = gtk_window_new (GTK_WINDOW_DIALOG);
460         gtk_widget_set_usize (window, 500, 320);
461         gtk_container_set_border_width (GTK_CONTAINER (window), 8);
462         gtk_window_set_title (GTK_WINDOW (window), _("Edit accounts"));
463         gtk_window_set_modal (GTK_WINDOW (window), TRUE);
464         gtk_signal_connect (GTK_OBJECT (window), "delete_event",
465                             GTK_SIGNAL_FUNC (account_delete_event), NULL);
466         gtk_signal_connect (GTK_OBJECT (window), "key_press_event",
467                             GTK_SIGNAL_FUNC (account_key_pressed), NULL);
468         MANAGE_WINDOW_SIGNALS_CONNECT (window);
469         gtk_widget_realize(window);
470
471         vbox = gtk_vbox_new (FALSE, 10);
472         gtk_widget_show (vbox);
473         gtk_container_add (GTK_CONTAINER (window), vbox);
474
475         hbox = gtk_hbox_new (FALSE, 0);
476         gtk_widget_show (hbox);
477         gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0);
478
479         label = gtk_label_new
480                 (_("New messages will be checked in this order. Check the boxes\n"
481                    "on the `G' column to enable message retrieval by `Get all'."));
482         gtk_widget_show (label);
483         gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 4);
484         gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_LEFT);
485
486         hbox = gtk_hbox_new (FALSE, 8);
487         gtk_widget_show (hbox);
488         gtk_box_pack_start (GTK_BOX (vbox), hbox, TRUE, TRUE, 0);
489         gtk_container_set_border_width (GTK_CONTAINER (hbox), 2);
490
491         scrolledwin = gtk_scrolled_window_new (NULL, NULL);
492         gtk_widget_show (scrolledwin);
493         gtk_box_pack_start (GTK_BOX (hbox), scrolledwin, TRUE, TRUE, 0);
494         gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolledwin),
495                                         GTK_POLICY_AUTOMATIC,
496                                         GTK_POLICY_AUTOMATIC);
497
498         titles[COL_DEFAULT]  = "D";
499         titles[COL_GETALL]   = "G";
500         titles[COL_NAME]     = _("Name");
501         titles[COL_PROTOCOL] = _("Protocol");
502         titles[COL_SERVER]   = _("Server");
503
504         clist = gtk_clist_new_with_titles (N_EDIT_ACCOUNT_COLS, titles);
505         gtk_widget_show (clist);
506         gtk_container_add (GTK_CONTAINER (scrolledwin), clist);
507         gtk_clist_set_column_width (GTK_CLIST(clist), COL_DEFAULT , 10);
508         gtk_clist_set_column_width (GTK_CLIST(clist), COL_GETALL  , 11);
509         gtk_clist_set_column_width (GTK_CLIST(clist), COL_NAME    , 100);
510         gtk_clist_set_column_width (GTK_CLIST(clist), COL_PROTOCOL, 100);
511         gtk_clist_set_column_width (GTK_CLIST(clist), COL_SERVER  , 100);
512         gtk_clist_set_column_justification (GTK_CLIST(clist), COL_DEFAULT,
513                                             GTK_JUSTIFY_CENTER);
514         gtk_clist_set_column_justification (GTK_CLIST(clist), COL_GETALL,
515                                             GTK_JUSTIFY_CENTER);
516         gtk_clist_set_selection_mode (GTK_CLIST(clist), GTK_SELECTION_BROWSE);
517
518         for (i = 0; i < N_EDIT_ACCOUNT_COLS; i++)
519                 GTK_WIDGET_UNSET_FLAGS(GTK_CLIST(clist)->column[i].button,
520                                        GTK_CAN_FOCUS);
521
522         gtk_signal_connect (GTK_OBJECT (clist), "select_row",
523                             GTK_SIGNAL_FUNC (account_selected), NULL);
524         gtk_signal_connect (GTK_OBJECT (clist), "row_move",
525                             GTK_SIGNAL_FUNC (account_row_moved), NULL);
526
527         vbox2 = gtk_vbox_new (FALSE, 0);
528         gtk_widget_show (vbox2);
529         gtk_box_pack_start (GTK_BOX (hbox), vbox2, FALSE, FALSE, 0);
530
531         add_btn = gtk_button_new_with_label (_("Add"));
532         gtk_widget_show (add_btn);
533         gtk_box_pack_start (GTK_BOX (vbox2), add_btn, FALSE, FALSE, 4);
534         gtk_signal_connect (GTK_OBJECT(add_btn), "clicked",
535                             GTK_SIGNAL_FUNC (account_add), NULL);
536
537         edit_btn = gtk_button_new_with_label (_("Edit"));
538         gtk_widget_show (edit_btn);
539         gtk_box_pack_start (GTK_BOX (vbox2), edit_btn, FALSE, FALSE, 4);
540         gtk_signal_connect (GTK_OBJECT(edit_btn), "clicked",
541                             GTK_SIGNAL_FUNC (account_edit_prefs), NULL);
542
543         del_btn = gtk_button_new_with_label (_(" Delete "));
544         gtk_widget_show (del_btn);
545         gtk_box_pack_start (GTK_BOX (vbox2), del_btn, FALSE, FALSE, 4);
546         gtk_signal_connect (GTK_OBJECT(del_btn), "clicked",
547                             GTK_SIGNAL_FUNC (account_delete), NULL);
548
549         down_btn = gtk_button_new_with_label (_("Down"));
550         gtk_widget_show (down_btn);
551         gtk_box_pack_end (GTK_BOX (vbox2), down_btn, FALSE, FALSE, 4);
552         gtk_signal_connect (GTK_OBJECT(down_btn), "clicked",
553                             GTK_SIGNAL_FUNC (account_down), NULL);
554
555         up_btn = gtk_button_new_with_label (_("Up"));
556         gtk_widget_show (up_btn);
557         gtk_box_pack_end (GTK_BOX (vbox2), up_btn, FALSE, FALSE, 4);
558         gtk_signal_connect (GTK_OBJECT(up_btn), "clicked",
559                             GTK_SIGNAL_FUNC (account_up), NULL);
560
561         hbox = gtk_hbox_new (FALSE, 8);
562         gtk_widget_show (hbox);
563         gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0);
564
565         vbox2 = gtk_vbox_new(FALSE, 0);
566         gtk_widget_show (vbox2);
567         gtk_box_pack_start (GTK_BOX (hbox), vbox2, FALSE, FALSE, 0);
568
569         default_btn = gtk_button_new_with_label (_(" Set as default account "));
570         gtk_widget_show (default_btn);
571         gtk_box_pack_start (GTK_BOX (vbox2), default_btn, TRUE, FALSE, 0);
572         gtk_signal_connect (GTK_OBJECT(default_btn), "clicked",
573                             GTK_SIGNAL_FUNC (account_set_default), NULL);
574
575         gtkut_button_set_create(&hbbox, &close_btn, _("Close"),
576                                 NULL, NULL, NULL, NULL);
577         gtk_widget_show(hbbox);
578         gtk_box_pack_end (GTK_BOX (hbox), hbbox, FALSE, FALSE, 0);
579         gtk_widget_grab_default (close_btn);
580
581         gtk_signal_connect (GTK_OBJECT (close_btn), "clicked",
582                             GTK_SIGNAL_FUNC (account_edit_close),
583                             NULL);
584
585         stock_pixmap_gdk(clist, STOCK_PIXMAP_MARK, &markxpm, &markxpmmask);
586         stock_pixmap_gdk(clist, STOCK_PIXMAP_CHECKBOX_ON,
587                          &checkboxonxpm, &checkboxonxpmmask);
588         stock_pixmap_gdk(clist, STOCK_PIXMAP_CHECKBOX_OFF,
589                          &checkboxoffxpm, &checkboxoffxpmmask);
590
591         edit_account.window    = window;
592         edit_account.clist     = clist;
593         edit_account.close_btn = close_btn;
594 }
595
596 static void account_edit_prefs(void)
597 {
598         GtkCList *clist = GTK_CLIST(edit_account.clist);
599         PrefsAccount *ac_prefs;
600         gint row;
601         gboolean prev_default;
602         gchar *ac_name;
603
604         if (!clist->selection) return;
605
606         row = GPOINTER_TO_INT(clist->selection->data);
607         ac_prefs = gtk_clist_get_row_data(clist, row);
608         prev_default = ac_prefs->is_default;
609         Xstrdup_a(ac_name, ac_prefs->account_name ? ac_prefs->account_name : "",
610                   return);
611
612         prefs_account_open(ac_prefs);
613
614         if (!prev_default && ac_prefs->is_default)
615                 account_set_as_default(ac_prefs);
616
617         if ((ac_prefs->protocol == A_IMAP4 || ac_prefs->protocol == A_NNTP) &&
618             ac_prefs->folder && strcmp2(ac_name, ac_prefs->account_name) != 0) {
619                 folder_set_name(FOLDER(ac_prefs->folder),
620                                 ac_prefs->account_name);
621                 folderview_rescan_all();
622         }
623
624         account_clist_set();
625 }
626
627 static gboolean account_delete_references_func(GNode *node, gpointer data)
628 {
629         FolderItem *item;
630         gint account;
631
632         g_return_val_if_fail(node->data != NULL, FALSE);
633
634         item = FOLDER_ITEM(node->data);
635         account = GPOINTER_TO_INT(data);
636
637         if(!item->prefs) /* && item->prefs->stype == F_NORMAL */
638                 return FALSE;
639         if(item->prefs->default_account != account)
640                 return FALSE;
641         
642         item->prefs->enable_default_account = FALSE;
643         item->prefs->default_account = 0;
644         prefs_folder_item_save_config(item);
645 }
646
647 static void account_delete(void)
648 {
649         GtkCList *clist = GTK_CLIST(edit_account.clist);
650         PrefsAccount *ac_prefs;
651         gint row;
652         GList *list;
653         Folder *folder;
654         
655         if (!clist->selection) return;
656
657         if (alertpanel(_("Delete account"),
658                        _("Do you really want to delete this account?"),
659                        _("Yes"), _("+No"), NULL) != G_ALERTDEFAULT)
660                 return;
661
662         row = GPOINTER_TO_INT(clist->selection->data);
663         ac_prefs = gtk_clist_get_row_data(clist, row);
664         if (ac_prefs->folder) {
665                 folder_destroy(FOLDER(ac_prefs->folder));
666                 folderview_rescan_all();
667         }
668         account_destroy(ac_prefs);
669         account_clist_set();
670
671         debug_print(_("Removing deleted account references for all the folders...\n"));
672         list = folder_get_list();
673         for (; list != NULL; list = list->next) {
674                 folder = FOLDER(list->data);
675                 if (folder->node)  /* && folder->type == F_? */
676                         g_node_traverse(folder->node, G_PRE_ORDER,
677                                 G_TRAVERSE_ALL, -1,
678                                 account_delete_references_func,
679                                 GINT_TO_POINTER(ac_prefs->account_id));
680         }
681 }
682
683 static void account_up(void)
684 {
685         GtkCList *clist = GTK_CLIST(edit_account.clist);
686         gint row;
687
688         if (!clist->selection) return;
689
690         row = GPOINTER_TO_INT(clist->selection->data);
691         if (row > 0)
692                 gtk_clist_row_move(clist, row, row - 1);
693 }
694
695 static void account_down(void)
696 {
697         GtkCList *clist = GTK_CLIST(edit_account.clist);
698         gint row;
699
700         if (!clist->selection) return;
701
702         row = GPOINTER_TO_INT(clist->selection->data);
703         if (row < clist->rows - 1)
704                 gtk_clist_row_move(clist, row, row + 1);
705 }
706
707 static void account_set_default(void)
708 {
709         GtkCList *clist = GTK_CLIST(edit_account.clist);
710         gint row;
711         PrefsAccount *ac_prefs;
712
713         if (!clist->selection) return;
714
715         row = GPOINTER_TO_INT(clist->selection->data);
716         ac_prefs = gtk_clist_get_row_data(clist, row);
717         account_set_as_default(ac_prefs);
718         account_clist_set();
719
720         cur_account = ac_prefs;
721         account_set_menu();
722         main_window_reflect_prefs_all();
723 }
724
725 static void account_edit_close(void)
726 {
727         account_list_set();
728         account_save_config_all();
729
730         if (!cur_account && account_list) {
731                 PrefsAccount *ac_prefs = (PrefsAccount *)account_list->data;
732                 account_set_as_default(ac_prefs);
733                 cur_account = ac_prefs;
734         }
735
736         account_set_menu();
737         main_window_reflect_prefs_all();
738
739         gtk_widget_hide(edit_account.window);
740
741         inc_unlock();
742 }
743
744 static gint account_delete_event(GtkWidget *widget, GdkEventAny *event,
745                                  gpointer data)
746 {
747         account_edit_close();
748         return TRUE;
749 }
750
751 static void account_selected(GtkCList *clist, gint row, gint column,
752                              GdkEvent *event, gpointer data)
753 {
754         if (event && event->type == GDK_2BUTTON_PRESS)
755                 account_edit_prefs();
756
757         if (column == COL_GETALL) {
758                 PrefsAccount *ac;
759
760                 ac = gtk_clist_get_row_data(clist, row);
761                 if (ac->protocol == A_POP3 || ac->protocol == A_APOP ||
762                     ac->protocol == A_IMAP4 || ac->protocol == A_NNTP ||
763                     ac->protocol == A_LOCAL) {
764                         ac->recv_at_getall ^= TRUE;
765                         account_clist_set_row(ac, row);
766                 }
767         }
768 }
769
770 static void account_row_moved(GtkCList *clist, gint source_row, gint dest_row)
771 {
772         account_list_set();
773         if (gtk_clist_row_is_visible(clist, dest_row) != GTK_VISIBILITY_FULL) {
774                 gtk_clist_moveto(clist, dest_row, -1,
775                                  source_row < dest_row ? 1.0 : 0.0, 0.0);
776         }
777 }
778
779 static void account_key_pressed(GtkWidget *widget, GdkEventKey *event,
780                                 gpointer data)
781 {
782         if (event && event->keyval == GDK_Escape)
783                 account_edit_close();
784 }
785
786 /* set one CList row or add new row */
787 static gint account_clist_set_row(PrefsAccount *ac_prefs, gint row)
788 {
789         GtkCList *clist = GTK_CLIST(edit_account.clist);
790         gchar *text[N_EDIT_ACCOUNT_COLS];
791         gboolean has_getallbox;
792         gboolean getall;
793
794         text[COL_DEFAULT] = "";
795         text[COL_GETALL]  = "";
796         text[COL_NAME]    = ac_prefs->account_name;
797 #if USE_SSL
798         text[COL_PROTOCOL] = ac_prefs->protocol == A_POP3 ?
799                              (ac_prefs->ssl_pop ? "POP3 (SSL)" : "POP3") :
800                              ac_prefs->protocol == A_APOP ?
801                              (ac_prefs->ssl_pop ?
802                               "POP3 (APOP, SSL)" : "POP3 (APOP)") :
803                              ac_prefs->protocol == A_IMAP4 ?
804                              (ac_prefs->ssl_imap ? "IMAP4 (SSL)" : "IMAP4") :
805                              ac_prefs->protocol == A_LOCAL ? "Local" :
806                              ac_prefs->protocol == A_NNTP ? 
807                                   (ac_prefs->ssl_nntp ? "NNTP (SSL)"  :  "NNTP") : "";
808 #else
809         text[COL_PROTOCOL] = ac_prefs->protocol == A_POP3  ? "POP3" :
810                              ac_prefs->protocol == A_APOP  ? "POP3 (APOP)" :
811                              ac_prefs->protocol == A_IMAP4 ? "IMAP4" :
812                              ac_prefs->protocol == A_LOCAL ? "Local" :
813                              ac_prefs->protocol == A_NNTP  ? "NNTP" : "";
814 #endif
815         text[COL_SERVER] = ac_prefs->protocol == A_NNTP
816                 ? ac_prefs->nntp_server : ac_prefs->recv_server;
817
818         if (row < 0)
819                 row = gtk_clist_append(clist, text);
820         else {
821                 gtk_clist_set_text(clist, row, COL_DEFAULT, text[COL_DEFAULT]);
822                 gtk_clist_set_text(clist, row, COL_GETALL, text[COL_GETALL]);
823                 gtk_clist_set_text(clist, row, COL_NAME, text[COL_NAME]);
824                 gtk_clist_set_text(clist, row, COL_PROTOCOL, text[COL_PROTOCOL]);
825                 gtk_clist_set_text(clist, row, COL_SERVER, text[COL_SERVER]);
826         }
827
828         has_getallbox = (ac_prefs->protocol == A_POP3  ||
829                          ac_prefs->protocol == A_APOP  ||
830                          ac_prefs->protocol == A_IMAP4 ||
831                          ac_prefs->protocol == A_NNTP ||
832                          ac_prefs->protocol == A_LOCAL);
833         getall = has_getallbox && ac_prefs->recv_at_getall;
834
835         if (ac_prefs->is_default)
836                 gtk_clist_set_pixmap(clist, row, COL_DEFAULT,
837                                      markxpm, markxpmmask);
838         if (getall)
839                 gtk_clist_set_pixmap(clist, row, COL_GETALL,
840                                      checkboxonxpm, checkboxonxpmmask);
841         else if (has_getallbox)
842                 gtk_clist_set_pixmap(clist, row, COL_GETALL,
843                                      checkboxoffxpm, checkboxoffxpmmask);
844
845         gtk_clist_set_row_data(clist, row, ac_prefs);
846
847         return row;
848 }
849
850 /* set CList from account list */
851 static void account_clist_set(void)
852 {
853         GtkCList *clist = GTK_CLIST(edit_account.clist);
854         GList *cur;
855         gint row = -1, prev_row = -1;
856
857         if (clist->selection)
858                 prev_row = GPOINTER_TO_INT(clist->selection->data);
859
860         gtk_clist_freeze(clist);
861         gtk_clist_clear(clist);
862
863         for (cur = account_list; cur != NULL; cur = cur->next) {
864                 row = account_clist_set_row((PrefsAccount *)cur->data, -1);
865                 if ((PrefsAccount *)cur->data == cur_account) {
866                         gtk_clist_select_row(clist, row, -1);
867                         gtkut_clist_set_focus_row(clist, row);
868                 }
869         }
870
871         if (prev_row >= 0) {
872                 row = prev_row;
873                 gtk_clist_select_row(clist, row, -1);
874                 gtkut_clist_set_focus_row(clist, row);
875         }
876
877         if (row >= 0 &&
878             gtk_clist_row_is_visible(clist, row) != GTK_VISIBILITY_FULL)
879                 gtk_clist_moveto(clist, row, -1, 0.5, 0);
880
881         gtk_clist_thaw(clist);
882 }
883
884 /* set account list from CList */
885 static void account_list_set(void)
886 {
887         GtkCList *clist = GTK_CLIST(edit_account.clist);
888         gint row;
889         PrefsAccount *ac_prefs;
890
891         while (account_list)
892                 account_list = g_list_remove(account_list, account_list->data);
893
894         for (row = 0; (ac_prefs = gtk_clist_get_row_data(clist, row)) != NULL;
895              row++)
896                 account_list = g_list_append(account_list, ac_prefs);
897 }