update man page
[claws.git] / ChangeLog
index fd9ac9abef0159a661c4787860d177f867fed45e..8258a645c0804ae238f674655f47704f80b044a2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,334 @@
+2003-07-08
+
+       * src/rfc2015.c: rfc2015_is_encrypted(): check MimeInfo::mime_type
+         to suppress some warnings.
+
+2003-07-07
+
+       * src/compose.c: add 'Content-Disposition: inline' to a text/plain
+         part when using PGP/MIME signing.
+
+2003-07-04
+
+       * version 0.9.3
+
+2003-07-04
+
+       * src/defs.h: changed UI_REFRESH_INTERVAL from 40msec to 50msec.
+       * src/session.c: session_read_msg_cb(): make it always fail if
+         sock_read() returns by error.
+       * src/socket.[ch]: sock_check(): handle exceptional SSL condition.
+         sock_has_pending_data(): removed.
+         Removed debug output.
+       * src/send_message.c: send_recv_message(): display messages to
+         statusbar.
+
+2003-07-03
+
+       * src/inc.[ch]: update received message number on CList while
+         retrieving.
+       * src/session.c: session_read_data_cb(): optimized by removing
+         g_malloc() and memcpy().
+
+2003-07-02
+
+       * src/socket.[ch]: sock_add_watch(): new. It monitors SSL by original
+         watch functions (otherwise uses g_io_add_watch()).
+       * src/session.[ch]: removed previous workarounds, and replaced
+         g_io_add_watch() with sock_add_watch().
+
+2003-07-01
+
+       * src/socket.[ch]: added sock_has_pending_data() which returns TRUE
+         if socket has pending data.
+       * src/session.c: session_recv_msg(), session_recv_data(): check if
+         socket has pending data and call the callbacks immediately in that
+         case (fixes the hang at ESMTP EHLO on SSL).
+
+2003-06-30
+
+       * src/socket.c: check return value in SSL functions.
+
+2003-06-30
+
+       * src/mimeview.c: mimeview_init(): initialize TextView to prevent
+         slowdown caused by GTK+ themes (thanks to Yuri Arapov).
+
+2003-06-27
+
+       * src/session.c: session_read_data_cb(): clear Session::read_data_buf
+         before calling callbacks.
+
+2003-06-26
+
+       * src/socket.c: made socket connection protocol independent.
+       * src/session.c: removed debug g_print().
+       * src/inc.c: made status bar output less verbose, and show counter
+         on main window's progressbar.
+
+2003-06-26
+
+       * src/session.c: added missing #include <errno.h>.
+
+2003-06-25
+
+       * src/session.[ch]: reimplemented the Session system with non-blocking
+         I/O to solve the performance and the code design issue.
+       * src/socket.[ch]: added sock_connect_async() and
+         sock_connect_async_cancel() to enable asynchronous connection.
+         sock_peek(): modified the implementation.
+       * src/pop.c: optimized the receiving of the responses of
+         UIDL/LIST/RETR.
+
+2003-06-18
+
+       * src/procmsg.c: procmsg_get_thread_tree(): prevent threading problems
+         when a node is an ancestor (parent / great parent), which mostly
+         happens with circular references (thanks to Phillipe Gramoulle
+         for finding an sample set of messages, and Alfons for the patch).
+
+2003-06-16
+
+       * src/pop3.c: pop3_get_uidl_table(): return empty hash table even if
+         UIDL list is not found (fixes inability of initial retrieval).
+
+2003-06-10
+
+       * src/main.c: added the option '--status-full' which shows the status
+         of each folder specified. The option '--status' also takes
+         following arguments for folders (thanks to Yuri Arapov).
+       * src/folder.[ch]: folder_get_status(): new. it takes the array of
+         folders as the argument and returns their status.
+         folder_count_total_msgs(): removed.
+
+2003-06-06
+
+       * version 0.9.2
+
+2003-06-06
+
+       * src/filesel.c
+         src/foldersel.c
+         src/inputdialog.c: use gtk_main_iteration() instead of gtk_main()
+         to prevent abort when a button is double-clicked.
+
+2003-06-02
+
+       * src/addr_compl.c: invalidate_address_completion(): check if
+         g_completion_list is NULL (thanks to Kazuhiro NISHIYAMA).
+
+2003-06-02
+
+       * src/pop.c: pop3_session_recv_data_finished(): fixed a bug that
+         deleted messages that is to be kept on server (thanks to Tristan
+         Wallis).
+
+2003-05-27
+
+       * version 0.9.1
+
+2003-05-26
+
+       * src/socket.[ch]:
+         sock_set_io_timeout(): new. It sets the timeout interval.
+         sock_gdk_input_add(): removed since it's not used anymore.
+       * src/prefs_common.[ch]: added an option to set the timeout parameter.
+
+2003-05-26
+
+       * src/action.c: fixed a bug that didn't hide user string in
+         create_io_dialog() (thanks to Markus Amersdorfer).
+         Removed ChildInfo::type and added Children::action_type.
+
+2003-05-23
+
+       * src/inc.c: inc_start(): ask every password before retrieving.
+         Don't popup the redundant error dialog.
+         inc_account_mail()
+         inc_all_account_mail()
+         inc_progress_dialog_set_list(): separated account list display
+         into a new function.
+         inc_progress_dialog_set_label()
+         inc_recv_data_finished()
+         inc_recv_message(): properly update the dialog when RETR finished.
+
+2003-05-22
+
+       * src/imap.c:
+         imap_modified_utf7_to_locale()
+         imap_locale_to_modified_utf7(): fixed compilation failure when not
+         using iconv().
+
+2003-05-21
+
+       * src/procmime.c: procmime_scan_multipart_message(): fixed parsing
+         of message/rfc822 parts.
+
+2003-05-21
+
+       * src/pop.c: pop3_ok(): detect timeout error.
+
+2003-05-20
+
+       * src/imap.c: imap_locale_to_modified_utf7(): fixed the encoding bug
+         when locale strings include '+'.
+         imap_modified_utf7_to_locale()
+         imap_locale_to_modified_utf7(): at least escape/unescape '&' even
+         if iconv() is not supported.
+
+2003-05-20
+
+       * src/compose.c:
+         compose_insert_sig()
+         compose_get_signature_str(): include separator in signature string.
+         Don't insert separator if signature file is not found.
+         Disabled use of implicit default signature path (~/.signature) when
+         sig_path is NULL.
+
+
+2003-05-20
+
+       * src/codeconv.c
+         src/gtkshruler.c
+         src/news.c
+         src/procmsg.c
+         src/quote_fmt_parse.y
+         src/smtp.c: suppress warnings that gcc-3.3 issues.
+         src/stringtable.c: use string_entry_free().
+
+2003-05-19
+
+       * src/compose.c: compose_insert_sig(): fixed the bug that always
+         appended signature separator if signature file was not found.
+         compose_get_signature_str(): fixed the bug that caused crash if
+         signature file cannot be opened.
+
+2003-05-16
+
+       * version 0.9.0
+
+2003-05-16
+
+       * src/session.c: session_recv_msg(): removed debug print.
+
+2003-05-15
+
+       * src/imap.c:
+         imap_parse_atom()
+         imap_get_header()
+         imap_cmd_fetch(): check for data size that servers return (fixes
+         vulnerability found in BugTraq).
+
+2003-05-14
+
+       * src/addr_compl.c: get_complete_address()
+         src/addressbook.c: addressbook_format_address()
+         src/compose.c: QUOTE_IF_REQUIRED(): quote if name contains
+         characters that is not defined in atext (RFC 2822, 3.2.4. Atom).
+       * src/main.c: main(): set colormap and visual to solve color problem
+         in Solaris (thanks to Markus Schwarzenberg).
+
+2003-05-12
+
+       * version 0.9.0pre1
+
+2003-05-12
+
+       * src/prefs_account.c: temporarily removed POP before SMTP option.
+
+2003-05-09
+
+       * src/prefs_common.[ch]: changed the description of "Open message when
+         cursor keys are pressed on summary".
+       * src/summaryview.c: summary_show(): open message when always_show_msg
+         is TRUE.
+
+2003-05-09
+
+       * src/logwindow.[ch]: restrict the maximum lines of the log messages
+         to reduce the memory usage.
+
+2003-05-07
+
+       * src/compose.c: compose_insert_sig(): fixed a crash when signature
+         string contains illegal sequence.
+       * src/utils.[ch]: changed get_wcs_len() to get_mbs_len() for accuracy.
+
+2003-05-07
+
+       * major refactoring of MIME structure.
+       * src/procmime.c: procmime_scan_message(): decrypt message if
+         gpgme is enabled. Create multipart tree only if content-type is
+         multipart/* or message/rfc822.
+         procmime_scan_multipart_message(): fixed the scanning of
+         message/rfc822 part.
+       * src/action.c: parse_append_msgpart()
+         src/messageview.c: messageview_show()
+         src/mimeview.c: mimeview_show_message(): use procmime_scan_message()
+         instead of procmsg_open_message() and procmime_scan_mime_header().
+         mimeview_set_multipart_tree(): conform to the new MIME structure.
+       * src/textview.c: textview_show_part(): removed unnecessary check.
+       * src/procmsg.c: procmsg_open_message_decrypted(): fixed the file
+         pointer when decryption failed.
+
+2003-05-06
+
+       * src/ssl.c: ssl_init_socket_with_method(): replaced log_warning()
+         by g_warning(), and log_print() by debug_print().
+       * src/pop.[ch]: added an error code PS_NOTSUPPORTED, and retry with
+         LAST if UIDL is not supported.
+
+2003-05-01
+
+       * src/codeconv.c: conv_get_code_conv_func(): convert to EUC-JP only
+         if it is the current locale encoding when dest_charset_str is NULL.
+
+2003-05-01
+
+       * src/action.c: execute_actions(): fixed crash when no text widget
+         is selected (thanks to Paul and Melvin).
+       * src/action.c
+         src/prefs_actions.c: added missing reference to Claws team in the
+         copyright.
+
+2003-04-28
+
+       * src/session.c:
+         session_send_msg()
+         session_send_data(): fixed a memory leak and data sending bug.
+       * src/send_message.c:
+         send_message_smtp(): fixed focus management.
+
+2003-04-25
+
+       * src/smtp.[ch]: set the response string to SMTPSession::error_msg
+         if error occurred.
+       * src/send_message.c: show error dialog if error occurred.
+       * src/main.c: send_queue()
+         src/mainwindow.c: send_queue_cb(): don't show error dialog here.
+
+2003-04-25
+
+       * src/session.c: session_close(): kill child process only if
+         state is not SESSION_DISCONNECTED.
+       * src/send_message.c: send_cancel_button_cb()
+         src/inc.c: inc_cancel(): don't set Session::state to
+         SESSION_DISCONNECTED.
+       * src/prefs.[ch]: modified the names of prefs_write_*().
+       * src/address.[ch]: removed.
+
+2003-04-24
+
+       * src/compose.c: compose_template_apply(): overwrite recipients.
+
 2003-04-23
 
        * src/procheader.c: procheader_date_parse(): removed debug print.
        * src/session.c: changed every g_print to debug_print.
          session_child_input(): removed unrequired session_close() (it'll
          be closed anyway after returning FALSE).
+       * src/send_message.c: send_message_smtp(): changed g_print to
+         debug_print.
 
 2003-04-23