* src/folder.c
* src/folder.h
Cache parents' type to make folder_has_parent_of_type
faster
* src/folderview.c
Forbid DnD of special sub-folders
* src/procmsg.c
* src/procmsg.h
Add MAIL_POSTFILTERING_HOOK
* src/summaryview.c
Revert over-zealous deletion of the use_addr_book
code
* src/compose.c
* src/folder.c
* src/folder.h
* src/foldersel.c
* src/folderutils.c
* src/folderview.c
* src/imap.c
* src/mainwindow.c
* src/messageview.c
* src/mh.c
* src/msgcache.c
* src/procmime.c
* src/summaryview.c
Make subfolders of Drafts, Queue, Outbox, Trash
work like their parents.
Fixes bug #686 (Message view on Drafts/Sent should be the same on Subfolders)
* src/mainwindow.c
refer to 'displayed columns in folder/message
list' not 'displayed items in summary/message view'
* src/prefs_display_header.c
replace GTK_STOCK_DELETE with GTK_STOCK_REMOVE to
be consistent with similar dialogues
* src/prefs_folder_column.c
* src/prefs_summary_column.c
'columns' not 'items', and folder and message lists,
instead of folder and summary views;
Use 'Hidden columns' as list heading not 'Available
items';
move the 'Remove' button to the right hand side;
top-align the buttons;
remove unneeded vbox
* src/prefs_summaries.c
put the 2 column prefs buttons in a frame to reduce
overall width; refer to columns not items &c.
* src/prefs_common.c
* src/prefs_common.h
* src/mainwindow.c
* src/compose.c
* src/messageview.c
Add an hidden toolbar_detachable pref, so
that I can get rid of these painful handles
in the toolbars. Defaults to TRUE to avoid
changing the GUI on unsuspecting people...
* src/compose.c
Remove dead code
Add colourisation of quotes and signatures
* src/folderview.c
Fix possible crashes
* src/messageview.c
Change an assert that is no problem
* src/news.c
* src/news_gtk.c
* src/news_gtk.h
Fix offline mode
* src/gtk/quicksearch.c
Fix a possible crash
* src/mainwindow.c
Fix cast
* src/addressbook.c
* src/addressitem.h
Fix a cast and more generally, try to make the
GUI more intuitive and consistent (round 1)
* src/folderview.c
* src/folderview.h
* src/mainwindow.c
* src/prefs_fonts.c
* src/prefs_summaries.c
* src/prefs_themes.c
* src/summaryview.c
* src/summaryview.h
* src/textview.c
* src/textview.h
Fix instant-apply of summary and folderview-related prefs
Fix erroneous g_free and alertpanels in prefs_theme
Add instant-apply for fonts
Defer applying of prefs a little bit so it's done only
once even if requested by multiples prefs pages
* doc/man/sylpheed.1
update man page, incorporating fix of
bug 769 'Typo in manpage'
* src/etpan/imap-thread.c
fix NetBSD openssl dependencies. patch by
George Michaelson <ggm@apnic.net>
* src/folder.c
* src/textview.c
Gcc 2.9x compilation fixes, thanks to Darko
* src/plugins/clamav/clamav_plugin.c
Little optimisation: load virus database only once
* src/plugins/spamassassin/spamassassin.c
Big optimisation: filtering one mail took at least 1 second,
now it takes at least 50ms. Doesn't speed up spamassassin
itself, but should already be much more tolerable.
* configure.ac
* src/plugins/Makefile.am
* src/plugins/pgpinline/.cvsignore
* src/plugins/pgpinline/Makefile.am
* src/plugins/pgpinline/pgpinline.c
* src/plugins/pgpinline/pgpinline.deps
* src/plugins/pgpinline/pgpinline.h
* src/plugins/pgpinline/plugin.c
Put pgpinline in the main tree
* configure.ac
be generally more informative in configure output.
OpenSSL: correction: '[ --enable-openssl ...' ->
'[ --disable-openssl ...', as --enable-openssl is default
PGP/MIME: don't check for GPGME again, check for
pgpcore instead. Therefore prevent the possibility of
attempting to build pgpmime if pgpcore dependencies are
not met
ClamAV: use pkgconfig to check for lib
libgnomeprint: revert logic on inner test to match
everything else
* src/plugins/pgpcore/sgpgme.c
add missing include
* src/privacy.c
add a PrivacySystem accessor that checks that
the system cached in a MimeInfo's privacydata
is still registered. Use this accessor instead
of directly using data->system. Fixes crashes
after unloading pgp plugins.