[Commits] .cvsignore NONE 1.1.2.1 Makefile.am NONE 1.1.2.1 placeholder.txt 1.1.2.1 NONE spam_report.c NONE 1.1.2.1 spam_report_prefs.c NONE 1.1.2.1 spam_report_prefs.h NONE 1.1.2.1
colin at claws-mail.org
colin at claws-mail.org
Wed Feb 20 09:46:00 CET 2013
Update of /home/claws-mail/claws/src/plugins/spam_report
In directory srv:/tmp/cvs-serv23253/src/plugins/spam_report
Added Files:
Tag: gtk2
.cvsignore Makefile.am spam_report.c spam_report_prefs.c
spam_report_prefs.h
Removed Files:
Tag: gtk2
placeholder.txt
Log Message:
2013-02-20 [colin] 3.9.0cvs83
* configure.ac
* src/plugins/Makefile.am
* src/plugins/spam_report/.cvsignore
* src/plugins/spam_report/Makefile.am
* src/plugins/spam_report/placeholder.txt
* src/plugins/spam_report/spam_report.c
* src/plugins/spam_report/spam_report_prefs.c
* src/plugins/spam_report/spam_report_prefs.h
* src/plugins/tnef_parse/.cvsignore
* src/plugins/tnef_parse/Makefile.am
* src/plugins/tnef_parse/claws.def
* src/plugins/tnef_parse/mapi.h
* src/plugins/tnef_parse/mapidefs.h
* src/plugins/tnef_parse/mapitags.h
* src/plugins/tnef_parse/placeholder.txt
* src/plugins/tnef_parse/plugin.def
* src/plugins/tnef_parse/tnef-errors.h
* src/plugins/tnef_parse/tnef-types.h
* src/plugins/tnef_parse/tnef_dump.c
* src/plugins/tnef_parse/tnef_dump.h
* src/plugins/tnef_parse/tnef_parse.c
* src/plugins/tnef_parse/version.rc
* src/plugins/tnef_parse/ytnef.c
* src/plugins/tnef_parse/ytnef.h
Add tnef_parse and spam_report
--- NEW FILE: .cvsignore ---
.deps
.libs
Makefile
Makefile.in
*.la
*.lo
*.o
--- NEW FILE: spam_report_prefs.c ---
/*
* Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
* Copyright (C) 1999-2007 Colin Leroy <colin at colino.net>
* and the Claws Mail Team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#include "claws-features.h"
#endif
#include "defs.h"
#include <glib.h>
#include <glib/gi18n.h>
#include <gtk/gtk.h>
#include "gtkutils.h"
#include "prefs.h"
#include "prefs_gtk.h"
#include "prefswindow.h"
#include "alertpanel.h"
#include "utils.h"
#include "spam_report_prefs.h"
#define PREFS_BLOCK_NAME "SpamReport"
SpamReportPrefs spamreport_prefs;
void spamreport_clear_cache(void);
typedef struct _SpamReportPage SpamReportPage;
struct _SpamReportPage {
PrefsPage page;
GtkWidget *frame[INTF_LAST];
GtkWidget *enabled_chkbtn[INTF_LAST];
GtkWidget *user_entry[INTF_LAST];
GtkWidget *pass_entry[INTF_LAST];
};
static PrefParam param[] = {
{"signalspam_enabled", "FALSE", &spamreport_prefs.enabled[INTF_SIGNALSPAM], P_BOOL, NULL, NULL, NULL},
{"signalspam_user", "", &spamreport_prefs.user[INTF_SIGNALSPAM], P_STRING, NULL, NULL, NULL},
{"signalspam_pass", "", &spamreport_prefs.pass[INTF_SIGNALSPAM], P_PASSWORD, NULL, NULL, NULL},
{"spamcop_enabled", "FALSE", &spamreport_prefs.enabled[INTF_SPAMCOP], P_BOOL, NULL, NULL, NULL},
{"spamcop_user", "", &spamreport_prefs.user[INTF_SPAMCOP], P_STRING, NULL, NULL, NULL},
{"debianspam_enabled", "FALSE", &spamreport_prefs.enabled[INTF_DEBIANSPAM], P_BOOL, NULL, NULL, NULL},
{0,0,0,0,0,0,0}
};
static SpamReportPage spamreport_prefs_page;
static void create_spamreport_prefs_page (PrefsPage *page,
GtkWindow *window,
gpointer data);
static void destroy_spamreport_prefs_page (PrefsPage *page);
static void save_spamreport_prefs (PrefsPage *page);
void spamreport_prefs_init(void)
{
static gchar *path[3];
gchar *rcpath;
path[0] = _("Plugins");
path[1] = _("SpamReport");
path[2] = NULL;
prefs_set_default(param);
rcpath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, COMMON_RC, NULL);
prefs_read_config(param, PREFS_BLOCK_NAME, rcpath, NULL);
g_free(rcpath);
spamreport_prefs_page.page.path = path;
spamreport_prefs_page.page.create_widget = create_spamreport_prefs_page;
spamreport_prefs_page.page.destroy_widget = destroy_spamreport_prefs_page;
spamreport_prefs_page.page.save_page = save_spamreport_prefs;
spamreport_prefs_page.page.weight = 30.0;
prefs_gtk_register_page((PrefsPage *) &spamreport_prefs_page);
}
void spamreport_prefs_done(void)
{
prefs_gtk_unregister_page((PrefsPage *) &spamreport_prefs_page);
}
static void create_spamreport_prefs_page(PrefsPage *page,
GtkWindow *window,
gpointer data)
{
SpamReportPage *prefs_page = (SpamReportPage *) page;
GtkWidget *vbox, *table;
GtkWidget *tmp;
int i = 0;
vbox = gtk_vbox_new(FALSE, VSPACING_NARROW);
gtk_container_set_border_width(GTK_CONTAINER(vbox), VBOX_BORDER);
gtk_widget_show(vbox);
for (i = 0; i < INTF_LAST; i++) {
prefs_page->frame[i] = gtk_frame_new(spam_interfaces[i].name);
gtk_box_pack_start(GTK_BOX(vbox), prefs_page->frame[i], FALSE, FALSE, 6);
prefs_page->user_entry[i] = gtk_entry_new();
prefs_page->pass_entry[i] = gtk_entry_new();
prefs_page->enabled_chkbtn[i] = gtk_check_button_new_with_label(_("Enabled"));
gtk_entry_set_visibility(GTK_ENTRY(prefs_page->pass_entry[i]), FALSE);
gtk_entry_set_text(GTK_ENTRY(prefs_page->user_entry[i]),
spamreport_prefs.user[i] ? spamreport_prefs.user[i]:"");
gtk_entry_set_text(GTK_ENTRY(prefs_page->pass_entry[i]),
spamreport_prefs.pass[i] ? spamreport_prefs.pass[i]:"");
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(prefs_page->enabled_chkbtn[i]),
spamreport_prefs.enabled[i]);
table = gtk_table_new(3, 2, FALSE);
gtk_container_set_border_width(GTK_CONTAINER(table), 8);
gtk_table_set_row_spacings(GTK_TABLE(table), 4);
gtk_table_set_col_spacings(GTK_TABLE(table), 8);
gtk_container_add(GTK_CONTAINER(prefs_page->frame[i]), table);
gtk_widget_show(prefs_page->frame[i]);
gtk_widget_show(table);
gtk_table_attach(GTK_TABLE(table), prefs_page->enabled_chkbtn[i], 0, 2, 0, 1,
GTK_EXPAND|GTK_FILL, GTK_EXPAND|GTK_FILL,
0, 0);
gtk_widget_show(prefs_page->enabled_chkbtn[i]);
switch(spam_interfaces[i].type) {
case INTF_MAIL:
tmp = gtk_label_new(_("Forward to:"));
break;
default:
tmp = gtk_label_new(_("Username:"));
}
gtk_table_attach(GTK_TABLE(table), tmp, 0, 1, 1, 2,
0, 0,
0, 0);
gtk_table_attach(GTK_TABLE(table), prefs_page->user_entry[i], 1, 2, 1, 2,
GTK_EXPAND|GTK_FILL, GTK_EXPAND|GTK_FILL,
0, 0);
if (spam_interfaces[i].type != INTF_HTTP_GET) {
gtk_widget_show(tmp);
gtk_widget_show(prefs_page->user_entry[i]);
}
tmp = gtk_label_new(_("Password:"));
gtk_table_attach(GTK_TABLE(table), tmp, 0, 1, 2, 3,
0, 0,
0, 0);
gtk_table_attach(GTK_TABLE(table), prefs_page->pass_entry[i], 1, 2, 2, 3,
GTK_EXPAND|GTK_FILL, GTK_EXPAND|GTK_FILL,
0, 0);
if (spam_interfaces[i].type != INTF_MAIL && spam_interfaces[i].type != INTF_HTTP_GET) {
gtk_widget_show(tmp);
gtk_widget_show(prefs_page->pass_entry[i]);
}
}
prefs_page->page.widget = vbox;
}
static void destroy_spamreport_prefs_page(PrefsPage *page)
{
/* Do nothing! */
}
static void save_spamreport_prefs(PrefsPage *page)
{
SpamReportPage *prefs_page = (SpamReportPage *) page;
PrefFile *pref_file;
gchar *rc_file_path = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
COMMON_RC, NULL);
int i = 0;
for (i = 0; i < INTF_LAST; i++) {
g_free(spamreport_prefs.user[i]);
g_free(spamreport_prefs.pass[i]);
spamreport_prefs.enabled[i] = gtk_toggle_button_get_active(
GTK_TOGGLE_BUTTON(prefs_page->enabled_chkbtn[i]));
spamreport_prefs.user[i] = gtk_editable_get_chars(
GTK_EDITABLE(prefs_page->user_entry[i]), 0, -1);
spamreport_prefs.pass[i] = gtk_editable_get_chars(
GTK_EDITABLE(prefs_page->pass_entry[i]), 0, -1);
}
pref_file = prefs_write_open(rc_file_path);
g_free(rc_file_path);
if (!(pref_file) ||
(prefs_set_block_label(pref_file, PREFS_BLOCK_NAME) < 0))
return;
if (prefs_write_param(param, pref_file->fp) < 0) {
g_warning("failed to write SpamReport Plugin configuration\n");
prefs_file_close_revert(pref_file);
return;
}
if (fprintf(pref_file->fp, "\n") < 0) {
FILE_OP_ERROR(rc_file_path, "fprintf");
prefs_file_close_revert(pref_file);
} else
prefs_file_close(pref_file);
}
--- NEW FILE: spam_report.c ---
/*
* Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
* Copyright (C) 1999-2007 Colin Leroy <colin at colino.net>
* and the Claws Mail Team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#include "claws-features.h"
#endif
#include <unistd.h>
#include <stdio.h>
#include <glib.h>
#include <glib/gi18n.h>
#include <gtk/gtk.h>
#include <gdk/gdkx.h>
#include "common/claws.h"
#include "common/version.h"
#include "main.h"
#include "plugin.h"
#include "prefs_common.h"
#include "utils.h"
#include "spam_report_prefs.h"
#include "statusbar.h"
#include "procmsg.h"
#include "log.h"
#include "inc.h"
#include "plugin.h"
#include "menu.h"
#include "defs.h"
#include "base64.h"
#include "procheader.h"
#ifdef USE_PTHREAD
#include <pthread.h>
#endif
#include <curl/curl.h>
#include <curl/curlver.h>
struct CurlReadWrite {
char *data;
size_t size;
};
static gboolean check_debian_listid(MsgInfo *msginfo);
/* this interface struct is probably not enough for the various available
* reporting places/methods. It'll be extended as necessary. */
ReportInterface spam_interfaces[] = {
{ "Signal-Spam.fr", INTF_HTTP_AUTH, "https://www.signal-spam.fr/api/signaler",
"message=%claws_mail_body_b64%", NULL},
{ "Spamcop.net", INTF_MAIL, NULL, NULL, NULL},
{ "Debian Lists", INTF_HTTP_GET,
"http://lists.debian.org/cgi-bin/nominate-for-review.pl?Quiet=on&msgid=%claws_mail_msgid%",
NULL, check_debian_listid},
{ NULL, INTF_NULL, NULL, NULL, NULL}
};
/* From RSSyl. This should be factorized to the core... */
static gchar *spamreport_strreplace(gchar *source, gchar *pattern,
gchar *replacement)
{
gchar *new, *w_new, *c;
guint count = 0, final_length;
size_t len_pattern, len_replacement;
if( source == NULL || pattern == NULL ) {
debug_print("source or pattern is NULL!!!\n");
return NULL;
}
if( !g_utf8_validate(source, -1, NULL) ) {
debug_print("source is not an UTF-8 encoded text\n");
return NULL;
}
if( !g_utf8_validate(pattern, -1, NULL) ) {
debug_print("pattern is not an UTF-8 encoded text\n");
return NULL;
}
len_pattern = strlen(pattern);
len_replacement = replacement ? strlen(replacement) : 0;
c = source;
while( ( c = g_strstr_len(c, strlen(c), pattern) ) ) {
count++;
c += len_pattern;
}
final_length = strlen(source)
- ( count * len_pattern )
+ ( count * len_replacement );
new = malloc(final_length + 1);
w_new = new;
memset(new, '\0', final_length + 1);
c = source;
while( *c != '\0' ) {
if( !memcmp(c, pattern, len_pattern) ) {
gboolean break_after_rep = FALSE;
size_t i;
if (*(c + len_pattern) == '\0')
break_after_rep = TRUE;
for (i = 0; i < len_replacement; i++) {
*w_new = replacement[i];
w_new++;
}
if (break_after_rep)
break;
c = c + len_pattern;
} else {
*w_new = *c;
w_new++;
c++;
}
}
return new;
}
static gboolean check_debian_listid(MsgInfo *msginfo)
{
gchar buf[1024];
if (!procheader_get_header_from_msginfo(msginfo, buf, sizeof(buf), "List-Id:")) {
if (strstr(buf, "lists.debian.org")) {
return TRUE;
}
}
return FALSE;
}
static void spamreport_http_response_log(gchar *url, long response)
{
switch (response) {
case 400: /* Bad Request */
log_error(LOG_PROTOCOL, "%s: Bad Request\n", url);
break;
case 401: /* Not Authorized */
log_error(LOG_PROTOCOL, "%s: Wrong login or password\n", url);
break;
case 404: /* Not Authorized */
log_error(LOG_PROTOCOL, "%s: Not found\n", url);
break;
}
}
static void *myrealloc(void *pointer, size_t size) {
/*
* There might be a realloc() out there that doesn't like reallocing
* NULL pointers, so we take care of it here.
*/
if (pointer) {
return realloc(pointer, size);
} else {
return malloc(size);
}
}
static size_t curl_writefunction_cb(void *pointer, size_t size, size_t nmemb, void *data) {
size_t realsize = size * nmemb;
struct CurlReadWrite *mem = (struct CurlReadWrite *)data;
mem->data = myrealloc(mem->data, mem->size + realsize + 1);
if (mem->data) {
memcpy(&(mem->data[mem->size]), pointer, realsize);
mem->size += realsize;
mem->data[mem->size] = 0;
}
return realsize;
}
static void report_spam(gint id, ReportInterface *intf, MsgInfo *msginfo, gchar *contents)
{
gchar *reqbody = NULL, *tmp = NULL, *auth = NULL, *b64 = NULL, *geturl = NULL;
size_t len_contents;
CURL *curl;
CURLcode res;
long response;
struct CurlReadWrite chunk;
chunk.data = NULL;
chunk.size = 0;
if (spamreport_prefs.enabled[id] == FALSE) {
debug_print("not reporting via %s (disabled)\n", intf->name);
return;
}
if (intf->should_report != NULL && (intf->should_report)(msginfo) == FALSE) {
debug_print("not reporting via %s (unsuitable)\n", intf->name);
return;
}
debug_print("reporting via %s\n", intf->name);
tmp = spamreport_strreplace(intf->body, "%claws_mail_body%", contents);
len_contents = strlen(contents);
b64 = g_malloc0(B64LEN(len_contents) + 1);
base64_encode(b64, contents, len_contents);
reqbody = spamreport_strreplace(tmp, "%claws_mail_body_b64%", b64);
geturl = spamreport_strreplace(intf->url, "%claws_mail_msgid%", msginfo->msgid);
g_free(b64);
g_free(tmp);
switch(intf->type) {
case INTF_HTTP_AUTH:
if (spamreport_prefs.user[id] && *(spamreport_prefs.user[id])) {
auth = g_strdup_printf("%s:%s", spamreport_prefs.user[id], spamreport_prefs.pass[id]);
curl = curl_easy_init();
curl_easy_setopt(curl, CURLOPT_URL, intf->url);
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, reqbody);
curl_easy_setopt(curl, CURLOPT_USERPWD, auth);
curl_easy_setopt(curl, CURLOPT_TIMEOUT, prefs_common_get_prefs()->io_timeout_secs);
curl_easy_setopt(curl, CURLOPT_USERAGENT,
SPAM_REPORT_USERAGENT "(" PLUGINS_URI ")");
res = curl_easy_perform(curl);
curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response);
curl_easy_cleanup(curl);
spamreport_http_response_log(intf->url, response);
g_free(auth);
}
break;
case INTF_MAIL:
if (spamreport_prefs.user[id] && *(spamreport_prefs.user[id])) {
Compose *compose = compose_forward(NULL, msginfo, TRUE, NULL, TRUE, TRUE);
compose->use_signing = FALSE;
compose_entry_append(compose, spamreport_prefs.user[id], COMPOSE_TO, PREF_NONE);
compose_send(compose);
}
break;
case INTF_HTTP_GET:
curl = curl_easy_init();
curl_easy_setopt(curl, CURLOPT_URL, geturl);
curl_easy_setopt(curl, CURLOPT_USERAGENT,
SPAM_REPORT_USERAGENT "(" PLUGINS_URI ")");
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, curl_writefunction_cb);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void *)&chunk);
res = curl_easy_perform(curl);
curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response);
curl_easy_cleanup(curl);
spamreport_http_response_log(geturl, response);
/* On success the page should return "OK: nominated <msgid>" */
if (chunk.size < 13 || strstr(chunk.data, "OK: nominated") == NULL) {
if (chunk.size > 0) {
log_error(LOG_PROTOCOL, "%s: response was %s\n", geturl, chunk.data);
}
else {
log_error(LOG_PROTOCOL, "%s: response was empty\n", geturl);
}
}
break;
default:
g_warning("Unknown method\n");
}
g_free(reqbody);
g_free(geturl);
}
static void report_spam_cb_ui(GtkAction *action, gpointer data)
{
MainWindow *mainwin = mainwindow_get_mainwindow();
SummaryView *summaryview = mainwin->summaryview;
GSList *msglist = summary_get_selected_msg_list(summaryview);
GSList *cur;
gint curnum=0, total=0;
if (summary_is_locked(summaryview) || !msglist) {
if (msglist)
g_slist_free(msglist);
return;
}
main_window_cursor_wait(summaryview->mainwin);
gtk_cmclist_freeze(GTK_CMCLIST(summaryview->ctree));
folder_item_update_freeze();
inc_lock();
STATUSBAR_PUSH(mainwin, _("Reporting spam..."));
total = g_slist_length(msglist);
for (cur = msglist; cur; cur = cur->next) {
MsgInfo *msginfo = (MsgInfo *)cur->data;
gchar *file = procmsg_get_message_file(msginfo);
gchar *contents = NULL;
int i = 0;
if (!file)
continue;
debug_print("reporting message %d (%s)\n", msginfo->msgnum, file);
statusbar_progress_all(curnum, total, 1);
GTK_EVENTS_FLUSH();
curnum++;
contents = file_read_to_str(file);
for (i = 0; i < INTF_LAST; i++)
report_spam(i, &(spam_interfaces[i]), msginfo, contents);
g_free(contents);
g_free(file);
}
statusbar_progress_all(0,0,0);
STATUSBAR_POP(mainwin);
inc_unlock();
folder_item_update_thaw();
gtk_cmclist_thaw(GTK_CMCLIST(summaryview->ctree));
main_window_cursor_normal(summaryview->mainwin);
g_slist_free(msglist);
}
static GtkActionEntry spamreport_main_menu[] = {{
"Message/ReportSpam",
NULL, N_("Report spam online..."), NULL, NULL, G_CALLBACK(report_spam_cb_ui)
}};
static guint context_menu_id = 0;
static guint main_menu_id = 0;
gint plugin_init(gchar **error)
{
MainWindow *mainwin = mainwindow_get_mainwindow();
if (!check_plugin_version(MAKE_NUMERIC_VERSION(3,7,3,13),
VERSION_NUMERIC, _("SpamReport"), error))
return -1;
spamreport_prefs_init();
#ifdef HAVE_LIBCURL
curl_global_init(CURL_GLOBAL_DEFAULT);
#endif
gtk_action_group_add_actions(mainwin->action_group, spamreport_main_menu,
1, (gpointer)mainwin);
MENUITEM_ADDUI_ID_MANAGER(mainwin->ui_manager, "/Menu/Message", "ReportSpam",
"Message/ReportSpam", GTK_UI_MANAGER_MENUITEM,
main_menu_id)
MENUITEM_ADDUI_ID_MANAGER(mainwin->ui_manager, "/Menus/SummaryViewPopup", "ReportSpam",
"Message/ReportSpam", GTK_UI_MANAGER_MENUITEM,
context_menu_id)
return 0;
}
gboolean plugin_done(void)
{
MainWindow *mainwin = mainwindow_get_mainwindow();
SummaryView *summaryview = NULL;
if (mainwin == NULL)
return TRUE;
summaryview = mainwin->summaryview;
MENUITEM_REMUI_MANAGER(mainwin->ui_manager,mainwin->action_group, "Message/ReportSpam", main_menu_id);
main_menu_id = 0;
MENUITEM_REMUI_MANAGER(mainwin->ui_manager,mainwin->action_group, "Message/ReportSpam", context_menu_id);
context_menu_id = 0;
#ifdef HAVE_LIBCURL
spamreport_prefs_done();
#endif
return TRUE;
}
const gchar *plugin_name(void)
{
return _("SpamReport");
}
const gchar *plugin_desc(void)
{
return _("This plugin reports spam to various places.\n"
"Currently the following sites or methods are supported:\n\n"
" * spam-signal.fr\n"
" * spamcop.net\n"
" * lists.debian.org nomination system");
}
const gchar *plugin_type(void)
{
return "GTK2";
}
const gchar *plugin_licence(void)
{
return "GPL3+";
}
const gchar *plugin_version(void)
{
return VERSION;
}
struct PluginFeature *plugin_provides(void)
{
static struct PluginFeature features[] =
{ {PLUGIN_UTILITY, N_("Spam reporting")},
{PLUGIN_NOTHING, NULL}};
return features;
}
--- placeholder.txt DELETED ---
--- NEW FILE: Makefile.am ---
plugindir = $(pkglibdir)/plugins
plugin_LTLIBRARIES = spamreport.la
spamreport_la_SOURCES = \
spam_report.c \
spam_report_prefs.c \
spam_report_prefs.h \
gettext.h
spamreport_la_LDFLAGS = \
-avoid-version -module \
$(GTK_LIBS)
spamreport_la_LIBADD = \
$(CURL_LIBS) \
$(GTK_LIBS)
INCLUDES = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/common \
-I$(top_builddir)/src/common \
-I$(top_srcdir)/src/gtk
AM_CPPFLAGS = \
-Wall \
$(CLAWS_MAIL_CFLAGS) \
$(GLIB_CFLAGS) \
$(CURL_CFLAGS) \
$(GTK_CFLAGS) \
-DLOCALEDIR=\""$(localedir)"\"
--- NEW FILE: spam_report_prefs.h ---
/*
* Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
* Copyright (C) 1999-2007 Colin Leroy <colin at colino.net>
* and the Claws Mail Team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef SPAMREPORTPREFS_H
#define SPAMREPORTPREFS_H
#include <glib.h>
#include "procmsg.h"
#define SPAM_REPORT_USERAGENT "Claws Mail SpamReport plugin "
typedef struct _SpamReportPrefs SpamReportPrefs;
typedef enum {
INTF_SIGNALSPAM,
INTF_SPAMCOP,
INTF_DEBIANSPAM,
INTF_LAST
} InterfaceId;
typedef enum {
INTF_HTTP,
INTF_HTTP_AUTH,
INTF_MAIL,
INTF_HTTP_GET,
INTF_NULL
} InterfaceType;
typedef struct _ReportInterface {
gchar *name;
InterfaceType type;
gchar *url;
gchar *body;
gboolean (*should_report)(MsgInfo *info);
} ReportInterface;
extern ReportInterface spam_interfaces[];
struct _SpamReportPrefs
{
gboolean enabled[INTF_LAST];
gchar *user[INTF_LAST];
gchar *pass[INTF_LAST];
};
extern SpamReportPrefs spamreport_prefs;
void spamreport_prefs_init(void);
void spamreport_prefs_done(void);
#endif
More information about the Commits
mailing list