* src/plugins/spamassassin/spamassassin.c
Fix segfault (g_file_set_contents fails for some
reason and err==0x2f. Can't find out why with
valgrind, using working function :-)
* src/plugins/spamassassin/spamassassin.c
fixed spamc invocation: use a tricky temporary mini shell wrapper
'cause it seems that calling `spamc ... < inputfile` with
g_spawn_(a)sync simply.. erm doesn't work :-).
* src/toolbar.c
* src/toolbar.h
simplify the adding of spam/ham button to the messageview toolbar
(it gets more clear now that the same button will be "Mark as spam"
or "Mark as ham" according to the current message status,
thanks to Colin).
* src/messageview.c
* src/procmsg.c
* src/procmsg.h
* src/summaryview.c
* src/plugins/spamassassin/spamassassin.c
* src/plugins/spamassassin/spamassassin.h
make learner callbacks return a status (0 for ok),
handle it in main code to avoid setting flags when learning failed,
don't learn on TCP if offline in spamassassin,
thanks to Colin.
* src/plugins/spamassassin/spamassassin.c
* src/plugins/spamassassin/spamassassin.h
* src/plugins/spamassassin/spamassassin_gtk.c
made processing of emails w/ sa-plugin an option (default is TRUE),
fixed Engrish some tooltips, capitalization of some debug messages
and warnings. The spamassassin plugin now provides two separate
services: process emails upon incorporation and spamd training.
Both services (un)register independently but use some common
plugin settings (transport settings, spam storage location).
* src/plugins/spamassassin/spamassassin.c
* src/plugins/spamassassin/spamassassin.h
* src/plugins/spamassassin/spamassassin_gtk.c
- added the ability to learn a remote spamassassin server (spamd),
using spamc.
- added the spamassassin option 'username', that applies to all
spamassassin operations (filtering, learning, local or remote).
The default username is the current unix user (if left blank
from gtk prefs or config file).
- commented out some unused code (notebook widget), removed unused
layout (hbox1).
- make more widgets sensitive to the transport type.
* src/procmsg.c
* src/summaryview.c
* src/summaryview.h
* src/plugins/spamassassin/spamassassin.c
* src/plugins/spamassassin/spamassassin.h
* src/plugins/spamassassin/spamassassin_gtk.c
Unregister learner when spamassassin is either
disabled or over tcp
* src/compose.c
* src/compose.h
* src/filtering.c
hide compose window when sending message in batch mode
(filtering: forward and redirect). Also fixed a wrong
value returned when sending failed, neutral anyway.
(Colin, me)
* src/compose.c
fix a crash when redirecting (for instance) when compose window's
toolbar contents has been customized (when some buttons have been
removed in fact).
* src/summary_search.c
enhancements to the summary search:
- add the ability to stop the running search
(upon ESC-key press, new Stop button or when Clear button is pressed)
- don't search if no criteria (From/To/Subject/Body) is set
- ensure that a busy mouse pointer is always shown when searching,
show it even a bit earlier
* src/messageview.c
* src/prefs_common.c
* src/prefs_common.h
* src/prefs_message.c
Add pref to display HTML-only mails with plugin,
if possible (defaulting to FALSE of course).
* src/mimeview.c
* src/mimeview.h
Let MimeViewers know which MimeView they
depend of.
* src/summaryview.c
Swap From/To columns in Sent/Queue/Drafts
folders
* src/etpan/imap-thread.c
Use mailstream_low_tls_open() for STARTTLS
instead of mailstream_low_ssl_open()
** REQUIRES libetpan 0.42cvs3 **
* src/compose.c
* src/compose.h
* src/message_search.c
* src/message_search.h
* src/textview.c
* src/gtk/gtkutils.c
* src/gtk/gtkutils.h
added the ability to Find text in the compose window (and a bit
of code factorization).