2 * Claws Mail -- a GTK based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2023 the Claws Mail team and Hiroyuki Yamamoto
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "claws-features.h"
28 #include <glib/gi18n.h>
30 #include <gdk/gdkkeysyms.h>
35 #include "mainwindow.h"
36 #include "folderview.h"
39 #include "prefs_gtk.h"
40 #include "prefs_account.h"
41 #include "prefs_common.h"
42 #include "folder_item_prefs.h"
44 #include "manage_window.h"
45 #include "stock_pixmap.h"
49 #include "alertpanel.h"
50 #include "procheader.h"
51 #include "customheader.h"
52 #include "remotefolder.h"
54 #include "filtering.h"
55 #include "prefs_actions.h"
57 #include "passwordstore.h"
58 #include "file-utils.h"
62 ACCOUNT_ENABLE_GET_ALL
,
79 } EditAccountColumnPos
;
81 PrefsAccount
*cur_account
;
83 static GList
*account_list
= NULL
;
84 static gboolean account_list_dirty
= FALSE
;
86 static struct EditAccount
{
92 static void account_edit_create (void);
93 static void account_destroy (PrefsAccount
*ac_prefs
);
94 static void account_set_as_default (PrefsAccount
*ac_prefs
);
95 static void account_set_menu (void);
97 static void account_edit_prefs (GtkWidget
*widget
, gpointer data
);
98 static void account_delete (GtkWidget
*widget
, gpointer data
);
99 static void account_clone (GtkWidget
*widget
, gpointer data
);
101 static void account_up (GtkWidget
*widget
, gpointer data
);
102 static void account_down (GtkWidget
*widget
, gpointer data
);
104 static void account_set_default (GtkWidget
*widget
, gpointer data
);
106 static void account_edit_close (GtkWidget
*widget
, gpointer data
);
108 static gint
account_delete_event (GtkWidget
*widget
,
111 static void account_size_allocate_cb(GtkWidget
*widget
,
112 GtkAllocation
*allocation
);
113 static gboolean
account_key_pressed (GtkWidget
*widget
,
116 static gboolean
account_search_func_cb (GtkTreeModel
*model
, gint column
,
117 const gchar
*key
, GtkTreeIter
*iter
,
118 gpointer search_data
);
119 static void account_list_view_set (void);
121 static void account_list_set (void);
123 typedef struct FindAccountInStore
{
127 } FindAccountInStore
;
129 static GtkListStore
* account_create_data_store (void);
131 static void account_list_store_insert_account_item (GtkListStore
*list_store
,
132 PrefsAccount
*account_data
);
134 static GtkWidget
*account_list_view_create (void);
135 static void account_create_list_view_columns (GtkWidget
*list_view
);
137 static gint
account_list_view_get_selected_account_id (GtkWidget
*list_view
);
138 static GtkTreePath
*account_list_view_get_selected_account_path (GtkWidget
*list_view
);
139 static PrefsAccount
*account_list_view_get_selected_account (GtkWidget
*list_view
);
140 static gboolean
account_list_view_select_account (GtkWidget
*list_view
,
143 static void account_list_view_set_default_by_id(GtkWidget
*list_view
,
146 static gboolean
set_new_default_account (GtkTreeModel
*model
,
151 static gboolean
find_account_in_store (GtkTreeModel
*model
,
154 FindAccountInStore
*data
);
156 static void account_get_all_toggled (GtkCellRendererToggle
*widget
,
158 GtkWidget
*list_view
);
160 static void account_double_clicked (GtkTreeView
*list_view
,
162 GtkTreeViewColumn
*column
,
165 static void drag_begin (GtkTreeView
*list_view
,
166 GdkDragContext
*context
,
169 static void drag_end (GtkTreeView
*list_view
,
170 GdkDragContext
*context
,
173 static void account_row_changed_while_drag_drop (GtkTreeModel
*model
,
177 GtkTreeView
*list_view
);
179 static void account_flush_state(void)
182 main_window_reflect_prefs_all();
184 account_list_dirty
= FALSE
;
187 void account_read_config_all(void)
189 GSList
*ac_label_list
= NULL
, *cur
;
192 gchar buf
[PREFSBUFSIZE
];
193 PrefsAccount
*ac_prefs
;
195 debug_print("Reading all config for each account...\n");
197 rcpath
= g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S
, ACCOUNT_RC
, NULL
);
198 if ((fp
= claws_fopen(rcpath
, "rb")) == NULL
) {
199 if (ENOENT
!= errno
) FILE_OP_ERROR(rcpath
, "claws_fopen");
205 while (claws_fgets(buf
, sizeof(buf
), fp
) != NULL
) {
206 if (!strncmp(buf
, "[Account: ", 10)) {
208 memmove(buf
, buf
+ 1, sizeof(buf
) - 1);
209 buf
[strlen(buf
) - 1] = '\0';
210 debug_print("Found label: %s\n", buf
);
211 ac_label_list
= g_slist_append(ac_label_list
,
217 /* read config data from file */
219 for (cur
= ac_label_list
; cur
!= NULL
; cur
= cur
->next
) {
220 ac_prefs
= prefs_account_new_from_config((gchar
*)cur
->data
);
221 account_list
= g_list_append(account_list
, ac_prefs
);
222 if (ac_prefs
->is_default
)
223 cur_account
= ac_prefs
;
225 /* if default is not set, assume first account as default */
226 if (!cur_account
&& account_list
) {
227 ac_prefs
= (PrefsAccount
*)account_list
->data
;
228 account_set_as_default(ac_prefs
);
229 cur_account
= ac_prefs
;
233 main_window_reflect_prefs_all_now();
235 while (ac_label_list
) {
236 g_free(ac_label_list
->data
);
237 ac_label_list
= g_slist_remove(ac_label_list
,
238 ac_label_list
->data
);
242 void account_write_config_all(void)
244 prefs_account_write_config_all(account_list
);
248 * account_find_all_from_address:
249 * @ac_list: initial list of accounts. NULL to create a new one.
250 * Accounts found in the @address will be appended to this list.
251 * @address: Email address string.
253 * Find all the mail (not news) accounts within the specified address.
255 * Return value: the original accounts list with the found accounts appended.
257 GList
*account_find_all_from_address(GList
*ac_list
, const gchar
*address
)
265 for (cur
= account_list
; cur
!= NULL
; cur
= cur
->next
) {
266 ac
= (PrefsAccount
*)cur
->data
;
267 if (ac
->protocol
!= A_NNTP
&& ac
->address
&&
268 strcasestr(address
, ac
->address
) != NULL
)
269 ac_list
= g_list_append(ac_list
, ac
);
274 GList
*account_find_all(void)
278 GList
*ac_list
= NULL
;
280 for (cur
= account_list
; cur
!= NULL
; cur
= cur
->next
) {
281 ac
= (PrefsAccount
*)cur
->data
;
282 ac_list
= g_list_append(ac_list
, ac
);
287 PrefsAccount
*account_find_from_smtp_server(const gchar
*address
,
288 const gchar
*smtp_server
)
293 cm_return_val_if_fail(address
!= NULL
, NULL
);
294 cm_return_val_if_fail(smtp_server
!= NULL
, NULL
);
296 for (cur
= account_list
; cur
!= NULL
; cur
= cur
->next
) {
297 ac
= (PrefsAccount
*)cur
->data
;
298 if (!g_strcmp0(address
, ac
->address
) &&
299 !g_strcmp0(smtp_server
, ac
->smtp_server
))
307 * account_find_from_address:
308 * @address: Email address string.
310 * Find a mail (not news if newsgroups_ok is FALSE) account with the specified email address.
312 * Return value: The found account, or NULL if not found.
314 PrefsAccount
*account_find_from_address(const gchar
*address
, gboolean newsgroups_ok
)
319 cm_return_val_if_fail(address
!= NULL
, NULL
);
321 for (cur
= account_list
; cur
!= NULL
; cur
= cur
->next
) {
322 ac
= (PrefsAccount
*)cur
->data
;
323 if ((ac
->protocol
!= A_NNTP
|| newsgroups_ok
) && ac
->address
&&
324 g_ascii_strcasecmp(address
, ac
->address
) == 0)
331 PrefsAccount
*account_find_from_id(gint id
)
336 for (cur
= account_list
; cur
!= NULL
; cur
= cur
->next
) {
337 ac
= (PrefsAccount
*)cur
->data
;
338 if (id
== ac
->account_id
)
345 PrefsAccount
*account_find_from_item(FolderItem
*item
)
349 cm_return_val_if_fail(item
!= NULL
, NULL
);
353 FolderItem
*cur_item
= folder_item_parent(item
);
354 while (cur_item
!= NULL
) {
355 if (cur_item
->account
&& cur_item
->apply_sub
) {
356 ac
= cur_item
->account
;
359 cur_item
= folder_item_parent(cur_item
);
363 ac
= item
->folder
->account
;
368 static void account_set_menu(void)
370 main_window_set_account_menu(account_list
);
373 void account_set_menu_only_toolbar(void)
375 main_window_set_account_menu_only_toolbar(account_list
);
378 GList
*account_get_list(void)
383 void account_edit_focus(void)
385 if (edit_account
.window
== NULL
) {
388 manage_window_set_transient(GTK_WINDOW(edit_account
.window
));
389 gtk_widget_grab_focus(edit_account
.close_btn
);
390 gtk_widget_show(edit_account
.window
);
391 gtk_window_set_modal(GTK_WINDOW(edit_account
.window
), TRUE
);
392 manage_window_focus_in(edit_account
.window
, NULL
, NULL
);
395 void account_edit_open(gpointer a
, gpointer b
)
399 account_list_dirty
= FALSE
;
401 if (compose_get_compose_list()) {
402 alertpanel_error(_("Some composing windows are open.\n"
403 "Please close all the composing "
404 "windows before editing accounts."));
409 debug_print("Opening account edit window...\n");
411 if (!edit_account
.window
)
412 account_edit_create();
414 account_list_view_set();
416 account_edit_focus();
419 void account_add(void)
421 PrefsAccount
*ac_prefs
;
423 ac_prefs
= prefs_account_open(NULL
, &account_list_dirty
);
425 if (!ac_prefs
) return;
427 account_edit_focus();
429 account_list
= g_list_append(account_list
, ac_prefs
);
431 if (ac_prefs
->is_default
)
432 account_set_as_default(ac_prefs
);
434 account_list_view_set();
436 if (ac_prefs
->protocol
== A_IMAP4
|| ac_prefs
->protocol
== A_NNTP
) {
439 if (ac_prefs
->protocol
== A_IMAP4
) {
440 folder
= folder_new(folder_get_class_from_string("imap"), ac_prefs
->account_name
,
441 ac_prefs
->recv_server
);
443 folder
= folder_new(folder_get_class_from_string("news"), ac_prefs
->account_name
,
444 ac_prefs
->nntp_server
);
446 if (folder
== NULL
) {
447 alertpanel_error(_("Can't create folder."));
450 folder
->account
= ac_prefs
;
451 ac_prefs
->folder
= folder
;
453 if (ac_prefs
->protocol
== A_IMAP4
)
454 folder
->klass
->create_tree(folder
);
455 folderview_set_all();
460 void account_open(PrefsAccount
*ac_prefs
, gboolean called_from_acc_list
)
462 gboolean prev_default
;
463 gchar
*ac_name
, *old_prefix
, *new_prefix
;
464 gboolean account_dirty
= FALSE
;
466 cm_return_if_fail(ac_prefs
!= NULL
);
468 if (compose_get_compose_list()) {
469 alertpanel_error(_("Some composing windows are open.\n"
470 "Please close all the composing "
471 "windows before editing accounts."));
475 prev_default
= ac_prefs
->is_default
;
476 Xstrdup_a(ac_name
, ac_prefs
->account_name
? ac_prefs
->account_name
: "",
479 prefs_account_open(ac_prefs
, &account_dirty
);
481 if (called_from_acc_list
)
482 account_edit_focus();
485 if (!prev_default
&& ac_prefs
->is_default
)
486 account_set_as_default(ac_prefs
);
488 if (ac_prefs
->folder
&& g_strcmp0(ac_name
, ac_prefs
->account_name
) != 0) {
489 old_prefix
= folder_get_identifier(FOLDER(ac_prefs
->folder
));
490 folder_set_name(FOLDER(ac_prefs
->folder
),
491 ac_prefs
->account_name
);
492 folderview_set_all();
493 folder_prefs_save_config_recursive(FOLDER(ac_prefs
->folder
));
494 new_prefix
= folder_get_identifier(FOLDER(ac_prefs
->folder
));
496 account_rename_path(old_prefix
, new_prefix
);
497 prefs_filtering_rename_path(old_prefix
, new_prefix
);
498 prefs_actions_rename_path(old_prefix
, new_prefix
);
504 account_write_config_all();
506 account_flush_state();
510 static void account_set_as_default(PrefsAccount
*ac_prefs
)
515 for (cur
= account_list
; cur
!= NULL
; cur
= cur
->next
) {
516 ap
= (PrefsAccount
*)cur
->data
;
518 ap
->is_default
= FALSE
;
521 ac_prefs
->is_default
= TRUE
;
524 PrefsAccount
*account_get_default(void)
529 for (cur
= account_list
; cur
!= NULL
; cur
= cur
->next
) {
530 ap
= (PrefsAccount
*)cur
->data
;
538 void account_set_missing_folder(void)
543 for (cur
= account_list
; cur
!= NULL
; cur
= cur
->next
) {
544 ap
= (PrefsAccount
*)cur
->data
;
545 if ((ap
->protocol
== A_IMAP4
|| ap
->protocol
== A_NNTP
) &&
549 if (ap
->protocol
== A_IMAP4
) {
550 folder
= folder_new(folder_get_class_from_string("imap"), ap
->account_name
,
553 folder
= folder_new(folder_get_class_from_string("news"), ap
->account_name
,
558 folder
->account
= ap
;
561 if (ap
->protocol
== A_IMAP4
)
562 folder
->klass
->create_tree(folder
);
569 #define CHECK_CHANGE_FOLDER(folder) { \
570 if (folder && !strncmp(folder, old_id, strlen(old_id))) { \
571 if (strlen(folder) == strlen(old_id)) { \
573 folder = g_strdup(new_id); \
574 } else if (strlen(folder) > strlen(old_id) \
575 && folder[strlen(old_id)] == G_DIR_SEPARATOR) { \
576 gchar *new_path = g_strdup_printf("%s%s", \
577 new_id, (folder + strlen(old_id))); \
584 void account_rename_path(const gchar
*old_id
, const gchar
*new_id
)
586 GList
*cur
= account_list
;
587 for (; cur
!= NULL
; cur
= g_list_next(cur
)) {
588 PrefsAccount
*ap
= (PrefsAccount
*)cur
->data
;
589 CHECK_CHANGE_FOLDER(ap
->inbox
);
590 CHECK_CHANGE_FOLDER(ap
->local_inbox
);
591 CHECK_CHANGE_FOLDER(ap
->queue_folder
);
592 CHECK_CHANGE_FOLDER(ap
->sent_folder
);
593 CHECK_CHANGE_FOLDER(ap
->draft_folder
);
594 CHECK_CHANGE_FOLDER(ap
->trash_folder
);
598 FolderItem
*account_get_special_folder(PrefsAccount
*ac_prefs
,
599 SpecialFolderItemType type
)
601 FolderItem
*item
= NULL
;
603 cm_return_val_if_fail(ac_prefs
!= NULL
, NULL
);
607 if (ac_prefs
->folder
)
608 item
= FOLDER(ac_prefs
->folder
)->inbox
;
610 item
= folder_get_default_inbox();
613 if (ac_prefs
->set_sent_folder
&& ac_prefs
->sent_folder
) {
614 item
= folder_find_item_from_identifier
615 (ac_prefs
->sent_folder
);
618 if (ac_prefs
->folder
)
619 item
= FOLDER(ac_prefs
->folder
)->outbox
;
621 item
= folder_get_default_outbox_for_class(F_MH
);
623 item
= folder_get_default_outbox();
627 if (ac_prefs
->set_draft_folder
&& ac_prefs
->draft_folder
) {
628 item
= folder_find_item_from_identifier
629 (ac_prefs
->draft_folder
);
632 if (ac_prefs
->folder
)
633 item
= FOLDER(ac_prefs
->folder
)->draft
;
635 item
= folder_get_default_draft_for_class(F_MH
);
637 item
= folder_get_default_draft();
641 if (ac_prefs
->set_queue_folder
&& ac_prefs
->queue_folder
) {
642 item
= folder_find_item_from_identifier
643 (ac_prefs
->queue_folder
);
646 if (ac_prefs
->folder
)
647 item
= FOLDER(ac_prefs
->folder
)->queue
;
649 item
= folder_get_default_queue_for_class(F_MH
);
651 item
= folder_get_default_queue();
655 if (ac_prefs
->set_trash_folder
&& ac_prefs
->trash_folder
) {
656 item
= folder_find_item_from_identifier
657 (ac_prefs
->trash_folder
);
660 if (ac_prefs
->folder
)
661 item
= FOLDER(ac_prefs
->folder
)->trash
;
663 item
= folder_get_default_trash_for_class(F_MH
);
665 item
= folder_get_default_trash();
675 void account_destroy(PrefsAccount
*ac_prefs
)
677 cm_return_if_fail(ac_prefs
!= NULL
);
679 folder_unref_account_all(ac_prefs
);
681 account_list
= g_list_remove(account_list
, ac_prefs
);
683 if (cur_account
== ac_prefs
) cur_account
= NULL
;
684 if (!cur_account
&& account_list
) {
685 cur_account
= account_get_default();
687 ac_prefs
= (PrefsAccount
*)account_list
->data
;
688 account_set_as_default(ac_prefs
);
689 cur_account
= ac_prefs
;
695 *\brief Save Gtk object size to prefs dataset
697 static void account_size_allocate_cb(GtkWidget
*widget
,
698 GtkAllocation
*allocation
)
700 cm_return_if_fail(allocation
!= NULL
);
702 gtk_window_get_size(GTK_WINDOW(widget
),
703 &prefs_common
.accountswin_width
, &prefs_common
.accountswin_height
);
706 static void account_edit_create(void)
712 GtkWidget
*scrolledwin
;
713 GtkWidget
*list_view
;
719 GtkWidget
*clone_btn
;
723 GtkWidget
*default_btn
;
725 GtkWidget
*confirm_area
;
727 GtkWidget
*close_btn
;
729 static GdkGeometry geometry
;
731 debug_print("Creating account edit window...\n");
733 window
= gtkut_window_new(GTK_WINDOW_TOPLEVEL
, "account");
734 gtk_container_set_border_width (GTK_CONTAINER (window
), 8);
735 gtk_window_set_title (GTK_WINDOW (window
), _("Edit accounts"));
736 g_signal_connect (G_OBJECT (window
), "delete_event",
737 G_CALLBACK (account_delete_event
), NULL
);
738 g_signal_connect (G_OBJECT (window
), "key_press_event",
739 G_CALLBACK (account_key_pressed
), NULL
);
740 MANAGE_WINDOW_SIGNALS_CONNECT (window
);
741 gtk_widget_realize(window
);
743 vbox
= gtk_box_new(GTK_ORIENTATION_VERTICAL
, 10);
744 gtk_widget_show (vbox
);
745 gtk_container_add (GTK_CONTAINER (window
), vbox
);
747 hbox
= gtk_box_new(GTK_ORIENTATION_HORIZONTAL
, 0);
748 gtk_widget_show (hbox
);
749 gtk_box_pack_start (GTK_BOX (vbox
), hbox
, FALSE
, FALSE
, 0);
751 label
= gtk_label_new
752 (_("Using 'Get Mail' will retrieve messages from your Accounts "
753 "in the order given, the checkbox indicates which accounts "
754 "will be included. Bold text indicates the default account."));
755 gtk_widget_show (label
);
757 gtk_box_pack_start (GTK_BOX (hbox
), label
, FALSE
, FALSE
, 4);
758 gtk_label_set_justify(GTK_LABEL(label
), GTK_JUSTIFY_LEFT
);
759 gtk_label_set_line_wrap(GTK_LABEL(label
), TRUE
);
761 hbox
= gtk_box_new(GTK_ORIENTATION_HORIZONTAL
, 8);
762 gtk_widget_show (hbox
);
763 gtk_box_pack_start (GTK_BOX (vbox
), hbox
, TRUE
, TRUE
, 0);
764 gtk_container_set_border_width (GTK_CONTAINER (hbox
), 2);
766 scrolledwin
= gtk_scrolled_window_new (NULL
, NULL
);
767 gtk_widget_show (scrolledwin
);
768 gtk_box_pack_start (GTK_BOX (hbox
), scrolledwin
, TRUE
, TRUE
, 0);
769 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolledwin
),
770 GTK_POLICY_AUTOMATIC
,
771 GTK_POLICY_AUTOMATIC
);
773 list_view
= account_list_view_create();
774 gtk_widget_show(list_view
);
775 gtk_container_add(GTK_CONTAINER(scrolledwin
), list_view
);
777 vbox2
= gtk_box_new(GTK_ORIENTATION_VERTICAL
, 0);
778 gtk_widget_show (vbox2
);
779 gtk_box_pack_start (GTK_BOX (hbox
), vbox2
, FALSE
, FALSE
, 0);
781 add_btn
= gtk_button_new_with_mnemonic(_("_New"));
782 gtk_widget_show (add_btn
);
783 gtk_box_pack_start (GTK_BOX (vbox2
), add_btn
, FALSE
, FALSE
, 4);
784 g_signal_connect (G_OBJECT(add_btn
), "clicked",
785 G_CALLBACK (account_add
), NULL
);
786 CLAWS_SET_TIP(add_btn
,
787 _("Create a new account"));
789 edit_btn
= gtk_button_new_with_mnemonic(_("_Edit"));
790 gtk_widget_show (edit_btn
);
791 gtk_box_pack_start (GTK_BOX (vbox2
), edit_btn
, FALSE
, FALSE
, 4);
792 g_signal_connect (G_OBJECT(edit_btn
), "clicked",
793 G_CALLBACK (account_edit_prefs
), NULL
);
794 CLAWS_SET_TIP(edit_btn
,
795 _("Edit preferences for the selected account"));
797 del_btn
= gtkut_stock_button("edit-delete", _("D_elete"));
798 gtk_widget_show (del_btn
);
799 gtk_box_pack_start (GTK_BOX (vbox2
), del_btn
, FALSE
, FALSE
, 4);
800 g_signal_connect (G_OBJECT(del_btn
), "clicked",
801 G_CALLBACK (account_delete
), NULL
);
802 CLAWS_SET_TIP(del_btn
,
803 _("Delete the selected account from the list"));
805 clone_btn
= gtkut_stock_button("edit-copy", _("_Copy"));
806 gtk_widget_show (clone_btn
);
807 gtk_box_pack_start (GTK_BOX (vbox2
), clone_btn
, FALSE
, FALSE
, 4);
808 g_signal_connect(G_OBJECT(clone_btn
), "clicked",
809 G_CALLBACK(account_clone
), NULL
);
810 CLAWS_SET_TIP(clone_btn
,
811 _("Create a new copy of the selected account"));
813 down_btn
= gtkut_stock_button("go-down", _("_Down"));
814 gtk_widget_show (down_btn
);
815 gtk_box_pack_end (GTK_BOX (vbox2
), down_btn
, FALSE
, FALSE
, 4);
816 g_signal_connect (G_OBJECT(down_btn
), "clicked",
817 G_CALLBACK (account_down
), NULL
);
818 CLAWS_SET_TIP(down_btn
,
819 _("Move the selected account down"));
821 up_btn
= gtkut_stock_button("go-up", _("_Up"));
822 gtk_widget_show (up_btn
);
823 gtk_box_pack_end (GTK_BOX (vbox2
), up_btn
, FALSE
, FALSE
, 4);
824 g_signal_connect (G_OBJECT(up_btn
), "clicked",
825 G_CALLBACK (account_up
), NULL
);
826 CLAWS_SET_TIP(up_btn
,
827 _("Move the selected account up"));
829 hbox
= gtk_box_new(GTK_ORIENTATION_HORIZONTAL
, 8);
830 gtk_widget_show (hbox
);
831 gtk_box_pack_start (GTK_BOX (vbox
), hbox
, FALSE
, FALSE
, 0);
833 default_btn
= gtk_button_new_with_mnemonic
834 (_(" _Set as default account "));
835 gtk_widget_show (default_btn
);
836 gtk_box_pack_start (GTK_BOX (hbox
), default_btn
, FALSE
, FALSE
, 0);
837 g_signal_connect (G_OBJECT(default_btn
), "clicked",
838 G_CALLBACK (account_set_default
), NULL
);
840 gtkut_stock_button_set_create_with_help(&confirm_area
, &help_btn
,
841 &close_btn
, "window-close", _("_Close"),
842 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
);
843 gtk_widget_show(confirm_area
);
845 gtk_box_pack_end (GTK_BOX (hbox
), confirm_area
, FALSE
, FALSE
, 0);
846 gtk_widget_grab_default (close_btn
);
848 g_signal_connect (G_OBJECT (close_btn
), "clicked",
849 G_CALLBACK (account_edit_close
),
851 g_signal_connect(G_OBJECT(help_btn
), "clicked",
852 G_CALLBACK(manual_open_with_anchor_cb
),
853 MANUAL_ANCHOR_ACCOUNTPREFS
);
856 g_signal_connect(G_OBJECT(window
), "size_allocate",
857 G_CALLBACK(account_size_allocate_cb
), NULL
);
859 if (!geometry
.min_height
) {
860 geometry
.min_width
= 500;
861 geometry
.min_height
= 380;
864 gtk_window_set_geometry_hints(GTK_WINDOW(window
), NULL
, &geometry
,
866 gtk_window_set_default_size(GTK_WINDOW(window
), prefs_common
.accountswin_width
,
867 prefs_common
.accountswin_height
);
869 gtk_window_move(GTK_WINDOW(window
), 48, 48);
872 edit_account
.window
= window
;
873 edit_account
.list_view
= list_view
;
874 edit_account
.close_btn
= close_btn
;
877 static void account_edit_prefs(GtkWidget
*widget
, gpointer data
)
879 PrefsAccount
*ac_prefs
;
881 ac_prefs
= account_list_view_get_selected_account(edit_account
.list_view
);
884 account_open(ac_prefs
, TRUE
);
885 account_list_view_set();
889 static gboolean
account_delete_references_func(GNode
*node
, gpointer data
)
894 cm_return_val_if_fail(node
->data
!= NULL
, FALSE
);
896 item
= FOLDER_ITEM(node
->data
);
897 account
= GPOINTER_TO_INT(data
);
899 if(!item
->prefs
) /* && item->prefs->stype == F_NORMAL */
901 if(item
->prefs
->default_account
!= account
)
904 item
->prefs
->enable_default_account
= FALSE
;
905 item
->prefs
->default_account
= 0;
906 folder_item_prefs_save_config(item
);
912 #define ACP_FDUP(fld) ac_clon->fld = ((ac_prefs->fld) != NULL)?\
913 g_strdup(ac_prefs->fld): NULL
914 #define ACP_FASSIGN(fld) ac_clon->fld = ac_prefs->fld
915 static void account_clone(GtkWidget
*widget
, gpointer data
)
917 PrefsAccount
*ac_prefs
, *ac_clon
;
919 CustomHeader
*cch
= NULL
, *ch
= NULL
;
921 ac_prefs
= account_list_view_get_selected_account(edit_account
.list_view
);
922 if (ac_prefs
== NULL
)
925 if (ac_prefs
->protocol
== A_IMAP4
|| ac_prefs
->protocol
== A_NNTP
) {
926 alertpanel_error(_("Accounts with remote folders cannot be copied."));
929 account_list_dirty
= TRUE
;
931 ac_clon
= prefs_account_new();
933 ac_clon
->account_name
= g_strdup_printf(_("Copy of %s"),
934 ac_prefs
->account_name
);
938 ACP_FDUP(organization
);
941 ACP_FASSIGN(protocol
);
942 ACP_FDUP(recv_server
);
943 ACP_FDUP(smtp_server
);
944 ACP_FDUP(nntp_server
);
945 ACP_FASSIGN(use_nntp_auth
);
946 ACP_FASSIGN(use_nntp_auth_onconnect
);
950 ACP_FDUP(local_mbox
);
951 ACP_FASSIGN(use_mail_command
);
952 ACP_FDUP(mail_command
);
954 ACP_FASSIGN(ssl_pop
);
955 ACP_FASSIGN(ssl_imap
);
956 ACP_FASSIGN(ssl_nntp
);
957 ACP_FASSIGN(ssl_smtp
);
958 ACP_FASSIGN(ssl_certs_auto_accept
);
959 ACP_FASSIGN(use_nonblocking_ssl
);
960 ACP_FASSIGN(use_tls_sni
);
961 ACP_FASSIGN(in_ssl_client_cert_file
);
962 ACP_FASSIGN(in_ssl_client_cert_pass
);
963 ACP_FASSIGN(out_ssl_client_cert_file
);
964 ACP_FASSIGN(out_ssl_client_cert_pass
);
967 ACP_FASSIGN(use_pop_auth
);
968 ACP_FASSIGN(pop_auth_type
);
970 ACP_FASSIGN(msg_leave_time
);
971 ACP_FASSIGN(msg_leave_hour
);
972 ACP_FASSIGN(recv_at_getall
);
973 ACP_FASSIGN(sd_rmmail_on_download
);
974 ACP_FASSIGN(enable_size_limit
);
975 ACP_FASSIGN(size_limit
);
976 ACP_FASSIGN(filter_on_recv
);
977 ACP_FASSIGN(filterhook_on_recv
);
979 ACP_FDUP(local_inbox
);
980 ACP_FASSIGN(max_articles
);
981 ACP_FASSIGN(autochk_use_default
);
982 ACP_FASSIGN(autochk_use_custom
);
983 ACP_FASSIGN(autochk_itv
);
984 ac_clon
->autocheck_timer
= 0;
986 ACP_FASSIGN(imap_auth_type
);
987 ACP_FASSIGN(imap_batch_size
);
990 ACP_FASSIGN(gen_msgid
);
991 ACP_FASSIGN(gen_xmailer
);
992 ACP_FASSIGN(add_customhdr
);
993 ACP_FASSIGN(use_smtp_auth
);
994 ACP_FASSIGN(smtp_auth_type
);
995 ACP_FDUP(smtp_userid
);
996 ACP_FDUP(smtp_passwd
);
998 ACP_FASSIGN(pop_before_smtp
);
999 ACP_FASSIGN(pop_before_smtp_timeout
);
1000 ACP_FASSIGN(last_pop_login_time
);
1002 ac_clon
->customhdr_list
= NULL
;
1003 hdrs
= ac_prefs
->customhdr_list
;
1004 while (hdrs
!= NULL
) {
1005 ch
= (CustomHeader
*)hdrs
->data
;
1007 cch
= g_new0(CustomHeader
, 1);
1008 cch
->account_id
= ac_clon
->account_id
;
1009 cch
->name
= (ch
->name
!= NULL
) ? g_strdup(ch
->name
) : NULL
;
1010 cch
->value
= (ch
->value
!= NULL
) ? g_strdup(ch
->value
) : NULL
;
1012 ac_clon
->customhdr_list
= g_slist_append(ac_clon
->customhdr_list
, cch
);
1014 hdrs
= g_slist_next(hdrs
);
1018 ACP_FASSIGN(sig_type
);
1020 ACP_FASSIGN(auto_sig
);
1022 ACP_FASSIGN(set_autocc
);
1024 ACP_FASSIGN(set_autobcc
);
1026 ACP_FASSIGN(set_autoreplyto
);
1027 ACP_FDUP(auto_replyto
);
1028 ACP_FASSIGN(enable_default_dictionary
);
1029 ACP_FDUP(default_dictionary
);
1030 ACP_FASSIGN(enable_default_alt_dictionary
);
1031 ACP_FDUP(default_alt_dictionary
);
1032 ACP_FASSIGN(compose_with_format
);
1033 ACP_FDUP(compose_subject_format
);
1034 ACP_FDUP(compose_body_format
);
1035 ACP_FASSIGN(reply_with_format
);
1036 ACP_FDUP(reply_quotemark
);
1037 ACP_FDUP(reply_body_format
);
1038 ACP_FASSIGN(forward_with_format
);
1039 ACP_FDUP(forward_quotemark
);
1040 ACP_FDUP(forward_body_format
);
1043 ACP_FDUP(default_privacy_system
);
1044 ACP_FASSIGN(default_encrypt
);
1045 ACP_FASSIGN(default_encrypt_reply
);
1046 ACP_FASSIGN(default_sign
);
1047 ACP_FASSIGN(default_sign_reply
);
1048 ACP_FASSIGN(save_encrypted_as_clear_text
);
1049 ACP_FASSIGN(encrypt_to_self
);
1052 ACP_FASSIGN(set_smtpport
);
1053 ACP_FASSIGN(smtpport
);
1054 ACP_FASSIGN(set_popport
);
1055 ACP_FASSIGN(popport
);
1056 ACP_FASSIGN(set_imapport
);
1057 ACP_FASSIGN(imapport
);
1058 ACP_FASSIGN(set_nntpport
);
1059 ACP_FASSIGN(nntpport
);
1060 ACP_FASSIGN(set_domain
);
1062 ACP_FASSIGN(mark_crosspost_read
);
1063 ACP_FASSIGN(crosspost_col
);
1066 ACP_FASSIGN(set_tunnelcmd
);
1067 ACP_FDUP(tunnelcmd
);
1071 ACP_FASSIGN(imap_subsonly
);
1072 ACP_FASSIGN(low_bandwidth
);
1074 ACP_FASSIGN(set_sent_folder
);
1075 ACP_FDUP(sent_folder
);
1076 ACP_FASSIGN(set_queue_folder
);
1077 ACP_FDUP(queue_folder
);
1078 ACP_FASSIGN(set_draft_folder
);
1079 ACP_FDUP(draft_folder
);
1080 ACP_FASSIGN(set_trash_folder
);
1081 ACP_FDUP(trash_folder
);
1082 /* don't want two default accounts */
1083 ac_clon
->is_default
= FALSE
;
1084 ACP_FASSIGN(folder
);
1086 ACP_FASSIGN(config_version
);
1088 ACP_FASSIGN(use_proxy
);
1089 ACP_FASSIGN(use_default_proxy
);
1090 ACP_FASSIGN(use_proxy_for_send
);
1091 ACP_FASSIGN(proxy_info
.proxy_type
);
1092 ACP_FDUP(proxy_info
.proxy_host
);
1093 ACP_FASSIGN(proxy_info
.proxy_port
);
1094 ACP_FASSIGN(proxy_info
.use_proxy_auth
);
1095 ACP_FDUP(proxy_info
.proxy_name
);
1096 ACP_FDUP(proxy_info
.proxy_pass
);
1098 account_list
= g_list_append(account_list
, ac_clon
);
1099 account_list_view_set();
1104 static void account_empty_cache(PrefsAccount
*ac_prefs
)
1108 cache_dir
= prefs_account_cache_dir(ac_prefs
, FALSE
);
1109 if (cache_dir
== NULL
)
1110 return; /* no cache dir, nothing to do */
1112 if (is_dir_exist(cache_dir
) && remove_dir_recursive(cache_dir
) < 0) {
1113 g_warning("can't remove directory '%s'", cache_dir
);
1115 gchar
*server_dir
= prefs_account_cache_dir(ac_prefs
, TRUE
);
1116 if (g_rmdir(server_dir
) == 0)
1117 debug_print("Removed empty cache server directory\n");
1119 debug_print("Cache server directory not empty: not removed\n");
1125 static void account_delete(GtkWidget
*widget
, gpointer data
)
1127 PrefsAccount
*ac_prefs
;
1128 gchar buf
[BUFFSIZE
];
1133 ac_prefs
= account_list_view_get_selected_account(edit_account
.list_view
);
1134 if (ac_prefs
== NULL
)
1137 g_snprintf(buf
, sizeof(buf
),
1138 _("Do you really want to delete the account '%s'?"),
1139 ac_prefs
->account_name
? ac_prefs
->account_name
:
1141 if (alertpanel_full(_("Delete account"), buf
,
1142 NULL
, _("_Cancel"), "edit-delete", _("_Delete"),
1143 NULL
, NULL
, ALERTFOCUS_FIRST
, FALSE
,
1144 NULL
, ALERT_WARNING
) != G_ALERTALTERNATE
)
1146 account_list_dirty
= TRUE
;
1148 if (ac_prefs
->folder
) {
1151 item
= mainwindow_get_mainwindow()->summaryview
->folder_item
;
1152 if (item
&& item
->folder
== FOLDER(ac_prefs
->folder
))
1153 summary_clear_all(mainwindow_get_mainwindow()->summaryview
);
1154 folder_destroy(FOLDER(ac_prefs
->folder
));
1155 folderview_set_all();
1158 inc_account_autocheck_timer_remove(ac_prefs
);
1160 account_destroy(ac_prefs
);
1161 account_list_view_set();
1163 debug_print("Removing deleted account references for all the folders...\n");
1164 list
= folder_get_list();
1165 for (; list
!= NULL
; list
= list
->next
) {
1166 folder
= FOLDER(list
->data
);
1167 if (folder
->node
) /* && folder->type == F_? */
1168 g_node_traverse(folder
->node
, G_PRE_ORDER
,
1170 account_delete_references_func
,
1171 GINT_TO_POINTER(ac_prefs
->account_id
));
1174 gchar
*uid
= g_strdup_printf("%d", ac_prefs
->account_id
);
1175 passwd_store_delete_block(PWS_ACCOUNT
, uid
);
1178 debug_print("Removing filter rules relative to this account...\n");
1179 for(cur
= filtering_rules
; cur
!= NULL
;) {
1180 FilteringProp
* prop
= (FilteringProp
*) cur
->data
;
1182 if (prop
&& (prop
->account_id
== ac_prefs
->account_id
)) {
1183 /* get next item before we kill the current one */
1184 cur
= g_slist_next(cur
);
1186 /* unallocate filteringprop and unchain it from the list */
1187 filteringprop_free(prop
);
1188 filtering_rules
= g_slist_remove(filtering_rules
, prop
);
1190 cur
= g_slist_next(cur
);
1194 debug_print("Removing cache directory of this account...\n");
1195 account_empty_cache(ac_prefs
);
1197 folder_write_list();
1200 static void account_up(GtkWidget
*widget
, gpointer data
)
1202 GtkTreePath
*sel
= account_list_view_get_selected_account_path
1203 (edit_account
.list_view
),
1205 GtkTreeIter isel
, iup
;
1206 GtkTreeModel
*model
= gtk_tree_view_get_model
1207 (GTK_TREE_VIEW(edit_account
.list_view
));
1211 account_list_dirty
= TRUE
;
1213 up
= gtk_tree_path_copy(sel
);
1215 gtk_tree_path_free(sel
);
1219 if (!gtk_tree_path_prev(up
)) {
1220 gtk_tree_path_free(up
);
1221 gtk_tree_path_free(sel
);
1225 if (!gtk_tree_model_get_iter(model
, &isel
, sel
)
1226 || !gtk_tree_model_get_iter(model
, &iup
, up
)) {
1227 gtk_tree_path_free(up
);
1228 gtk_tree_path_free(sel
);
1232 gtk_list_store_swap(GTK_LIST_STORE(model
), &isel
, &iup
);
1236 gtk_tree_path_free(up
);
1237 gtk_tree_path_free(sel
);
1240 static void account_down(GtkWidget
*widget
, gpointer data
)
1242 GtkTreePath
*sel
= account_list_view_get_selected_account_path
1243 (edit_account
.list_view
),
1245 GtkTreeIter isel
, idn
;
1246 GtkTreeModel
*model
= gtk_tree_view_get_model
1247 (GTK_TREE_VIEW(edit_account
.list_view
));
1251 account_list_dirty
= TRUE
;
1253 dn
= gtk_tree_path_copy(sel
);
1255 gtk_tree_path_free(sel
);
1259 /* XXX no check possible??? however, if down but at bottom, then
1260 * nothing seems to happen much anyway, so the following seems to
1262 gtk_tree_path_next(dn
);
1264 if (!gtk_tree_model_get_iter(model
, &isel
, sel
)
1265 || !gtk_tree_model_get_iter(model
, &idn
, dn
)) {
1266 gtk_tree_path_free(dn
);
1267 gtk_tree_path_free(sel
);
1271 gtk_list_store_swap(GTK_LIST_STORE(model
), &isel
, &idn
);
1275 gtk_tree_path_free(dn
);
1276 gtk_tree_path_free(sel
);
1279 static void account_set_default(GtkWidget
*widget
, gpointer data
)
1281 PrefsAccount
*ac_prefs
;
1283 if (NULL
== (ac_prefs
= account_list_view_get_selected_account
1284 (edit_account
.list_view
)))
1287 /* we need to change the store variables by resetting everything
1288 * and setting the new default one */
1289 account_list_view_set_default_by_id(edit_account
.list_view
,
1290 ac_prefs
->account_id
);
1292 account_set_as_default(ac_prefs
);
1293 account_list_view_set();
1295 cur_account
= ac_prefs
;
1296 account_flush_state();
1299 static void account_edit_close(GtkWidget
*widget
, gpointer data
)
1302 account_write_config_all();
1304 if (!cur_account
&& account_list
) {
1305 PrefsAccount
*ac_prefs
= (PrefsAccount
*)account_list
->data
;
1306 account_set_as_default(ac_prefs
);
1307 cur_account
= ac_prefs
;
1310 if (account_list_dirty
)
1311 account_flush_state();
1313 gtk_widget_hide(edit_account
.window
);
1314 gtk_window_set_modal(GTK_WINDOW(edit_account
.window
), FALSE
);
1318 static gint
account_delete_event(GtkWidget
*widget
, GdkEventAny
*event
,
1321 account_edit_close(NULL
, NULL
);
1325 static gboolean
account_key_pressed(GtkWidget
*widget
, GdkEventKey
*event
,
1328 if (event
&& event
->keyval
== GDK_KEY_Escape
)
1329 account_edit_close(NULL
, NULL
);
1333 static gboolean
account_search_func_cb (GtkTreeModel
*model
, gint column
, const gchar
*key
,
1334 GtkTreeIter
*iter
, gpointer search_data
)
1339 gtk_tree_model_get (model
, iter
, ACCOUNT_DATA
, &ac
, -1);
1341 if (!ac
->name
|| !key
) return FALSE
;
1343 retval
= (strncmp (key
, ac
->account_name
, strlen(key
)) != 0);
1345 debug_print("selecting row\n");
1346 account_list_view_select_account(edit_account
.list_view
, ac
->account_id
);
1351 static void account_list_view_set(void)
1354 gint prev_sel_account
;
1355 GtkListStore
*store
;
1357 store
= GTK_LIST_STORE(gtk_tree_view_get_model
1358 (GTK_TREE_VIEW(edit_account
.list_view
)));
1360 prev_sel_account
= account_list_view_get_selected_account_id
1361 (edit_account
.list_view
);
1363 gtk_list_store_clear(store
);
1365 for (cur
= account_list
; cur
!= NULL
; cur
= cur
->next
) {
1366 account_list_store_insert_account_item(store
, (PrefsAccount
*)cur
->data
);
1367 if ((PrefsAccount
*)cur
->data
== cur_account
)
1368 account_list_view_select_account
1369 (edit_account
.list_view
,
1370 cur_account
->account_id
);
1373 if (prev_sel_account
>= 0)
1374 account_list_view_select_account(edit_account
.list_view
,
1378 /* set account list from CList */
1379 static void account_list_set(void)
1381 /* want to make sure we iterate *IN ORDER*, so therefore using
1382 * gtk_tree_model_XXXX_nth_child() */
1384 PrefsAccount
*ac_prefs
;
1385 GtkTreeModel
*model
= gtk_tree_view_get_model
1386 (GTK_TREE_VIEW(edit_account
.list_view
));
1388 while (account_list
)
1389 account_list
= g_list_remove(account_list
, account_list
->data
);
1391 n_rows
= gtk_tree_model_iter_n_children(model
, NULL
);
1393 for (row
= 0; row
< n_rows
; row
++) {
1396 if (!gtk_tree_model_iter_nth_child(model
, &iter
, NULL
, row
)) {
1397 g_warning("%s(%d) - no iter found???", __FILE__
, __LINE__
);
1402 gtk_tree_model_get(model
, &iter
,
1403 ACCOUNT_DATA
, &ac_prefs
,
1406 account_list
= g_list_append(account_list
, ac_prefs
);
1411 *\brief finds the PrefsAccounts which should be used to answer a mail
1413 *\param msginfo The message to be answered
1414 *\param reply_autosel Indicates whether reply account autoselection is on
1416 *\return PrefsAccount * the correct account, NULL if not found
1418 PrefsAccount
*account_get_reply_account(MsgInfo
*msginfo
, gboolean reply_autosel
)
1420 PrefsAccount
*account
= NULL
;
1421 /* select the account set in folderitem's property (if enabled) */
1422 if (msginfo
->folder
->prefs
&& msginfo
->folder
->prefs
->enable_default_account
)
1423 account
= account_find_from_id(msginfo
->folder
->prefs
->default_account
);
1424 else if (folder_has_parent_of_type(msginfo
->folder
, F_QUEUE
) ||
1425 folder_has_parent_of_type(msginfo
->folder
, F_OUTBOX
) ||
1426 folder_has_parent_of_type(msginfo
->folder
, F_DRAFT
)) {
1428 if (!procheader_get_header_from_msginfo
1429 (msginfo
, &from
, "From:")) {
1430 gchar
*buf
= from
+ strlen("From:");
1431 extract_address(buf
);
1432 account
= account_find_from_address(buf
, FALSE
);
1436 /* select account by to: and cc: header if enabled */
1437 if (reply_autosel
) {
1438 gchar
* field
= NULL
;
1440 for (field
= msginfo
->to
; fieldno
++ < 2; field
= msginfo
->cc
) {
1441 if (!account
&& field
) {
1442 gchar
*f
= g_strdup(field
);
1448 next
= strchr_with_skip_quote(cur
, '"', ',');
1451 Xstrdup_a(to
, cur
, return NULL
);
1452 extract_address(to
);
1453 account
= account_find_from_address(to
, FALSE
);
1464 gchar
*deliveredto
= NULL
;
1465 if (!procheader_get_header_from_msginfo
1466 (msginfo
, &deliveredto
, "Delivered-To:")) {
1467 gchar
*buf
= deliveredto
+ strlen("Delivered-To:");
1468 extract_address(buf
);
1469 account
= account_find_from_address(buf
, FALSE
);
1470 g_free(deliveredto
);
1475 /* select the account for the whole folder (IMAP / NNTP) */
1477 /* FIXME: this is not right, because folder may be nested. we should
1478 * ascend the tree until we find a parent with proper account
1480 account
= msginfo
->folder
->folder
->account
;
1482 /* select current account */
1483 if (!account
) account
= cur_account
;
1489 *\brief Create data store
1491 static GtkListStore
* account_create_data_store(void)
1493 return gtk_list_store_new(N_ACCOUNT_COLUMNS
,
1494 G_TYPE_INT
, /* ACCOUNT_IS_DEFAULT */
1495 G_TYPE_BOOLEAN
, /* ACCOUNT_ENABLE_GET_ALL */
1496 G_TYPE_STRING
, /* ACCOUNT_NAME */
1497 G_TYPE_STRING
, /* ACCOUNT_PROTOCOL */
1498 G_TYPE_STRING
, /* ACCOUNT_SERVER */
1499 G_TYPE_POINTER
, /* ACCOUNT_DATA */
1504 *\brief Insert an account item in the list.
1506 *\return GtkTreeRowReference * A tree row reference, which is guaranteed to
1507 * stable whatever operations are performed on the list.
1509 static void account_list_store_insert_account_item(GtkListStore
*list_store
,
1510 PrefsAccount
*ac_prefs
)
1513 gboolean is_get_all
= (ac_prefs
->protocol
== A_POP3
||
1514 ac_prefs
->protocol
== A_IMAP4
||
1515 ac_prefs
->protocol
== A_NNTP
||
1516 ac_prefs
->protocol
== A_LOCAL
) &&
1517 ac_prefs
->recv_at_getall
;
1518 gchar
*protocol
, *server
;
1521 protocol
= ac_prefs
->protocol
== A_POP3
?
1522 (ac_prefs
->ssl_pop
== SSL_TUNNEL
?
1524 ac_prefs
->ssl_pop
== SSL_STARTTLS
?
1525 "POP (STARTTLS)" : "POP") :
1526 ac_prefs
->protocol
== A_IMAP4
?
1527 (ac_prefs
->ssl_imap
== SSL_TUNNEL
?
1529 ac_prefs
->ssl_imap
== SSL_STARTTLS
?
1530 "IMAP (STARTTLS)" : "IMAP") :
1531 ac_prefs
->protocol
== A_NNTP
?
1532 (ac_prefs
->ssl_nntp
== SSL_TUNNEL
?
1533 "NNTP (TLS)" : "NNTP") :
1534 ac_prefs
->protocol
== A_LOCAL
? "Local" :
1535 ac_prefs
->protocol
== A_NONE
? "SMTP" : "-";
1537 protocol
= ac_prefs
->protocol
== A_POP3
? "POP" :
1538 ac_prefs
->protocol
== A_IMAP4
? "IMAP" :
1539 ac_prefs
->protocol
== A_LOCAL
? "Local" :
1540 ac_prefs
->protocol
== A_NNTP
? "NNTP" :
1541 ac_prefs
->protocol
== A_NONE
? "SMTP" : "-";
1544 server
= ac_prefs
->protocol
== A_NNTP
? ac_prefs
->nntp_server
:
1545 ac_prefs
->protocol
== A_LOCAL
? "-" :
1546 ac_prefs
->protocol
== A_NONE
? ac_prefs
->smtp_server
:
1547 ac_prefs
->recv_server
;
1549 gtk_list_store_append(list_store
, &iter
);
1550 gtk_list_store_set(list_store
, &iter
,
1551 ACCOUNT_IS_DEFAULT
, ac_prefs
->is_default
? PANGO_WEIGHT_BOLD
: PANGO_WEIGHT_NORMAL
,
1552 ACCOUNT_ENABLE_GET_ALL
, is_get_all
,
1553 ACCOUNT_NAME
, ac_prefs
->account_name
,
1554 ACCOUNT_PROTOCOL
, protocol
,
1555 ACCOUNT_SERVER
, server
,
1556 ACCOUNT_DATA
, ac_prefs
,
1561 *\brief Create and set up account list view, including tasks like
1562 * creating the data store (\ref account_create_data_store()),
1563 * and setting up the account list's individual columns (\ref
1564 * account_create_list_view_columns()).
1566 *\return GtkWidget * The created list view widget.
1568 static GtkWidget
*account_list_view_create(void)
1570 GtkTreeView
*list_view
;
1571 GtkTreeSelection
*selector
;
1572 GtkListStore
*store
= account_create_data_store();
1574 list_view
= GTK_TREE_VIEW(gtk_tree_view_new_with_model(GTK_TREE_MODEL(store
)));
1575 g_object_unref(G_OBJECT(store
));
1577 g_object_set(list_view
, "allow-checkbox-mode", FALSE
, NULL
);
1579 gtk_tree_view_set_rules_hint(list_view
, prefs_common
.use_stripes_everywhere
);
1580 gtk_tree_view_set_reorderable(list_view
, TRUE
);
1582 selector
= gtk_tree_view_get_selection(list_view
);
1583 gtk_tree_selection_set_mode(selector
, GTK_SELECTION_BROWSE
);
1585 /* create the columns */
1586 account_create_list_view_columns(GTK_WIDGET(list_view
));
1588 /* set a double click listener */
1589 g_signal_connect(G_OBJECT(list_view
), "row_activated",
1590 G_CALLBACK(account_double_clicked
),
1593 g_signal_connect(G_OBJECT(list_view
), "drag_begin",
1594 G_CALLBACK(drag_begin
),
1597 g_signal_connect(G_OBJECT(list_view
), "drag_end",
1598 G_CALLBACK(drag_end
),
1601 gtk_tree_view_set_reorderable(list_view
, TRUE
);
1602 return GTK_WIDGET(list_view
);
1605 static void account_create_list_view_columns(GtkWidget
*list_view
)
1607 GtkTreeViewColumn
*column
;
1608 GtkCellRenderer
*renderer
;
1610 renderer
= gtk_cell_renderer_toggle_new();
1611 g_object_set(renderer
,
1613 "activatable", TRUE
,
1615 column
= gtk_tree_view_column_new_with_attributes
1616 (C_("Accounts List Get Column Name", "G"), renderer
,
1617 "active", ACCOUNT_ENABLE_GET_ALL
,
1619 gtk_tree_view_append_column(GTK_TREE_VIEW(list_view
), column
);
1620 gtk_tree_view_column_set_alignment (column
, 0.5);
1621 CLAWS_SET_TIP(gtk_tree_view_column_get_widget(column
),
1622 _("'Get Mail' retrieves mail from the checked accounts"));
1623 g_signal_connect(G_OBJECT(renderer
), "toggled",
1624 G_CALLBACK(account_get_all_toggled
),
1627 renderer
= gtk_cell_renderer_text_new();
1628 column
= gtk_tree_view_column_new_with_attributes
1629 (_("Name"), renderer
,
1630 "text", ACCOUNT_NAME
,
1631 "weight", ACCOUNT_IS_DEFAULT
,
1633 gtk_tree_view_append_column(GTK_TREE_VIEW(list_view
), column
);
1635 renderer
= gtk_cell_renderer_text_new();
1636 column
= gtk_tree_view_column_new_with_attributes
1637 (_("Protocol"), renderer
,
1638 "text", ACCOUNT_PROTOCOL
,
1639 "weight", ACCOUNT_IS_DEFAULT
,
1641 gtk_tree_view_append_column(GTK_TREE_VIEW(list_view
), column
);
1643 renderer
= gtk_cell_renderer_text_new();
1644 column
= gtk_tree_view_column_new_with_attributes
1645 (_("Server"), renderer
,
1646 "text", ACCOUNT_SERVER
,
1647 "weight", ACCOUNT_IS_DEFAULT
,
1649 gtk_tree_view_set_search_column(GTK_TREE_VIEW(list_view
), ACCOUNT_NAME
);
1650 gtk_tree_view_set_search_equal_func(GTK_TREE_VIEW(list_view
), account_search_func_cb
, NULL
, NULL
);
1651 gtk_tree_view_append_column(GTK_TREE_VIEW(list_view
), column
);
1655 *\brief Get currently selected account (by its unique ID)
1657 static gint
account_list_view_get_selected_account_id(GtkWidget
*list_view
)
1659 PrefsAccount
*res
= NULL
;
1661 res
= (PrefsAccount
*)gtkut_tree_view_get_selected_pointer(
1662 GTK_TREE_VIEW(list_view
), ACCOUNT_DATA
,
1665 return (res
!= NULL
? res
->account_id
: -1);
1669 *\brief Get the tree path of the currently selected account
1671 static GtkTreePath
*account_list_view_get_selected_account_path(GtkWidget
*list_view
)
1673 GtkTreeSelection
*selector
;
1674 GtkTreeModel
*model
;
1677 selector
= gtk_tree_view_get_selection(GTK_TREE_VIEW(list_view
));
1679 if (!gtk_tree_selection_get_selected(selector
, &model
, &iter
))
1682 return gtk_tree_model_get_path(gtk_tree_view_get_model
1683 (GTK_TREE_VIEW(list_view
)), &iter
);
1687 *\brief Get the account data of the currently selected account
1689 static PrefsAccount
*account_list_view_get_selected_account(GtkWidget
*list_view
)
1692 (PrefsAccount
*)gtkut_tree_view_get_selected_pointer(
1693 GTK_TREE_VIEW(list_view
), ACCOUNT_DATA
,
1700 *\brief Select a row by the account it represents
1702 *\return gboolean TRUE if found and selected, FALSE if not.
1704 static gboolean
account_list_view_select_account(GtkWidget
*list_view
, gint account_id
)
1706 FindAccountInStore fis
;
1707 GtkTreeModel
*model
;
1709 fis
.account_id
= account_id
;
1712 model
= gtk_tree_view_get_model(GTK_TREE_VIEW(list_view
));
1714 gtk_tree_model_foreach(model
, (GtkTreeModelForeachFunc
) find_account_in_store
,
1718 GtkTreeSelection
*selection
;
1721 selection
= gtk_tree_view_get_selection(GTK_TREE_VIEW(list_view
));
1722 gtk_tree_selection_select_iter(selection
, &fis
.iter
);
1723 path
= gtk_tree_model_get_path(model
, &fis
.iter
);
1724 /* XXX returned path may not be valid??? create new one to be sure */
1725 gtk_tree_view_set_cursor(GTK_TREE_VIEW(list_view
), path
, NULL
, FALSE
);
1726 gtk_tree_path_free(path
);
1729 return fis
.path
!= NULL
;
1733 *\brief Set a new default account by its ID. (There is only one
1736 static void account_list_view_set_default_by_id(GtkWidget
*list_view
,
1739 GtkTreeModel
*model
= gtk_tree_view_get_model(GTK_TREE_VIEW(list_view
));
1741 gtk_tree_model_foreach
1742 (model
, (GtkTreeModelForeachFunc
) set_new_default_account
,
1746 static gboolean
set_new_default_account(GtkTreeModel
*model
,
1751 PrefsAccount
*account
= NULL
;
1754 gtk_tree_model_get(model
, iter
,
1755 ACCOUNT_DATA
, &account
,
1758 if (*account_id
== account
->account_id
)
1759 weight
= PANGO_WEIGHT_NORMAL
;
1761 weight
= PANGO_WEIGHT_BOLD
;
1763 gtk_list_store_set(GTK_LIST_STORE(model
), iter
,
1764 ACCOUNT_IS_DEFAULT
, weight
, -1);
1769 static gboolean
find_account_in_store(GtkTreeModel
*model
,
1772 FindAccountInStore
*data
)
1774 PrefsAccount
*account
= NULL
;
1775 gtk_tree_model_get(model
, iter
, ACCOUNT_DATA
, &account
, -1);
1777 if (data
->account_id
== account
->account_id
) {
1778 data
->path
= path
; /* signal we found it */
1787 *\brief Triggered when "get all" column is activated or de-activated
1789 static void account_get_all_toggled(GtkCellRendererToggle
*widget
,
1791 GtkWidget
*list_view
)
1794 GtkTreeModel
*model
= gtk_tree_view_get_model(GTK_TREE_VIEW(list_view
));
1795 PrefsAccount
*ac
= NULL
;
1798 if (!gtk_tree_model_get_iter_from_string(model
, &iter
, path
))
1801 gtk_tree_model_get(model
, &iter
,
1803 ACCOUNT_ENABLE_GET_ALL
, &get_all
,
1806 /* check if the account has a selectable get all checkbox anyway... */
1807 if (!(ac
->protocol
== A_POP3
||
1808 ac
->protocol
== A_IMAP4
||
1809 ac
->protocol
== A_NNTP
||
1810 ac
->protocol
== A_LOCAL
))
1813 /* set value in store */
1814 gtk_list_store_set(GTK_LIST_STORE(model
), &iter
,
1815 ACCOUNT_ENABLE_GET_ALL
, !get_all
,
1818 /* set value in account */
1819 ac
->recv_at_getall
^= TRUE
;
1822 static void account_double_clicked(GtkTreeView
*list_view
,
1824 GtkTreeViewColumn
*column
,
1827 account_edit_prefs(NULL
, NULL
);
1830 static void drag_begin(GtkTreeView
*list_view
,
1831 GdkDragContext
*context
,
1834 /* XXX unfortunately a completed drag & drop does not emit
1835 * a "rows_reordered" signal, but a "row_changed" signal.
1836 * So during drag and drop, listen to "row_changed", and
1837 * update the account list accordingly */
1839 GtkTreeModel
*model
= gtk_tree_view_get_model(list_view
);
1840 g_signal_connect(G_OBJECT(model
), "row_changed",
1841 G_CALLBACK(account_row_changed_while_drag_drop
),
1845 static void drag_end(GtkTreeView
*list_view
,
1846 GdkDragContext
*context
,
1849 GtkTreeModel
*model
= gtk_tree_view_get_model(list_view
);
1850 g_signal_handlers_disconnect_by_func(G_OBJECT(model
),
1851 G_CALLBACK(account_row_changed_while_drag_drop
),
1855 static void account_row_changed_while_drag_drop(GtkTreeModel
*model
,
1859 GtkTreeView
*list_view
)
1864 gchar
*account_get_signature_str(PrefsAccount
*account
)
1866 gchar
*sig_body
= NULL
;
1867 gchar
*sig_str
= NULL
;
1868 gchar
*utf8_sig_str
= NULL
;
1870 cm_return_val_if_fail(account
!= NULL
, NULL
);
1872 if (!account
->sig_path
)
1875 if (account
->sig_type
== SIG_FILE
) {
1876 gchar
*sig_full_path
;
1877 if (!g_path_is_absolute(account
->sig_path
)) {
1878 sig_full_path
= g_build_filename(get_home_dir(), account
->sig_path
, NULL
);
1880 sig_full_path
= g_strdup(account
->sig_path
);
1883 if (!is_file_or_fifo_exist(sig_full_path
)) {
1884 g_warning("can't open signature file: '%s'", sig_full_path
);
1885 g_free(sig_full_path
);
1889 debug_print("Reading signature from file '%s'\n", sig_full_path
);
1890 gchar
*tmp
= file_read_to_str(sig_full_path
);
1891 g_free(sig_full_path
);
1896 sig_body
= normalize_newlines(tmp
);
1899 sig_body
= get_command_output(account
->sig_path
);
1902 if (account
->sig_sep
) {
1903 sig_str
= g_strconcat("\n", account
->sig_sep
, "\n", sig_body
,
1907 sig_str
= g_strconcat("\n", sig_body
, NULL
);
1910 if (g_utf8_validate(sig_str
, -1, NULL
) == TRUE
)
1911 utf8_sig_str
= sig_str
;
1913 utf8_sig_str
= conv_codeset_strdup
1914 (sig_str
, conv_get_locale_charset_str_no_utf8(),
1920 return utf8_sig_str
;
1923 PrefsAccount
*account_get_cur_account (void)
1928 gboolean
password_get(const gchar
*user
,
1929 const gchar
*server
,
1930 const gchar
*protocol
,
1934 PasswordRequest req
;
1936 /* all have to be set */
1937 cm_return_val_if_fail(user
!= NULL
, FALSE
);
1938 cm_return_val_if_fail(server
!= NULL
, FALSE
);
1939 cm_return_val_if_fail(protocol
!= NULL
, FALSE
);
1940 cm_return_val_if_fail(port
!= 0, FALSE
);
1943 req
.server
= server
;
1944 req
.protocol
= protocol
;
1947 if (hooks_invoke(PASSWORD_GET_HOOKLIST
, &req
)) {
1948 *password
= req
.password
;
1954 static GSList
*account_sigsep_list
= NULL
;
1956 /* create a list of unique signatures from accounts list */
1957 void account_sigsep_matchlist_create(void)
1959 GList
*cur_ac
= NULL
;
1960 PrefsAccount
*ac_prefs
= NULL
;
1962 if (account_sigsep_list
)
1965 account_sigsep_list
= g_slist_prepend(account_sigsep_list
, g_strdup("-- "));
1966 for (cur_ac
= account_get_list();
1968 cur_ac
= g_list_next(cur_ac
)) {
1969 ac_prefs
= (PrefsAccount
*)cur_ac
->data
;
1971 if (ac_prefs
->sig_sep
&& *ac_prefs
->sig_sep
!= '\0') {
1972 if (!g_slist_find_custom(account_sigsep_list
, ac_prefs
->sig_sep
,
1973 (GCompareFunc
)g_strcmp0
)) {
1974 account_sigsep_list
= g_slist_prepend(account_sigsep_list
,
1975 g_strdup(ac_prefs
->sig_sep
));
1981 /* delete the list of signatures created by account_sigsep_matchlist_create() */
1982 void account_sigsep_matchlist_delete(void)
1984 if (account_sigsep_list
) {
1985 slist_free_strings_full(account_sigsep_list
);
1986 account_sigsep_list
= NULL
;
1990 /* match a string against all signatures in list, using the specified format */
1991 gboolean
account_sigsep_matchlist_str_found(const gchar
*str
, const gchar
*format
)
1994 gboolean found
= FALSE
;
1997 for (item
= account_sigsep_list
;
1998 item
!= NULL
&& !found
;
1999 item
= g_slist_next(item
)) {
2000 tmp
= g_strdup_printf(format
, (gchar
*)item
->data
);
2002 found
= (strcmp(tmp
, str
) == 0);
2005 g_warning("account_sigsep_matchlist_str_found: g_strdup_printf failed, check format '%s'",
2013 /* match M first char of a string against all signatures in list, using the specified format */
2014 gboolean
account_sigsep_matchlist_nchar_found(const gchar
*str
, const gchar
*format
)
2017 gboolean found
= FALSE
;
2021 for (item
= account_sigsep_list
;
2022 item
!= NULL
&& !found
;
2023 item
= g_slist_next(item
)) {
2024 tmp
= g_strdup_printf(format
, (gchar
*)item
->data
);
2027 found
= (strncmp(tmp
, str
, len
) == 0);
2030 g_warning("account_sigsep_matchlist_nchar_found: g_strdup_printf failed, check format '%s'",