more sync with 0.7.5cvs7
[claws.git] / ChangeLog
index b7ad4ee6f4f16adc4f941690ceb182e87fa5168e..ded31eedfea821c243447942b08d348ee7442a79 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,508 @@
+2002-05-02
+
+       * src/compose.c: compose_write_headers(): quote self address name
+         if required. Some code cleanups. Don't override Newsgroups and
+         Cc with custom headers.
+       * src/imap.c: imap_add_msg(): return UID for appended message.
+       * src/compose.c: compose_queue(): check if queue folder exists.
+       * src/imap.c: QUOTE_IF_REQUIRED(): quote also other IMAP special
+         characters.
+
+2002-04-25
+
+       * src/utils.[ch]: trim_string(): new. It trim characters longer than
+         the specified length and adds "...".
+       * src/folderview.c: trim folder name when displaying dialog.
+
+2002-04-23
+
+       * src/imap.c: imap_create_folder(): don't add prefix for root INBOX
+         folder.
+       * src/folderview.c: folderview_select()
+         src/summary_search.c: summary_search_execute(): lock summary view
+         while searching (thanks to Martin Schaaf).
+
+2002-04-21
+
+       * version 0.7.5
+
+2002-04-21
+
+       * sylpheed*.png: added new app icons by WAKAI Kazunao (thanks!).
+
+2002-04-21
+
+       * src/summaryview.c: summary_show(): fixed a bug that didn't process
+         the left marks.
+       * src/account.c: account_edit_prefs(): fixed a crash bug when account
+         name was empty.
+       * src/prefs_account.c: prefs_account_apply(): display error dialog
+         if account name is empty.
+       * src/imap.c: changed some log_print() to debug_print() to reduce
+         the amount of log.
+
+2002-04-21
+
+       * src/mh.c: mh_get_new_msg_filename(): new. It returns the filename
+         for new message.
+         mh_add_msg()
+         mh_do_move()
+         mh_do_move_msgs_with_dest()
+         mh_copy_msg()
+         mh_copy_msgs_with_dest(): use mh_get_new_msg_filename().
+       * src/utils.[ch]: added is_file_entry_exist() which returns TRUE
+         if stat() succeeded.
+       * src/imap.c:
+         imap_fetch_msg(): SELECT mailbox before FETCH if required.
+         imap_scan_folder(): set last_num using the value of UIDNEXT.
+         imap_select(): return immediately if there is no need for SELECT.
+         preserve the path of currently selected mailbox.
+         imap_status(): added UIDNEXT.
+
+2002-04-20
+
+       * src/folder.c: folder_item_scan(): removed the warning.
+       * src/inputdialog.[ch]: input_dialog_combo(): added an argument for
+         setting case sensitivity.
+
+2002-04-17
+
+       * src/mainwindow.c: main_window_create(): restrict the minimum size.
+
+2002-04-17
+
+       * src/compose.c: merged the new line-wrapping routine.
+         join_next_line(): fixed a bug that didn't join multibyte
+         characters.
+         get_indent_length(): modified enums and variable names.
+         INDENT_CHARS: don't indent ':'.
+       * src/folderview.c:
+         folderview_rename_folder_cb()
+         folderview_delete_folder_cb(): support folder identifier.
+         folderview_rm_imap_folder_cb(): integrated with
+         folderview_delete_folder_cb().
+
+2002-04-15
+
+       * src/folder.[ch]: folder_item_scan(): return -1 if scanning failed.
+       * src/folderview.c: folderview_check_new(): abort checking if
+         folder_item_scan() failed.
+
+2002-04-15
+
+       * src/imap.c: imap_create_missing_folders(): create only INBOX and
+         Trash.
+       * src/prefs_folder_item.c: prefs_folder_item_set_dialog(): made the
+         type of news folders unchangeable.
+         prefs_folder_item_destroy(): use prefs_dialog_destroy().
+       * src/prefs.[ch]: prefs_dialog_destroy(): new.
+
+2002-04-15
+
+       * src/prefs_account.[ch]: added special folder setting to Advanced
+         tab. Also moved "IMAP server directory" setting to there.
+       * src/account.[ch]: account_get_special_folder(): new. It returns
+         the optimal special folder for accounts.
+       * src/compose.c: use account_get_special_folder().
+       * src/prefs_folder_item.[ch]: new. Implemented folder property
+         dialog, and the special folder settings (most of the functions in
+         claws are not integrated yet, and the structure is slightly
+         modified).
+       * src/folderview.c: enabled Property menu.
+
+2002-04-14
+
+       * src/textview.c: IS_RFC822_CHAR(): make email parser also stop
+         scanning when encountering separators ',' and ';'.
+
+2002-04-12
+
+       * src/mainwindow.c: reorderd the menu a bit.
+       * src/compose.c: made 'Ctrl-Enter' ignore some modifiers.
+         compose_reply_set_entry(): made 'Reply to sender' work for
+         newsgroups.
+
+2002-04-11
+
+       * src/compose.c: compose_create(): set geometry hints to restrict
+         the maximum size of window.
+       * src/imap.c: imap_parse_list(): don't mark INBOX as \Noselect.
+         imap_get_uncached_messages()
+         imap_cmd_fetch(): ignore responses which don't include FETCH.
+
+2002-04-11
+
+       * COPYING: re-licensed (removal of "NO-VIRUS CLAUSE" and addition of
+         the clause for OpenSSL).
+
+2002-04-09
+
+       * src/prefs_account.c
+         src/smtp.[ch]: fixed a bug that didn't complie with OpenSSL enabled.
+
+2002-04-09
+
+       * src/smtp.[ch]
+         src/send.c
+         src/session.[ch]: first reorganization of SMTP protocol handling.
+         SMTPSession: new class which is a sub class of Session.
+         smtp_session_new(): moved send_smtp_open() into this function.
+         smtp_from(): moved SMTP AUTH calls into smtp_auth().
+         smtp_auth(): use server response for SMTP AUTH method.
+         smtp_ehlo(): read server response and set auth type flags.
+         smtp_helo(): separated EHLO command.
+         smtp_ok(): return the last server response if the buffer is
+         specified.
+       * src/esmtp.[ch]: merged into smtp.[ch].
+       * src/imap.c: imap_session_destroy_all(): use session_destroy().
+
+2002-04-08
+
+       * src/imap.c: imap_open(): show warning message if IMAP4 session
+         can't be established.
+
+2002-04-06
+
+       * src/compose.c: made template able to be inserted into the current
+         cursor position.
+       * src/mainwindow.c: moved some menu items under the submenu
+         '/View/Show or hide'.
+
+2002-04-05
+
+       * src/filter.c
+         src/inc.c: changed folder_find_item_from_path() to
+         folder_find_item_from_identifier().
+         src/prefs_account.c
+         src/prefs_filter.c: use folder_item_get_identifier() to specify
+         folder path.
+
+2002-04-05
+
+       * src/folder.[ch]: implemented "folder identifier" (and fixed a bug
+         existed in claws' implementation).
+         folder_find_from_name(): find Folder from name and type.
+         folder_get_identifier(): return Folder id.
+         folder_item_get_identifier(): return FolderItem id.
+         folder_find_item_from_identifier(): find FolderItem from id.
+         folder_get_type_string(): return folder type string.
+         folder_get_type_from_string(): return FolderType from string
+         (and fixed the wrong g_strcasecmp() usage).
+       * src/export.c
+         src/import.c: use folder_item_get_identifier() and
+         folder_find_item_from_identifier().
+
+2002-04-03
+
+       * src/imap.c: imap_parse_atom(): fixed a bug that cur_pos didn't
+         point the correct address after reading the continuous line.
+         imap_scan_folder(): set new number to 0 if unseen number is 0.
+         imap_parse_flags(): don't add new and unread flag if \Seen flag
+         exists.
+       * ac/Makefile.am: removed gpgme.m4 from MACROS.
+
+2002-04-02
+
+       * fixed the old problem that couldn't add flags to currently opened
+         folders.
+       * src/compose.c:
+         compose_send(): update outbox after saving.
+         compose_queue()
+         compose_draft_cb(): use procmsg_add_flags().
+       * src/folder.[ch]: added "opened" flag and "mark_queue" list to
+         FolderItem.
+       * src/main.c: send_queue(): send from all queue folders.
+       * src/mainwindow.c: send_queue_cb(): send from all queue folders.
+       * src/procmsg.[ch]:
+         procmsg_flush_mark_queue(): new. Write all queued flags into file.
+         procmsg_add_flags(): new. Add specified flags to the folder.
+         procmsg_send_queue(): added an argument to specify queue folder.
+         procmsg_save_to_outbox(): use procmsg_add_flags().
+       * src/summaryview.c:
+         summary_show(): up the opened flag of FolderItem.
+         summary_clear_list(): down the opened flag of FolderItem.
+         summary_write_cache(): call procmsg_flush_mark_queue().
+
+2002-04-01
+
+       * src/summaryview.[ch]: trim the tail of folder name and selected
+         number on the status label if the space is not enough.
+
+2002-04-01
+
+       * src/imap.c: imap_create_special_folder(): fixed a bug that didn't
+         set SpecialFolderItemType when creating special folders under
+         INBOX.
+       * ac/gpgme.m4: removed.
+       * ac/README: added.
+       * ac/missing/gdk-pixbuf.m4
+         ac/missing/gettext.m4
+         ac/missing/gpgme.m4
+         ac/missing/imlib.m4: added for convenience.
+
+2002-03-29
+
+       * src/esmtp.c: esmtp_auth(): fixed a bug that some garbages are
+         shown after the decoded challenge string. Fixed a memory leak.
+         Removed strtok().
+       * src/compose.c: compose_draft_cb(): mark draft messages as read.
+       * src/folderview.c: folderview_update_node(): disable emphasis
+         for Outbox and Draft folders.
+
+2002-03-28
+
+       * src/messageview.c: messageview_show(): fixed a memory leak.
+       * src/summaryview.c: summary_save_as(): show error dialog if copy
+         failed.
+       * src/about.c: about_show(): make the window active if it is already
+         open.
+
+2002-03-27
+
+       * src/compose.c: show confirmation dialog before sending if Subject
+         is empty.
+         compose_check_entries(): new.
+         compose_send()
+         compose_send_later_cb(): use compose_check_entries().
+       * src/imap.c: imap_parse_atom(): more fix for parsing responses.
+
+2002-03-26
+
+       * src/imap.c: imap_parse_atom(): fixed a bug that didn't parse the
+         responses with continuous line correctly, and fixed a memory leak.
+
+2002-03-26
+
+       * src/undo.c: undo_insert_text_cb(): fixed a crash bug if the text
+         length is large.
+       * src/gtkstext.c: gtk_stext_button_press(): cancel current selection
+         after pasting with middle button to prevent the selection growth.
+
+2002-03-25
+
+       * src/folderview.c:
+         folderview_rename_folder_cb()
+         folderview_delete_folder_cb(): modify filter rules only if the
+         target folder is in the default mailbox.
+       * src/utils.c: get_abbrev_newsgroup_name(): removed a redundant
+         line.
+
+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