* src/folder.c
* src/folder.h
Add a processing_pending indicator, set on
folder_item_open and cleared after
folder_item_process_open
* src/folderview.c
* src/summaryview.c
wrap procmsg_msginfo_*_flags, and in the
wrapper check that there's no folder processing
pending. If there is, defer the flags change until
processing is done to avoid stepping over each
other's toes.
Freeze during processing, but not during scanning.
* src/folder.c
* src/folder.h
* src/folderview.c
* src/folderview.h
* src/imap_gtk.c
* src/mh_gtk.c
* src/mainwindow.c
* src/setup.c
add a way to rescan without rebuilding
make moving a bit faster (less folders changes)
don't lock the tree on Get
* src/imap.c
Don't re-delete deleted messages before expunging
* src/summaryview.c
Set batch mode when deleting mails
* src/folder.c
* src/folder.h
* src/folderview.c
* src/imap.c
* src/etpan/imap-thread.c
* src/etpan/imap-thread.h
Try to make IMAP faster, by simplifying SEARCH
commands, avoiding sending two STATUS in a row,
and deferring flags sync and processing just
after displaying the folder.
This will update the SummaryView in certain
cases (new mails not already fetched, flags
changed from another client) but in a non-
blocking manner.
* 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)
* matcher.c
* procmsg.c
* procmsg.h
Add a way to fetch only headers. This speeds
up filtering on headers for IMAP. Fixes:
bug #481 extraneous imap commands slow down
imap filtering
bug #522 Sylpheed downloads all messages
when opening mailbox (IMAP)
bug #677 IMAP fetch is soooooooooooooo slow
* src/folder.c
* src/folder.h
Add a folder set_batch method so that
implementations can speed up flags changes
* src/folderutils.c
* src/summaryview.c
Use that in mark as (un)read and mark all read
Refix bug #679
* src/imap.c
Implement set_batch - brings back deferred
flags in a less buggy manner. Fixes:
bug #729 IMAP immediate expunge of deleted messages
bug #191 remove list of messages with one command
Fix login with strange chars
Implement fetch_msg_full
Fix copy (wrong counts)
* src/folder.h [1.87.2.6]
* src/inc.c [1.149.2.7]
* src/messageview.c [1.94.2.8]
* src/procheader.c [1.47.2.6]
* src/procmsg.c [1.150.2.4]
* src/procmsg.h [1.60.2.5]
* src/pop.c [1.56.2.4]
* src/pop.h [1.17.2.3]
Let too big messages get downloaded, but truncated
Add a button to download them completely
* src/compose.c
replace '\n' and '\r' before removing trailing spaces
* src/folder.[ch]
* src/folderview.c
add information about new or removed items in folder tree change
notification and use this in folderview to add and remove only
the appected items and not refresh the whole tree
* src/folder.[ch]
* src/imap.c
* src/mbox_folder.c
* src/mh.c
* src/news.c
optimize folder system
* src/gtk/gtkstext.c
fix division by zero when font has 0 width for ' '
* src/folder.[ch]
* src/imap.c
* src/mh.c
return new message numbers as a GRelation instead of a GSList
that has to be in the same order as the input list. A list
would make it hard for IMAP to optimize oepration by sorting
the input list. The returned list would have to be reordered
to match the same order that input list has.
* src/gtk/gtkaspell.c
fix missing return value, could cause a crash when garbage is
on the stack that is used as the expected return value
* src/Makefile.am
* src/account.c
* src/folder.[ch]
* src/folder_item_prefs.[ch] ** NEW **
* src/folderview.c
* src/mainwindow.c
* src/mh.c
* src/prefs_gtk.c
* src/prefs_scoring.c
* src/summaryview.c
* src/prefs_folder_item.[ch]
o seperate FolderItemPrefs (formerly PrefsFolderItem) and the
Properties dialog
o use prefswindow for folder properties
* src/gtk/prefswindow.[ch]
change implementation to use an invisible notebook instead
of unparenting widgets
* src/folder.[ch]
* src/imap.c
* src/mbox_folder.c
* src/mh.c
* src/news.c
move folder_item_get_path() stuff into a folder virtual function
* src/procmsg.c
use folder_item_fetch_msg() to get message and do not contruct
the filename from path and number
* src/folder.[ch]
o add notification hook for folder tree changes
o invoke hooks after folder tree scanning
* src/folderview.[ch]
register hook for folder tree changes that
updates the ctree
(there are more places that should be updated, like add, remove
or move folder)
(closes Bug 164 Crash on rebuild folder tree)
(closes Bug 190 Crash on 'rebuilding folder tree')
* src/account.c
* src/folder.[ch]
* src/folderview.c
* src/imap.c
* src/inc.c
* src/main.c
* src/mainwindow.c
* src/mbox_folder.c
* src/mh.c
* src/mimeview.h
* src/msgcache.[ch]
* src/news.c
* src/procmime.h
* src/procmsg.[ch]
* src/setup.c
* src/gtk/gtkutils.c
o rename structure field names class and new to klass and
new_msgs, to allow including files in C++
o add 'extern "C"' block to some header files
o add MsgInfoList and MsgNumberList as alias for GSList for
developers to know what type of list is expected
* src/plugins/image_viewer/plugin.c
* src/plugins/image_viewer/viewer.[ch]
* src/plugins/image_viewer/viewerprefs.[ch]
rename function names to prevent conflicts
* src/folder.[ch]
o error return code's should better be negative
o replace printf with debug_print
* src/imap.c
improve IMAP folder scan by checking UID-NEXT
* src/summaryview.c
remove check that are unnecessary in my opinion
* src/folder.[ch]
* src/foldersel.c
* src/folderview.c
* src/imap.c
* src/mbox_folder.c
* src/mh.c
* src/news.c
* src/prefs_scoring.c
* src/summaryview.c
use a common function to get a displayable name
for a FolderItem
* src/folder.c
use folder class idstr when writing folderlist.xml
* src/folder.h
* src/imap.c
* src/news.c
replace folder type checks with folder class checks
* src/folder.[ch]
* src/imap.[ch]
* src/main.c
* src/mbox_folder.[ch]
* src/mh.[ch]
* src/news.[ch]
o create a list of known folder classes in the folder system
o use folder class id strings for folder item identifiers
* src/compose.c
* src/folder.[ch]
* src/folderview.c
* src/import.c
* src/inc.c
* src/main.c
* src/mainwindow.c
* src/messageview.c
* src/prefs_folder_item.c
* src/procmsg.c
* src/summaryview.c
* src/toolbar.c
o remove all folder update triggering from the UI code. The folder
system should know much better when a folder needs an update.
o to prevent multiple updates in a row the folder updates can be
frozen for some time.
Note: - Please verify that no updates are missing
- Check where freeze/thaws should be added