clean up some warnings
[claws.git] / ChangeLog
index 51d3d7066e1b2f20e89294025eeb8dca8a5a28b9..e8550521175eb2db8ff7a3e55b4a65a6c27d8ef1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,327 @@
+2002-08-09
+
+       * src/compose.c: compose_write_to_file(): clearsign message body
+         if specified.
+         compose_clearsign_text(): new. Replaces the string with clearsigned
+         one.
+       * src/prefs_account.c: added an option for clearsign.
+       * src/rfc2015.c: rfc2015_clearsign(): new.
+         pgp_sign(): added a flag for clearsign.
+       * src/utils.[ch]: get_tmp_file(): return newly allocated unique file
+         name (needs to be freed by caller).
+         str_write_to_file(), file_read_to_str(): new.
+
+2002-08-08
+
+       * src/procmsg.c: procmsg_read_mark_file(): check key duplication
+         to avoid memory leak.
+
+2002-08-08
+
+       * src/base64.c: include string.h for memcpy().
+       * src/gtksctree.c: use macro ABS() instead of function abs().
+       * src/prefs_account.c
+         src/prefs_common.c: renamed 'send' to 'p_send' so as not to
+         conflict with the function send() in sys/socket.h.
+       * src/mainwindow.c: commented out the unnecessary functions.
+       * src/utils.c: canonicalize_file_replace(): correct warning message.
+
+2002-08-08
+
+       * src/utils.[ch]: get_tmp_file(): new. Returns the directory for
+         temporary files in ~/.sylpheed/.
+       * src/main.c: create temporary directory in ~/.sylpheed/.
+       * src/compose.c
+         src/inc.c: create temporary files in ~/.sylpheed/, and modified
+         the file name.
+         compose_exec_ext_editor(): fixed a bug that failed to create the
+         temporary file if g_get_tmp_dir() returned directory other than
+         '/tmp'.
+
+2002-08-08
+
+       * src/utils.c: copy_file(): check if dest_bak != NULL when unlinking.
+
+2002-08-08
+
+       * src/utils.[ch]: canonicalize_file_replace(): fixed a bug that fails
+         to replace the file when the given file and temporary file are not
+         on the same filesystem.
+         copy_file(): added a flag whether to keep backup.
+         move_file(): added a flag whether to overwrite the destination file.
+
+2002-08-07
+
+       * src/socket.[ch]: fixed the linking failure when IPv6 is enabled.
+       * src/select-keys.c: modified key selection dialog.
+
+2002-08-07
+
+       * src/socket.[ch]: my_gethostbyname(): new.
+       * src/utils.c: get_domain_name(): return FQDN instead of short
+         hostname (thanks to Bob Woodside).
+       * src/template.c: made the debug messages less verbose.
+
+2002-08-06
+
+       * src/prefs_common.[ch]: removed obsolete default sign key setting.
+       * src/utils.c: canonicalize_file(): correct the error check of
+         fwrite().
+
+2002-08-06
+
+       * src/compose.c: compose_write_to_file():
+         canonicalize line endings before encrypting/signing (this will fix
+         interoperability with other MUAs).
+         Removed unnecessary strdup.
+         Don't encrypt/sign draft message.
+       * src/utils.[ch]:
+         canonicalize_file(), canonicalize_file_replace(): new.
+       * src/passphrase.c
+         src/select-keys.c: changed g_message() to debug_print() and
+         g_warning().
+       * src/mimeview.c: mimeview_check_signature(): removed unnecessary
+         MIME structure scanning.
+       * src/textview.c: textview_add_part(): show signature status in
+         TextView.
+       * src/rfc2015.c
+         src/sigstatus.c: modified translatable strings and some MIME
+         headers.
+
+2002-08-06
+
+       * src/procmsg.c: procmsg_save_to_outbox(): don't forget to remove
+         the temporary file when saving from queue.
+2002-08-05
+
+       * src/compose.c
+         src/passphrase.[ch]
+         src/rfc2015.[ch]
+         src/prefs_account.[ch]
+         src/prefs_common.[ch]: merged GnuPG stuff from the claws branch.
+         Modified some messages.
+
+2002-08-05
+
+       * src/textview.c: textview_scan_header(): fixed a memory leak
+         (thanks to Alfons).
+
+2002-08-04
+
+       * src/prefs_actions.c: execute_actions(): put create_io_dialog()
+         in right conditional block.
+
+2002-08-01
+
+       * src/compose.c: compose_wrap_line_all(): fixed character buffer
+         initialization.
+       * src/utils.c:
+         log_print()
+         log_message()
+         log_warning()
+         log_error(): add time stamp to log messages.
+
+2002-07-31
+
+       * src/socket.c:
+         corrected a typo (HAVE_SYS_SELECT -> HAVE_SYS_SELECT_H)
+
+2002-07-31
+
+       * src/socket.c: implemented socket I/O timeout.
+         fd_recv(): new.
+       * src/pop.c: check errors and return error value correctly.
+
+2002-07-31
+
+       * src/prefs_actions.c: made the action's input/output dialog display
+         without delay. Made the dialog modal instead of making window
+         insensitive. Also cleaned up its UI.
+
+2002-07-29
+
+       * implemented --attach command line option.
+       * src/main.c:
+         Cmd::attach_files: new member to store file paths.
+         parse_cmd_opt(): added --attach option. --compose option is implied.
+         prohibit_duplicate_launch()
+         lock_socket_input_cb(): added "compose_attach" message.
+       * src/compose.c
+         src/mainwindow.c
+         src/textview.c: renamed compose_new_with_recipient() to
+         compose_new(), and added an argument for attachment files.
+
+2002-07-29
+
+       * src/logwindow.c: freeze GtkText widget while hidden.
+         log_window_append(): changed the header for message and warning.
+
+2002-07-26
+
+       * src/news.c: implement automatic cache expiration.
+         news_delete_expired_caches(): new.
+         news_get_article_list(): fixed a bug that nonexistent messages
+         were not removed from list.
+       * src/procmsg.[ch]: procmsg_get_last_num_in_msg_list(): renamed
+         procmsg_get_last_num_in_cache().
+       * src/utils.[ch]: remove_expired_files(): new.
+
+2002-07-26
+
+       * src/inc.c:
+         inc_mail(): force summary refresh when using external command for
+         incorporation.
+         inc_all_account_mail(): fixed a bug on spool checking failure.
+
+2002-07-25
+
+       * version 0.8.1
+
+2002-07-24
+
+       * src/addressbook.c
+         src/editaddress.c
+         src/editgroup.c
+         src/editldap_basedn.c
+         src/importldif.c
+         src/prefs_common.c: fixed memory leaks which didn't free strings
+         gtk_editable_get_chars() returned. And minor code cleanups.
+       * src/importldif.h
+         src/vcard.h: removed C++-style comments.
+
+2002-07-23
+
+       * src/codeconv.c: conv_encode_header(): fixed a problem in encoding
+         strings which include both multi-byte and us-ascii characters.
+
+2002-07-23
+
+       * src/utils.c: remove_numbered_files(): don't try to unlink()
+         directories.
+       * src/codeconv.c:
+         conv_get_code_conv_func(): return conv_anytodisp() if charset is
+         not specified.
+         conv_unmime_header_overwrite()
+         conv_unmime_header(): do conv_anytodisp() before decoding header.
+
+2002-07-14
+
+       * version 0.8.0
+
+2002-07-14
+
+       * src/compose.c: added 'Tools/Actions' menu.
+
+2002-07-12
+
+       * src/base64.c: a minor fix for BASE64VAL() macro.
+
+2002-07-11
+
+       * src/base64.c: base64_decode(): fixed a buffer overrun bug.
+
+2002-07-11
+
+       * src/codeconv.c
+         src/compose.c
+         src/smtp.c
+         src/unmime.c
+         src/base64.[ch]: rewrote the BASE64 encode / decode routines.
+         base64_encode(), base64_decode(): new.
+       * src/rfc822.[ch]: removed.
+       * COPYING
+         src/about.c: removed the copyright notice for fetchmail.
+
+2002-07-10
+
+       * src/codeconv.c
+         src/procmime.c
+         src/unmime.[ch]: rewrote the MIME decode routines.
+         unmime_header()
+         unmime_quoted_printable_line(): new.
+       * src/procheader.c:
+         procheader_get_one_field()
+         procheader_get_unfolded_line(): remove also CR.
+
+2002-07-08
+
+       * libkcc: removed from the source tree.
+       * COPYING
+         src/about.c: removed the copyright notice for libkcc.
+       * src/codeconv.c: conv_guess_encoding(): check for ASCII code first
+         for speedup.
+       * src/prefs_actions.c: removed unnecessary spaces/tabs.
+
+2002-07-05
+
+       * src/prefs_actions.c: comply with the coding style.
+         Modified the UI design.
+       * src/mainwindow.c: main_window_set_menu_sensitive(): enable Actions
+         menu when multiple messages are selected.
+
+2002-07-05
+
+       * src/prefs_actions.[ch]: merged the 'Actions' feature from claws.
+         update_actions_menu(): simplified the menu deletion.
+       * src/mainwindow.c: added 'Actions' menu to Tools and Configuration.
+
+2002-07-04
+
+       * src/codeconv.[ch]: implemented conv_jistoeuc(), conv_euctojis(),
+         conv_sjistoeuc(), and conv_guess_encoding(). Removed the dependency
+         to libkcc.
+
+2002-07-04
+
+       * configure.in: added check for strchr.
+
+2002-07-02
+
+       * src/prefs_common.[ch]
+         src/inc.c: added an option to inhibit receive error dialog.
+
+2002-07-01
+
+       * src/account.c: account_find_from_address(): support multiple
+         addresses in header.
+
+2002-06-28
+
+       * src/gtksctree.[ch]: changed GtkSCTree::anchor_row from gint to
+         GtkCTreeNode* so that it won't become invalid after the row move.
+         Removed dependency to gtkutils.c.
+       * src/prefs_common.[ch]
+         src/summaryview.c: summary_selected(): added an option to show
+         message when cursor keys are pressed on summary view.
+
+2002-06-28
+
+       * configure.in
+         src/Makefile.am
+         src/compose.c: changed "host_alias" to "target_alias" so that it
+         shows the correct system name on cross-compiling (thanks to
+         Patrice Mandin).
+
+2002-06-27
+
+       * src/prefs_account.[ch]: added the option menu to force an
+         authentication method for SMTP AUTH.
+       * src/send.c
+         src/smtp.[ch]: smtp_from(), smtp_auth(): added an argument to
+         specify the authentication method for SMTP AUTH.
+         smtp_ehlo(): allow AUTH responses that don't comply with the RFC.
+
+2002-06-25
+
+       * src/prefs_common.[ch]
+         src/compose.c: enabled "Wrap on input".
+
+2002-06-25
+
+       * src/summaryview.[ch]
+         src/mainwindow.c: added "Go to/{Prev,Next} new message" menu.
+         Made some code cleanups.
+
 2002-06-20
 
        * src/folderview.c