move 'Gather addresses' to 'Tools
[claws.git] / ChangeLog
index b7ad4ee6f4f16adc4f941690ceb182e87fa5168e..83387d5aa4a8c1636b15aa1486705613d3efe9a8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,219 @@
+2002-03-23
+
+       * src/compose.c
+         src/mainwindow.c
+         src/prefs_common.c: changed 'Tool' menu to 'Tools'.
+         Moved 'Delete duplicated messages' under 'Tools'.
+
+2002-03-23
+
+       * src/folderview.c: SET_SPECIAL_FOLDER(): keep the same parent
+         when moving.
+       * src/imap.c: imap_create_special_folder(): fixed a crash bug
+         when folder creation failed, and re-try to create folders under
+         INBOX.
+         imap_scan_tree_recursive(): don't automatically add namespace
+         prefix if it's INBOX. Search also under the INBOX for special
+         folders.
+       * src/foldersel.c: SET_SPECIAL_FOLDER(): keep the same parent
+         when moving.
+
+2002-03-23
+
+       * src/utils.[ch]: get_abbrev_newsgroup_name(): new. It returns the
+         abbreviated newsgroup name.
+       * src/folderview.c: folderview_update_node(): display newsgroups
+         with abbreviated name if name and path is the same.
+       * src/summaryview.c: summary_status_show(): show the newsgroup with
+         abbreviated name.
+
+2002-03-23
+
+       * src/foldersel.c
+         src/folderview.c: changed the label 'Draft' to 'Drafts'.
+       * src/imap.c: changed the directory name 'Draft' to 'Drafts'.
+         imap_create_missing_folders(): fixed the wrong assignment of
+         Queue folder to draft.
+
+2002-03-22
+
+       * enabled Sent / Draft / Queue folders on IMAP server.
+       * src/compose.c: compose_queue(), compose_draft_cb(): use account's
+         queue and draft folder if they exist.
+         src/imap.[ch]:
+         imap_create_trash(): removed.
+         imap_create_special_folder(): new. Generalized imap_create_trash().
+         imap_create_missing_folders(): automatically create missing folders.
+         imap_is_msg_changed(): added the dummy method.
+         imap_scan_tree_recursive(): search also Sent, Draft and Queue
+         folders. Minor code cleanups.
+         imap_parse_envelope(): check for null strings.
+         src/procmsg.c: procmsg_read_cache(): add F_QUEUE or F_DRAFT flag
+         for messages on IMAP folder.
+
+2002-03-20
+
+       * src/compose.c: compose_send(): use account's outbox folder
+         if it exists.
+       * src/procmsg.[ch]: procmsg_save_to_outbox(): changed the API so
+         that the outbox can be specified.
+
+2002-03-20
+
+       * src/compose.c: don't save to outbox when messages are queued.
+         compose_save_to_outbox(): moved to procmsg.c.
+       * src/procmsg.[ch]: procmsg_send_queue(): save to outbox when
+         sending succeeded.
+         procmsg_save_to_outbox(): new. Removes the queueing headers if
+         needed, and adds the given file to the outbox.
+
+2002-03-20
+
+       * src/compose.c: compose_wrap_line(): treat '|' also as quote char.
+         get_indent_length(): treat ':' and '#' also as quote char, and
+         cleaned up using strchr().
+
+2002-03-19
+
+       * src/mainwindow.c: modified some menu items.
+
+2002-03-19
+
+       * src/defs.h: changed OUTBOX_DIR from "outbox" to "sent"
+         (current "outbox" will be kept until rescan).
+       * src/folder.c: folder_set_missing_folders(): create the missing
+         folders.
+       * src/foldersel.c
+         src/folderview.c: changed 'Outbox' to 'Sent'.
+       * src/main.c: call folder_set_missing_folders().
+       * src/mh.c: mh_scan_tree(): create missing folders.
+       * src/summaryview.c: summary_set_menu_sensitive(): fixed a bug that
+         didn't set the menu sensitivity correctly.
+
+2002-03-18
+
+       * src/folderview.c
+         src/imap.[ch]: implemented folder renaming on IMAP (thanks to Mio).
+         folderview_rename_folder_cb(): reopen the current folder when
+         the ancestor is renamed.
+         imap_rename_folder(): new method implementation.
+         imap_cmd_rename()
+         imap_rename_folder_func(): new.
+         imap_remove_folder(): remove also the cache directory.
+
+2002-03-17
+
+       * src/imap.c: implemented locale encoding <-> modified utf-7
+         conversion, and supported i18n of folder name (thanks to Suzuki
+         Mio).
+         imap_path_separator_subst(): handle the escape characters of
+         modified utf-7.
+         imap_modified_utf7_to_locale()
+         imap_locale_to_modified_utf7(): new.
+         imap_create_trash(): modified so that it create the Trash folder
+         to the correct location when imap directory is specified.
+         imap_get_real_path(): removed debug print.
+
+2002-03-14
+
+       * src/socket.c: implemented timeout for DNS lookup and connect().
+         sock_connect_by_hostname(): timeout support and code cleanup.
+         sock_connect_with_timeout(): new.
+         sock_peek(): implemented SSL peek.
+
+2002-03-13
+
+       * src/messageview.c: messageview_show(): display single-part
+         text/html messages with the normal text view.
+       * src/account.c
+         src/addrbook.c
+         src/addrindex.c
+         src/compose.c
+         src/imap.c
+         src/inc.c
+         src/jpilot.c
+         src/ldif.c
+         src/mbox.c
+         src/mimeview.c
+         src/news.c
+         src/prefs.c
+         src/prefs_common.c
+         src/prefs_customheader.c
+         src/prefs_display_header.c
+         src/prefs_filter.c
+         src/procheader.c
+         src/procmime.c
+         src/procmsg.c
+         src/recv.c
+         src/rfc2015.c
+         src/send.c
+         src/sourcewindow.c
+         src/summaryview.c
+         src/template.c
+         src/textview.c
+         src/unmime.c
+         src/utils.c
+         src/vcard.c
+         src/xml.c: added 'b' to the option of all fopen().
+
+2002-03-09
+
+       * version 0.7.4
+
+2002-03-09
+
+       * src/ssl.[ch]: match its coding style.
+       * src/compose.c: compose_send_later_cb(): fixed a bug that failed
+         to save file.
+       * faq/Makefile.am
+         faq/en/Makefile.am
+         faq/en/sylpheed-faq*.html
+         faq/es/Makefile.am
+         faq/es/sylpheed-faq*.html
+         faq/fr/Makefile.am
+         faq/fr/sylpheed-faq*.html
+         configure.in
+         Makefile.am
+         src/Makefile.am
+         src/defs.h
+         src/mainwindow.c
+         src/manual.[ch]: added FAQs in English, Spanish and French.
+
+2002-03-07
+
+       * manual/en/sylpheed*.html: updated to the latest version.
+       * libkcc/jis.c
+         src/addrcache.c
+         src/addritem.c
+         src/ldif.c
+         src/mgutils.c: include string.h to remove warning about strlen()
+         etc.
+       * src/folder.c
+         src/folderview.c
+         src/inc.c
+         src/logwindow.c
+         src/mainwindow.c
+         src/mimeview.c
+         src/prefs.c
+         src/prefs_common.c
+         src/procheader.c
+         src/send.c
+         src/session.c
+         src/sigstatus.c
+         src/summaryview.c: added break to the last label of switch to
+         prevent the 'deprecated use of label at end of compound statement'
+         warning at gcc-3.0.
+       * src/rfc2015.c: passphrase_cb(): fixed the type of r_hd.
+
+2002-03-06
+
+       * src/inc.[ch]: preserve the pointer to IncProgressDialog to the
+         static list.
+         inc_cancel_all(): new. It cancels the all current incorporation.
+       * src/mainwindow.c: added 'Cancel receiving' menu.
+       * src/textview.c: a minor fix for single-part MIME messages, and
+         a bit of cleanup for textview_write_body().
+
 2002-03-05
 
        * src/inc.c: inc_write_uidl_list(): fixed a bug that lost UIDL