0.8.11claws50
[claws.git] / ChangeLog
index 4f70cab6b4d325559ba6a9f8802732146c0a0ec3..ac90e4b0e1c9ede988ecad9e80b6c84a1cb6377e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,347 @@
+2003-03-26
+
+       * src/pop.[ch]
+         src/session.c: fixed breakage of POP3 retrieval.
+         session_recv_data_from_sock_unescape(): read until terminator
+         appears and also return the actual size.
+
+2003-03-25
+
+       * src/automaton.[ch]: removed.
+       * src/session.c: removed some of the debug output.
+       * src/smtp.c: smtp_session_recv_msg(): workaround in case server
+         returns EHLO-style response to HELO command.
+         Ignore all multiline responses except for EHLO since they are
+         allowed for any command.
+
+2003-03-25
+
+       * src/session.[ch]
+         src/pop.c: fixed retrieval of messages which contain dot-escaped
+         lines.
+         session_recv_data(): added a flag for unescape.
+         session_recv_data_from_sock_unescape(): new. It receives message
+         for each line and unescapes dot-escaped lines.
+         Removed the previous workaround.
+       * src/defs.h: decreased UI_REFRESH_INTERVAL to 40 msec.
+
+2003-03-25
+
+       * src/pop.[ch]: workaround for brekage of retrieval when given size
+         and actual one is different.
+
+2003-03-24
+
+       * src/pop.c: pop3_retr_eom_recv(): ignore invalid end of message
+         since some servers sometimes return incorrect message size.
+       * src/news.c: news_session_new(): zero clear NNTPSession object.
+         Don't initialize Session::sock with nntp_sock->sock to prevent
+         double-free of SockInfo.
+       * src/imap.c: zero clear IMAPSession object.
+         imap_cmd_append(): don't close SockInfo.
+
+2003-03-22
+
+       * src/pop.c: pop3_session_recv_msg(): fixed STLS.
+
+2003-03-22
+
+       * src/inc.[ch]
+         src/pop.[ch]: reimplemented using new I/O system.
+       * src/session.[ch]: session_recv_data(): new.
+         session_send_data_to_sock()
+         session_recv_data_from_sock(): decreased the frequency of progress
+         notification.
+
+2003-03-22
+
+       * src/smtp.c: smtp_auth_recv(): fixed CRAM-MD5 authentication.
+
+2003-03-20
+
+       * src/session.[ch]: session_start_tls(): new.
+         session_recv_msg(): made it static.
+
+2003-03-20
+
+       * implemented asynchronous network I/O.
+       * src/session.[ch]: the interface to communicate with servers through
+         child process.
+       * src/smtp.[ch]
+         src/send_message.[ch]: rewrote using new I/O system.
+       * src/socket.[ch]: renamed *_write() to *_write_all(), and made
+         *_write() as just a simple wrapper for write().
+       * src/utils.c: get_outgoing_rfc2822_str(): new. It modifies the
+         message to send with SMTP or NNTP.
+         file_read_stream_to_str(): new.
+
+2003-03-12
+
+       * src/textview.c: textview_button_pressed(): corrected the range of
+         URI link.
+       * src/compose.c: compose_wrap_line_all_full(): treat UTF-8 characters
+         represented with more than 2 bytes as 2 character width and 2 bytes
+         one as a single character width as a workaround for wrapping problem.
+
+2003-03-12
+
+       * src/utils.c: subject_compare_for_sort(): allow null strings (fixes
+         summary sorting).
+
+2003-03-11
+
+       * implemented HTML link correctly.
+       * src/html.[ch]: HTMLAttr, HTMLTag: new structure for attributes /
+         tags.
+         html_get_tag(): new. It parses tag and returns HTMLTag object.
+         html_parse_tag(): also parses <a> tags and 'href' attributes.
+       * src/textview.c: textview_write_link(): new. It creates link string.
+
+2003-03-10
+
+       * src/compose.c: compose_wrap_line_all_full(): fixed an infinite
+         loop / crash bug (thanks to Darko Koruga).
+         compose_write_to_file(): put correct charset element when
+         conversion failed but want to send anyway.
+
+2003-03-10
+
+       * src/headerview.c: headerview_show()
+         src/textview.c: textview_write_line(): remove unreadable characters
+         from displayed strings to prevent crashes on multi-byte
+         environments.
+       * src/codeconv.[ch]: conv_unreadable_locale(): new. It was separated
+         from conv_localetodisp().
+
+2003-03-10
+
+       * src/procmsg.c: procmsg_cmp_by_subject()
+         src/summaryview.c: summary_cmp_by_subject(): ignore Re: when
+         comparing subjects.
+       * src/utils.[ch]:
+         subject_compare_for_sort()
+         trim_subject_for_sort(): new.
+
+2003-03-07
+
+       * version 0.8.11
+
+2003-03-07
+
+       * src/defs.h: added -i option to the default sendmail command.
+
+2003-03-06
+
+       * src/codeconv.[ch]: added missing character encodings and locales.
+
+2003-03-06
+
+       * src/procmsg.[ch]:
+         procmsg_get_mark_sum()
+         procmsg_open_mark_file()
+         procmsg_read_mark_file(): take FolderItem instead of directory
+         path.
+
+2003-03-05
+
+       * src/codeconv.c: conv_encode_header(): fixed a bug that spaces
+         which is on the wrap boundary would be lost when encoding long
+         non-ascii strings (thanks to Sergey Vlasov).
+         Don't force wrapping within a long word until it reaches hard line
+         length limit (998 characters) (workaround for the breakage of
+         long address list with no spaces).
+
+2003-03-03
+
+       * src/prefs_account.c: fixed compile failure when using neither
+         gpg or ssl.
+
+2003-03-03
+
+       * src/codeconv.c: fixed UTF-8 locale support.
+         conv_get_code_conv_func(): return conv_noconv if locale encoding
+         is UTF-8. Return conv_latintodisp on ISO-8859-* to locale encoding
+         conversion.
+         conv_convert(): call conv_iconv_strdup() instead of
+         conv_codeset_strdup().
+         conv_codeset_strdup(): moved some codes into conv_iconv_strdup().
+
+2003-02-28
+
+       * src/prefs_account.[ch]: added an option to use command output for
+         signature.
+       * src/compose.c: compose_insert_sig(): use command output if
+         specified.
+         compose_insert_command_output(): new.
+
+2003-02-28
+
+       * src/main.c: main(): remove lock socket if sylpheed is not running
+         when --status command is executed.
+         lock_socket_remove(): new.
+
+2003-02-27
+
+       * src/codeconv.c: conv_codeset_strdup(): don't convert if current
+         codeset is US-ASCII (or POSIX).
+
+2003-02-21
+
+       * src/codeconv.c: conv_iconv_strdup(): try to skip invalid characters
+         and continue conversion.
+
+2003-02-21
+
+       * src/summaryview.c: summary_selected(): always update widget
+         sensitivity.
+
+2003-02-20
+
+       * src/utils.c: tzoffset_sec(): fixed a bug that displayed wrong
+         date in timezones more than GMT+12 or less than GMT-12.
+
+2003-02-18
+
+       * src/prefs_common.[ch]
+         src/sourcewindow.c: remember the size of source window.
+       * src/md5.c: fixed a compile problem with gcc 3.3.
+
+2003-02-17
+
+       * src/about.c: about_create(): modified the copyright notice.
+
+2003-02-17
+
+       * src/colorlabel.c: don't use pixmaps for label color rect but draw
+         rectangles so we can respect the color map of palette based visuals
+         (fixes the long time crashes on Solaris - thanks to Alfons
+         Hoogervorst).
+
+2003-02-17
+
+       * src/procheader.c: procheader_date_parse(): made month string case
+         insensitive.
+       * src/prefs_filter.c: prefs_filter_close(): fixed the crash when the
+         selection list is empty.
+
+2003-02-14
+
+       * src/quote_fmt_parse.y: removed gettext translatable strings.
+       * src/unmime.c: unmime_header(): remove broken characters when
+         code conversion failed.
+       * src/codeconv.c: conv_encode_header(): fixed a bug that broken
+         headers if long words more than 75 characters are entered.
+
+2003-02-13
+
+       * src/prefs_account.c: prefs_account_receive_create()
+         src/utils.c: to_human_readable(): made units translatable.
+
+2003-02-13
+
+       * src/codeconv.c: isprintableeuckanji(): don't allow more than 0xf4
+         at first byte (fixes abort() problem of glibc).
+       * src/html.c: html_read_line(): remove characters which can't be
+         displayed on the current locale.
+
+2003-02-11
+
+       * src/utils.[ch]:
+         trim_subject_for_compare(): renamed from trim_subject().
+         trim_subject(): new. It removes [...] or (...) at the beginning
+         of subject.
+       * src/prefs_folder_item.c
+         src/folder.[ch]:
+         added options for trimming summary / compose subject.
+       * src/summaryview.c: summary_set_header(): trim subject if the folder
+         option is set.
+       * src/compose.c: compose_reply_set_entry(): trim subject if the folder
+         option is set.
+
+2003-02-09
+
+       * src/codeconv.c:
+         LBREAK_IF_REQUIRED(): don't break lines before first word (fixes
+         X-Face header problem).
+         conv_encode_header(): allow up to 97 characters for one word.
+
+2003-02-07
+
+       * src/filter.c: filter_match_condition(): fixed the bug that
+         second condition ignored regex.
+       * src/news.h: NewsGroupInfo: use guint for message numbers
+         (fix count in grouplist dialog) (thanks to Thorsten Maerz).
+
+2003-02-06
+
+       * src/codeconv.c: conv_encode_header(): fixed a segfault bug
+         on code conversion failure.
+         conv_get_charset_str()
+         conv_get_charset_from_str(): optimized using hash table.
+
+2003-02-06
+
+       * src/quote_fmt_parse.y:
+         SHOW_MESSAGE_NO_SIGNATURE, SHOW_QUOTED_MESSAGE_NO_SIGNATURE:
+         treat only "\n-- \n" as a signature separator.
+
+2003-02-05
+
+       * src/gtkutils.[ch]: gtkut_ctree_node_prev(): new.
+       * src/summary_search.c: summary_search_execute(): search collapsed
+         nodes, too.
+
+2003-02-05
+
+       * src/codeconv.c:
+         conv_unreadable_latin(): include 0x7f as an unreadable character.
+         conv_localetodisp(): don't remove 8bit characters by default.
+         conv_get_current_charset()
+         conv_get_outgoing_charset(): return ISO-8859-15 if "@euro" is
+         appended at the last of locale name.
+       * src/compose.c: compose_write_to_file(): show from and to encoding
+         when code conversion failed.
+
+2003-02-04
+
+       * version 0.8.10
+
+2003-02-04
+
+       * src/procmsg.h: WRITE_CACHE_DATA(): little speed improvement
+         (thanks to Colin Leroy).
+       * src/mh.c: mh_get_msginfo(): added NULL check (thanks to Thorsten
+         Maerz).
+
+2003-02-03
+
+       * src/textview.c: textview_write_line(): don't convert if conv is
+         NULL.
+
+2003-02-03
+
+       * src/codeconv.[ch]:
+         renamed conv_guess_encoding() to conv_guess_ja_encoding().
+         conv_localetodisp(): new. It removes unreadable characters from
+         (assumed) current locale string.
+         conv_codeset_strdup(): convert into ISO-8859-1 if dest_code is
+         NULL and current locale encoding is US-ASCII.
+         conv_get_code_conv_func(): return conv_ustodisp if US-ASCII is
+         specified for destination charset.
+       * src/textview.c: textview_write_line(): use conv_localetodisp()
+         instead of strncpy2() if conversion failed.
+
+2003-01-31
+
+       * src/codeconv.c: conv_iconv_strdup()
+         src/imap.c:
+         imap_modified_utf7_to_locale()
+         imap_locale_to_modified_utf7(): use ICONV_CONST macro to remove
+         a warning on some systems.
+       * src/codeconv.c: conv_iconv_strdup(): flush iconv() output and
+         truncate buffer.
+         Return NULL instead of incomplete string if conversion failed.
+
 2003-01-30
 
        * src/summaryview.c: summary_execute(): select appropriate node