2 * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2007 Colin Leroy <colin@colino.net>
4 * and the Claws Mail Team
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 #include "claws-features.h"
29 #include <glib/gi18n.h>
35 #include "prefs_gtk.h"
36 #include "prefswindow.h"
37 #include "alertpanel.h"
40 #include "spam_report_prefs.h"
42 #define PREFS_BLOCK_NAME "SpamReport"
44 SpamReportPrefs spamreport_prefs;
45 void spamreport_clear_cache(void);
47 typedef struct _SpamReportPage SpamReportPage;
49 struct _SpamReportPage {
51 GtkWidget *frame[INTF_LAST];
52 GtkWidget *enabled_chkbtn[INTF_LAST];
53 GtkWidget *user_entry[INTF_LAST];
54 GtkWidget *pass_entry[INTF_LAST];
57 static PrefParam param[] = {
58 {"signalspam_enabled", "FALSE", &spamreport_prefs.enabled[INTF_SIGNALSPAM], P_BOOL, NULL, NULL, NULL},
59 {"signalspam_user", "", &spamreport_prefs.user[INTF_SIGNALSPAM], P_STRING, NULL, NULL, NULL},
60 {"signalspam_pass", "", &spamreport_prefs.pass[INTF_SIGNALSPAM], P_PASSWORD, NULL, NULL, NULL},
61 {"spamcop_enabled", "FALSE", &spamreport_prefs.enabled[INTF_SPAMCOP], P_BOOL, NULL, NULL, NULL},
62 {"spamcop_user", "", &spamreport_prefs.user[INTF_SPAMCOP], P_STRING, NULL, NULL, NULL},
63 {"debianspam_enabled", "FALSE", &spamreport_prefs.enabled[INTF_DEBIANSPAM], P_BOOL, NULL, NULL, NULL},
67 static SpamReportPage spamreport_prefs_page;
69 static void create_spamreport_prefs_page (PrefsPage *page,
72 static void destroy_spamreport_prefs_page (PrefsPage *page);
73 static void save_spamreport_prefs (PrefsPage *page);
75 void spamreport_prefs_init(void)
77 static gchar *path[3];
80 path[0] = _("Plugins");
81 path[1] = _("SpamReport");
84 prefs_set_default(param);
85 rcpath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, COMMON_RC, NULL);
86 prefs_read_config(param, PREFS_BLOCK_NAME, rcpath, NULL);
89 spamreport_prefs_page.page.path = path;
90 spamreport_prefs_page.page.create_widget = create_spamreport_prefs_page;
91 spamreport_prefs_page.page.destroy_widget = destroy_spamreport_prefs_page;
92 spamreport_prefs_page.page.save_page = save_spamreport_prefs;
93 spamreport_prefs_page.page.weight = 30.0;
95 prefs_gtk_register_page((PrefsPage *) &spamreport_prefs_page);
98 void spamreport_prefs_done(void)
100 prefs_gtk_unregister_page((PrefsPage *) &spamreport_prefs_page);
103 static void create_spamreport_prefs_page(PrefsPage *page,
107 SpamReportPage *prefs_page = (SpamReportPage *) page;
109 GtkWidget *vbox, *table;
113 vbox = gtk_vbox_new(FALSE, VSPACING_NARROW);
114 gtk_container_set_border_width(GTK_CONTAINER(vbox), VBOX_BORDER);
115 gtk_widget_show(vbox);
117 for (i = 0; i < INTF_LAST; i++) {
119 prefs_page->frame[i] = gtk_frame_new(spam_interfaces[i].name);
120 gtk_box_pack_start(GTK_BOX(vbox), prefs_page->frame[i], FALSE, FALSE, 6);
122 prefs_page->user_entry[i] = gtk_entry_new();
123 prefs_page->pass_entry[i] = gtk_entry_new();
124 prefs_page->enabled_chkbtn[i] = gtk_check_button_new_with_label(_("Enabled"));
126 gtk_entry_set_visibility(GTK_ENTRY(prefs_page->pass_entry[i]), FALSE);
128 gtk_entry_set_text(GTK_ENTRY(prefs_page->user_entry[i]),
129 spamreport_prefs.user[i] ? spamreport_prefs.user[i]:"");
131 pass = password_decrypt(spamreport_prefs.pass[i], NULL);
132 gtk_entry_set_text(GTK_ENTRY(prefs_page->pass_entry[i]), pass ? pass:"");
134 memset(pass, 0, strlen(pass));
137 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(prefs_page->enabled_chkbtn[i]),
138 spamreport_prefs.enabled[i]);
140 table = gtk_table_new(3, 2, FALSE);
141 gtk_container_set_border_width(GTK_CONTAINER(table), 8);
142 gtk_table_set_row_spacings(GTK_TABLE(table), 4);
143 gtk_table_set_col_spacings(GTK_TABLE(table), 8);
145 gtk_container_add(GTK_CONTAINER(prefs_page->frame[i]), table);
146 gtk_widget_show(prefs_page->frame[i]);
147 gtk_widget_show(table);
149 gtk_table_attach(GTK_TABLE(table), prefs_page->enabled_chkbtn[i], 0, 2, 0, 1,
150 GTK_EXPAND|GTK_FILL, GTK_EXPAND|GTK_FILL,
152 gtk_widget_show(prefs_page->enabled_chkbtn[i]);
154 switch(spam_interfaces[i].type) {
156 tmp = gtk_label_new(_("Forward to:"));
159 tmp = gtk_label_new(_("Username:"));
161 gtk_table_attach(GTK_TABLE(table), tmp, 0, 1, 1, 2,
164 gtk_table_attach(GTK_TABLE(table), prefs_page->user_entry[i], 1, 2, 1, 2,
165 GTK_EXPAND|GTK_FILL, GTK_EXPAND|GTK_FILL,
167 if (spam_interfaces[i].type != INTF_HTTP_GET) {
168 gtk_widget_show(tmp);
169 gtk_widget_show(prefs_page->user_entry[i]);
172 tmp = gtk_label_new(_("Password:"));
173 gtk_table_attach(GTK_TABLE(table), tmp, 0, 1, 2, 3,
176 gtk_table_attach(GTK_TABLE(table), prefs_page->pass_entry[i], 1, 2, 2, 3,
177 GTK_EXPAND|GTK_FILL, GTK_EXPAND|GTK_FILL,
179 if (spam_interfaces[i].type != INTF_MAIL && spam_interfaces[i].type != INTF_HTTP_GET) {
180 gtk_widget_show(tmp);
181 gtk_widget_show(prefs_page->pass_entry[i]);
184 prefs_page->page.widget = vbox;
187 static void destroy_spamreport_prefs_page(PrefsPage *page)
192 static void save_spamreport_prefs(PrefsPage *page)
194 SpamReportPage *prefs_page = (SpamReportPage *) page;
196 gchar *rc_file_path = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
200 for (i = 0; i < INTF_LAST; i++) {
203 g_free(spamreport_prefs.user[i]);
204 g_free(spamreport_prefs.pass[i]);
206 spamreport_prefs.enabled[i] = gtk_toggle_button_get_active(
207 GTK_TOGGLE_BUTTON(prefs_page->enabled_chkbtn[i]));
208 spamreport_prefs.user[i] = gtk_editable_get_chars(
209 GTK_EDITABLE(prefs_page->user_entry[i]), 0, -1);
211 pass = gtk_editable_get_chars(GTK_EDITABLE(prefs_page->pass_entry[i]), 0, -1);
212 spamreport_prefs.pass[i] = password_encrypt(pass, NULL);
213 memset(pass, 0, strlen(pass));
217 pref_file = prefs_write_open(rc_file_path);
218 g_free(rc_file_path);
221 (prefs_set_block_label(pref_file, PREFS_BLOCK_NAME) < 0))
224 if (prefs_write_param(param, pref_file->fp) < 0) {
225 g_warning("failed to write SpamReport Plugin configuration");
226 prefs_file_close_revert(pref_file);
229 if (fprintf(pref_file->fp, "\n") < 0) {
230 FILE_OP_ERROR(rc_file_path, "fprintf");
231 prefs_file_close_revert(pref_file);
233 prefs_file_close(pref_file);
236 void spamreport_master_passphrase_change(const gchar *oldp, const gchar *newp) {
240 for (i = 0; i < INTF_LAST; i++) {
241 pass = password_decrypt(spamreport_prefs.pass[i], oldp);
243 g_free(spamreport_prefs.pass[i]);
244 spamreport_prefs.pass[i] = password_encrypt(pass, newp);
245 memset(pass, 0, strlen(pass));