3 * src/inc.c: connection_check_cb(): fixed a bug that caused
4 segmentation fault if connection was not established.
5 * src/compose.c: compose_create(): even if set_autobcc or set
6 autoreplyto is checked and the entries are empty, show them.
10 * src/textview.c: textview_show_mime_part(): modified the messages.
11 TEXT_INSERT(): new macro.
13 * src/prefs_display_header.c: prefs_display_header_create():
14 modified the text of checkbutton.
18 * src/mimeview.c: added "Open with..." to the context menu.
19 * src/summaryview.c: summary_print()
20 src/inputdialog.c: input_dialog(): fixed memory leaks.
21 * src/textview.c: textview_show_mime_part(): updated the description.
22 * src/send.c: implemented sending progress dialog.
23 (TODO: automaton should be used.)
24 send_progress_dialog_create(), send_progress_dialog_destroy(),
26 send_message_smtp(): made it update the dialog for each stage.
27 * src/utils.[ch]: get_left_file_size(): new. Get the left bytes
29 * src/summaryview.c: summary_show(): when open_inbox_on_inc is set,
30 go to first unread message even if folder is same as previous.
31 * src/prefs_common.c: made color selection dialog transient, and
32 made escape key close the dialogs.
38 * src/select-keys.c: delete_event_cb(): removed `;' from its end.
39 * src/recv.c: recv_write(): changed the interval to 10msec.
40 * src/prefs_display_header.c: modified the layout of the dialog,
41 and made the hidden headers list insensitive when `Show other
42 headers' is not checked.
43 * src/textview.c: changed strcasecmp() and strncasecmp() to
44 the corresponding glib functions.
45 * src/inc.c: get_spool(): make a temporary file in the home
62 src/sigstatus.c: fixed a bug that accidentally destroyed dialogs
63 when closed them with delete_event (thanks to DINH).
64 Added *_deleted() and *delete_event() which handle delete_event
69 * src/prefs_display_header.c: merged some changes from claws branch:
70 prefs_display_header_create(): allow reordering of headers by
72 prefs_display_header_find_header(): new function.
73 prefs_display_header_clist_set_row(): don't allow duplicates.
74 * src/prefs_account.c: prefs_account_receive_create(): changed
75 the label of the check button.
79 * src/pop.c: pop3_getsize_list_recv(): if sscanf() failed, break
81 * src/inc.h: removed cur_msg_bytes from Pop3State.
82 * src/inc.c: pop3_recv_func()
83 src/recv.[ch]: made the second arguments of RecvUIFunc current
85 recv_write(): made it call UI func if elapsed time is greater
87 * src/recv.c: recv_write(): changed the interval to 300 usec.
88 * src/textview.c: textview_show_header(): if header is Subject,
90 * src/utils.[ch]: unfold_line(): new.
91 * src/procheader.[ch]: procheader_get_header_array(): new.
92 * src/prefs_display_header.c: updated defaults.
96 * some merge from the sylpheed-claws branch.
97 It allows user to specify displayed headers in message view.
98 (symbol names were also changed.)
99 * src/prefs_display_header.[ch]
100 src/displayheader.[ch]: new.
101 * src/prefs_display_header.c:
102 removed prefs_display_headers_other_headers_toggled().
103 removed "(New)" row from the list.
104 * src/defs.h: added DISPLAY_HEADER_RC.
105 * src/prefs_common.c: prefs_message_create(): added a button for
106 opening the display header setting dialog.
107 * src/prefs_common.h: added show_other_header and disphdr_list
109 * src/procheader.[ch]: procheader_get_header_list_from_file(),
110 procheader_get_header_array_asis(): new.
111 procheader_get_header_list(): modified so that it takes FILE
112 pointer for its argument.
113 procheader_header_array_destroy(), procheader_header_free(): new.
114 * src/main.c: main(): made it call prefs_display_header_*_config().
115 * src/textview.c: textview_scan_header(): modified so that it
116 sorts headers according to user setting.
117 src/textview_show_header(): made it call
118 textview_make_clickable_parts().
119 textview_make_clickable_parts(): added GdkFont to its arguments,
120 and removed GtkText from them.
124 * implemented auto-checking of new mail based on the patch from
125 Pierric Descamps (thanks!).
126 * src/inc.c: added inc_autocheck_timer_init(),
127 inc_autocheck_timer_set(), inc_autocheck_timer_remove(),
128 inc_autocheck_func() for auto-checking of new mail.
129 * src/main.c: main(): call inc_autocheck_timer_init().
130 * src/prefs_common.c: prefs_receive_create(): activated the
131 auto-checking UI. Added prefs_common_cancel(), and connected
132 some signals to that.
136 src/account.c: Disabled auto-checking while opening the dialog.
137 * src/headerview.c: headerview_show_xface(): fixed a bug that
138 showed a warning when header pane was hidden.
144 src/recv.c: removed non-blocking socket mode support since it
147 src/inc.c: modified the messages of incorporation dialog.
151 * src/utils.h: made u32 the typedef of guint32.
152 added BIG_ENDIAN_HOST macro that is used by md5.c.
153 * src/md5.c: renamed md5c.c. Fixed the indentation. Fixed a bug
154 that didn't calculate MD5 correctly on big endian machines.
160 * src/folder.c: folder_init(): added the method imap_remove_folder.
161 * src/folderview.c: folderview_rm_imap_folder_cb(): made it
162 actually remove folder from IMAP4 server.
163 * src/imap.[ch]: imap_create_folder(): made it actually create
164 folder on IMAP4 server.
165 imap_remove_folder(): added.
166 imap_create(), imap_delete(): added.
167 * src/summaryview.c: summary_execute_delete(): don't check trash
168 if folder type is not F_MH.
169 * thanks to Ishihara for the above changes.
171 ac/check-type.m4: better wint_t typedef detection (renamed
172 sv_CHECK_TYPE to SYLPHEED_CHECK_TYPE).
176 * src/recv.c: recv_bytes_write(): fixed another bug that caused
177 infinite loop and buffer overrun.
181 * src/socket.[ch]: renamed sock_read() and fd_read() to
182 sock_gets() and fd_gets() for preventing confusion.
183 Added sock_read() and fd_read() which is the wrapper of read().
184 * src/recv.c: recv_bytes_write(): fixed a bug that caused infinite
185 loop. Use sock_read() instead of fd_read().
192 src/smtp.c: use sock_gets() instead of sock_read().
193 * src/imap.c: imap_session_new(): fixed the error detection
198 * src/inc.c: made it displays current read bytes to the dialog.
199 * src/pop.c: recv_write(): call UI function before editing
204 * src/progressdialog.c: progress_dialog_create(): modified the
205 size of dialog and made it stretchable.
207 src/esmtp.c: smtp_ok(), esmtp_ok(): fixed a bug that didn't
208 process an error response correctly (thanks to Ohmasa).
209 * src/pop.[ch]: added pop3_getsize_list_send(),
210 pop3_getsize_list_recv().
211 * src/recv.[ch]: added recv_set_ui_func() that makes recv_write()
212 call the callback function for each sock_read().
213 * src/inc.h: in Pop3State, renamed bytes to total_bytes, and added
214 cur_msg_bytes, cur_total_bytes, and sizes.
215 * src/inc.c: added inc_pop3_recv_func() that updates the progress
216 bar for each sock_read().
220 * src/mh.c: mh_is_maildir_one(): modified so that it uses
223 2001-04-25 Werner Koch <wk@gnupg.org>
225 * src/mh.c (mh_is_maildir_one, mh_is_maildir): New.
226 (mh_scan_tree_recursive): Do not include Maildir style directories
229 Changed the use of integers to describe sockets by an more abstract
232 * src/automaton.h (struct _Automaton): Add help_sock.
233 * src/automaton.c (automaton_input_cb): Changed source to be
234 SockInfo and use wrapper for gdk_input_add.
236 * src/send.c (SEND_EXIT_IF_ERROR): Adjusted tests and removed test
237 for invalid socket because this is now done in sock_close. Set
239 (SEND_EXIT_IF_NOTOK): Set closed sock to NULL.
240 (send_smtp_open): Use only SockInfo.
242 * src/news.c (news_session_new): Use SockInfo here.
243 (news_session_destroy): Ditto and set sock to NULL.
245 * src/nntp.c: Use SockInfo instead of integers
250 * src/inc.c (inc_pop3_session_do): Removed sock_sockinfo_free. Put
251 gdk_input_add into a wrapper.
253 * src/esmtp.c: Changed socket descriptors to use SockInfo.
254 * src/esmtp.h: Ditto, included socket.h.
255 * src/session.h (struct _Session): Likewise.
256 * src/imap.c (imap_open): Return SockInfo ptr and not an integer.
257 Removed access to internal data of SockInfo. Changed all callers
258 and functions to take SockInfo.
259 (imap_session_new): Use sock_close here.
260 (imap_session_destroy): Ditto.
262 * src/compose.c (compose_exec_ext_editor): Replaced sock_write by
265 * src/main.c (app_will_exit): Close lock socket using fd_close.
266 (prohibit_duplicate_launch): Use fd_xxx functions instead of sock_xxx.
267 (lock_socket_input_cb): Ditto.
269 * src/socket.h, src/socket.c: Prepared SockInfo structure to use
270 glib channels. Changed all sock_xxx to use SockInfo instead of an
272 (sock_connect_unix, sock_open_unix, sock_accept): Renamed to ..
273 (fd_connect_unix, fd_open_unix, fd_accept): .. this and changed all
275 (fd_read, fd_write, fd_close): New.
276 (sock_sockinfo_free): Removed.
277 * src/socket.c (sock_connect_nb): Use close instead sock_close here.
278 (sock_connect): Ditto.
282 * config.h.in: removed.
283 * ac/Makefile.am: added gnupg-check-typedef.m4 to MACROS.
286 src/progressdialog.[ch]
287 src/pixmaps/complete.xpm
288 src/pixmaps/continue.xpm
289 src/pixmaps/error.xpm: applied the patch from Leandro Pereira
290 that displays the state of message incorporation (thanks!).
291 * src/inc.c: made the progress dialog change the text of status.
295 * removed po/*.gmo, configure, stamp-h.in, aclocal.m4, Makefile.in
297 * COPYING: removed RSA copyright notice.
298 * removed po/sylpheed.pot, po/stamp-cat-id, po/cat-id-tbl.c.
299 * configure.in: added the check of sys/utsname.h.
301 2001-04-24 Werner Koch <wk@gnupg.org>
303 Merged most of the changes from the W32 branch in.
305 * configure.in: Require gpgme >= 0.2.1
307 * acconfig.h (HAVE_U32_TYPEDEF): New.
308 * ac/gnupg-check-typedef.m4: New.
309 * configure.in: Check for u32 type and the size of some types.
310 * src/utils.h: Define the u32 type and related constants.
312 * src/about.c (about_create): Removed the note about MD5. We are
313 not any longer using the RSA Inc. implementation.
314 * src/md5ify.c, src/md5ify.h, src/md5global.h: Removed.
315 * src/md5c.c, src/md5c.h: Replaced by an FSF implementation and
316 renamed the function to standard lowercase convention. Changed all
318 (md5_hex_digest): New.
319 (md5_hmac): Add hmac function by Martin Schaaf with some
322 * src/esmtp.c, src/esmtp.h (md5_hex_hmac): Removed.
324 * src/pop.c (pop3_getauth_apop_send): Replaced the md5_digest by
325 the new md5_hex_digest function.
327 * src/about.c: Include utsname.h only if available
329 * src/utils.c, src/utils.h (get_home_dir): New to better cope with
330 special Windoze requirements. Changed all calls to
331 g_get_home_dir() to this function.
333 * simple-gettext.c: New.
335 * src/main.c (main): Issue a warning if GnuPG is not properly
338 * src/sigstatus.c, src/sigstatus.h: New.
339 * src/rfc2015.c (check_signature): Use the sigstatus window and
340 get the status texts from a utility function.
342 * src/select-keys.c: Removed the global select_keys var and
343 pass an allocated one along all functions.
344 (set_row): Display only keys capable of encryption.
345 (update_progress): Replaced the progressbar by
346 a windmill and a text showing for which key we are collecting
347 info. Removed progressbar everywhere else and updated callers.
349 * src/prefs_common.c (prefs_privacy_create) [__MINGW32__]: Do not
350 display the grab button.
354 * src/prefs_common.[ch]
355 src/procheader.c: applied the patch from Darko Koruga that
356 allows user to define their own format for displaying date in
357 summary view using strftime() (thanks!).
358 * src/prefs_common.c: prefs_quote_colors_dialog()
359 src/mainwindow.c: main_window_reflect_prefs_all(): made it
360 update message colors if the colors setting is changed.
361 * src/main.[ch]: made it remember the startup directory.
362 * src/export.c: export_mbox(): made it initially chdir to the
364 * src/filesel.c: filesel_select_file(): made it open the startup
369 * added option to warn about queued messages on exit [sergey]:
371 * src/compose.c: compose_queue(): call folder_item_scan()
372 and folderview_update_item() after queueing.
373 * src/folderview.c: folderview_update_node(): draw the queue
374 folder in bold font if there are queued messages.
375 * src/mainwindow.c: queued_messages(): new function.
376 app_exit_cb(): display warning if there are queued messages
377 if warn_queued_on_exit is set.
378 * prefs_common.[ch]: add warn_queued_on_exit option.
380 * src/mainwindow.c: moved queued_messages() to main.c, and renamed
381 it to get_queued_message_num().
382 * src/main.c: app_will_exit(): moved warning dialog code from
383 app_exit_cb(), and added manage_window_focus_in().
385 * enhanced GnuPG key selection support [sergey]:
387 * src/select-keys.c: updated to newer version from Win32
388 branch with support for selecting arbitrary keys.
389 * src/prefs_account.c: added the Privacy tab to the account
391 prefs_account_privacy_create(),
392 prefs_account_sign_key_set_data_from_radiobtn(),
393 prefs_account_sign_key_set_radiobtn(): new functions.
394 * src/prefs_account.h: new preferences sign_key_type, sign_key_id.
395 * src/rfc2015.c: set_signers(): new function.
396 pgp_sign(): add the account parameter, call set_signers().
397 rfc2015_sign(): add the account parameter, pass it to pgp_sign().
398 * src/rfc2015.h: rfc2015_sign(): updated prototype.
399 * src/compose.c: pass the current account to rfc2015_sign().
403 * src/mbox.c: export_to_mbox(): fixed a memory leak bug.
407 * src/mbox.[ch]: renamed export_mbox() to export_to_mbox().
408 Fixed a memory leak bug.
409 * src/export.[ch]: added for exporting folder to mbox.
410 * src/import.[ch]: made import_mbox() take default folder.
411 Added description to the dialog.
412 * src/summaryview.c: summary_show(): fixed a bug that kept the
413 toolbar buttons insensitive after receiving messages.
415 src/import.c: fixed a bug that caused quitting of the program
416 when OK or Cancel button was clicked several time.
417 * src/prefs_common.[ch]
418 src/addressbook.c: added "Add address to destination when
419 double-clicked" option.
423 * src/prefs_common.[ch]: reorganized the items of settings,
424 and added Message tab.
425 * src/main.c: parse_cmd_opt(): added command line option --version.
426 * src/mh.c: made it unset MSG_DELETED flag when moved/copied to
428 * src/prefs_common.[ch]
429 src/headerview.[ch]: the header pane can be toggled now.
430 * src/prefs_common.[ch]
431 src/textview.c: page scroll step is now selectable between
432 one page and half page.
433 * src/mbox.[ch]: added export_mbox() that reads all messages
434 in a folder, and store them into one mbox file.
438 * src/prefs_filter.[ch]: separated filter setting code from
439 prefs_common.c, and made it a separate dialog.
446 src/inc.c: fixed the bug that made Sylpheed crash when clicking
447 Cancel button while getting new mail (thanks to Sergey Vlasov).
448 * src/xml.c: xml_build_tree()
449 src/addressbook.c: fixed a bug that caused infinite loop if an
450 illegal XML file was given.
455 src/inc.c: applied the patch from Sergey Vlasov that fixes the
456 problem when the "Go to inbox after receiving new mail" option
457 was turned off (thanks!).
461 * src/xml.[ch]: modified so that it supports some characters which
462 must be escaped, and multiple-lined tag.
464 src/addressbook.c: modified so that it escapes some characters
465 like '<', '>', '&', ''', '"'.
475 src/summaryview.[ch]: applied the patch from Darko Koruga that
476 adds copy message operation for the MH folders (thanks!).
477 * src/imap.c: disabled slash to dot conversion.
478 * src/imageview.c: fixed a bug that displayed an old image when
479 loading of a image failed (thanks to Darko Koruga).
483 * src/procmsg.c: procmsg_read_cache(): added setvbuf() to speed up
484 cache reading (thanks to Sergey Vlasov).
487 prefs_common.[ch]: applied the patch that keeps the same folder
488 after receiving new mail (thanks to Sergey Vlasov).
490 src/utils.[ch]: moved get_quote_level() to utils.c.
494 * ac/Makefile.am: added.
496 configure.in: added ac directory.
500 * src/summaryview.c: summary_filter(): made it move messages
501 immediately if immediate_exec option is set.
502 * src/prefs_common.[ch]
504 src/gtkutils.[ch]: applied the message coloring patch from
505 Stephen Anthony with some modification (thanks!).
507 src/mimeview.c: modified the behavior of MimeView (thanks to
512 * src/utils.c: copy_file()
513 src/mh.c: applied (and modified) the patch from Darko Koruga
514 that enables to move messages across file systems (thanks!).
516 src/utils.[ch]: applied the patch from Jorge Van Hemelryck
517 that converts the date of messages to the local time (thanks!).
518 * src/utils.c: remote_tzoffset_sec(): fixed a bug that the signs
519 of one-letter timezone were reversed.
520 * src/folder.c: folder_item_add_msg(): put the assertion for the
521 add_msg() method (thanks to TAKANO).
525 * src/procmime.c: procmime_decode_content(): fixed a bug that
526 corrupted quoted-printable encoded messages when they include
527 `=00' (thanks to Masahiro Tomita).
530 src/summaryview.c: modified the DnD behavior of MIME view
531 (thanks to HIRAMATSU).
535 * src/about.c: applied the patch from Sergey Vlasov that fixes
536 the appearance of the about dialog (thanks!).
537 * src/prefs_common.[ch]
543 src/textview.[ch]: applied the GnuPG support patch which had
544 ported from the sylpheed-win32 branch (thanks to Sergey Vlasov).
545 * INSTALL, INSTALL.jp: updated the description about GnuPG.
549 * src/utils.[ch]: added references_list_append() that parses
550 References header and makes it string list.
551 * src/compose.c: modified so that too long References header is
552 truncated, garbage characters are removed, and header is tidied
553 up (thanks to Matthias Intemann).
557 * src/addr_compl.c: applied the address completion bugfix patch
558 from Alfons Hoogervorst (thanks!).
562 * src/gtksctree.c: modified so that the tree_select_row signal
563 actually pass the column number.
564 * src/summaryview.c: summary_selected(): made generic mark and
565 unread mark can be toggled with clicking of the columns.
566 Added summary_mark_row_as_read() and summary_mark_row_as_unread().
568 src/prefs_account.c: applied the layout fix patches from Sergey
569 Vlasov, and adjusted some widths of GtkEntry widgets.
570 * src/prefs.c: prefs_dialog_create(): enable notebook to take focus.
571 * src/inc.c: inc_start(): modified so that authentication dialogs
572 show server name too (thanks to Sergey Vlasov).
576 * src/mimeview.c: mimeview_key_pressed(): fixed a bug that caused
577 segmentation fault when a malformed multipart message is shown
578 (thanks to Sergey Vlasov).
579 * src/summaryview.c: summary_display_msg(): made it focus to the
580 summary view if the MIME list is empty.
584 * src/pixmaps/deleted.xpm
586 src/summaryview.c: added deleted and mark icon.
587 * src/gtkutils.c: gtkut_widget_init(): changed gtk_widget_destroy()
588 to gtk_widget_unref().
589 * src/addr_compl.c: start_address_completion(): fixed the bug that
590 displayed warning when the address book was empty (thanks to
595 * src/summaryview.c: summary_show(): fixed a memory leak bug
596 (thanks to ChiDeok Hwang).
597 * src/pixmaps/forwarded.xpm
598 src/pixmaps/replied.xpm
600 src/pixmaps/unread.xpm
605 src/summaryview.[ch]: applied the patch from Marc Hoper
606 that adds replied and forwarded mark to replying or forwarding
607 messages (thanks!). And new and unread mark were replaced
608 by the icons David Mehrmann created (thanks!).
609 * src/summaryview.c: made the width of unread and MIME column
611 * src/prefs.c: prefs_config_parse_one_line(): made it check the
612 '=' separator (thanks to Sergey Vlasov).
616 * src/prefs_common.[ch]: moved smooth scroll option to the
618 * src/textview.c: made the one-line scroll also perform smooth
623 * src/prefs_common.[ch]
624 src/textview.c: applied the smooth scroll patch from Setoh and
629 * src/summaryview.c: summary_attract_by_subject(): rewritten it
630 using hash table for speeding up.
631 * src/prefs_account.c: made filter_on_receive TRUE by default.
632 * src/mainwindow.c: reordered menu items.
636 * src/gtkutils.c: gtkut_clist_bindings_add(): fixed a bug that
637 caused address completion not to accept space and enter key.
642 src/codeconv.c: fixed a bug that didn't encode non-ASCII headers
644 * src/compose.c: fixed a bug that didn't decode some headers
645 correctly when replying or reediting drafts (thanks to Sergey
650 * src/gtkutils.[ch]: added gtkut_widget_init() that modifies the
651 behaviors of some classes.
652 * src/main.c: main(): made it call gtkut_widget_init() first.
653 * src/summaryview.c: summary_create(): removed the key binding code.
657 * src/procmsg.[ch]: modified for the sake of readability.
661 * src/mainwindow.c: changed "Clean trash" to "Empty trash".
662 Added new menu items for folder manipulation.
663 allsel_cb(): made it change the target between summary view and
664 message view according to the input focus.
665 Removed "Select all" from Summary submenu.
666 * src/folderview.[ch]: added functions for creating/renaming/deleting
668 * src/procmsg.[ch]: made "marked" and "deleted" flag permanent, and
669 removed "important" flag.
670 * src/summaryview.c: added summary_set_row_marks() that sets style
671 of a row according to the flags, and made some functions use it.
672 * src/mainwindow.c: allsel_cb(): modified so that it selects
673 summary view correctly if message view is toggled off.
677 * src/socket.c: sock_connect_by_getaddrinfo(): fixed a resource
678 leak bug of socket, and rewrote the routine.
679 * src/inc.c: inc_mail(), inc_all_account_mail(): fixed a bug that
680 displayed the wrong unread number in the folder tree if a
681 folder was open and new messages arrived at the folder.
682 * src/socket.c: sock_connect_by_getaddrinfo(): fixed a bug
687 * src/mh.c: mh_move_msg(), mh_move_msgs_with_dest(): made it
688 check the existence of the destination file.
689 * src/procmsg.c: procmsg_set_flags(): made it count the last
690 number of the message list (and fixed a bug that didn't open
691 newly arrived message).
695 * src/prefs_common.c: prefs_send_create(): removed EUC-JP and
696 Shift_JIS from the outgoing codeset.
704 * src/send.c: send_message_queue(): modified so that it finds
705 the account from the `From' and the server name of the queued
707 * src/account.[ch]: added account_find_from_smtp_server() that
708 finds an account from the specified address and SMTP server.
712 src/sourcewindow.[ch]: integrated the viewing source patch from
713 DINH V. Hoà (thanks!).
717 * src/addr_compl.[ch]
719 src/compose.c: applied the enhanced address completion patch
720 from Alfons Hoogervorst (thanks!).
721 * src/addr_compl.c: replaced g_assert() with g_return(_val)_if_fail().
722 * src/folder.c: folder_init()
723 src/folderview.c: folderview_drag_motion_cb()
724 src/procmsg.c: procmsg_clean_trash()
725 src/summaryview.c: summary_start_drag()
726 src/imap.[ch]: integrated the IMAP4 move/remove function patch
727 from Suzuki Mio (thanks!).
731 * src/main.c: parse_cmd_opt(): made the --compose option realize
733 * src/utils.[ch]: execute_async(): supported quoted arguments
735 strstr_with_skip_quote(), strsplit_with_quote(): quote-supported
736 version of g_strsplit().
737 * src/mimeview.c: mimeview_view_file()
738 src/prefs_common.c: added single quotation mark around the file
750 src/utils.[ch]: applied the security fix patch from Dmitry V.
751 Levin with some modification (thanks!). Added my_tmpfile() to
753 * src/main.c: added --receive-all command-line option.
757 * src/socket.c: sock_connect_thread(): fixed a bug that didn't
758 compile if both multithread and IPv6 are enabled (thanks to
761 src/compose.c: applied a patch from Jason McCarver that allows
762 FIFO for signature file (thanks!).
763 * src/textview.c: made some more refactoring.
764 * src/socket.c: sock_accept(): changed socklen_t to gint.
769 src/textview.c: some code cleanups.
775 src/textview.c: integrated the patch from Alfons Hoogervorst that
776 fixes some glitches in clickable URI and enables mail addresses
777 clickable, and enables the --compose command line option to
778 specify address (thanks!).
785 src/prefs_account.[ch]
786 src/Makefile.am: applied the SMTP AUTH patch from Martin Schaaf
787 and fixed its a few bugs (thanks!).
788 * src/textview.c: textview_key_pressed(): made it don't move focus
790 * src/main.c: parse_cmd_opt(): modified the help message.
791 * src/html.[ch]: added empty_line to HTMLParser and modified
792 the parser routines a bit.
796 * src/html.c: added eucjp_symbol_list, and added some characters
797 to ascii_symbol_list.
801 * src/codeconv.[ch]: added a member `charset' and `charset_str'
803 * src/html.[ch]: added the symbol list for ISO-8859-1 codeset.
804 html_parser_new(): made it change the symbol hash table
805 according to the character set of the document.
806 html_parse_special(): made it recognize character code number.
810 * src/textview.c: added textview_show_html() that parses HTML and
812 textview_show_part(): made it call textview_show_html() if
813 the part is text/html.
814 * src/html.[ch]: implemented HTML parser.
818 * src/codeconv.[ch]: added CodeConverter, and its methods
819 (conv_code_converter_new(), conv_code_converter_destroy(), and
821 * src/textview.c: removed the branches by HAVE_LIBJCONV and
822 rewrote them using CodeConverter.
826 * src/mbox.c: proc_mbox(): workaround for duplicated From_ line.
830 * src/codeconv.c: some code cleanups.
834 * src/mainwindow.c: main_window_popup(): fixed a bug that didn't
835 popup the main window correctly.
836 * src/codeconv.h: fixed a bug that the definition of CS_EUC_CN and
837 CS_EUC_TW was reversed (thanks to Sakamoto).
844 src/socket.[ch]: applied the patch from Hiramatu that enables
845 prohibition of multiple execution and remote control with
846 command line option (thanks!).
850 * src/summaryview.c: summary_button_pressed(), summary_selected():
851 made it toggle the view if middle button is clicked while message
853 summary_drag_data_get(): fixed a memory leaking.
855 src/compose.c: compose_write_headers(): modified so that it uses
856 host_alias for X-Mailer or X-Newsreader field.
862 * src/folderview.c: fixed a bug that prevented a folder from being
863 created if there were already folders that have the same name
864 somewhere at another place.
868 * src/folderview.c: folderview_update_all(): fixed a bug that
869 caused segmentation fault when a folder was selected after
870 updating the folder tree.
871 * src/compose.c: compose_send(): fixed a locking bug.
872 compose_write_headers(): fixed a bug that referred to cur_account.
873 compose_convert_header(): made it check the arguments.
877 * src/main.c: some cleanups and added --help option.
881 * src/send.c: re-enabled user-defined domain name setting.
882 * src/utils.c: is_next_mbs(): changed the size of temporary
883 multibyte array to MB_CUR_MAX.
884 strdup_mbstowcs(): added error check to mbstowcs().
885 strdup_wcstombs(): added error check to wcstombs().
886 * src/addr_compl.c: get_address_from_edit(): made it check the
887 return value of strdup_mbstowcs().
888 * src/codeconv.c: conv_encode_header(): added error checking
889 to strdup_mbstowcs().
893 * src/utils.c: log_error(): changed g_error() to g_warning() so
894 that it doesn't abort.
896 * src/addr_compl.c: add_address(): fixed a bug that aborted the
897 program if the name or the address is empty.
898 get_address_from_edit(): supported multibyte characters.
899 * configure.in: fixed a typo.
900 * src/send.c: re-enabled user-defined SMTP port setting.
906 * configure.in: added --enable-gpgme option, and disabled GPGME
908 * made GPGME related members in MimeInfo not used if disabled.
909 * src/rfc2015.c: some cleanups for warning.
914 * Makefile.am: modified bzip2 option.
918 * src/procmime.[ch]: added MIME_APPLICATION_OCTET_STREAM to
920 * src/mimeview.c: mimeview_view_file(): made it do nothing if
921 the MIME type is application/octet-stream.
922 * src/folderview.c: folderview_update_all(): made it show modal
923 dialog while updating folders.
924 * src/folderview.c: folderview_update_all(): fixed a bug that
925 didn't remove the dialog.
929 * src/mimeinfo.c: merged the patch from John E.P. Hynes that
930 launches the attached file using metamail (thanks!).
931 * src/procmime.[ch]: added procmime_get_tmp_file_name().
933 src/addr_compl.[ch]: merged the patch from Alfons Hoogervorst
934 that enables address completion in the address entry on the
935 composition window (thanks!).
936 * src/addr_compl.c: get_all_addresses(), read_address_book():
937 modified so that it uses xml_free_tree() for freeing the address
942 * src/utils.c: remove_dir_recursive(): fixed a bug that failed to
943 remove the current directory (thanks to Maki).
944 * src/summary_search.c: added `Select all matched' option to the
945 search dialog (thanks to Takahashi).
946 * src/pixmaps/stock_mail_attach.xpm
947 src/pixmaps/tb_address_book.xpm
948 src/compose.c: added some toolbar icons contributed from
949 Leandro Pereira (thanks!).
953 * src/rfc2015.c: passphrase_cb(): *finally* fixed a bug that caused
954 segmentation fault when the passphrase dialog was cancelled.
955 Hided the passphrase in the debug message.
956 * src/about.c: about_create(): fixed a bug that failed to compile
957 when none of the features were used.
958 * src/foldersel.c: foldersel_set_tree(): made it display all
960 * src/inc.c: inc_start(): fixed a bug that showed password dialog
961 continuously if it was cancelled.
962 * src/summaryview.c: summary_write_cache(): put an assertion after
963 folder_item_get_cache_file() to prevent the crash.
964 * thanks to Maki for the above four fixes.
965 * src/utils.h: added #include <alloca.h>.
969 * src/rfc2015.c: changed some g_message() used for error messages
974 * src/procmsg.[ch]: modified READ_CACHE_DATA() macro so that
975 it can handle a string data of which length >= BUFFSIZE.
976 * src/rfc2015.c: rfc2015_encrypt(): changed return to `goto failure'.
977 * src/pixmaps/stock_mail_receive_all.xpm
978 src/pixmaps/stock_mail_reply_to_all.xpm
980 src/mainwindow.c: main_window_toolbar_create(): added new toolbar
981 icons contributed from David Mehrmann (thanks!).
982 * src/inc.[ch]: overhauled the architecture so that it don't create
983 and destroy progress dialog for each incorporation in `get all'
988 * src/mh.c: mh_scan_tree_recursive(): fixed a bug that mistook
989 sub folders named `inbox', etc. as special folders.
990 * src/rfc2015.c: rfc2015_encrypt(): fixed a bug that didn't quote
995 * applied the GnuPG patch from Werner Koch (thanks!).
996 * removed Mixmaster support.
997 * src/rfc2015.c: changed g_error() to g_warning() and modified some
999 * src/about.c: about_create(): modified compiled-in features list.
1003 INSTALL.jp: updated.
1004 * src/select-keys.c: create_dialog(): modified the layout.
1005 * src/headerwindow.c
1007 src/logwindow.c: made it raise the window if the window is already
1009 * src/prefs_common.[ch]: added an option for immediate execution.
1010 * src/summaryview.c: made it execute immediately when messages are
1011 moved or deleted if immediate_exec option is turned on.
1012 * src/summaryview.c: summary_delete(), summary_move_selected_to():
1013 moved summary_step() before summary_execute().
1014 * src/folderview.c: folderview_update_all(): made it scan folder
1016 * src/compose.c: compose_write_headers(): made it don't add
1017 In-Reply-To header if to_list is empty.
1019 2001-01-09 Werner Koch <wk@gnupg.org>
1021 * configure.in, acconfig.h: Check for GPGME.
1022 * ac/: New directory for local autoconf macros.
1023 * src/Makefile.am: Add support for GPGME
1025 * src/main.c (idle_function_for_gpgme): New.
1026 (main): Register this function.
1028 * src/about.c: Add a note about GPGME.
1030 * src/rfc2015.c, rfc2015.h: New.
1032 * src/mimeview.c (mimeview_show_message): Check signature.
1033 * src/procmime.c (procmime_scan_message): Ditto.
1035 * src/messageview.c (messageview_show): Add decryption stuff.
1037 * src/compose.c (compose_write_to_file): Encrypt the file if requested.
1038 (compose_toggle_encrypt_cb): New
1039 (compose_toggle_mixmaster_cb): New, just to be prepared for
1041 (compose_write_headers): Suppress some headers in mixmaster mode.
1043 * src/prefs_common.c (prefs_common_create): Add Privacy notebook sheet.
1044 (prefs_privacy_create): New. Also some new structures etc.
1045 * src/compose.c (compose_create): Set encrypt button to prefs default.
1046 * src/compose.h (struct _Compose): Add use_encryption, use_mixmaster.
1048 * src/compose.c (compose_send): Add missing unlock before one return.
1052 * src/gtksctree.[ch]
1054 src/summaryview.[ch]: applied the patch from Hiramatu that enables
1055 DnD from the summary view to the folder view and fixes some other
1057 * src/mainwindow.c: scan_tree_func(): fixed a bug that caused
1059 * src/imap.c: quoted user name in LOGIN and folder name in SELECT.
1060 * src/gtksctree.c: gtk_sctree_button_press(): fixed a bug that
1061 didn't toggle expansion of node.
1065 * src/imap.c: applied the patch from Nishimura that updates the
1066 message list more precisely and reads the message flags (thanks!).
1067 * src/textview.c: textview_show_header(): made X-Newsreader field
1069 * src/summaryview.c: summary_show(): made it flush events when
1074 * src/summaryview.c: applied the patch from Alfons that enabled
1075 the horizontal scrollbar of summary view (thanks!).
1079 * src/compose.c: compose_cb(): fixed a bug that didn't open the
1080 composition window right after launching the program.
1081 * src/setup.c: scan_tree_func(): fixed a bug that caused
1088 * src/textview.c: textview_set_font(): fixed a bug that caused
1089 segmentation fault if the mode of the text widget was changed
1090 between multibyte and singlebyte while the region was selected
1096 src/summaryview.c: made it unable to delete or move messages when
1098 * src/prefs_common.c
1099 src/news.c: added the option for maximum news article number.
1103 * src/compose.c: compose_send(): changed the location of temporary
1104 file. Made it use the default account if all of tried account
1105 aren't mail one, and made it show alert dialog and abort when even
1107 * src/prefs_account.c: prefs_account_get_new_id(): made it preserve
1109 prefs_account_open(): made it fill in personal information
1110 according to the default account when creating a new account.
1111 * sylpheed.spec.in: added to autogenerate sylpheed.spec with the
1112 proper version number (thanks to BONAIM).
1114 Makefile.am: added entries for sylpheed.spec.in.
1118 * src/compose.[ch]: modified so that it can change account
1120 * src/send.[ch]: modified so that it doesn't see cur_account.
1121 * src/prefs_account.c: modified so that news setting doesn't
1122 show SMTP server entry.
1126 * src/folderview.c: fixed a bug that didn't sort special folders
1127 correctly when a new folder is created or renamed.
1131 * src/compose.[ch]: enabled to select account at composing window.
1132 * src/folderview.c: made it display unread number next to folder
1134 * src/prefs_common.[ch]: added the option for unread number display.
1138 * src/compose.[ch]: integrated news posting patch from DINH V. HoÃ
1139 and made many modifications (thanks!).
1140 compose_write_headers(): made the spaces in newsgroups removed.
1141 Supported Followup-To.
1142 compose_destroy(): got the objects removed properly.
1143 * src/news.c: merged news_post_to_group() and news_post() since
1144 they doesn't have to do multiple posting.
1145 * src/import.c: import_destsel_cb(): fixed a bug that failed to
1146 import into the selected folder.
1147 * src/prefs_account.c: modified the interfaces.
1152 prefs_common.c: changed "SHIFT-JIS" to "Shift_JIS" since the
1153 string is registerd to IANA.
1154 * src/nntp.[ch]: added nntp_post().
1155 * src/news.[ch]: added news_post() and news_post_to_group().
1159 * src/account.c: account_edit_open()
1160 src/mainwindow.c: new_account_cb(): made it unable to edit
1161 accounts if some composing windows are open.
1165 * src/folder.[ch]: added folder_set_name().
1166 * src/account.c: made a folder name of IMAP4/NNTP become the same
1167 as the name of account.
1171 * src/summaryview.c: summary_filter_func(): fixed a bug that failed
1178 * src/mbox.c: fixed a bug that didn't incorporate spool file
1179 correctly. Modified so that it recognizes From_ line as separator
1180 of messages even if the previous line isn't empty line.
1181 * src/send.c: send_message_queue()
1182 src/procmsg.c: procmsg_send_queue(): Fixed a bug that printed
1183 warning when it tried to delete a sent message.
1190 src/news.[ch]: modified so that it actually gets news articles.
1191 * src/utils.[ch]: added make_dir_hier() that creates directory
1194 folder_item_get_cache_file(), folder_item_get_mark_file():
1195 made it creates cache directory if it doesn't exist.
1196 folder_add(): made it insert the added folder into the correct
1198 * src/imap.[ch]: modified so that it suits the new folder
1199 architecture. Fixed a bug that caused segmentation fault
1200 if authentication failed at imap_auth().
1201 * src/folderview.c: implemented IMAP4 folder handling routines.
1205 * src/prefs_account.[ch]: added account ID and nntp_server
1206 to PrefsAccount. And added the interface for NNTP server.
1207 * src/folderview.c: modified news folder handling routines.
1208 * src/folder.[ch]: removed cache_dir from RemoteFolder, and
1209 modified folder_item_get_path().
1213 * src/folder.[ch]: added create_folder(), rename_folder(),
1214 remove_folder() to Folder class.
1215 * src/mh.[ch]: added mh_create_folder(), mh_rename_folder(), and
1217 Implemented mh_create_tree() that creates MH directory tree.
1218 mh_rename_folder(): modified so that the paths of sub folders
1220 * src/folderview.c: modified folderview_new_folder_cb(),
1221 folderview_rename_folder_cb(), and folderview_delete_folder_cb()
1222 so that they work properly.
1223 Added folderview_remove_mailbox_cb() and the menu entry that
1224 remove mailbox from folder tree.
1225 * src/setup.[ch]: added for initial setup.
1226 * src/alertpanel.c: modified the appearance of the dialog.
1227 * src/compose.c: fixed compose_save_to_outbox() and
1228 compose_queue() so that it sets flags correctly.
1232 * src/mainwindow.c: modified the strings of toolbar labels.
1236 * src/gtkutils.[ch]: added gtkut_ctree_node_move_if_on_the_edge().
1237 * src/summaryview.c: summary_display_msg(): made it scroll the
1238 list if the message of the edge of that is displayed.
1243 src/mh.[ch]: added functions for moving messages.
1244 * src/procmsg.[ch]: moved procmsg_move_messages_with_dest()
1245 to folder.c and mh.c. Added procmsg_to_folder_hash_table().
1249 * src/utils.[ch]: added get_tmp_file().
1252 src/folder.c: fixed a bug that failed to drop messages.
1253 * src/mh.c: mh_scan_folder(): made it check new, unread, and total
1254 number of the folder.
1258 * src/folderview.c: added special folder setting routine.
1259 * src/folder.[ch]: added a method is_msg_changed().
1260 Implemented folder_find_item_from_path().
1261 * src/summaryview.c: fixed some bugs that wrongly freed FolderItem's.
1262 * autogen.sh: fixed so that the configure can take arguments.
1267 src/mainwindow.[ch]: added main_window_new_mailbox() that asks
1268 the path of mailbox and create the one.
1269 * src/folderview.c: made the folder tree and selected folder
1275 src/folder.c: implemented mh_scan_tree() that scans the folder
1276 recursively and create the tree.
1296 src/summaryview.[ch]
1298 src/Makefile.am: merged the development tree into the cvs tree.
1299 Some functions are not unimplemented yet.
1307 * src/xml.[ch]: supported omitted tag (<tag />).
1308 * src/procmsg.c: procmsg_msg_exist(): fixed a memory leak bug.
1309 * src/imap.c: imap_parse_atom(): fixed a bug that caused
1310 segmentation fault if the subject was empty (thanks to Tsutsui).
1311 * src/folder.[ch]: updated.
1315 * src/xml.[ch]: added xml_parse_file() that parses the whole XML
1316 file specified and returns the tree.
1320 * po/pt_BR.po: fixed some typos that caused segmentation fault.
1326 * src/session.h: added.
1327 * src/folder.[ch]: updated.
1328 * src/compose.c: compose_write_to_file()
1329 src/codeconv.c: conv_get_outgoing_charset_str(): fixed a bug
1330 that put a garbage to charset if the outgoing character set was
1331 specified and non-ascii characters were used in subject.
1335 * src/statusbar.c: statusbar_puts(): fixed a bug that locked the
1336 progress if the status bar was hidden.
1340 * src/folder.[ch]: added for the more object-oriented folder
1348 src/prefs_common.[ch]: made the state of status bar get preserved.
1349 * src/compose.c: compose_insert_sig(): modified so that it doesn't
1350 put a separator if a signature file doesn't exist.
1351 * src/prefs_account.[ch]
1352 src/inc.c: added the option that toggles whether to receive
1353 messages when getting from all accounts.
1355 README.jp: updated the description and added some usages.
1361 src/compose.[ch]: applied the patches from Alfons Hoogervorst
1362 that makes the ruler of composition window graphical (thanks!).
1368 src/prefs_common.c: replaced CS_WINDOWS_1251 with CS_CP1251.
1374 * src/compose.c: turned the color of quoted messages black again.
1378 * src/about.c: added a clickable URI to the Sylpheed home page,
1379 and a list of compiled-in features.
1380 * src/compose.c: made the color of quoted messages blue.
1381 * src/summaryview.c: added `Show all header' to the context menu.
1382 * src/prefs_common.c: removed the threading option from the dialog.
1383 * src/compose.c: fixed a bug that didn't parse the quotation format
1388 * src/compose.c: compose_set_ext_editor_sensitive(): modified so
1389 that it toggles linewrap menu item and tool button.
1390 * src/prefs_common.c: modified the default of the signature
1392 * src/compose.[ch]: added ruler to the compose window.
1393 * src/prefs_common.[ch]: added a member for the state of ruler
1398 * src/headerview.[ch]: added the destroy function.
1399 * src/messageview.c: messageview_destroy(): fixed a memory leak
1400 bug that didn't freed the HeaderView object.
1401 * src/prefs.c: prefs_write_open(): fixed a memory leak bug.
1402 * src/xml.c: xml_close_file(): fixed a memory leak bug (thanks
1403 to Alfons Hoogervorst for the above three memory leak bug fixes).
1412 INSTALL.jp: modified some descriptions.
1416 * src/compose.c: implemented line-wrapping functions.
1417 * src/prefs_common.[ch]: added the settings for line-wrapping.
1418 * src/codeconv.[ch]: added Windows-1251 to the codesets.
1419 conv_jistoeuc(): fixed a bug that caused segmentation fault
1420 when some half-width kana characters appeared.
1421 * src/summaryview.c: summary_select_all(): made it show message
1422 on the status bar if the number of messages is large.
1426 * src/compose.c: compose_reply(), compose_quote_parse_fmt():
1427 modified so that it parses the quotation mark too.
1428 Added %I that means the initial of sender to the format.
1429 * src/codeconv.[ch]: added GB2312 and Big5 to the codesets.
1430 Fixed a bug that set the wrong outgoing codeset.
1432 src/prefs_common.c: modified the menu item of Chinese codeset.
1437 src/prefs_common.[ch]: modified so that outgoing charset is
1438 saved as a string, not a number.
1442 * src/textview.c: textview_set_font(): changed the scheme of
1443 selecting between font and fontset. And changed the default
1445 * src/headerview.c: headerview_show_xface(): made it ignore
1447 * src/codeconv.c: conv_codeset_strdup(), conv_get_code_conv_func():
1448 modified so that it consider the source codeset as ISO-2022-JP if
1449 it is NULL and the current locale is Japanese.
1453 * src/textview.c: textview_destroy(): fixed a bug that caused
1454 segmentation fault if textview->msgfont is NULL (thanks to
1457 src/defs.h: applied the patch from Yanase that enables to
1458 save the shortcuts of the menus (thanks!).
1462 * src/mainwindow.[ch]: added main_window_set_menu_sensitive() that
1463 toggles the sensitivity of menu items.
1464 * src/summaryview.c: renamed summary_set_popup_sensitive() to
1465 summary_set_menu_sensitive(), and made it set the sensitivity of
1470 * src/textview.c: textview_init(): fixed a bug that didn't disable
1471 the theme engine of GtkText (thanks to Hiramatu).
1472 * src/compose.c: compose_quote_parse_fmt(): added %n and %N that
1473 means the full name of sender and the first name.
1474 * manual/ja/*.??ml: updated to the latest version.
1480 * src/defs.h: separated the definitions from main.h and applied the
1481 patch from TOGAWA that sets DEFAULT_SPOOL_PATH and MAXPATHLEN
1482 from the system headers (thanks!).
1483 * src/codeconv.c: conv_get_current_charset(): fixes for lt_LT and
1485 * src/textview.c: textview_set_font(): modified so that it sets
1486 the correct font when the locale is multi-byte.
1487 textview_destroy(): added proper codes for destruction.
1488 textview_show_header(): fixed the coloration of X-Mailer.
1492 * src/textview.[ch]: made TextView have single-byte and multi-byte
1493 GtkText, and switch between them according to the given codeset.
1494 * src/compose.c: compose_create(): modified the font setting
1499 * src/textview.[ch]: moved the message font variable into TextView.
1500 textview_set_font(): modified so that it uses gdk_font_load()
1501 if the given codeset is US-ASCII or ISO-8859-*.
1509 src/compose.c: workaround for the 8bit code issue (used
1510 gdk_font_load() instead of gdk_fontset_load() when the locale is
1517 * src/compose.[ch]: added `Draft' tool button.
1518 * src/imap.c: imap_parse_envelope(): fixed a parsing bug.
1519 * README, README.jp: added the explanation of the locale setting.
1523 * src/compose.c: made it overwrite the previous draft message when
1524 reedited the draft and saved it again.
1525 * src/procmsg.[ch]: added procmsg_msg_exist() that examine whether
1526 the message really exists.
1527 * src/folderview.[ch]: added folderview_scan_folder_a() and
1528 folderview_scan_folder_foreach_a() that scan the specified
1529 folders for each folderviews.
1530 * src/mainwindow.[ch]: removed main_window_scan_folder() and
1531 main_window_scan_folder_all().
1532 Added `Reedit' to the menu.
1533 * src/import.[ch]: removed MainWindow from the argument of
1535 * src/summaryview.c: removed the unnecessary items from the popup
1536 menu. Changed summary_reedit_cb() to summary_reedit(), and made
1541 * src/compose.h: added a member msginfo to Compose.
1542 * src/procmsg.[ch]: added procmsg_msginfo_copy() that duplicates
1547 * src/summaryview.c: made the the popup menu change the sensitivity
1548 according to the context. Fixed a bug that showed the `clean trash'
1549 dialog repeatedly if `D' key was pressed when the focus was on the
1551 * src/pixmaps/unread.xpm: changed the color of unread mark to blue.
1555 * src/main.c: fixed g_thread initialization.
1559 * src/codeconv.c: added pt_BR to locale_table.
1560 * src/prefs_common.c: prefs_send_create(): added `US-ASCII',
1561 `ISO-8859-1', and Japanese codeset to the option menu of outgoing
1562 codeset when not using libjconv.
1563 * src/compose.c: fixed the bug on saving draft again.
1567 * src/compose.c: compose_write_headers(): fixed a bug that failed
1568 to write headers if To: was empty when saving draft.
1574 src/headerwindow.[ch]
1576 src/messageview.[ch]
1580 src/procheader.[ch]: modified so that they can handle queue folder
1583 src/summaryview.c: implemented draft-reediting function.
1586 src/mimeview.c: replaced *(GtkWidget **) with the macro
1591 * src/procmsg.[ch]: procmsg_msginfo_free(): fixed a memory leak bug.
1592 Added MSG_QUEUED and MSG_DRAFT to MsgFlags, and made it set them
1593 if the folder is QUEUE_DIR or DRAFT_DIR.
1600 src/messageview.c: modified the border of the headerview.
1601 * src/gtkutils.h: added the macro GTK_WIDGET_PTR() that casts
1602 an Sylpheed object to GtkWidget.
1603 * src/utils.c: remove_return(), remove_space(): fixed a bug that
1604 possibly caused segmentation fault.
1607 src/summaryview.c: implemented `forward as an attachment'.
1608 * src/utils.[ch]: open_uri(): brought on URI opening function from
1609 textview.c and manual.c.
1616 src/prefs_common.[ch]: removed `Reply with quote', and added
1617 `Reply to all', and added the option that decides whether to
1618 quote message on replying.
1622 * src/folderview.c: modified so that it uses gtkut_wait_for_draw()
1623 instead of GTK_EVENTS_FLUSH() for statusbar redraw.
1626 src/prefs_common.c: added Baltic (ISO-8859-4,13) to the code sets.
1627 * src/compose.c: compose_send(): modified so that it shows error
1628 dialog when failed to send a message.
1632 * src/account.c: account_edit_close(): fixed a bug that didn't set
1633 current account when creating an account for the first time.
1634 * configure.in: added es to ALL_LINGUAS.
1638 * src/codeconv.c: conv_codeset_strdup(): made it use libkcc if
1640 conv_get_code_conv_func(): modified so that it doesn't convert
1641 codeset if it is unknown.
1642 * src/folderview.c: folderview_update_msg_num(): modified style
1647 * src/codeconv.c: conv_codeset_strdup(): modified so that it sets
1648 codesets automatically if the arguments are NULL.
1649 * src/textview.c: textview_write_line(): made it output warning
1650 message on the text view if conversion failed.
1654 * README, README.jp: modified the author of the manual.
1658 * src/headerview.[ch]
1659 src/messageview.[ch]: modified so that it uses GtkLabel widget
1661 * src/codeconv.c: conv_unmime_header(): modified so that it deletes
1662 unreadable codes if the current locale is EUC-JP and libjconv is
1670 src/textview.c: modified so that it parses MIME message more
1672 * src/imap.c: imap_parse_address(): fixed a bug.
1676 * src/procmsg.[ch]: added procmsg_get_message_file_path().
1677 * src/recv.c: recv_bytes_write(): added CR+LF -> LF conversion
1679 * src/imap.[ch]: changed the name of the member `group' in
1680 IMAPSession to `mbox'.
1681 imap_gen_send(): modified so that it doesn't output the password
1683 Modified session destroying routine.
1684 * src/folderview.c: folderview_write_cache(): made it preserve
1685 the IMAP folder list.
1686 * src/procmime.c: procmime_scan_multipart_message(): fixed a bug
1687 that showed boundary at the end of an attached RFC822 part.
1688 * src/prefs_common.c: changed the default of toolbar style to
1693 * src/imap.c: imap_get_uncached_messages(): modified so that it
1694 doesn't get the cached envelopes.
1695 imap_session_get_message_info(): made it read only the cache
1696 if the session is not established.
1697 * src/procmsg.c: procmsg_set_flags(): supported IMAP folder.
1698 * src/news.c: news_get_article_info(): made it read only the cache
1699 if the session is not established.
1703 * src/textview.c: textview_write_line(): fixed a memory leak bug.
1704 * src/folderview.[ch]: made it create IMAP4 folders from the
1705 account information.
1706 * src/imap.[ch]: imap_session_get(): modified so that it creates
1707 IMAP4 session from the account information.
1711 * src/imap.[ch]: added for IMAP4 support.
1712 * src/summaryview.[ch]
1714 src/recv.[ch]: modified for IMAP4 support.
1715 * src/folderview.c: more IMAP4 implementation.
1716 * src/procmsg.[ch]: added procmsg_get_message_file() that retrieves
1717 the specified message and return the file name.
1718 * src/gtkutils.c: gtkut_widget_wait_for_draw(): fixed a bug that
1719 locked up the process if the given widget was invisible.
1723 * src/folderview.[ch]: added IMAP4-related code.
1729 * src/main.h: added IMAP_CACHE_DIR.
1730 * src/utils.[ch]: added get_imap_cache_dir().
1731 * src/procmsg.h: added M_IMAP to MsgType, and MSG_IMAP to MsgFlags.
1732 Added macro MSG_IS_IMAP().
1733 * src/codeconv.c: added `#include <locale.h>' for setlocale().
1734 * sylpheed.spec: fixed %files section.
1740 * src/codeconv.c: conv_get_current_charset(): made it compare
1741 string with strncasecmp().
1742 * src/compose.c: comopse_reply_parse_header(): workaround for
1743 the malformed References: header generated by OE5 :(
1747 * src/prefs_common.c
1748 src/prefs_account.c: modified the layout of the widgets.
1754 * src/*.[ch]: added copyright notice to the top of the source files.
1755 * src/compose.c: compose_write_attach(): modified filename encode
1760 * src/mainwindow.c: fixed the menu entry of manual.
1762 src/codeconv.[ch]: moved compose_encode_header() into codeconv.c,
1763 and applied the libjconv patch.
1764 * src/utils.c: strdup_mbstowcs(), strdup_wcstombs(): used g_realloc()
1765 to reduce the alloc'd memory to the optimal size.
1766 * src/prefs_common.[ch]: added outgoing codeset option menu.
1767 * src/compose.c: compose_send(): added exclusive lock to prevent
1769 * configure.in: made '--enable-ipv6=no' the default.
1770 * src/compose.c: compose_write_attach(): made it encode the name
1771 of the attached file.
1772 * src/procmsg.c: procmsg_get_last_message_number(): fixed a bug that
1773 didn't check the type of file.
1774 procmsg_move_messages_with_dest(): fixed a bug that failed to
1775 move message if a directory that had the same name existed.
1776 * src/utils.c: is_ascii_str(): modified so that '\t', ' ', '\r', '\n'
1777 are included as ASCII characters.
1782 src/procmime.[ch]: modified so that it actually works when using
1784 * src/codeconv.[ch]: added conv_codeset_strdup() that converts
1785 the codeset of string according to the codeset specified in
1787 * src/utils.[ch]: added is_ascii_str() that determines whether the
1788 string is 7bit-ASCII or not.
1790 src/codeconv.[ch]: moved the character set related functions
1792 * merged the patch and the manual written by BONAIM (thanks!).
1802 src/unmime.[ch]: applied the patch from Higuchi that utilizes
1803 libjconv and enables to handle many locales, including UTF-8
1804 (Unicode) (thanks!).
1805 * src/account.c: modified so that the account isn't changed when
1806 another account is selected on account edit dialog.
1810 * src/prefs_common.[ch]
1811 src/textview.c: added an option that specifies whether to display
1812 short headers on message view.
1813 * src/codeconv.[ch]: added function conv_unmime_header() that
1814 decodes MIME-encoded header and converts the character set.
1815 And added conv_unreadable_latin(), and modified conv_latintodisp().
1816 * src/messageview.[ch]: made the window get closed when escape key
1821 * src/imageview.c: fixed a bug that caused segmentation fault if
1822 message view was in new window.
1823 * src/prefs_common.c: added `xemacs %s' to the external editor
1830 * src/summaryview.c: enabled to open a new message window with
1832 * src/prefs_common.[ch]
1833 src/messageview.c: made it preserve the window size of message
1835 * src/prefs_account.c: added `None (local)' to the option menu of
1840 * Makefile.am: added autogen.sh to EXTRA_DIST.
1844 * src/prefs_common.c: applied the patch from Paul Rolland that
1845 enables font selection dialog (thanks!).
1847 src/utils.[ch]: moved tzoffset() and compose_get_date() of
1848 compose.[ch] into utils.[ch].
1849 * src/main.[ch]: renamed the name of filter file to `filterrc'.
1854 src/utils.[ch]: modified address parsing routine so that it
1855 parses quotes correctly.
1856 * src/textview.c: textview_show_part(): modified so that it shows
1857 the simplified headers if the part is text/plain.
1861 * src/messageview.[ch]
1862 src/summaryview.[ch]
1863 src/mainwindow.c: enabled to open a message in new window.
1864 * src/messageview.[ch]
1867 src/imageview.[ch]: added destroy function, and modified the
1868 key handling routines.
1872 * src/socket.c: sock_connect_by_getaddrinfo(): fixed a bug that
1873 caused segmentation fault (thanks to KUROSAWA).
1874 * src/alertpanel.c: modified so that the focused button is
1878 src/folderview.c: modified so that the order of the buttons of
1879 alert panel will be `Yes', `No'.
1883 * src/utils.[ch]: added execute_async() and execute_command_line()
1884 that execute command line using execvp().
1887 src/procmsg.c: replaced system() with execute_command_line()
1889 * src/procmsg.c: turn back to system().
1890 * src/utils.c: modified execute_command_line().
1894 * src/mainwindow.c: main_window_get_size(): modified so that it
1895 doesn't update the height of SummaryView if MessageView is
1897 * src/compose.[ch]: applied the patch from NAKAGAWA that fixes some
1898 probrems of external editor handling (thanks!).
1900 src/procmime.[ch]: applied the patch from Hiramatu that make it
1901 supports Content-Transfer-Encoding: x-uuencode (thanks!).
1906 src/prefs_common.[ch]: implemented the external editor faculty.
1907 * src/compose.c: compose_attach_property(): fixed some bugs on
1908 changing the property of attached file.
1909 * src/compose.c: fixed some bugs of external editor functions.
1916 src/prefs_common.[ch]
1917 src/summaryview.c: applied the patch from Paul Rolland that
1918 restores the size of widgets when restarting (thanks!).
1920 src/prefs_common.[ch]
1921 src/summaryview.c: applied the patch from Paul Rolland that saves
1922 the width of CTree columns (thanks!).
1926 * src/headerview.c: modified the height of HeaderView.
1927 * src/textview.c: textview_show_part(): made it process the message
1928 as normal text if it is single-part RFC822 message.
1930 src/summaryview.c: some changes around the key handling.
1931 * src/prefs_common.[ch]: substituted the word `assort' with `filter'.
1935 * src/codeconv.[ch]: added conv_latintodisp() for ISO-8859-1 support.
1936 * src/procheader.c: procheader_get_one_field(): fixed a bug that
1937 caused segmentation fault if the first line of the file is space
1938 or tab (thanks to Hiramatu).
1939 * src/mimeview.c: mimeview_drag_data_get(): modified so that the
1940 filename doesn't include G_DIR_SEPARATOR (thanks to Hiramatu).
1941 * src/prefs_account.c
1942 src/prefs_common.c: modified the dialog size.
1943 * src/prefs.c: made the dialog window growable.
1949 * configure.in: removed unnecessary AC_CHECK_FUNC(gettext) that
1950 caused the failure of the detection of libintl.
1952 src/prefs_common.c: implemented `not contain', and modified for
1954 * src/imageview.c: changed alertpanel_error() to g_warning() so that
1955 it doesn't grab mouse events.
1956 * src/compose.[ch]: added compose_list that holds the list of
1957 Compose objects, and added the function compose_get_compose_list().
1960 src/summaryview.c: made it confirm if composing message exists.
1964 * src/compose.c: compose_reply_set_entry(): fixed a bug that caused
1965 segmentation fault when trying to reply the message in the queue
1966 folder (thanks to Kotobuki).
1967 compose_attach_property(): modified the property dialog routine
1968 so that it can handle input error.
1969 * src/mimeview.c: applied the patch from Hiramatu that enables
1970 the drag 'n drop from MimeView (thanks!).
1971 * src/headerview.[ch]
1973 src/procmsg.h: applied the patches for X-Face support from
1974 HIROSHIMA (thanks!).
1978 * src/compose.c: compose_attach_property(): modified so that the
1979 property dialog can actually change the property of attached file.
1984 src/Makefile.am: updated for gdk_imlib.
1985 * added AUTHORS and NEWS.
1988 src/Makefile.am: modified so that configure auto-detects gdk-pixbuf
1989 and gdk_imlib library. And fixed a bug on IPv6 detecting.
1990 * src/imageview.c: supported gdk-pixbuf.
1994 INSTALL.jp: added the mention about built-in image view.
1995 * configure.in: modified so that configure can disable gdk-pixbuf
1996 or/and gdk_imlib library.
2000 * src/imageview.[ch]
2002 src/messageview.[ch]
2003 src/mimeview.[ch]: applied the patches from HIROSHIMA that enables
2004 to display image (thanks!).
2010 * src/summaryview.c: summary_assort_func(): modified to avoid
2011 `not receive' setting.
2015 * src/filesel.c: applied the patch from HIROSHIMA that makes it
2016 remember previous directory when opening the dialog (thanks!).
2017 * src/summaryview.[ch]: added a function summary_redisplay_msg().
2018 * src/mainwindow.c: set_charset_cb(): made it redisplay the message
2019 that is currently shown when the character set is changed.
2023 src/filter.h: applied the patch from Tanaka that enables not to
2024 receive specified messages according to the sorting rule (thanks!).
2028 * src/procmsg.[ch]: added MSG_MIME to the type MsgFlags. And modified
2029 so that it handles MSG_MIME flag, and it scans uncached messages
2030 when cache reading failed even if it is specified not to scan
2032 * src/procheader.c: procheader_parse(): added the determination of
2033 multipart MIME message.
2034 * src/main.h: increased CACHE_VERSION.
2035 * src/summaryview.[ch]: added the `MIME' column that shows whether
2036 a message is multipart or not.
2037 * src/prefs_common.[ch]: added the `MIME' column to the setting of
2039 * added src/pixmaps/clip.xpm.
2041 src/procmsg.[ch]: modified so that it prompts the print command
2046 * src/folderview.c: folderview_create()
2047 src/summaryview.c: summary_create():
2048 src/addressbook.c: addressbook_create(): set the expander style of
2049 CTree to GTK_CTREE_EXPANDER_SQUARE.
2050 * src/compose.c: modified the interface of property dialog.
2054 * src/compose.c: added property dialog for attached file.
2058 * src/procmsg.[ch]: added a function procmsg_print_message() that
2059 prints the given message.
2060 * src/summaryview.c: summary_print(): modified so that it prints
2061 all selected messages.
2062 * src/folderview.c: folderview_select_node(): fixed a bug that
2063 didn't focus on folder tree if inbox was empty when incorporating.
2069 * src/prefs_commmon.[ch]: added `Other' tab and an option for
2070 printing. And moved external browser option to there.
2072 src/summayview.[ch]: added print menu and implemented print
2077 * src/prefs_account.c: made the default value of smtp_server to
2079 * src/folderview.c: folderview_update_msg_num(): modified so that
2080 it doesn't emphasize trash folder even if it has new or unread
2085 * src/filesel.c: filesel_select_file(): (perhaps) fixed a bug that
2086 caused segmentation fault when file selection dialog was closed
2087 and other dialog was open immediately.
2091 * src/compose.c: compose_encode_header(): fixed a bug that caused
2092 infinite loop if wctomb() failed.
2098 * src/mimeview.c: enabled to open an attached file with double click
2099 and popup menu. And cleaned up the code.
2100 * src/procmime.[ch]: added a function procmime_get_part() that
2101 saves the part of multipart message.
2107 src/prefs_common.[ch]
2109 src/utils.[ch]: applied a patch that enables to launch attached
2110 image, audio, and HTML file (thanks to Hashimoto).
2111 * src/filter.c: filter_match_condition(): fixed a bug that caused
2112 segmentation fault if the body of specified filter is NULL. And
2113 made the filter considered as being matched on that case.
2117 * src/summaryview.c:
2118 summary_save_as(): fixed a bug that unabled to save news articles.
2119 summary_display_msg(): added exclusive lock to prevent it from
2120 reading another news article while it is already processing one.
2121 * src/gtkutils.[ch]: added gtkut_widget_wait_for_draw() that waits
2122 the draw signal to be emitted.
2124 main_window_cursor_wait()
2125 main_window_cursor_normal(): added gdk_flush() to change cursor
2128 libkcc/Makefile.am: added EXTRA_DIST for `make dist'. And added
2129 a target `release' to Makefile.am.
2133 * src/socket.c: supported IPv6.
2135 acconfig.h: added checking for IPv6.
2136 * prefs_common.c: changed the default of toolbar_style to icon only.
2140 * initial cvs import.
2141 * updated README and README.jp.
2147 * src/procmime.[ch]: modified the structure of MimeInfo so that it
2148 can be handled as a node of tree.
2149 Added procmime_mimeinfo_free_all() that frees all of the MimeInfo
2151 Added procmime_get_text_part() that scans a message and gets a text
2153 * src/mimeview.c: divided mimeview_scan_multipart_message() into
2154 procmime_scan_multipart_message() and mimeview_set_multipart_tree().
2155 * src/compose.c: compose_quote(), compose_forward():
2156 made it quote the text part of multipart message properly.
2157 Made it preserve the size of Compose window.
2158 * src/prefs_common.[ch]: added compose_width and compose_height to
2160 * src/textview.c: textview_show_part(): some code cleanups.
2161 * src/codeconv.[ch]: added a function conv_get_code_conv_func().
2167 * src/codeconv.[ch]: fixed a bug that showed garbage characters if
2168 the return code of the message was CR+LF. And added
2170 * src/summaryview.c: summary_attract_by_subject(): made it move
2171 the current view point to the selected row when executed.
2172 * src/textview.c: textview_show_part(): modified the character set
2173 determination routine.
2174 * src/folderview.c: folderview_update_msg_num(): fixed a bug that
2175 caused segmentation fault if boldfont was NULL.
2176 * src/compose.c: compose_create(): made it sets itself as the target
2177 of addressbook on window creation.
2181 * src/compose.c: compose_send(): fixed a bug that didn't save
2182 queued message to outbox when failed to send the message (thanks
2187 * src/inc.[ch]: modified so that it changes error message dialog
2188 depending on the results.
2192 * src/mainwindow.c: main_window_create(): set usize of account
2193 button on the status bar to 1 so that it doesn't get expanded
2194 more than necessary.
2195 * src/account.[ch]: account_foreach(): made it abort the iteration
2196 if the function returns nonzero.
2198 src/pop.c: modified so that it shows error message dialog if the
2199 message processing is failed.
2205 * src/mainwindow.c: made it popup account selection menu when
2206 account tool button or account status bar is pressed.
2208 src/prefs.c: suppressed the ENOENT perror messages.
2209 * src/pop.c: made it fall back on LAST command if UIDL failed.
2213 * src/procheader.c: procheader_parse(): fixed a bug that didn't
2214 parse References: header correctly (thanks to YAMAGUCHI).
2220 * src/compose.c: compose_reply_set_entry(): fixed a bug that didn't
2221 cc'd correctly when replying.
2223 src/summaryview.c: sorted out the main menu and the popup menu.
2229 * src/prefs_account.[ch]
2230 src/compose.c: made it be able to set Cc:, Bcc:, and Reply-To:
2231 automatically at composing (thanks to NAKAGAWA).
2235 * src/prefs_common.[ch]
2237 src/main.c: made it selectable whether to ask before cleaning
2239 * src/prefs_common.c: cleaned up the code and the interface a bit.
2240 * src/summaryview.c: modified the unthread functions for speeding
2245 * src/prefs_common.[ch]
2246 src/summaryview.c: made it display recipient on the `From' column
2247 if the address of the sender is the same as the current account
2248 (thanks to NAKAGAWA).
2249 * src/utils.[ch]: added a function extract_address() that extracts
2250 the address from `From:' header string.
2251 * src/mainwindow.c: allsel_cb(): fixed a bug that caused segmentation
2252 fault if `Edit/Select all' was selected when the message view was
2253 hidden (thanks to Tomita).
2257 * src/summaryview.c: modified execution routine so that it only
2258 unthreads nodes that are needed to be unthreaded.
2262 * src/news.c: news_session_get(): implemented the reconnection on
2264 * src/nntp.[ch]: added nntp_mode().
2268 * src/mbox.c: fixed a bug that didn't close mbox FILE pointer.
2269 And support assortment on processing mbox.
2270 * src/inc.c: inc_drop_message(): modified so that it uses hash table
2271 to store the last message number of folders.
2273 src/addressbook.c: modified the behavior of CTree at right-click.
2274 * src/pop.c: pop3_getrange_uidl_recv(): fixed a potential buffer
2275 overflow bug (thanks to Nishiyama).
2282 src/inc.[ch]: implemented management of read message on POP server
2284 * src/utils.[ch]: removed (s)list_remove_all() because it can be
2285 replaced with g_(s)list_free().
2286 * src/summaryview.c: modified the arrangement of menu a bit.
2287 * src/summaryview.c: summary_status_show(): made it doesn't display
2288 server name but newsgroup.
2289 * src/prefs_common.c
2290 src/prefs_account.c: adjusted the calculation routine of dialog
2297 * src/compose.c: compose_reply_set_entry(): modified so that it
2298 cc's to the all addresses on To: and Cc: of the replied message.
2299 And swapped the position of Subject: and To: entry.
2303 * src/procheader.c: modified so that it can handle headers that
2304 aren't separated by space.
2305 * src/socket.c: sock_connect(): added a wait after connection to
2306 prevent lockup (thanks to NINOMIYA).
2312 inc_all_account_mail(): fixed a bug that caused segmentation
2313 fault if no account exist.
2314 * src/mainwindow.[ch]: made receive button unclickable when
2316 * src/compose.c: compose_queue(): fixed a bug that didn't mark
2317 queued message properly.
2318 * src/utils.[ch]: separated code conversion functions into
2325 * src/mimeview.c: mimeview_save_as()
2326 src/summaryview.c: summary_save_as(): made it ask whether to
2327 overwrite the existing file.
2338 src/mbox.c: fixed a bug that failed to check write error when
2339 disk was full and caused the loss of the file.
2343 * src/mainwindow.c: main_window_clean_trash(): made it move focus
2344 to folder view when finished.
2345 * src/utils.[ch]: added code conversion functions for display.
2346 And added strncpy2() that doesn't do zero fill and does
2347 null-termination, unlike original strncpy().
2348 * src/textview.c: modified so that it changes the code conversion
2349 function according to charset. And supported charset=SHIFT_JIS.
2352 src/textview.c: made it possible to force character set of
2354 * src/folderview.c: folderview_select_next_unread():
2355 made it search unread folder from begin if it isn't found.
2361 * src/mainwindow.c: fixed a probrem again that main window was
2362 stretched to the width of the toolbar.
2364 src/utils.c: is_header_line(): modified so that it recognizes
2365 a header which doesn't have a space after colon (thanks to Hotta).
2366 * src/filter.c: added `#include <strings.h>'.
2367 * src/smtp.c: replaced snprintf() with g_snprintf().
2368 * src/Makefile.am: added `-I$(top_srcdir)/intl' to INCLUDES for
2370 * included sylpheed.spec.
2374 * src/prefs_common.[ch]: enabled to set the pixels of line space
2375 and decide whether to leave space on head of lines.
2376 * src/summaryview.c: modified so that it clears message view
2377 when displayed message is removed from the summary view.
2378 * src/mimeview.c: fixed a bug that caused infinite loop if
2379 terminal boundary of multipart message was not found (thanks to
2381 * src/folderview.c: folderview_scan_mailbox(): made it ignore
2383 * src/main.c: made it show warning dialog and exit if the file with
2384 the same name already exists when creating directory.
2389 src/prefs_common.[ch]: made it possible to leave space between
2390 and on head of lines.
2395 src/procmime.[ch]: made it scan /etc/mime.types and determine
2396 the MIME type of the attached file.
2397 * src/summaryview.c: made it clear message view if the summary
2398 is unselected on the execution, and made it move focus to
2399 folder view if the folder becomes empty.
2400 * src/mainwindow.c: fixed a probrem that main window was stretched
2401 to the width of the toolbar.
2402 * src/inc.c: fixed a bug that caused multiple gtk_main() event loop
2403 if `Check new mail on startup' was set.
2407 * src/compose.c: fixed a probrem that had been unable to insert
2408 a file to the current cursor position.
2414 * src/compose.[ch]: added `attach' button to the toolbar. And
2415 replaced the icon of `insert' to the new one.
2419 * src/mainwindow.[ch]: added `Execute' to the toolbar. And added
2420 a function main_window_set_toolbar_sensitive() that sets the
2421 sensitivity of the button of the toolbar.
2422 * src/compose.c: fixed a bug that output wrong header if
2423 a return code was included in the string of the text entry.
2427 * src/mainwindow.[ch]: added `Delete' to the toolbar and the menu.
2428 And added the same items in popup menu to the main menu.
2429 * src/utils.[ch]: added functions for DnD support.
2430 * src/compose.c: implemented file attachment and insertion with DnD
2431 (thanks to Hiramatu).
2437 * src/summaryview.c: fixed a bug that passed null pointer to
2442 * src/alertpanel.[ch]: added functions alertpanel_message(),
2443 alertpanel_notice(), and alertpanel_error(), and cleaned up
2449 src/summary_search.c
2451 src/foldersel.c: made them use alertpanel_error(),
2452 alertpanel_warning() or alertpanel_notice() for error message
2454 * src/summaryview.[ch]: enable sorting in reversed order.
2455 * src/inc.c: made it show error message dialog when failed to
2456 connect or authorize.
2457 * src/utils.h: added a macro FILE_OP_ERROR() and replaced many
2464 * src/compose.c: fixed a bug that didn't save a message to outbox
2466 * src/send.c: send_message_queue(): fixed a bug that included
2467 headers for queueing in the parsed data.
2468 * src/mainwindow.c: send_queue_cb(): made it pop statusbar message
2469 and update queue folder when finished.
2477 src/compose.c: suppressed the warning messages.
2478 * src/mainwindow.[ch]: added next unread message button and menu
2480 * src/summaryview.[ch]: added a function summary_select_next_unread()
2481 that selects and opens next unread message.
2485 * src/prefs_common.[ch]: added a setting to decide whether to open
2486 unread message on entering a folder.
2487 * src/summaryview.c: made it open the first unread message only if
2488 the preference is set.
2489 * src/compose.c: fixed a bug that freed the string obtained from
2494 * src/compose.c: added `Send later' to the menu and the toolbar
2495 which queues the message to send it later.
2499 * src/mainwindow.c: added an interface to resend the queued message.
2500 * src/compose.c: made it show alert dialog when a message will be
2505 * src/procmsg.[ch]: added function procmsg_send_queue() that calls
2506 send_message_queue() for each queued messages.
2510 * src/inc.c: inc_drop_message(): modified so that it drops a message
2511 to the default inbox folder if destination folder doesn't exist.
2512 * src/compose.[ch]: added imput compatible queueing header to the
2514 * src/send.[ch]: added function send_message_queue() that send
2520 acconfig.h: made it enabled to decide wheter to use multithread
2521 or not on configure.
2522 * src/summaryview.c: fixed a bug that made thread when executed
2523 despite of the setting (thanks to Hiroshima).
2524 * src/socket.[ch]: changed the return value of public
2525 sock_connect_*() function to the pointer to SockInfo object.
2526 * src/procmime.c: procmime_scan_mime_header():
2527 fixed a bug that returned NULL if the scanned part had no header
2528 (thanks to shigeri).
2529 * src/procmime.[ch]:
2530 added function procmime_scan_content_disposition() that parses
2531 Content-Disposition header field.
2532 * src/mimeview.c: made it uses filename value in Content-Disposition
2535 * src/inc.c: modified so that password is prompted if the password
2536 on preferences is empty and previous POP3 session has failed on
2541 * src/socket.[ch]: added non-blocking IO mode socket and
2542 multithreaded connection support.
2543 * src/inc.c: supported multithread connection.
2547 * src/folderview.c: made the focus of SummaryView grabbed when
2548 a folder is selected only if the messages exist.
2554 * po/ja.po: fixed a bug that head `/' of a menu label was missing
2555 and caused segmentation fault when opened Compose window.
2561 * src/utils.c: get_domain_name(): modified so that it uses
2563 * src/mimeview.c: added key binds for `Save as' and
2568 * src/recv.c: fixed a bug that failed to return error value
2569 when fputs() failed and caused the loss of received mails when
2570 disk space was not left (thanks to Tajiri).
2571 * src/compose.c: supported Reply-To.
2572 * src/mimeview.c: improved key operation interface.
2578 src/textview.[ch]: supported nested multipart message and
2580 Supported encapsulated RFC822 message.
2584 * src/compose.[ch]: made it free the alloc'd memory for attach
2585 information when the compose window is destroyed.
2586 Placed the attachment list and the text widget onto the paned
2588 Enabled cut/copy/paste/select all on all of the editable widgets.
2589 Implemented removal of attached file and popup menu on attachment
2591 * src/prefs_common.[ch]: added signature separator setting.
2592 * src/alertpanel.[ch]: added a function alertpanel_warning().
2596 * src/prefs_common.[ch]
2597 src/textview.c: made open URI command customizable.
2598 * src/compose.[ch]: implemented multipart MIME message composition
2599 (attachment of file).
2601 src/compose.c: fixed a bug that didn't turn off the GTK+ theme
2608 * src/summaryview.c: added key binds for composing message
2609 (w, a, A, f). Also added other key binds (y, D, Q).
2610 * src/compose.c: made Cc entry take over the Cc of the replied
2612 * src/pixmaps/new.xpm
2613 src/pixmaps/unread.xpm: replaced pixmap image.
2614 * src/procheader.c: procheader_date_get_localtime():
2615 changed the single figures of year from four to two.
2619 * src/inc.c: made it ask password if it is not specified on account
2621 * src/prefs_account.h: added member tmp_pass to struct PrefsAccount
2622 that preserves the temporary password.
2623 * src/inputdialog.[ch]: added function input_dialog_with_invisible()
2624 that prompts input with the string hidden.
2628 * src/compose.c: fixed a bug that didn't turn off the GTK+ theme
2629 engine if message font wasn't specified.
2635 * src/summaryview.c: fixed a bug that stderr was forgotten on
2642 * src/pop.c: fixed a problem that if some POP3 commands returned
2643 error, the previous operations were all cancelled.
2645 src/textview.c: made workaround to the slow down of GtkText widget
2646 when using Pixmap theme or its derivatives.
2650 * src/inc.c: fixed a bug that caused X IO error when exec'd
2651 nonexistent program.
2655 * src/folderview.[ch]: added the member `mtime' to the struct
2657 * src/summaryview.c: made the mtime of the folder checked that is
2659 * src/procmsg.c: added filesystem unchecking mode.
2663 * src/textview.[ch]: implemented clickable URI (thanks to BONAIM).
2664 And made `X-Mailer:' header emphasized if it contains `Sylpheed'.
2668 * src/summaryview.c: summary_write_cache(): permission fix of
2675 * src/headerview.c: added headerview_clear() method.
2676 * src/messageview.c: fixed a bug that didn't clear HeaderView
2677 on messageview_clear().
2684 src/textview.c: added *_clear() method.
2685 * src/summaryview.c: made it clear MessageView when new folder
2690 * src/inc.c: fixed a bug that went to the inbox that was specified
2691 by each account when incorporating from all accounts.
2692 * src/compose.c: made it confirm whether to discard the message or
2693 not when the window will be closed.
2700 src/inc.[ch]: re-supported APOP authentication.
2701 * src/prefs_account.c: fixed a bug that had't saved protocol type.
2703 src/statusbar.h: attached G_GNUC_PRINTF() to printf() like
2705 * src/progressdialog.[ch]: changed the name of class from Progress
2710 * src/summaryview.c: fixed a bug that caused segmentation fault
2711 a news folder was selected without using ja message catalog.
2712 * src/utils.h: attached G_GNUC_PRINTF() to printf() like functions.
2713 * src/Makefile.am: added `-DG_LOG_DOMAIN=\"Sylpheed\"' to
2718 * src/automaton.[ch]
2720 src/pop.[ch]: re-implemented POP3 fetching routines using
2721 finite-state automaton model (thanks to Hiramatu).
2722 * src/inc.c: fixed a bug that caused unwilled quitting of program
2723 when connection to mail server failed. And fixed a memory leak bug.
2724 * src/summaryview.c: made the focus move to FolderView when left
2725 cursor key is pressed.
2729 * src/textview.c: textview_write_line(): modified quotation
2730 discerning routine a bit.
2736 * src/procmime.[ch]: moved MIME decorder from src/textview.c to
2738 * src/mimeview.[ch]: implemented saving of multipart message. And
2739 supported MIME encoded file name.
2740 * src/summaryview.c: implemented `Save as'.
2744 * src/prefs_common.[ch]: implemented an interface for setting the
2745 display item of SummaryView.
2747 src/account.c: made the column titles of those don't take key
2752 * src/textview.c: implemented BASE64 decoding and display.
2756 * src/prefs_common.[ch]: added members which decide whether
2757 each item of SummaryView is displayed or not.
2758 * src/headerwindow.c
2759 src/logwindow.c: made those windows closed when escape key is
2761 * src/headerview.c: disused ScrolledWindow.
2762 * src/base64.c: from64tobits(): modified so that it recognize '\n'
2763 as the last of line as well as '\r'.
2767 * src/headerview.c: disabled word wrap and line wrap of the text
2774 * src/prefs_common.c: prefs_assort_create(): added some headers
2775 to the default headers for assortment.
2779 * src/procmsg.c: fixed a bug that caused segmentation fault if
2780 the permission of a message was denied on parsing the header
2781 (thanks to wakai@UEC univ.).
2782 * src/mimeview.c: made it pass key press event to SummaryView.
2787 src/alertpanel.c: modified font specifications so that they match
2789 * src/utils.[ch]: added wide-character functions for FreeBSD support.
2790 Added the existence check of <wchar.h>.
2792 configure.in: added wint_t and libxpg4 check for FreeBSD support.
2793 * src/unmime.c: modified so that it checks the existence of
2795 Above three are a contribution from Sasaki. Thanks!
2799 * src/main.h: decreased default height of window.
2803 * src/procmime.c: fixed a bug that eliminated the parenthesis in
2804 attribute value that was double-quoted.
2810 * src/mimeview: implemented multipart message parser and display.
2811 * src/procmime.c: procmime_scan_content_type():
2812 supported multiple elements.
2813 * src/textview.c: supported multipart message and clean up the code.
2817 * src/summaryview.c: added size column and sorting by size.
2818 * src/mainwindow.c: added `Sort by size' to sort menu.
2819 * src/procmime.c: fixed a bug that caused buffer overrun and
2821 * src/procmime.c: generalized Content-Type parsing.
2827 * src/textview.c: supported MIME headers and
2828 Content-Transfer-Encoding: quoted-printable.
2832 * src/messageview.[ch]
2833 src/textview.[ch]: separated MessageView into two classes.
2834 * src/procmime.[ch]: added for MIME message handling.
2838 * src/mimeview.[ch]: added for MIME message handling.
2839 * configure.in: added wctype.h and wchar.h existence check.
2844 src/procheader.[ch]: some code cleanups.
2845 * src/messageview.[ch]: integrated HeaderView.
2853 * src/addressbook.c: Made the tree sorted when folder/group is
2855 * src/xml.c: xml_compare_tag(): fixed a bug that caused segmentation
2856 fault if the current tag was empty.
2857 * src/mainwindow.c: made the state of MainWindow saved.
2863 * src/addressbook.c: fully implemented address group editing.
2864 Fixed a bug that wrongly confirmed deletion of address when
2865 escape key was pressed on alert dialog.
2869 * src/addressbook.c: added menu bar. And enabled hierarchical
2871 * src/prefs_account.c: modified so that it allows not to specify
2873 * src/inc.c: inc_account_mail(): modified so that if receiving
2874 server isn't specified, it does nothing.
2880 * src/addressbook.c: almost fully implemented addressbook functions.
2884 * src/compose.c: fixed a bug that caused segmentation fault when
2885 `File->Insert file' was selected more than twice.
2891 * src/addressbook.[ch]: implemented creation of new folder and group,
2892 and deletion of folder and group. And fully implemented
2893 addressbook_delete_object() which deletes the specified object
2898 * src/addressbook.c: implemented registration of address and multiple
2899 appending to Compose address entry.
2900 * src/menu.[ch]: added a function menu_set_insensitive_all() that
2901 turn all menu items insensitive.
2902 * src/folderview.c: some code cleanup.
2907 src/prefs_common.c: fixed a bug on getting the number of CList
2914 * src/folderview.c: fixed a bug that caused warnings when tree was
2915 expanded/collapsed on the first operation.
2919 * src/addressbook.c: addressbook_list_selected(): made it be able
2920 to handle multiple address.
2921 * src/compose.c: modified so that when Bcc: is toggled, corresponding
2922 AddressBook also toggle it.
2924 main_window_create(): moved gtk_widget_set_uposition() before
2925 gtk_widget_show() so as not to cause window flickering.
2926 main_window_get_position(): replaced gdk_window_get_position()
2927 with gdk_window_get_root_origin() to acquire correct window
2928 position (Thanks to shigeri for these modifications).
2932 * src/filesel.c: made it selects home directory on the first time
2937 * src/utils.c: conv_mb_alnum(): modified so that it uses character
2939 * src/foldersel.c: made the folder tree take focus when the dialog
2946 * src/addressbook.c: implemented addressbook_export_to_file() and
2952 src/addressbook.c: fixed the variable name for attribute.
2953 * src/prefs_common.[ch]: added a member `conv_mb_alnum'.
2954 * src/utils.[ch]: added conv_mb_alnum() that converts multi-byte
2955 alphabet and numeric into single-byte one.
2956 * src/messageview.c: messageview_show(): made it pass conv_mb_alnum()
2957 when conv_mb_alnum flag is on.
2963 * src/compose.c: modified so that when Addressbook is open by a
2964 Compose and it is closed, target of Addressbook is reset.
2965 * src/addressbook.c: made it work with Compose.
2969 * configure.in: AM_PATH_{GLIB, GTK}: raised the required version of
2970 GTK+ and GLIB to 1.2.6.
2971 * src/xml.[ch]: more implementation of XML parser.
2972 * src/addressbook.c: implemented addressbook parsing and displaying
2977 * src/folderview.c: folderview_scan_folder(): modified so that if
2978 a folder's message number is zero, set new, unread and total number
2983 * src/xml.[ch]: added for XML handling used by addressbook.
2984 * src/folderview.c: modified so that Trash folder is skipped
2985 when an unread folder is selected automatically by space key.
2989 * src/summaryview.c: fixed a bug that cursor was turned into watch
2990 forever when a newsgroup was selected.
2998 * src/mainwindow.[ch]: implemented counting on setting cursor
2999 type. And modified the menu of `thread view' and `unthread view'.
3000 * src/summaryview.c: enabled thread-toggling on opening folder.
3001 * src/prefs_common.[ch]: added a member `enable_thread' to determine
3002 whether summary view builds thread or not when a folder is open.
3006 * src/summaryview.c: modified popup sensitivity function a bit.
3012 * src/addressbook.[ch]: more implementation of the interface of
3014 * src/compose.c: connected to addressbook object.
3015 * src/folderview.[ch]: folderview_compare_path():
3016 modified so that absolute path is correctly compared.
3017 And added folderview_select_node().
3018 And modified folderview_scan_folder() so that it update the summary
3020 * src/import.c: made it update folder tree when imported mbox.
3021 * src/summaryview.c: modified according to the changes of
3022 folderview.c. And modified so that it display alert dialog if
3023 source folder is identical to destination.
3024 added summary_set_popup_sensitive() that set the sensitivity of
3025 popup menu according to the context. And made all of the items of
3026 popup menu insensitive when summary is cleared.
3027 * src/procmsg.c: procmsg_move_messages_with_dest():
3028 modified so that if source folder is identical to destination,
3030 * src/summary_search.c
3031 src/manage_window.c: modified so as not to print warning to console
3032 when alert dialog appeared twice.
3033 * src/filesel.c: made file selection dialog transient.
3037 * src/manage_window.[ch]: added callback function
3038 manage_window_focus_out().
3044 src/summary_search.c: added focus_out_event signal handler.
3045 * src/addressbook.[ch]: added preliminary addressbook code.
3049 * src/utils.h: added a macro Xalloca() that does alloca() and
3050 handles the exception.
3051 * src/import.c: made the import dialog transient window and enabled
3052 cancelling by escape key.
3058 * src/compose.c: fixed a bug that caused memory leak when compose
3063 * src/nntp.h: increased NNTP message buffer size for XOVER strings
3068 * src/summaryview.c: binded step-forward and step-backward to each
3069 Control-n and Control-p.
3070 * src/filter.c: filter_read_str(): fixed a memory leak bug and
3071 replaced g_malloc() for allocating the buffer with alloca().
3072 * src/procheader.c: procheader_get_fromname(),
3073 procheader_date_get_localtime()
3074 src/utils.c: conv_euctojis()
3075 src/compose.c: compose_quote_parse_fmt()
3076 src/prefs.c: prefs_set_data_from_text()
3077 prefs_set_text(): replaced g_malloc() with alloca().
3083 * src/logwindow.c: improved log_window_append() so that it shows
3084 warning, error and normal message with different colors.
3085 * src/utils.[ch]: added functions log_message(), log_warning(), and
3086 log_error() that show normal message, warning, and error for each.
3087 And modified many warning messages to use these.
3088 * src/messageview.c: messageview_init(): made it set colors of
3089 quotation and URI to black when failed to allocate colors.
3090 * src/news.c: news_parse_xover(): replaced g_malloc() for allocating
3091 the buffer with alloca().
3095 * src/folderview.c: fixed a bug that didn't put previously selected
3096 folder name in text entry. In addition to that, made some
3103 * src/logwindow.[ch]: added log window that displays protocol log.
3104 * src/about.c: adjusted the size of dialog.
3105 * src/folderview.c: made it select a folder when double-clicked.
3109 * src/prefs_common.[ch]: added an item `translate_header' that
3110 decides whether header name like `From:' or `Subject:' is
3112 * src/compose.c: made it show alert dialog when receiptor isn't
3114 * src/inc.c: some code cleanups.
3120 * src/compose.c: made header entries move those focus to next
3121 entry or text widget when activated. And sorted out the menu items.
3122 * src/mainwindow.[ch]
3123 src/prefs_common.[ch]
3124 src/main.c: made it save the sizes of widgets and the position of
3125 window when quitting.
3126 * src/prefs_common.c: set a14, k14 fontset as default message font.
3127 * src/about.c: changed the appearance of about dialog using text
3129 * src/recv.c: modified recv_write() so that it converts an escaped
3136 * src/compose.[ch]: supported Bcc.
3142 * src/utils.[ch]: added function to_number() that examines string
3143 and if that is a number string, return its value.
3144 * src/procmsg.c: fixed a bug that caused malfunction when non-digit
3145 character was included in file name.
3151 * src/folderview.c: fixed a bug that caused segmentation fault
3152 when opened folder node was deleted (thanks to Hiramatu).
3153 And implemented folderview_rm_server_cb() which removes news server.
3154 * src/mbox.c: modified a warning message.
3158 * version 0.2.0alpha-pre8
3160 * src/mainwindow.c: inc_all_account_mail_cb(): made it select inbox
3161 folder to prevent the probrem when current folder is updated.
3162 * src/summaryview.c: summary_execute(): made it write to summary
3163 cache when executed.
3167 * version 0.2.0alpha-pre7
3169 * src/utils.[ch]: added path_cmp() that compares two paths ignoring
3170 trailing directory separator.
3171 * src/folderview.[ch]
3172 src/summaryview.[ch]: modified so that folder tree is updated
3173 when messages are moved or deleted.
3174 * src/inc.c: some code cleanup.
3178 * version 0.2.0alpha-pre6
3180 * src/utils.[ch]: added get_domain_name() that return domain
3181 name as a static string.
3182 * src/compose.c: compose_generate_msgid(): modified so that even
3183 if current address doesn't contain '@', it generates a decent
3185 * src/send.c: some code cleanup.
3189 * src/folderview.c: modified the behavior of folder tree when
3190 the folder is right-clicked.
3191 * src/compose.c: compose_encode_header(): added irresponsible
3192 buffer overrun check.
3196 * version 0.2.0alpha-pre5
3198 * updated gettext and libtool.
3199 * configure.in: modified localedir definition so that message
3200 catalogs are installed into correct directories.
3202 src/mainwindow.c: modified them so that a folder can be reopen
3203 even if it is currently open.
3204 * src/prefs_common.[ch]
3205 src/messageview.c: added an option that toggle the coloration of
3210 * version 0.2.0alpha-pre4
3213 src/messageview.c: fixed a bug that broke memory on allocating
3218 * src/folderview.c: some bug fixes on selecting folder.
3222 * version 0.2.0alpha-pre3
3225 * src/summaryview.[ch]: some code cleanups.
3226 * src/messageview.c: fixed a color allocating bug (maybe).
3230 * version 0.2.0alpha-pre2
3232 * src/folderview.[ch]: made folder view not open selected folder
3233 unless return or space key is pressed, or clicked by mouse
3235 * src/inc.c: some code cleanups.
3236 * TODO.jp: added some items.
3240 * version 0.2.0alpha-pre1
3242 * src/summaryview.[ch]: fixed a bug that broke summary thread
3243 when deleted duplicated messages (thanks to BONAIM).
3244 And some code cleanup.
3245 * src/procmsg.[ch]: renamed procmsg_move_messages() to
3246 procmsg_move_messages_with_dest(), and replaced former with
3247 new function which doesn't specify destination.
3248 * src/prefs_common.c
3249 src/gtkutils.c: some memory leak fixes of linked lists.
3250 * src/utils.[ch]: added list_remove_all() to remove all elements
3251 of doubly-linked list.
3252 * src/inc.[ch]: added inc_all_account_mail() that incorporates
3253 new messages of all accounts.
3254 * src/account.[ch]: added account_foreach() to process each accounts.
3259 * version 0.1.23alpha
3261 * src/inc.c: made the folder tree update the message number
3262 when incorporated new messages.
3263 * src/folderview.[ch]: added a function folderview_scan_folder()
3264 to scan one folder on the view, which is specified by folder name.
3268 * version 0.1.22alpha
3270 * src/prefs_account.[ch]: added the setting of assorting on
3272 * src/inc.c: supported assorting on receiving.
3273 * src/procmsg.c: cleaned up the code.
3274 * src/news.c: fixed a bug that locked up when failed to get xover.
3275 * src/compose.c: made a message unmark that is put into specific
3280 * version 0.1.21alpha
3283 src/summaryview.c: implemented the function 'go to next folder
3284 when no unread message found.'
3285 * src/summaryview.c: made connection state displayed on the
3286 status bar when connecting to a news server.
3287 * src/compose.c: changed X-Mailer: header field string a bit.
3288 * src/prefs_common.c: implemented residual functions of assortment.
3292 * version 0.1.20alpha
3294 * src/prefs_common.c: implemented reading/writing/register/deletion
3295 of assortment setting.
3296 * src/mainwindow.c: slightly modified the appearance of statusbar.
3297 * src/account.c: account_delete(): fixed a bug that didn't assigned
3298 the pointer to GList when an account was deleted.
3302 * src/procmsg.c: procmsg_get_mark_sum(): fixed a bug that failed
3303 to read mark file (thanks to BONAIM).
3304 * src/prefs_common.c: added the interface of assortment setting.
3308 * src/summaryview.c: fixed a bug that didn't redraw marking properly
3309 when displaying an unread message with left-click (thanks to
3314 * src/summaryview.[ch]: added functions for assortment.
3315 * src/about.c: added a button to close window.
3319 * src/procmsg.c: fixed a bug that didn't add news flag correctly.
3320 * src/compose.c: fixed a bug that can't reply to a news article.
3321 * src/filter.[ch]: added for message filtering.
3322 * src/procheader.[ch]: added procheader_get_unfolded_line()
3323 to process filtering. And added procheader_get_header_list()
3324 that reads headers of a message and store them on the memory,
3325 and procheader_header_list_destroy() that removes all headers
3326 read by procheader_get_header_list().
3330 * version 0.1.19alpha
3332 * src/news.c: modified so that it retrieves only overview information
3333 that is not yet cached.
3334 * src/procmsg.[ch]: modified for news handling.
3338 * src/news.c: supported xover.
3339 * src/mbox.c: fixed a bug that didn't handle empty line correctly
3340 (Thanks to shigeri).
3344 * version 0.1.18alpha
3346 * src/procmsg.[ch]: modified some functions so that they can
3348 * src/news.c: added header cache routine.
3349 * src/procheader.c: fixed a bug that caused memory leak when some
3350 header was duplicated.
3351 And added Newsgroups: in parsing headers.
3352 * src/summaryview.c: added news article cache routine.
3353 * src/compose.c: made it be able to reply/forward news article.
3357 * src/compose.c: fixed a bug that failed to parse To: header
3358 if a comma is included in double quotation (Thanks to shigeri).
3359 * src/mbox.c: modified the code for processing mbox so that it
3360 can handle unescaped From_ line correctly.
3364 * version 0.1.17alpha
3366 * src/foldersel.c: fixed a bug that didn't display folder tree.
3367 And added the register routine for news server and group setting.
3371 * version 0.1.16alpha
3373 * src/statusbar.[ch]: added statusbar_puts_all().
3374 statusbar_puts(): made it truncate a string that is too long.
3375 * src/folderview.[ch]: changed CTree's row data from string
3376 to FolderInfo structure.
3377 And implemented popup menu that registers news server and group.
3378 * src/messageview.c: modified short header display routine.
3382 * added src/news.[ch] for NetNews session management.
3383 * src/summaryview.[ch]: added NetNews reading codes.
3388 src/prefs_common.[ch]: made them preserve toolbar style.
3389 * src/main.c: made it save configuration before exiting.
3390 * src/summaryview.c: modified summary status display routine.
3391 * added src/nntp.[ch] for handling low level NNTP session.
3395 * added src/progress.[ch] for displaying progress.
3396 * src/inc.c: modified progress dialog routines to use
3398 * src/folderview.[ch]: added preliminary NetNews supporting code.
3402 * version 0.1.15alpha
3405 src/folderview.c: some permission fixes.
3406 * src/folderview.c: implemented folder creation/renaming/removing.
3407 * src/utils.[ch]: added remove_dir_recursive() that removes
3408 a directory recursively.
3412 * src/mainwindow.[ch]: added toolbar style selection.
3413 * added src/inputdialog.[ch] to prompt user to enter a string.
3414 * src/summaryview.[ch]: modified the behavior of view on
3416 * src/mbox.c: fixed a bug that couldn't lock file when
3417 lockf() was used (Thanks to shigeri).
3421 * version 0.1.14alpha
3423 * src/mainwindow.[ch]: changed the appearance of toolbar.
3424 And fixed window handling.
3425 * src/summaryview.c: modified the messages displayed on status bar.
3426 * src/compose.[ch]: added toolbar.
3427 * src/*.xpm: borrowed some icons from gnome-libs (temporary).
3431 * version 0.1.13alpha
3433 * src/summaryview.c: fixed a bug of threading. And some code
3434 cleanups. And rewrote the routine of deleting duplicated messages
3436 * src/mainwindow.[ch]: added toolbar.
3440 * version 0.1.12alpha
3442 * src/summary_search.c: if the OS don't have wcsstr(), use wcswcs()
3444 * src/summaryview.c: changed CTree creating routine as it creates
3445 thread on the fly for speeding up.
3446 * src/procmsg.c: rewrote message processing routines using hash
3447 table for speeding up. It should be considerably faster than
3452 * version 0.1.11alpha
3454 * po/ja.po: modified msgstr for Solaris standard gettext.
3455 * src/main.c: added config.h inclusion.
3456 * src/compose.c: changed to add replied message's In-Reply-To
3457 message id to References header if it don't have References header.
3458 * src/summaryview.c: changed threading routine to use hash table
3463 * version 0.1.10alpha
3465 * po/ja.po: modified msgstr so as not to core dump on Solaris.
3466 * src/main.c: added inclusion of locale.h.
3467 (Thanks to Sato for above.)
3469 * src/socket.c: applied Solaris patch by shigeri with some
3470 modification. (Thanks!)
3474 * version 0.1.9alpha
3476 * src/compose.c: compose_encode_header(): fixed some bugs.
3477 And modified header generating routines to support proper
3478 References header, and supported Organization header.
3480 src/procheader.c: removed Cc: and Reply-To: from cache data.
3481 * src/procheader.[ch]: renamed header list structure to HeaderEntry.
3482 * src/summaryview.[ch]: summary_thread_func(): some optimization.
3483 And added summary_pass_key_press_event() to pass key press event
3485 * src/messageview.c: messageview_key_pressed(): modified so that
3486 key event is passed to summary view even if message view is
3487 separated. (Thanks to wakai@UEC univ. for pointing this out.)
3491 * version 0.1.8alpha
3493 * src/compose.c: implemented RFC1522, RFC2407 (loosely) compliant
3494 header MIME encoding.
3495 * src/procheader.c: some bug fixes of folded header line processing.
3496 * src/headerview.c: headerview_show(): some bug fixes.
3500 * version 0.1.7alpha
3502 * src/utils.c: conv_euctojis(): fixed a bug that didn't add
3503 kanji-out sequence [ \033 ( B ] when input string was ended
3504 with kanji. (Thanks to Nozomu Kobayashi for pointing this out.)
3505 * src/compose.c: compose_encode_header(): changed as it outputs
3506 encoded string to another buffer.
3507 And implemented a faculty to save sent message to outbox and
3508 to queue message that failed to send (preliminary).
3509 And, finally implemented proper To: and Cc: processing :)
3510 * src/folderview.c: added preliminary right-clicking popup menu
3511 for operating folders.
3512 * some permission fixes at creating or copying file.
3516 * version 0.1.6alpha
3518 * src/procheader.c: fixed a bug that didn't null-terminate
3519 header list and caused segmentation fault.
3523 * version 0.1.5alpha
3525 * src/procheader.[ch]: added function procheader_get_one_field()
3526 that gets one header field that matches the header list.
3527 And removed procheader_get_unfolded_line(), which is less generic.
3528 And rewrote procheader_get_header_fields() using
3529 procheader_get_one_field().
3530 * src/summaryview.c: some bug fixes of key input scan routine.
3531 * README, README.jp: modified documents a bit.
3535 * src/menu.c: menu_set_sensitive(): fixed a bug that if a menu item
3536 had a submenu, set sensitivity of the submenu, not the item.
3540 * version 0.1.4alpha
3542 * src/summaryview.c: fixed a bug that caused segmentation fault
3543 when empty summary view was center-clicked.
3544 And fixed a bug that freed moving folder strings when marked
3546 If current folder is trash, don't delete message.
3547 * src/summaryview.[ch]
3549 * src/procmsg.[ch]: added update-cache mode (discards previous cache).
3553 * src/procheader.[ch]: more optimization of header processing
3554 routine. And added a new function procheader_get_header_fields()
3555 that receives an array of header name as a parameter and
3557 * src/utils.[ch]: added remove_return() for removing return code.
3558 * src/unmime.c: added remove_return() on the last of UnMimeHeader().
3562 * src/compose.c: if message body is ascii only, set US-ASCII as
3563 charset in Content-Type.
3566 * src/prefs_common.c
3567 * src/prefs_account.c
3568 * src/account.c: changed the location of rc files.
3569 * src/account.c: enabled closing window when escape key is pressed.
3573 * version 0.1.3alpha
3575 * src/compose.c: fixed a bug that caused segmentation fault
3576 when sending failed.
3577 And relocated header-generation routines from src/send.c.
3578 * src/send.c: moved header-generation routines to src/compose.c.
3579 * src/prefs.c: added '~' to home directory expansion.
3580 * src/prefs_account.[ch]: added signature file path configuration.
3581 * src/prefs_common.[ch]: added spool path configuration.
3582 * src/inc.c: changed the method of user name acquisition to use
3587 * version 0.1.2alpha
3589 * added ChangeLog (this file), ChangeLog.jp.
3590 * some code cleanups.
3591 * added manage_window.[ch] for transient window management.
3592 * src/procheader.c: optimized header processing routine a bit.
3593 * src/send.c: fixed exception handling on connection.
3594 * src/inc.c: added exception handling on getting user name.
3598 * version 0.1.1alpha
3600 * src/send.c: fixed a bug that didn't add Content-Type: header.
3604 * version 0.1.0alpha