minor ui nag: corrected description of quote format characters
[claws.git] / ChangeLog
1 2001-06-08
2
3         * src/imap.[ch]: added imap_add_msg(), and imap_append_message(),
4           which appends file into IMAP4 folder.
5           imap_status(): new.
6           imap_create_folder(): check the existence of a folder before
7           create it.
8           renamed the prefix of low-level IMAP4rev1 functions to imap_cmd.
9         * src/account.c: account_add(), account_set_missing_folder():
10           create INBOX automatically when creating IMAP4 account.
11
12 2001-06-07
13
14         * src/utils.[ch]: added itos_buf() that takes the buffer for its
15           argument.
16         * src/imap.[ch]: imap_copy_msg(), imap_copy_msgs_with_dest(): new.
17         * src/folder.c: added copy_msg and copy_msgs_with_dest methods
18           to the IMAP class.
19
20 2001-06-06
21
22         * src/utils.[ch]: move_file(): new.
23         * src/mh.c: mh_move_msg(), mh_move_msgs_with_dest(): modified to
24           use move_file(), and fixed a bug that didn't close file when
25           error occured.
26
27 2001-06-06
28
29         * src/imap.c: renamed imap_delete_messages() and
30           imap_delete_all_messages() to imap_delete_cached_messages() and
31           imap_delete_all_cached_messages(). Some code cleanups.
32         * src/utils.[ch]: added a function remove_all_numbered_files().
33         * src/mh.c: mh_remove_all_msg()
34           src/imap.c: imap_delete_all_cached_messages():
35           use remove_all_numbered_files().
36         * src/mainwindow.c
37           src/summaryview.c
38           src/compose.[ch]: added `Reply to sender'.
39           compose_reply()
40           compose_reply_set_entry(): added an argument `ignore_replyto'.
41
42 2001-06-05
43
44         * src/folderview.c: folderview_selected()
45           src/summaryview.c: summary_show(): fixed a bug that updated wrong
46           folder when remaining marks were processed.
47
48 2001-06-04
49
50         * src/headerwindow.c: headerwindow_show_cb(): always try to show
51           msginfo, and use the selected message, not the displayed one.
52         * src/smtp.c: smtp_ok(): fixed sock_gets() error handling.
53
54 2001-06-02
55
56         * src/folderview.c: folderview_selected()
57           src/mimeview.c: mimeview_selected(): ungrab the mouse event.
58         * src/summaryview.c: summary_show(): process the left marks if any.
59
60 2001-05-27
61
62         * src/passphrase.c: enclosed with #if USE_GPGME.
63         * src/prefs_account.c: added NNTP AUTH check button.
64         * src/alertpanel.[ch]: alertpanel_create(): added new argument
65           `can_disable', all existing callers changed to pass FALSE;
66           created a check button to disable the message.
67           alertpanel_message_with_disable(): new.
68           alertpanel_show(): mask value with G_ALERT_VALUE_MASK.
69           alertpanel_button_toggled(): new.
70           alertpanel_button_clicked(), alertpanel_close(): set value using
71           G_ALERT_VALUE_MASK.
72         * src/prefs_common.[ch]: added option to toggle GnuPG signature
73           check popup window, and GnuPG warning.
74         * src/rfc2015.c: check_signature(): show signature check dialog
75           only if it is enabled.
76         * src/main.c: modified GnuPG checking.
77         * src/main.c
78           src/prefs_common.c: fixed some compilation bugs when enabled
79           GPGME.
80
81 2001-05-26
82
83         * src/codeconv.c: conv_get_code_conv_func(): fix for ISO-8859-*
84           encodings with libjconv.
85           conv_encode_header(): fixed an endless loop bug when encountering
86           an invalid wide character (thanks to Alte).
87         * src/headerview.c: SET_FONT_STYLE(): fixed segfault with invalid
88           bold font.
89         * src/imap.c: imap_create_folder(): don't create folder if the
90           name is INBOX.
91         * src/mainwindow.c: main_window_reflect_prefs_all(): hide the
92           execute button when immediate execution is enabled.
93
94 2001-05-22
95
96         * README
97           README.jp: added the "How to run" section.
98
99 2001-05-19
100
101         * merged NNTP AUTH from the claws branch.
102         * src/news.[ch]: supported NNTP AUTH.
103         * src/nntp.[ch]: wrapped SockInfo with NNTPSockInfo for NNTP AUTH.
104         * INSTALL
105           INSTALL.jp: modified the confirmation list and the warning about
106           threads.
107
108 2001-05-18
109
110         * src/gtkutils.[ch]: moved folderview_find_collapsed_parent() to
111           gtkut_ctree_find_collapsed_parent().
112         * src/folderview.c: folderview_select_node(): automatically expand
113           the parent folders when selected.
114         * configure.in: made the version number to 0.4.99 (0.5pre)
115         * src/main.c: main(): moved parse_cmd_opt() before gtk_init()
116           so that X is not necessary for --help and --version.
117           parse_cmd_opt(): changed g_get_prgname() to g_basename(argv[0]).
118         * src/folderview.c: folderview_update_node(): a fix for collapsed
119           nodes.
120
121 2001-05-17
122
123         * src/main.c: lock_socket_input_cb(): changed fd_read() to fd_gets().
124           It caused garbages in --compose option.
125         * src/socket.[ch]: made fd_gets() public.
126
127 2001-05-16
128
129         * src/gtkutils.[ch]: gtkut_ctree_node_next(): new.
130         * src/folderview.c: folderview_find_next_unread(): new.
131           folderview_select_next_unread(): modified so that it can find
132           the hidden folder.
133
134 2001-05-15
135
136         * src/compose.c: compose_write_headers(): excluded also From, To,
137           Sender because they could be used for SPAM.
138         * src/folderview.c: add '+' mark to the collapsed folder that have
139           some unread folders.
140           folderview_search_new_recursive(),
141           folderview_have_new_children(),
142           folderview_search_unread_recursive(),
143           folderview_have_unread_children(),
144           folderview_find_collapsed_parent(): new.
145           folderview_update_node(): display the number of queued messages.
146
147 2001-05-14
148
149         * src/folder.[ch]
150           src/mh.[ch]: modified *_add_msg() to use link(). Added the
151           argument to switch whether to remove the source file or not.
152         * src/compose.c
153           src/inc.c
154           src/mbox.c: modified the argument of folder_item_add_msg() and
155           removed some unlink()'s.
156
157 2001-05-13
158
159         * src/prefs_customheader.[ch]: renamed prefs_headers_* to
160           prefs_custom_header_*. Removed `(New)' row and `Substitute'
161           button. Supported empty value.
162           prefs_custom_header_row_moved(): new. Connected "row_move" signal
163           to the function, and made it set header list.
164         * src/customheader.c: custom_header_get_str()
165           src/compose.c: compose_write_headers(): supported empty value.
166         * src/prefs_display_header.c: prefs_display_header_row_moved(): new.
167           Connected "row_move" signal to the function, and made it set
168           header list.
169         * src/compose.c: compose_write_headers(): modified the order of
170           headers, and made it encode the custom headers.
171         * src/prefs_customheader.c: prefs_custom_header_delete_cb()
172           src/prefs_filter.c: prefs_filter_delete_cb(): treat closing the
173           alert panel by ESC as "No".
174
175 2001-05-13
176
177         * merged the custom header stuff from claws branch:
178         * src/customheader.[ch]
179           src/prefs_customheader.[ch]: new.
180         * src/customheader.c: custom_header_read_str(): use strtol() instead
181           of atoi() and check errors.
182           custom_header_find(): new function.
183         * src/compose.c: IS_IN_CUSTOM_HEADER(): new macro.
184           compose_write_headers(): made it replace headers with user-defined
185           headers except for some automatically generated headers.
186
187 2001-05-11
188
189         * src/inc.c: connection_check_cb(): fixed a bug that caused
190           segmentation fault if connection was not established.
191         * src/compose.c: compose_create(): even if set_autobcc or set
192           autoreplyto is checked and the entries are empty, show them.
193
194 2001-05-10
195
196         * src/textview.c: textview_show_mime_part(): modified the messages.
197           TEXT_INSERT(): new macro.
198         * po/ja.po: fixed.
199         * src/prefs_display_header.c: prefs_display_header_create():
200           modified the text of checkbutton.
201
202 2001-05-09
203
204         * src/mimeview.c: added "Open with..." to the context menu.
205         * src/summaryview.c: summary_print()
206           src/inputdialog.c: input_dialog(): fixed memory leaks.
207         * src/textview.c: textview_show_mime_part(): updated the description.
208         * src/send.c: implemented sending progress dialog.
209           (TODO: automaton should be used.)
210           send_progress_dialog_create(), send_progress_dialog_destroy(),
211           send_cancel(): new.
212           send_message_smtp(): made it update the dialog for each stage.
213         * src/utils.[ch]: get_left_file_size(): new. Get the left bytes
214           of opened file.
215         * src/summaryview.c: summary_show(): when open_inbox_on_inc is set,
216           go to first unread message even if folder is same as previous.
217         * src/prefs_common.c: made color selection dialog transient, and
218           made escape key close the dialogs.
219
220 2001-05-08
221
222         * version 0.4.66
223
224         * src/select-keys.c: delete_event_cb(): removed `;' from its end.
225         * src/recv.c: recv_write(): changed the interval to 10msec.
226         * src/prefs_display_header.c: modified the layout of the dialog,
227           and made the hidden headers list insensitive when `Show other
228           headers' is not checked.
229         * src/textview.c: changed strcasecmp() and strncasecmp() to
230           the corresponding glib functions.
231         * src/inc.c: get_spool(): make a temporary file in the home
232           directory.
233
234 2001-05-07
235
236         * src/prefs_common.c
237           src/prefs_account.c
238           src/prefs_filter.c
239           src/account.c
240           src/alertpanel.c
241           src/filesel.c
242           src/foldersel.c
243           src/export.c
244           src/import.c
245           src/inputdialog.c
246           src/passphrase.c
247           src/select-keys.c
248           src/sigstatus.c: fixed a bug that accidentally destroyed dialogs
249           when closed them with delete_event (thanks to DINH).
250           Added *_deleted() and *delete_event() which handle delete_event
251           signal correctly.
252
253 2001-05-06
254
255         * src/prefs_display_header.c: merged some changes from claws branch:
256           prefs_display_header_create(): allow reordering of headers by
257           dragging.
258           prefs_display_header_find_header(): new function.
259           prefs_display_header_clist_set_row(): don't allow duplicates.
260         * src/prefs_account.c: prefs_account_receive_create(): changed
261           the label of the check button.
262
263 2001-05-05
264
265         * src/pop.c: pop3_getsize_list_recv(): if sscanf() failed, break
266           immediately.
267         * src/inc.h: removed cur_msg_bytes from Pop3State.
268         * src/inc.c: pop3_recv_func()
269           src/recv.[ch]: made the second arguments of RecvUIFunc current
270           total read bytes.
271           recv_write(): made it call UI func if elapsed time is greater
272           than 0.1 sec.
273         * src/recv.c: recv_write(): changed the interval to 300 usec.
274         * src/textview.c: textview_show_header(): if header is Subject,
275           unfold it.
276         * src/utils.[ch]: unfold_line(): new.
277         * src/procheader.[ch]: procheader_get_header_array(): new.
278         * src/prefs_display_header.c: updated defaults.
279
280 2001-05-05
281
282         * some merge from the sylpheed-claws branch.
283           It allows user to specify displayed headers in message view.
284           (symbol names were also changed.)
285         * src/prefs_display_header.[ch]
286           src/displayheader.[ch]: new.
287         * src/prefs_display_header.c:
288           removed prefs_display_headers_other_headers_toggled().
289           removed "(New)" row from the list.
290         * src/defs.h: added DISPLAY_HEADER_RC.
291         * src/prefs_common.c: prefs_message_create(): added a button for
292           opening the display header setting dialog.
293         * src/prefs_common.h: added show_other_header and disphdr_list
294           to PrefsCommon.
295         * src/procheader.[ch]: procheader_get_header_list_from_file(),
296           procheader_get_header_array_asis(): new.
297           procheader_get_header_list(): modified so that it takes FILE
298           pointer for its argument.
299           procheader_header_array_destroy(), procheader_header_free(): new.
300         * src/main.c: main(): made it call prefs_display_header_*_config().
301         * src/textview.c: textview_scan_header(): modified so that it
302           sorts headers according to user setting.
303           src/textview_show_header(): made it call
304           textview_make_clickable_parts().
305           textview_make_clickable_parts(): added GdkFont to its arguments,
306           and removed GtkText from them.
307
308 2001-05-04
309
310         * implemented auto-checking of new mail based on the patch from
311           Pierric Descamps (thanks!).
312         * src/inc.c: added inc_autocheck_timer_init(),
313           inc_autocheck_timer_set(), inc_autocheck_timer_remove(),
314           inc_autocheck_func() for auto-checking of new mail.
315         * src/main.c: main(): call inc_autocheck_timer_init().
316         * src/prefs_common.c: prefs_receive_create(): activated the
317           auto-checking UI. Added prefs_common_cancel(), and connected
318           some signals to that.
319         * src/prefs_common.c
320           src/prefs_account.c
321           src/prefs_filter.c
322           src/account.c: Disabled auto-checking while opening the dialog.
323         * src/headerview.c: headerview_show_xface(): fixed a bug that
324           showed a warning when header pane was hidden.
325
326 2001-05-03
327
328         * src/inc.c
329           src/pop.c
330           src/recv.c: removed non-blocking socket mode support since it
331           does nothing.
332         * src/pop.c
333           src/inc.c: modified the messages of incorporation dialog.
334
335 2001-05-02
336
337         * src/utils.h: made u32 the typedef of guint32.
338           added BIG_ENDIAN_HOST macro that is used by md5.c.
339         * src/md5.c: renamed md5c.c. Fixed the indentation. Fixed a bug
340           that didn't calculate MD5 correctly on big endian machines.
341
342 2001-05-01
343
344         * version 0.4.65
345
346         * src/folder.c: folder_init(): added the method imap_remove_folder.
347         * src/folderview.c: folderview_rm_imap_folder_cb(): made it
348           actually remove folder from IMAP4 server.
349         * src/imap.[ch]: imap_create_folder(): made it actually create
350           folder on IMAP4 server.
351           imap_remove_folder(): added.
352           imap_create(), imap_delete(): added.
353         * src/summaryview.c: summary_execute_delete(): don't check trash
354           if folder type is not F_MH.
355         * thanks to Ishihara for the above changes.
356         * configure.in
357           ac/check-type.m4: better wint_t typedef detection (renamed
358           sv_CHECK_TYPE to SYLPHEED_CHECK_TYPE).
359
360 2001-04-30
361
362         * src/recv.c: recv_bytes_write(): fixed another bug that caused
363           infinite loop and buffer overrun.
364
365 2001-04-30
366
367         * src/socket.[ch]: renamed sock_read() and fd_read() to
368           sock_gets() and fd_gets() for preventing confusion.
369           Added sock_read() and fd_read() which is the wrapper of read().
370         * src/recv.c: recv_bytes_write(): fixed a bug that caused infinite
371           loop. Use sock_read() instead of fd_read().
372         * src/esmtp.c
373           src/imap.c
374           src/news.c
375           src/nntp.c
376           src/pop.c
377           src/recv.c
378           src/smtp.c: use sock_gets() instead of sock_read().
379         * src/imap.c: imap_session_new(): fixed the error detection
380           of imap_open().
381
382 2001-04-28
383
384         * src/inc.c: made it displays current read bytes to the dialog.
385         * src/pop.c: recv_write(): call UI function before editing
386           strings.
387
388 2001-04-27
389
390         * src/progressdialog.c: progress_dialog_create(): modified the
391           size of dialog and made it stretchable.
392         * src/smtp.c
393           src/esmtp.c: smtp_ok(), esmtp_ok(): fixed a bug that didn't
394           process an error response correctly (thanks to Ohmasa).
395         * src/pop.[ch]: added pop3_getsize_list_send(),
396           pop3_getsize_list_recv().
397         * src/recv.[ch]: added recv_set_ui_func() that makes recv_write()
398           call the callback function for each sock_read().
399         * src/inc.h: in Pop3State, renamed bytes to total_bytes, and added
400           cur_msg_bytes, cur_total_bytes, and sizes.
401         * src/inc.c: added inc_pop3_recv_func() that updates the progress
402           bar for each sock_read().
403
404 2001-04-26
405
406         * src/mh.c: mh_is_maildir_one(): modified so that it uses
407           is_dir_exist().
408
409 2001-04-25  Werner Koch  <wk@gnupg.org>
410
411         * src/mh.c (mh_is_maildir_one, mh_is_maildir): New.
412         (mh_scan_tree_recursive): Do not include Maildir style directories
413         in the scan.
414
415         Changed the use of integers to describe sockets by an more abstract
416         data structure.
417
418         * src/automaton.h (struct _Automaton): Add help_sock.
419         * src/automaton.c (automaton_input_cb): Changed source to be
420         SockInfo and use wrapper for gdk_input_add.
421
422         * src/send.c (SEND_EXIT_IF_ERROR): Adjusted tests and removed test
423         for invalid socket because this is now done in sock_close. Set
424         sock to NULL.
425         (SEND_EXIT_IF_NOTOK): Set closed sock to NULL.
426         (send_smtp_open): Use only SockInfo.
427
428         * src/news.c (news_session_new): Use SockInfo here.
429         (news_session_destroy): Ditto and set sock to NULL.
430
431         * src/nntp.c: Use SockInfo instead of integers
432         * src/smtp.c: Ditto.
433         * src/pop.c: Ditto.
434         * src/recv.c: Ditto.
435
436         * src/inc.c (inc_pop3_session_do): Removed sock_sockinfo_free. Put
437         gdk_input_add into a wrapper.
438
439         * src/esmtp.c: Changed socket descriptors to use SockInfo.
440         * src/esmtp.h: Ditto, included socket.h.
441         * src/session.h (struct _Session): Likewise.
442         * src/imap.c (imap_open): Return SockInfo ptr and not an integer.
443         Removed access to internal data of SockInfo.  Changed all callers
444         and functions to take SockInfo.
445         (imap_session_new): Use sock_close here.
446         (imap_session_destroy): Ditto.
447
448         * src/compose.c (compose_exec_ext_editor): Replaced sock_write by
449         fd_write.
450
451         * src/main.c (app_will_exit): Close lock socket using fd_close.
452         (prohibit_duplicate_launch): Use fd_xxx functions instead of sock_xxx.
453         (lock_socket_input_cb): Ditto.
454
455         * src/socket.h, src/socket.c: Prepared SockInfo structure to use
456         glib channels. Changed all sock_xxx to use SockInfo instead of an
457         integer.
458         (sock_connect_unix, sock_open_unix, sock_accept): Renamed to ..
459         (fd_connect_unix, fd_open_unix, fd_accept): .. this and changed all
460         callers.
461         (fd_read, fd_write, fd_close): New.
462         (sock_sockinfo_free): Removed.
463         * src/socket.c (sock_connect_nb): Use close instead sock_close here.
464         (sock_connect): Ditto.
465
466 2001-04-26
467
468         * config.h.in: removed.
469         * ac/Makefile.am: added gnupg-check-typedef.m4 to MACROS.
470         * .cvsignore: added.
471         * src/inc.c
472           src/progressdialog.[ch]
473           src/pixmaps/complete.xpm
474           src/pixmaps/continue.xpm
475           src/pixmaps/error.xpm: applied the patch from Leandro Pereira
476           that displays the state of message incorporation (thanks!).
477         * src/inc.c: made the progress dialog change the text of status.
478
479 2001-04-25
480
481         * removed po/*.gmo, configure, stamp-h.in, aclocal.m4, Makefile.in
482           from the cvs tree.
483         * COPYING: removed RSA copyright notice.
484         * removed po/sylpheed.pot, po/stamp-cat-id, po/cat-id-tbl.c.
485         * configure.in: added the check of sys/utsname.h.
486
487 2001-04-24  Werner Koch  <wk@gnupg.org>
488
489         Merged most of the changes from the W32 branch in.
490
491         * configure.in: Require gpgme >= 0.2.1
492
493         * acconfig.h (HAVE_U32_TYPEDEF): New.
494         * ac/gnupg-check-typedef.m4: New.
495         * configure.in: Check for u32 type and the size of some types.
496         * src/utils.h: Define the u32 type and related constants.
497
498         * src/about.c (about_create): Removed the note about MD5.  We are
499         not any longer using the RSA Inc. implementation.
500         * src/md5ify.c, src/md5ify.h, src/md5global.h:  Removed.
501         * src/md5c.c, src/md5c.h: Replaced by an FSF implementation and
502         renamed the function to standard lowercase convention. Changed all
503         callers. 
504         (md5_hex_digest): New.
505         (md5_hmac): Add hmac function by Martin Schaaf with some 
506         modifications.
507         (md5_hex_hmac): New.
508         * src/esmtp.c, src/esmtp.h (md5_hex_hmac): Removed.
509         (hmac_md5): Removed.
510         * src/pop.c (pop3_getauth_apop_send): Replaced the md5_digest by
511         the new md5_hex_digest function.
512
513         * src/about.c: Include utsname.h only if available
514
515         * src/utils.c, src/utils.h (get_home_dir): New to better cope with
516         special Windoze requirements.  Changed all calls to
517         g_get_home_dir() to this function.
518
519         * simple-gettext.c: New.
520
521         * src/main.c (main): Issue a warning if GnuPG is not properly
522         installed.
523
524         * src/sigstatus.c, src/sigstatus.h: New.
525         * src/rfc2015.c (check_signature): Use the sigstatus window and
526         get the status texts from a utility function.
527
528         * src/select-keys.c: Removed the global select_keys var and
529         pass an allocated one along all functions.
530         (set_row): Display only keys capable of encryption.
531         (update_progress): Replaced the progressbar by
532         a windmill and a text showing for which key we are collecting
533         info.  Removed progressbar everywhere else and updated callers.
534
535         * src/prefs_common.c (prefs_privacy_create) [__MINGW32__]: Do not
536         display the grab button. 
537
538 2001-04-24
539
540         * src/prefs_common.[ch]
541           src/procheader.c: applied the patch from Darko Koruga that
542           allows user to define their own format for displaying date in
543           summary view using strftime() (thanks!).
544         * src/prefs_common.c: prefs_quote_colors_dialog()
545           src/mainwindow.c: main_window_reflect_prefs_all(): made it
546           update message colors if the colors setting is changed.
547         * src/main.[ch]: made it remember the startup directory.
548         * src/export.c: export_mbox(): made it initially chdir to the
549           startup directory.
550         * src/filesel.c: filesel_select_file(): made it open the startup
551           directory at first.
552
553 2001-04-23
554
555         * added option to warn about queued messages on exit [sergey]:
556
557           * src/compose.c: compose_queue(): call folder_item_scan()
558             and folderview_update_item() after queueing.
559           * src/folderview.c: folderview_update_node(): draw the queue
560             folder in bold font if there are queued messages.
561           * src/mainwindow.c: queued_messages(): new function.
562             app_exit_cb(): display warning if there are queued messages
563             if warn_queued_on_exit is set.
564           * prefs_common.[ch]: add warn_queued_on_exit option.
565
566         * src/mainwindow.c: moved queued_messages() to main.c, and renamed
567           it to get_queued_message_num().
568         * src/main.c: app_will_exit(): moved warning dialog code from
569           app_exit_cb(), and added manage_window_focus_in().
570
571         * enhanced GnuPG key selection support [sergey]:
572
573           * src/select-keys.c: updated to newer version from Win32
574             branch with support for selecting arbitrary keys.
575           * src/prefs_account.c: added the Privacy tab to the account
576             options window.
577             prefs_account_privacy_create(),
578             prefs_account_sign_key_set_data_from_radiobtn(),
579             prefs_account_sign_key_set_radiobtn(): new functions.
580           * src/prefs_account.h: new preferences sign_key_type, sign_key_id.
581           * src/rfc2015.c: set_signers(): new function.
582             pgp_sign(): add the account parameter, call set_signers().
583             rfc2015_sign(): add the account parameter, pass it to pgp_sign().
584           * src/rfc2015.h: rfc2015_sign(): updated prototype.
585           * src/compose.c: pass the current account to rfc2015_sign().
586
587 2001-04-22
588
589         * src/mbox.c: export_to_mbox(): fixed a memory leak bug.
590
591 2001-04-20
592
593         * src/mbox.[ch]: renamed export_mbox() to export_to_mbox().
594           Fixed a memory leak bug.
595         * src/export.[ch]: added for exporting folder to mbox.
596         * src/import.[ch]: made import_mbox() take default folder.
597           Added description to the dialog.
598         * src/summaryview.c: summary_show(): fixed a bug that kept the
599           toolbar buttons insensitive after receiving messages.
600         * src/export.c
601           src/import.c: fixed a bug that caused quitting of the program
602           when OK or Cancel button was clicked several time.
603         * src/prefs_common.[ch]
604           src/addressbook.c: added "Add address to destination when
605           double-clicked" option.
606
607 2001-04-19
608
609         * src/prefs_common.[ch]: reorganized the items of settings,
610           and added Message tab.
611         * src/main.c: parse_cmd_opt(): added command line option --version.
612         * src/mh.c: made it unset MSG_DELETED flag when moved/copied to
613           special folders.
614         * src/prefs_common.[ch]
615           src/headerview.[ch]: the header pane can be toggled now.
616         * src/prefs_common.[ch]
617           src/textview.c: page scroll step is now selectable between
618           one page and half page.
619         * src/mbox.[ch]: added export_mbox() that reads all messages
620           in a folder, and store them into one mbox file.
621
622 2001-04-18
623
624         * src/prefs_filter.[ch]: separated filter setting code from
625           prefs_common.c, and made it a separate dialog.
626
627 2001-04-17
628
629         * version 0.4.64
630
631         * src/automaton.[ch]
632           src/inc.c: fixed the bug that made Sylpheed crash when clicking
633           Cancel button while getting new mail (thanks to Sergey Vlasov).
634         * src/xml.c: xml_build_tree()
635           src/addressbook.c: fixed a bug that caused infinite loop if an
636           illegal XML file was given.
637
638 2001-04-16
639
640         * src/summaryview.c
641           src/inc.c: applied the patch from Sergey Vlasov that fixes the
642           problem when the "Go to inbox after receiving new mail" option
643           was turned off (thanks!).
644
645 2001-04-15
646
647         * src/xml.[ch]: modified so that it supports some characters which
648           must be escaped, and multiple-lined tag.
649         * src/folder.c
650           src/addressbook.c: modified so that it escapes some characters
651           like '<', '>', '&', ''', '"'.
652
653 2001-04-10
654
655         * version 0.4.63
656
657         * src/folder.[ch]
658           src/mainwindow.c
659           src/mh.[ch]
660           src/procmsg.[ch]
661           src/summaryview.[ch]: applied the patch from Darko Koruga that
662           adds copy message operation for the MH folders (thanks!).
663         * src/imap.c: disabled slash to dot conversion.
664         * src/imageview.c: fixed a bug that displayed an old image when
665           loading of a image failed (thanks to Darko Koruga).
666
667 2001-04-09
668
669         * src/procmsg.c: procmsg_read_cache(): added setvbuf() to speed up
670           cache reading (thanks to Sergey Vlasov).
671         * src/inc.c
672           src/summaryview.[ch]
673           prefs_common.[ch]: applied the patch that keeps the same folder
674           after receiving new mail (thanks to Sergey Vlasov).
675         * src/textview.c
676           src/utils.[ch]: moved get_quote_level() to utils.c.
677
678 2001-04-08
679
680         * ac/Makefile.am: added.
681         * Makefile.am
682           configure.in: added ac directory.
683
684 2001-04-07
685
686         * src/summaryview.c: summary_filter(): made it move messages
687           immediately if immediate_exec option is set.
688         * src/prefs_common.[ch]
689           src/textview.[ch]
690           src/gtkutils.[ch]: applied the message coloring patch from
691           Stephen Anthony with some modification (thanks!).
692         * src/gtksctree.c
693           src/mimeview.c: modified the behavior of MimeView (thanks to
694           HIRAMATSU).
695
696 2001-04-06
697
698         * src/utils.c: copy_file()
699           src/mh.c: applied (and modified) the patch from Darko Koruga
700           that enables to move messages across file systems (thanks!).
701         * src/procheader.c
702           src/utils.[ch]: applied the patch from Jorge Van Hemelryck
703           that converts the date of messages to the local time (thanks!).
704         * src/utils.c: remote_tzoffset_sec(): fixed a bug that the signs
705           of one-letter timezone were reversed.
706         * src/folder.c: folder_item_add_msg(): put the assertion for the
707           add_msg() method (thanks to TAKANO).
708
709 2001-04-05
710
711         * src/procmime.c: procmime_decode_content(): fixed a bug that
712           corrupted quoted-printable encoded messages when they include
713           `=00' (thanks to Masahiro Tomita).
714         * src/gtksctree.c
715           src/mimeview.c
716           src/summaryview.c: modified the DnD behavior of MIME view
717           (thanks to HIRAMATSU).
718
719 2001-04-04
720
721         * src/about.c: applied the patch from Sergey Vlasov that fixes
722           the appearance of the about dialog (thanks!).
723         * src/prefs_common.[ch]
724           src/rfc2015.[ch]
725           src/mimeview.c
726           src/procmime.[ch]
727           src/compose.[ch]
728           src/passphrase.c
729           src/textview.[ch]: applied the GnuPG support patch which had
730           ported from the sylpheed-win32 branch (thanks to Sergey Vlasov).
731         * INSTALL, INSTALL.jp: updated the description about GnuPG.
732
733 2001-04-03
734
735         * src/utils.[ch]: added references_list_append() that parses
736           References header and makes it string list.
737         * src/compose.c: modified so that too long References header is
738           truncated, garbage characters are removed, and header is tidied
739           up (thanks to Matthias Intemann).
740
741 2001-04-02
742
743         * src/addr_compl.c: applied the address completion bugfix patch
744           from Alfons Hoogervorst (thanks!).
745
746 2001-04-01
747
748         * src/gtksctree.c: modified so that the tree_select_row signal
749           actually pass the column number.
750         * src/summaryview.c: summary_selected(): made generic mark and
751           unread mark can be toggled with clicking of the columns.
752           Added summary_mark_row_as_read() and summary_mark_row_as_unread().
753         * src/prefs_common.c
754           src/prefs_account.c: applied the layout fix patches from Sergey
755           Vlasov, and adjusted some widths of GtkEntry widgets.
756         * src/prefs.c: prefs_dialog_create(): enable notebook to take focus.
757         * src/inc.c: inc_start(): modified so that authentication dialogs
758           show server name too (thanks to Sergey Vlasov).
759
760 2001-03-31
761
762         * src/mimeview.c: mimeview_key_pressed(): fixed a bug that caused
763           segmentation fault when a malformed multipart message is shown
764           (thanks to Sergey Vlasov).
765         * src/summaryview.c: summary_display_msg(): made it focus to the
766           summary view if the MIME list is empty.
767
768 2001-03-30
769
770         * src/pixmaps/deleted.xpm
771           src/pixmaps/mark.xpm
772           src/summaryview.c: added deleted and mark icon.
773         * src/gtkutils.c: gtkut_widget_init(): changed gtk_widget_destroy()
774           to gtk_widget_unref().
775         * src/addr_compl.c: start_address_completion(): fixed the bug that
776           displayed warning when the address book was empty (thanks to
777           Chideok Hwang).
778
779 2001-03-29
780
781         * src/summaryview.c: summary_show(): fixed a memory leak bug
782           (thanks to ChiDeok Hwang).
783         * src/pixmaps/forwarded.xpm
784           src/pixmaps/replied.xpm
785           src/pixmaps/new.xpm
786           src/pixmaps/unread.xpm
787           src/compose.c
788           src/mainwindow.c
789           src/prefs_common.c
790           src/procmsg.h
791           src/summaryview.[ch]: applied the patch from Marc Hoper
792           that adds replied and forwarded mark to replying or forwarding
793           messages (thanks!). And new and unread mark were replaced
794           by the icons David Mehrmann created (thanks!).
795         * src/summaryview.c: made the width of unread and MIME column
796           fixed.
797         * src/prefs.c: prefs_config_parse_one_line(): made it check the
798           '=' separator (thanks to Sergey Vlasov).
799
800 2001-03-26
801
802         * src/prefs_common.[ch]: moved smooth scroll option to the
803           interface tab.
804         * src/textview.c: made the one-line scroll also perform smooth
805           scrolling.
806
807 2001-03-25
808
809         * src/prefs_common.[ch]
810           src/textview.c: applied the smooth scroll patch from Setoh and
811           Ninomiya (thanks!).
812
813 2001-03-24
814
815         * src/summaryview.c: summary_attract_by_subject(): rewritten it
816           using hash table for speeding up.
817         * src/prefs_account.c: made filter_on_receive TRUE by default.
818         * src/mainwindow.c: reordered menu items.
819
820 2001-03-23
821
822         * src/gtkutils.c: gtkut_clist_bindings_add(): fixed a bug that
823           caused address completion not to accept space and enter key.
824
825 2001-03-22
826
827         * src/utils.[ch]
828           src/codeconv.c: fixed a bug that didn't encode non-ASCII headers
829           correctly.
830         * src/compose.c: fixed a bug that didn't decode some headers
831           correctly when replying or reediting drafts (thanks to Sergey
832           Vlasov).
833
834 2001-03-21
835
836         * src/gtkutils.[ch]: added gtkut_widget_init() that modifies the
837           behaviors of some classes.
838         * src/main.c: main(): made it call gtkut_widget_init() first.
839         * src/summaryview.c: summary_create(): removed the key binding code.
840
841 2001-03-19
842
843         * src/procmsg.[ch]: modified for the sake of readability.
844
845 2001-03-18
846
847         * src/mainwindow.c: changed "Clean trash" to "Empty trash".
848           Added new menu items for folder manipulation.
849           allsel_cb(): made it change the target between summary view and
850           message view according to the input focus.
851           Removed "Select all" from Summary submenu.
852         * src/folderview.[ch]: added functions for creating/renaming/deleting
853           folder.
854         * src/procmsg.[ch]: made "marked" and "deleted" flag permanent, and
855           removed "important" flag.
856         * src/summaryview.c: added summary_set_row_marks() that sets style
857           of a row according to the flags, and made some functions use it.
858         * src/mainwindow.c: allsel_cb(): modified so that it selects
859           summary view correctly if message view is toggled off.
860
861 2001-03-17
862
863         * src/socket.c: sock_connect_by_getaddrinfo(): fixed a resource
864           leak bug of socket, and rewrote the routine.
865         * src/inc.c: inc_mail(), inc_all_account_mail(): fixed a bug that
866           displayed the wrong unread number in the folder tree if a
867           folder was open and new messages arrived at the folder.
868         * src/socket.c: sock_connect_by_getaddrinfo(): fixed a bug
869           again.
870
871 2001-03-15
872
873         * src/mh.c: mh_move_msg(), mh_move_msgs_with_dest(): made it
874           check the existence of the destination file.
875         * src/procmsg.c: procmsg_set_flags(): made it count the last
876           number of the message list (and fixed a bug that didn't open
877           newly arrived message).
878
879 2001-03-13
880
881         * src/prefs_common.c: prefs_send_create(): removed EUC-JP and
882           Shift_JIS from the outgoing codeset.
883
884 2001-03-12
885
886         * version 0.4.62
887
888 2001-03-11
889
890         * src/send.c: send_message_queue(): modified so that it finds
891           the account from the `From' and the server name of the queued
892           message.
893         * src/account.[ch]: added account_find_from_smtp_server() that
894           finds an account from the specified address and SMTP server.
895         * src/Makefile.am
896           src/mainwindow.c
897           src/summaryview.[ch]
898           src/sourcewindow.[ch]: integrated the viewing source patch from
899           DINH V. Hoà (thanks!).
900
901 2001-03-10
902
903         * src/addr_compl.[ch]
904           src/addressbook.c
905           src/compose.c: applied the enhanced address completion patch
906           from Alfons Hoogervorst (thanks!).
907         * src/addr_compl.c: replaced g_assert() with g_return(_val)_if_fail().
908         * src/folder.c: folder_init()
909           src/folderview.c: folderview_drag_motion_cb()
910           src/procmsg.c: procmsg_clean_trash()
911           src/summaryview.c: summary_start_drag()
912           src/imap.[ch]: integrated the IMAP4 move/remove function patch
913           from Suzuki Mio (thanks!).
914
915 2001-03-08
916
917         * src/main.c: parse_cmd_opt(): made the --compose option realize
918           mailto: URI.
919         * src/utils.[ch]: execute_async(): supported quoted arguments
920           correctly.
921           strstr_with_skip_quote(), strsplit_with_quote(): quote-supported
922           version of g_strsplit().
923         * src/mimeview.c: mimeview_view_file()
924           src/prefs_common.c: added single quotation mark around the file
925           name.
926
927 2001-03-07
928
929         * configure.in
930           src/compose.c
931           src/prefs.c
932           src/procmime.c
933           src/summaryview.c
934           src/mbox.c
935           src/recv.c
936           src/utils.[ch]: applied the security fix patch from Dmitry V.
937           Levin with some modification (thanks!). Added my_tmpfile() to
938           utils.[ch].
939         * src/main.c: added --receive-all command-line option.
940
941 2001-03-06
942
943         * src/socket.c: sock_connect_thread(): fixed a bug that didn't
944           compile if both multithread and IPv6 are enabled (thanks to
945           Ishihara).
946         * src/utils.[ch]
947           src/compose.c: applied a patch from Jason McCarver that allows
948           FIFO for signature file (thanks!).
949         * src/textview.c: made some more refactoring.
950         * src/socket.c: sock_accept(): changed socklen_t to gint.
951
952 2001-03-05
953
954         * src/main.c
955           src/textview.c: some code cleanups.
956
957 2001-03-04
958
959         * src/compose.[ch]
960           src/main.c
961           src/textview.c: integrated the patch from Alfons Hoogervorst that
962           fixes some glitches in clickable URI and enables mail addresses
963           clickable, and enables the --compose command line option to
964           specify address (thanks!).
965
966 2001-03-03
967
968         * src/esmtp.[ch]
969           src/smtp.[ch]
970           src/send.c
971           src/prefs_account.[ch]
972           src/Makefile.am: applied the SMTP AUTH patch from Martin Schaaf
973           and fixed its a few bugs (thanks!).
974         * src/textview.c: textview_key_pressed(): made it don't move focus
975           to summary view.
976         * src/main.c: parse_cmd_opt(): modified the help message.
977         * src/html.[ch]: added empty_line to HTMLParser and modified
978           the parser routines a bit.
979
980 2001-03-01
981
982         * src/html.c: added eucjp_symbol_list, and added some characters
983           to ascii_symbol_list.
984
985 2001-02-19
986
987         * src/codeconv.[ch]: added a member `charset' and `charset_str'
988           to CodeConverter.
989         * src/html.[ch]: added the symbol list for ISO-8859-1 codeset.
990           html_parser_new(): made it change the symbol hash table
991           according to the character set of the document.
992           html_parse_special(): made it recognize character code number.
993
994 2001-02-17
995
996         * src/textview.c: added textview_show_html() that parses HTML and
997           display as a text.
998           textview_show_part(): made it call textview_show_html() if
999           the part is text/html.
1000         * src/html.[ch]: implemented HTML parser.
1001
1002 2001-02-15
1003
1004         * src/codeconv.[ch]: added CodeConverter, and its methods
1005           (conv_code_converter_new(), conv_code_converter_destroy(), and
1006            conv_convert()).
1007         * src/textview.c: removed the branches by HAVE_LIBJCONV and
1008           rewrote them using CodeConverter.
1009
1010 2001-02-12
1011
1012         * src/mbox.c: proc_mbox(): workaround for duplicated From_ line.
1013
1014 2001-02-11
1015
1016         * src/codeconv.c: some code cleanups.
1017
1018 2001-02-05
1019
1020         * src/mainwindow.c: main_window_popup(): fixed a bug that didn't
1021           popup the main window correctly.
1022         * src/codeconv.h: fixed a bug that the definition of CS_EUC_CN and
1023           CS_EUC_TW was reversed (thanks to Sakamoto).
1024
1025 2001-02-04
1026
1027         * src/gtkutils.[ch]
1028           src/main.c
1029           src/mainwindow.[ch]
1030           src/socket.[ch]: applied the patch from Hiramatu that enables
1031           prohibition of multiple execution and remote control with
1032           command line option (thanks!).
1033
1034 2001-02-03
1035
1036         * src/summaryview.c: summary_button_pressed(), summary_selected():
1037           made it toggle the view if middle button is clicked while message
1038           view is hidden.
1039           summary_drag_data_get(): fixed a memory leaking.
1040         * src/Makefile.am
1041           src/compose.c: compose_write_headers(): modified so that it uses
1042           host_alias for X-Mailer or X-Newsreader field.
1043
1044 2001-02-03
1045
1046         * version 0.4.61
1047
1048         * src/folderview.c: fixed a bug that prevented a folder from being
1049           created if there were already folders that have the same name
1050           somewhere at another place.
1051
1052 2001-02-02
1053
1054         * src/folderview.c: folderview_update_all(): fixed a bug that
1055           caused segmentation fault when a folder was selected after
1056           updating the folder tree.
1057         * src/compose.c: compose_send(): fixed a locking bug.
1058           compose_write_headers(): fixed a bug that referred to cur_account.
1059           compose_convert_header(): made it check the arguments.
1060
1061 2001-02-01
1062
1063         * src/main.c: some cleanups and added --help option.
1064
1065 2001-01-31
1066
1067         * src/send.c: re-enabled user-defined domain name setting.
1068         * src/utils.c: is_next_mbs(): changed the size of temporary
1069           multibyte array to MB_CUR_MAX.
1070           strdup_mbstowcs(): added error check to mbstowcs().
1071           strdup_wcstombs(): added error check to wcstombs().
1072         * src/addr_compl.c: get_address_from_edit(): made it check the
1073           return value of strdup_mbstowcs().
1074         * src/codeconv.c: conv_encode_header(): added error checking
1075           to strdup_mbstowcs().
1076
1077 2001-01-30
1078
1079         * src/utils.c: log_error(): changed g_error() to g_warning() so
1080           that it doesn't abort.
1081           Added iswalnum().
1082         * src/addr_compl.c: add_address(): fixed a bug that aborted the
1083           program if the name or the address is empty.
1084           get_address_from_edit(): supported multibyte characters.
1085         * configure.in: fixed a typo.
1086         * src/send.c: re-enabled user-defined SMTP port setting.
1087
1088 2001-01-30
1089
1090         * version 0.4.60
1091
1092         * configure.in: added --enable-gpgme option, and disabled GPGME
1093           by default.
1094         * made GPGME related members in MimeInfo not used if disabled.
1095         * src/rfc2015.c: some cleanups for warning.
1096         * README
1097           README.jp
1098           INSTALL
1099           INSTALL.jp: updated.
1100         * Makefile.am: modified bzip2 option.
1101
1102 2001-01-29
1103
1104         * src/procmime.[ch]: added MIME_APPLICATION_OCTET_STREAM to
1105           MIME type.
1106         * src/mimeview.c: mimeview_view_file(): made it do nothing if
1107           the MIME type is application/octet-stream.
1108         * src/folderview.c: folderview_update_all(): made it show modal
1109           dialog while updating folders.
1110         * src/folderview.c: folderview_update_all(): fixed a bug that
1111           didn't remove the dialog.
1112
1113 2001-01-28
1114
1115         * src/mimeinfo.c: merged the patch from John E.P. Hynes that
1116           launches the attached file using metamail (thanks!).
1117         * src/procmime.[ch]: added procmime_get_tmp_file_name().
1118         * src/compose.c
1119           src/addr_compl.[ch]: merged the patch from Alfons Hoogervorst
1120           that enables address completion in the address entry on the
1121           composition window (thanks!).
1122         * src/addr_compl.c: get_all_addresses(), read_address_book():
1123           modified so that it uses xml_free_tree() for freeing the address
1124           tree.
1125
1126 2001-01-27
1127
1128         * src/utils.c: remove_dir_recursive(): fixed a bug that failed to
1129           remove the current directory (thanks to Maki).
1130         * src/summary_search.c: added `Select all matched' option to the
1131           search dialog (thanks to Takahashi).
1132         * src/pixmaps/stock_mail_attach.xpm
1133           src/pixmaps/tb_address_book.xpm
1134           src/compose.c: added some toolbar icons contributed from
1135           Leandro Pereira (thanks!).
1136
1137 2001-01-25
1138
1139         * src/rfc2015.c: passphrase_cb(): *finally* fixed a bug that caused
1140           segmentation fault when the passphrase dialog was cancelled.
1141           Hided the passphrase in the debug message.
1142         * src/about.c: about_create(): fixed a bug that failed to compile
1143           when none of the features were used.
1144         * src/foldersel.c: foldersel_set_tree(): made it display all
1145           MH folders.
1146         * src/inc.c: inc_start(): fixed a bug that showed password dialog
1147           continuously if it was cancelled.
1148         * src/summaryview.c: summary_write_cache(): put an assertion after
1149           folder_item_get_cache_file() to prevent the crash.
1150         * thanks to Maki for the above four fixes.
1151         * src/utils.h: added #include <alloca.h>.
1152
1153 2001-01-24
1154
1155         * src/rfc2015.c: changed some g_message() used for error messages
1156           to g_warning().
1157
1158 2001-01-23
1159
1160         * src/procmsg.[ch]: modified READ_CACHE_DATA() macro so that
1161           it can handle a string data of which length >= BUFFSIZE.
1162         * src/rfc2015.c: rfc2015_encrypt(): changed return to `goto failure'.
1163         * src/pixmaps/stock_mail_receive_all.xpm
1164           src/pixmaps/stock_mail_reply_to_all.xpm
1165           src/Makefile.am
1166           src/mainwindow.c: main_window_toolbar_create(): added new toolbar
1167           icons contributed from David Mehrmann (thanks!).
1168         * src/inc.[ch]: overhauled the architecture so that it don't create
1169           and destroy progress dialog for each incorporation in `get all'
1170           mode.
1171
1172 2001-01-22
1173
1174         * src/mh.c: mh_scan_tree_recursive(): fixed a bug that mistook
1175           sub folders named `inbox', etc. as special folders.
1176         * src/rfc2015.c: rfc2015_encrypt(): fixed a bug that didn't quote
1177           boundary correctly.
1178
1179 2001-01-21
1180
1181         * applied the GnuPG patch from Werner Koch (thanks!).
1182         * removed Mixmaster support.
1183         * src/rfc2015.c: changed g_error() to g_warning() and modified some
1184           messages.
1185         * src/about.c: about_create(): modified compiled-in features list.
1186         * README
1187           README.jp
1188           INSTALL
1189           INSTALL.jp: updated.
1190         * src/select-keys.c: create_dialog(): modified the layout.
1191         * src/headerwindow.c
1192           src/addressbook.c
1193           src/logwindow.c: made it raise the window if the window is already
1194           open.
1195         * src/prefs_common.[ch]: added an option for immediate execution.
1196         * src/summaryview.c: made it execute immediately when messages are
1197           moved or deleted if immediate_exec option is turned on.
1198         * src/summaryview.c: summary_delete(), summary_move_selected_to():
1199           moved summary_step() before summary_execute().
1200         * src/folderview.c: folderview_update_all(): made it scan folder
1201           tree correctly.
1202         * src/compose.c: compose_write_headers(): made it don't add
1203           In-Reply-To header if to_list is empty.
1204
1205 2001-01-09  Werner Koch  <wk@gnupg.org>
1206
1207         * configure.in, acconfig.h: Check for GPGME.
1208         * ac/: New directory for local autoconf macros.
1209         * src/Makefile.am: Add support for GPGME
1210
1211         * src/main.c (idle_function_for_gpgme): New.
1212         (main): Register this function.
1213
1214         * src/about.c: Add a note about GPGME.
1215
1216         * src/rfc2015.c, rfc2015.h: New.
1217
1218         * src/mimeview.c (mimeview_show_message): Check signature.
1219         * src/procmime.c (procmime_scan_message): Ditto.
1220
1221         * src/messageview.c (messageview_show): Add decryption stuff.
1222
1223         * src/compose.c (compose_write_to_file): Encrypt the file if requested.
1224         (compose_toggle_encrypt_cb): New
1225         (compose_toggle_mixmaster_cb): New, just to be prepared for
1226         Mixmaster support.
1227         (compose_write_headers): Suppress some headers in mixmaster mode.
1228
1229         * src/prefs_common.c (prefs_common_create): Add Privacy notebook sheet.
1230         (prefs_privacy_create): New.  Also some new structures etc.
1231         * src/compose.c (compose_create): Set encrypt button to prefs default.
1232         * src/compose.h (struct _Compose): Add use_encryption, use_mixmaster.
1233
1234         * src/compose.c (compose_send): Add missing unlock before one return.
1235
1236 2001-01-18
1237
1238         * src/gtksctree.[ch]
1239           src/folderview.c
1240           src/summaryview.[ch]: applied the patch from Hiramatu that enables
1241           DnD from the summary view to the folder view and fixes some other
1242           probrems (thanks!).
1243         * src/mainwindow.c: scan_tree_func(): fixed a bug that caused
1244           segmentation fault.
1245         * src/imap.c: quoted user name in LOGIN and folder name in SELECT.
1246         * src/gtksctree.c: gtk_sctree_button_press(): fixed a bug that
1247           didn't toggle expansion of node.
1248
1249 2001-01-17
1250
1251         * src/imap.c: applied the patch from Nishimura that updates the
1252           message list more precisely and reads the message flags (thanks!).
1253         * src/textview.c: textview_show_header(): made X-Newsreader field
1254           be emphasized too.
1255         * src/summaryview.c: summary_show(): made it flush events when
1256           displaying summary.
1257
1258 2001-01-15
1259
1260         * src/summaryview.c: applied the patch from Alfons that enabled
1261           the horizontal scrollbar of summary view (thanks!).
1262
1263 2001-01-13
1264
1265         * src/compose.c: compose_cb(): fixed a bug that didn't open the
1266           composition window right after launching the program.
1267         * src/setup.c: scan_tree_func(): fixed a bug that caused
1268           segmentation fault.
1269
1270 2001-01-13
1271
1272         * version 0.4.52
1273
1274         * src/textview.c: textview_set_font(): fixed a bug that caused
1275           segmentation fault if the mode of the text widget was changed
1276           between multibyte and singlebyte while the region was selected
1277           (GTK+ bug?).
1278
1279 2001-01-11
1280
1281         * src/mainwindow.c
1282           src/summaryview.c: made it unable to delete or move messages when
1283           in a news folder.
1284         * src/prefs_common.c
1285           src/news.c: added the option for maximum news article number.
1286
1287 2001-01-10
1288
1289         * src/compose.c: compose_send(): changed the location of temporary
1290           file. Made it use the default account if all of tried account
1291           aren't mail one, and made it show alert dialog and abort when even
1292           that failed.
1293         * src/prefs_account.c: prefs_account_get_new_id(): made it preserve
1294           last id number.
1295           prefs_account_open(): made it fill in personal information
1296           according to the default account when creating a new account.
1297         * sylpheed.spec.in: added to autogenerate sylpheed.spec with the
1298           proper version number (thanks to BONAIM).
1299         * configure.in
1300           Makefile.am: added entries for sylpheed.spec.in.
1301
1302 2001-01-09
1303
1304         * src/compose.[ch]: modified so that it can change account
1305           correctly.
1306         * src/send.[ch]: modified so that it doesn't see cur_account.
1307         * src/prefs_account.c: modified so that news setting doesn't
1308           show SMTP server entry.
1309
1310 2001-01-08
1311
1312         * src/folderview.c: fixed a bug that didn't sort special folders
1313           correctly when a new folder is created or renamed.
1314
1315 2001-01-07
1316
1317         * src/compose.[ch]: enabled to select account at composing window.
1318         * src/folderview.c: made it display unread number next to folder
1319           name.
1320         * src/prefs_common.[ch]: added the option for unread number display.
1321
1322 2001-01-06
1323
1324         * src/compose.[ch]: integrated news posting patch from DINH V. Hoà
1325           and made many modifications (thanks!).
1326           compose_write_headers(): made the spaces in newsgroups removed.
1327           Supported Followup-To.
1328           compose_destroy(): got the objects removed properly.
1329         * src/news.c: merged news_post_to_group() and news_post() since
1330           they doesn't have to do multiple posting.
1331         * src/import.c: import_destsel_cb(): fixed a bug that failed to
1332           import into the selected folder.
1333         * src/prefs_account.c: modified the interfaces.
1334
1335 2001-01-05
1336
1337         * src/codeconv.[ch]
1338           prefs_common.c: changed "SHIFT-JIS" to "Shift_JIS" since the
1339           string is registerd to IANA.
1340         * src/nntp.[ch]: added nntp_post().
1341         * src/news.[ch]: added news_post() and news_post_to_group().
1342
1343 2001-01-04
1344
1345         * src/account.c: account_edit_open()
1346           src/mainwindow.c: new_account_cb(): made it unable to edit
1347           accounts if some composing windows are open.
1348
1349 2001-01-03
1350
1351         * src/folder.[ch]: added folder_set_name().
1352         * src/account.c: made a folder name of IMAP4/NNTP become the same
1353           as the name of account.
1354
1355 2001-01-02
1356
1357         * src/summaryview.c: summary_filter_func(): fixed a bug that failed
1358           to filter messages.
1359
1360 2001-01-02
1361
1362         * version 0.4.51
1363
1364         * src/mbox.c: fixed a bug that didn't incorporate spool file
1365           correctly. Modified so that it recognizes From_ line as separator
1366           of messages even if the previous line isn't empty line.
1367         * src/send.c: send_message_queue()
1368           src/procmsg.c: procmsg_send_queue(): Fixed a bug that printed
1369           warning when it tried to delete a sent message.
1370
1371 2001-01-01
1372
1373         * version 0.4.50
1374
1375         * src/folder.[ch]
1376           src/news.[ch]: modified so that it actually gets news articles.
1377         * src/utils.[ch]: added make_dir_hier() that creates directory
1378           hierarchy.
1379         * src/folder.c:
1380           folder_item_get_cache_file(), folder_item_get_mark_file():
1381           made it creates cache directory if it doesn't exist.
1382           folder_add(): made it insert the added folder into the correct
1383           position.
1384         * src/imap.[ch]: modified so that it suits the new folder
1385           architecture. Fixed a bug that caused segmentation fault
1386           if authentication failed at imap_auth().
1387         * src/folderview.c: implemented IMAP4 folder handling routines.
1388
1389 2000-12-31
1390
1391         * src/prefs_account.[ch]: added account ID and nntp_server
1392           to PrefsAccount. And added the interface for NNTP server.
1393         * src/folderview.c: modified news folder handling routines.
1394         * src/folder.[ch]: removed cache_dir from RemoteFolder, and
1395           modified folder_item_get_path().
1396
1397 2000-12-29
1398
1399         * src/folder.[ch]: added create_folder(), rename_folder(),
1400           remove_folder() to Folder class.
1401         * src/mh.[ch]: added mh_create_folder(), mh_rename_folder(), and
1402           mh_remove_folder().
1403           Implemented mh_create_tree() that creates MH directory tree.
1404           mh_rename_folder(): modified so that the paths of sub folders
1405           are set properly.
1406         * src/folderview.c: modified folderview_new_folder_cb(),
1407           folderview_rename_folder_cb(), and folderview_delete_folder_cb()
1408           so that they work properly.
1409           Added folderview_remove_mailbox_cb() and the menu entry that
1410           remove mailbox from folder tree.
1411         * src/setup.[ch]: added for initial setup.
1412         * src/alertpanel.c: modified the appearance of the dialog.
1413         * src/compose.c: fixed compose_save_to_outbox() and
1414           compose_queue() so that it sets flags correctly.
1415
1416 2000-12-28
1417
1418         * src/mainwindow.c: modified the strings of toolbar labels.
1419
1420 2000-12-27
1421
1422         * src/gtkutils.[ch]: added gtkut_ctree_node_move_if_on_the_edge().
1423         * src/summaryview.c: summary_display_msg(): made it scroll the
1424           list if the message of the edge of that is displayed.
1425
1426 2000-12-25
1427
1428         * src/folder.[ch]
1429           src/mh.[ch]: added functions for moving messages.
1430         * src/procmsg.[ch]: moved procmsg_move_messages_with_dest()
1431           to folder.c and mh.c. Added procmsg_to_folder_hash_table().
1432
1433 2000-12-24
1434
1435         * src/utils.[ch]: added get_tmp_file().
1436         * src/pop.c
1437           src/inc.c
1438           src/folder.c: fixed a bug that failed to drop messages.
1439         * src/mh.c: mh_scan_folder(): made it check new, unread, and total
1440           number of the folder.
1441
1442 2000-12-23
1443
1444         * src/folderview.c: added special folder setting routine.
1445         * src/folder.[ch]: added a method is_msg_changed().
1446           Implemented folder_find_item_from_path().
1447         * src/summaryview.c: fixed some bugs that wrongly freed FolderItem's.
1448         * autogen.sh: fixed so that the configure can take arguments.
1449
1450 2000-12-22
1451
1452         * src/main.c
1453           src/mainwindow.[ch]: added main_window_new_mailbox() that asks
1454           the path of mailbox and create the one.
1455         * src/folderview.c: made the folder tree and selected folder
1456           expanded.
1457
1458 2000-12-21
1459
1460         * src/mh.[ch]
1461           src/folder.c: implemented mh_scan_tree() that scans the folder
1462           recursively and create the tree.
1463
1464 2000-12-19
1465
1466         * src/compose.c
1467           src/defs.h
1468           src/filter.[ch]
1469           src/folder.[ch]
1470           src/foldersel.[ch]
1471           src/folderview.[ch]
1472           src/imap.[ch]
1473           src/import.c
1474           src/inc.c
1475           src/main.[ch]
1476           src/mainwindow.c
1477           src/mbox.[ch]
1478           src/mh.[ch]
1479           src/news.[ch]
1480           src/prefs_common.c
1481           src/procmsg.[ch]
1482           src/summaryview.[ch]
1483           src/xml.[ch]
1484           src/Makefile.am: merged the development tree into the cvs tree.
1485           Some functions are not unimplemented yet.
1486
1487 2000-12-18
1488
1489         * version 0.4.9
1490
1491 2000-12-11
1492
1493         * src/xml.[ch]: supported omitted tag (<tag />).
1494         * src/procmsg.c: procmsg_msg_exist(): fixed a memory leak bug.
1495         * src/imap.c: imap_parse_atom(): fixed a bug that caused
1496           segmentation fault if the subject was empty (thanks to Tsutsui).
1497         * src/folder.[ch]: updated.
1498
1499 2000-12-10
1500
1501         * src/xml.[ch]: added xml_parse_file() that parses the whole XML
1502           file specified and returns the tree.
1503
1504 2000-12-09
1505
1506         * po/pt_BR.po: fixed some typos that caused segmentation fault.
1507
1508 2000-12-07
1509
1510         * version 0.4.8
1511
1512         * src/session.h: added.
1513         * src/folder.[ch]: updated.
1514         * src/compose.c: compose_write_to_file()
1515           src/codeconv.c: conv_get_outgoing_charset_str(): fixed a bug
1516           that put a garbage to charset if the outgoing character set was
1517           specified and non-ascii characters were used in subject.
1518
1519 2000-12-04
1520
1521         * src/statusbar.c: statusbar_puts(): fixed a bug that locked the
1522           progress if the status bar was hidden.
1523
1524 2000-12-03
1525
1526         * src/folder.[ch]: added for the more object-oriented folder
1527           management.
1528
1529 2000-12-02
1530
1531         * version 0.4.7
1532
1533         * src/mainwindow.c
1534           src/prefs_common.[ch]: made the state of status bar get preserved.
1535         * src/compose.c: compose_insert_sig(): modified so that it doesn't
1536           put a separator if a signature file doesn't exist.
1537         * src/prefs_account.[ch]
1538           src/inc.c: added the option that toggles whether to receive
1539           messages when getting from all accounts.
1540         * README
1541           README.jp: updated the description and added some usages.
1542
1543 2000-12-01
1544
1545         * src/Makefile.am
1546           src/gtkshruler.[ch]
1547           src/compose.[ch]: applied the patches from Alfons Hoogervorst
1548           that makes the ruler of composition window graphical (thanks!).
1549
1550 2000-11-27
1551
1552         * src/codeconv.c
1553           src/mainwindow.c
1554           src/prefs_common.c: replaced CS_WINDOWS_1251 with CS_CP1251.
1555
1556 2000-11-27
1557
1558         * version 0.4.6
1559
1560         * src/compose.c: turned the color of quoted messages black again.
1561
1562 2000-11-26
1563
1564         * src/about.c: added a clickable URI to the Sylpheed home page,
1565           and a list of compiled-in features.
1566         * src/compose.c: made the color of quoted messages blue.
1567         * src/summaryview.c: added `Show all header' to the context menu.
1568         * src/prefs_common.c: removed the threading option from the dialog.
1569         * src/compose.c: fixed a bug that didn't parse the quotation format
1570           correctly.
1571
1572 2000-11-25
1573
1574         * src/compose.c: compose_set_ext_editor_sensitive(): modified so
1575           that it toggles linewrap menu item and tool button.
1576         * src/prefs_common.c: modified the default of the signature
1577           separator.
1578         * src/compose.[ch]: added ruler to the compose window.
1579         * src/prefs_common.[ch]: added a member for the state of ruler
1580           display.
1581
1582 2000-11-24
1583
1584         * src/headerview.[ch]: added the destroy function.
1585         * src/messageview.c: messageview_destroy(): fixed a memory leak
1586           bug that didn't freed the HeaderView object.
1587         * src/prefs.c: prefs_write_open(): fixed a memory leak bug.
1588         * src/xml.c: xml_close_file(): fixed a memory leak bug (thanks
1589           to Alfons Hoogervorst for the above three memory leak bug fixes).
1590
1591 2000-11-23
1592
1593         * version 0.4.5
1594
1595         * README
1596           README.jp
1597           INSTALL
1598           INSTALL.jp: modified some descriptions.
1599
1600 2000-11-22
1601
1602         * src/compose.c: implemented line-wrapping functions.
1603         * src/prefs_common.[ch]: added the settings for line-wrapping.
1604         * src/codeconv.[ch]: added Windows-1251 to the codesets.
1605           conv_jistoeuc(): fixed a bug that caused segmentation fault
1606           when some half-width kana characters appeared.
1607         * src/summaryview.c: summary_select_all(): made it show message
1608           on the status bar if the number of messages is large.
1609
1610 2000-11-18
1611
1612         * src/compose.c: compose_reply(), compose_quote_parse_fmt():
1613           modified so that it parses the quotation mark too.
1614           Added %I that means the initial of sender to the format.
1615         * src/codeconv.[ch]: added GB2312 and Big5 to the codesets.
1616           Fixed a bug that set the wrong outgoing codeset.
1617         * src/mainwindow.c
1618           src/prefs_common.c: modified the menu item of Chinese codeset.
1619
1620 2000-11-17
1621
1622         * src/codeconv.[ch]
1623           src/prefs_common.[ch]: modified so that outgoing charset is
1624           saved as a string, not a number.
1625
1626 2000-11-16
1627
1628         * src/textview.c: textview_set_font(): changed the scheme of
1629           selecting between font and fontset. And changed the default
1630           font of ISO-8859-1.
1631         * src/headerview.c: headerview_show_xface(): made it ignore
1632           invalid X-Face.
1633         * src/codeconv.c: conv_codeset_strdup(), conv_get_code_conv_func():
1634           modified so that it consider the source codeset as ISO-2022-JP if
1635           it is NULL and the current locale is Japanese.
1636
1637 2000-11-14
1638
1639         * src/textview.c: textview_destroy(): fixed a bug that caused
1640           segmentation fault if textview->msgfont is NULL (thanks to
1641           Hiramatu).
1642         * src/main.c
1643           src/defs.h: applied the patch from Yanase that enables to
1644           save the shortcuts of the menus (thanks!).
1645
1646 2000-11-11
1647
1648         * src/mainwindow.[ch]: added main_window_set_menu_sensitive() that
1649           toggles the sensitivity of menu items.
1650         * src/summaryview.c: renamed summary_set_popup_sensitive() to
1651           summary_set_menu_sensitive(), and made it set the sensitivity of
1652           the main menu.
1653
1654 2000-11-09
1655
1656         * src/textview.c: textview_init(): fixed a bug that didn't disable
1657           the theme engine of GtkText (thanks to Hiramatu).
1658         * src/compose.c: compose_quote_parse_fmt(): added %n and %N that
1659           means the full name of sender and the first name.
1660         * manual/ja/*.??ml: updated to the latest version.
1661
1662 2000-11-07
1663
1664         * version 0.4.4
1665
1666         * src/defs.h: separated the definitions from main.h and applied the
1667           patch from TOGAWA that sets DEFAULT_SPOOL_PATH and MAXPATHLEN
1668           from the system headers (thanks!).
1669         * src/codeconv.c: conv_get_current_charset(): fixes for lt_LT and
1670           UTF-8 locale.
1671         * src/textview.c: textview_set_font(): modified so that it sets
1672           the correct font when the locale is multi-byte.
1673           textview_destroy(): added proper codes for destruction.
1674           textview_show_header(): fixed the coloration of X-Mailer.
1675
1676 2000-11-06
1677
1678         * src/textview.[ch]: made TextView have single-byte and multi-byte
1679           GtkText, and switch between them according to the given codeset.
1680         * src/compose.c: compose_create(): modified the font setting
1681           routine.
1682
1683 2000-11-02
1684
1685         * src/textview.[ch]: moved the message font variable into TextView.
1686           textview_set_font(): modified so that it uses gdk_font_load()
1687           if the given codeset is US-ASCII or ISO-8859-*.
1688
1689 2000-11-01
1690
1691         * src/codeconv.c
1692           src/procmime.c
1693           src/prefs_common.c
1694           src/textview.c
1695           src/compose.c: workaround for the 8bit code issue (used
1696           gdk_font_load() instead of gdk_fontset_load() when the locale is
1697           C, or not set).
1698
1699 2000-11-01
1700
1701         * version 0.4.3
1702
1703         * src/compose.[ch]: added `Draft' tool button.
1704         * src/imap.c: imap_parse_envelope(): fixed a parsing bug.
1705         * README, README.jp: added the explanation of the locale setting.
1706
1707 2000-10-31
1708
1709         * src/compose.c: made it overwrite the previous draft message when
1710           reedited the draft and saved it again.
1711         * src/procmsg.[ch]: added procmsg_msg_exist() that examine whether
1712           the message really exists.
1713         * src/folderview.[ch]: added folderview_scan_folder_a() and
1714           folderview_scan_folder_foreach_a() that scan the specified
1715           folders for each folderviews.
1716         * src/mainwindow.[ch]: removed main_window_scan_folder() and
1717           main_window_scan_folder_all().
1718           Added `Reedit' to the menu.
1719         * src/import.[ch]: removed MainWindow from the argument of
1720           import_mbox().
1721         * src/summaryview.c: removed the unnecessary items from the popup
1722           menu. Changed summary_reedit_cb() to summary_reedit(), and made
1723           it public.
1724
1725 2000-10-30
1726
1727         * src/compose.h: added a member msginfo to Compose.
1728         * src/procmsg.[ch]: added procmsg_msginfo_copy() that duplicates
1729           the MsgInfo object.
1730
1731 2000-10-25
1732
1733         * src/summaryview.c: made the the popup menu change the sensitivity
1734           according to the context. Fixed a bug that showed the `clean trash'
1735           dialog repeatedly if `D' key was pressed when the focus was on the
1736           summary view.
1737         * src/pixmaps/unread.xpm: changed the color of unread mark to blue.
1738
1739 2000-10-22
1740
1741         * src/main.c: fixed g_thread initialization.
1742
1743 2000-10-21
1744
1745         * src/codeconv.c: added pt_BR to locale_table.
1746         * src/prefs_common.c: prefs_send_create(): added `US-ASCII',
1747           `ISO-8859-1', and Japanese codeset to the option menu of outgoing
1748           codeset when not using libjconv.
1749         * src/compose.c: fixed the bug on saving draft again.
1750
1751 2000-10-19
1752
1753         * src/compose.c: compose_write_headers(): fixed a bug that failed
1754           to write headers if To: was empty when saving draft.
1755
1756 2000-10-18
1757
1758         * src/procmime.[ch]
1759           src/compose.c
1760           src/headerwindow.[ch]
1761           src/summaryview.c
1762           src/messageview.[ch]
1763           src/mimeview.c
1764           src/textview.c
1765           src/procmsg.[ch]
1766           src/procheader.[ch]: modified so that they can handle queue folder
1767           properly.
1768         * src/compose.[ch]
1769           src/summaryview.c: implemented draft-reediting function.
1770         * src/mainwindow.c
1771           src/summaryview.c
1772           src/mimeview.c: replaced *(GtkWidget **) with the macro
1773           GTK_WIDGET_PTR().
1774
1775 2000-10-17
1776
1777         * src/procmsg.[ch]: procmsg_msginfo_free(): fixed a memory leak bug.
1778           Added MSG_QUEUED and MSG_DRAFT to MsgFlags, and made it set them
1779           if the folder is QUEUE_DIR or DRAFT_DIR.
1780
1781 2000-10-14
1782
1783         * version 0.4.2
1784
1785         * src/headerview.c
1786           src/messageview.c: modified the border of the headerview.
1787         * src/gtkutils.h: added the macro GTK_WIDGET_PTR() that casts
1788           an Sylpheed object to GtkWidget.
1789         * src/utils.c: remove_return(), remove_space(): fixed a bug that
1790           possibly caused segmentation fault.
1791         * src/compose.[ch]
1792           src/mainwindow.c
1793           src/summaryview.c: implemented `forward as an attachment'.
1794         * src/utils.[ch]: open_uri(): brought on URI opening function from
1795           textview.c and manual.c.
1796
1797 2000-10-13
1798
1799         * src/mainwindow.c
1800           src/summaryview.c
1801           src/compose.[ch]
1802           src/prefs_common.[ch]: removed `Reply with quote', and added
1803           `Reply to all', and added the option that decides whether to
1804           quote message on replying.
1805
1806 2000-10-12
1807
1808         * src/folderview.c: modified so that it uses gtkut_wait_for_draw()
1809           instead of GTK_EVENTS_FLUSH() for statusbar redraw.
1810         * src/codeconv.[ch]
1811           src/mainwindow.c
1812           src/prefs_common.c: added Baltic (ISO-8859-4,13) to the code sets.
1813         * src/compose.c: compose_send(): modified so that it shows error
1814           dialog when failed to send a message.
1815
1816 2000-10-11
1817
1818         * src/account.c: account_edit_close(): fixed a bug that didn't set
1819           current account when creating an account for the first time.
1820         * configure.in: added es to ALL_LINGUAS.
1821
1822 2000-10-10
1823
1824         * src/codeconv.c: conv_codeset_strdup(): made it use libkcc if
1825           possible.
1826           conv_get_code_conv_func(): modified so that it doesn't convert
1827           codeset if it is unknown.
1828         * src/folderview.c: folderview_update_msg_num(): modified style
1829           changing routine.
1830
1831 2000-10-09
1832
1833         * src/codeconv.c: conv_codeset_strdup(): modified so that it sets
1834           codesets automatically if the arguments are NULL.
1835         * src/textview.c: textview_write_line(): made it output warning
1836           message on the text view if conversion failed.
1837
1838 2000-10-06
1839
1840         * README, README.jp: modified the author of the manual.
1841
1842 2000-10-05
1843
1844         * src/headerview.[ch]
1845           src/messageview.[ch]: modified so that it uses GtkLabel widget
1846           instead of GtkText.
1847         * src/codeconv.c: conv_unmime_header(): modified so that it deletes
1848           unreadable codes if the current locale is EUC-JP and libjconv is
1849           used.
1850
1851 2000-10-04
1852
1853         * src/procmime.[ch]
1854           src/messageview.c
1855           src/mimeview.c
1856           src/textview.c: modified so that it parses MIME message more
1857           preferably.
1858         * src/imap.c: imap_parse_address(): fixed a bug.
1859
1860 2000-10-03
1861
1862         * src/procmsg.[ch]: added procmsg_get_message_file_path().
1863         * src/recv.c: recv_bytes_write(): added CR+LF -> LF conversion
1864           routine.
1865         * src/imap.[ch]: changed the name of the member `group' in
1866           IMAPSession to `mbox'.
1867           imap_gen_send(): modified so that it doesn't output the password
1868           to the log.
1869           Modified session destroying routine.
1870         * src/folderview.c: folderview_write_cache(): made it preserve
1871           the IMAP folder list.
1872         * src/procmime.c: procmime_scan_multipart_message(): fixed a bug
1873           that showed boundary at the end of an attached RFC822 part.
1874         * src/prefs_common.c: changed the default of toolbar style to
1875           both icon and text.
1876
1877 2000-10-02
1878
1879         * src/imap.c: imap_get_uncached_messages(): modified so that it
1880           doesn't get the cached envelopes.
1881           imap_session_get_message_info(): made it read only the cache
1882           if the session is not established.
1883         * src/procmsg.c: procmsg_set_flags(): supported IMAP folder.
1884         * src/news.c: news_get_article_info(): made it read only the cache
1885           if the session is not established.
1886
1887 2000-10-01
1888
1889         * src/textview.c: textview_write_line(): fixed a memory leak bug.
1890         * src/folderview.[ch]: made it create IMAP4 folders from the
1891           account information.
1892         * src/imap.[ch]: imap_session_get(): modified so that it creates
1893           IMAP4 session from the account information.
1894
1895 2000-09-30
1896
1897         * src/imap.[ch]: added for IMAP4 support.
1898         * src/summaryview.[ch]
1899           src/procmsg.c
1900           src/recv.[ch]: modified for IMAP4 support.
1901         * src/folderview.c: more IMAP4 implementation.
1902         * src/procmsg.[ch]: added procmsg_get_message_file() that retrieves
1903           the specified message and return the file name.
1904         * src/gtkutils.c: gtkut_widget_wait_for_draw(): fixed a bug that
1905           locked up the process if the given widget was invisible.
1906
1907 2000-09-28
1908
1909         * src/folderview.[ch]: added IMAP4-related code.
1910
1911 2000-09-28
1912
1913         * version 0.4.1
1914
1915         * src/main.h: added IMAP_CACHE_DIR.
1916         * src/utils.[ch]: added get_imap_cache_dir().
1917         * src/procmsg.h: added M_IMAP to MsgType, and MSG_IMAP to MsgFlags.
1918           Added macro MSG_IS_IMAP().
1919         * src/codeconv.c: added `#include <locale.h>' for setlocale().
1920         * sylpheed.spec: fixed %files section.
1921
1922 2000-09-27
1923
1924         * version 0.4.0
1925
1926         * src/codeconv.c: conv_get_current_charset(): made it compare
1927           string with strncasecmp().
1928         * src/compose.c: comopse_reply_parse_header(): workaround for
1929           the malformed References: header generated by OE5 :(
1930
1931 2000-09-26
1932
1933         * src/prefs_common.c
1934           src/prefs_account.c: modified the layout of the widgets.
1935
1936 2000-09-26
1937
1938         * version 0.3.99
1939
1940         * src/*.[ch]: added copyright notice to the top of the source files.
1941         * src/compose.c: compose_write_attach(): modified filename encode
1942           routine.
1943
1944 2000-09-25
1945
1946         * src/mainwindow.c: fixed the menu entry of manual.
1947         * src/compose.c
1948           src/codeconv.[ch]: moved compose_encode_header() into codeconv.c,
1949           and applied the libjconv patch.
1950         * src/utils.c: strdup_mbstowcs(), strdup_wcstombs(): used g_realloc()
1951           to reduce the alloc'd memory to the optimal size.
1952         * src/prefs_common.[ch]: added outgoing codeset option menu.
1953         * src/compose.c: compose_send(): added exclusive lock to prevent
1954           multiple-sending.
1955         * configure.in: made '--enable-ipv6=no' the default.
1956         * src/compose.c: compose_write_attach(): made it encode the name
1957           of the attached file.
1958         * src/procmsg.c: procmsg_get_last_message_number(): fixed a bug that
1959           didn't check the type of file.
1960           procmsg_move_messages_with_dest(): fixed a bug that failed to
1961           move message if a directory that had the same name existed.
1962         * src/utils.c: is_ascii_str(): modified so that '\t', ' ', '\r', '\n'
1963           are included as ASCII characters.
1964
1965 2000-09-24
1966
1967         * src/compose.c
1968           src/procmime.[ch]: modified so that it actually works when using
1969           libjconv :)
1970         * src/codeconv.[ch]: added conv_codeset_strdup() that converts
1971           the codeset of string according to the codeset specified in
1972           arguments.
1973         * src/utils.[ch]: added is_ascii_str() that determines whether the
1974           string is 7bit-ASCII or not.
1975         * src/procmime.[ch]
1976           src/codeconv.[ch]: moved the character set related functions
1977           into codeconv.c.
1978         * merged the patch and the manual written by BONAIM (thanks!).
1979
1980 2000-09-23
1981
1982         * configure.in
1983           src/compose.c
1984           src/gtkutils.c
1985           src/mainwindow.c
1986           src/procmime.[ch]
1987           src/textview.c
1988           src/unmime.[ch]: applied the patch from Higuchi that utilizes
1989           libjconv and enables to handle many locales, including UTF-8
1990           (Unicode) (thanks!).
1991         * src/account.c: modified so that the account isn't changed when
1992           another account is selected on account edit dialog.
1993
1994 2000-09-20
1995
1996         * src/prefs_common.[ch]
1997           src/textview.c: added an option that specifies whether to display
1998           short headers on message view.
1999         * src/codeconv.[ch]: added function conv_unmime_header() that
2000           decodes MIME-encoded header and converts the character set.
2001           And added conv_unreadable_latin(), and modified conv_latintodisp().
2002         * src/messageview.[ch]: made the window get closed when escape key
2003           is pressed.
2004
2005 2000-09-17
2006
2007         * src/imageview.c: fixed a bug that caused segmentation fault if
2008           message view was in new window.
2009         * src/prefs_common.c: added `xemacs %s' to the external editor
2010           command line list.
2011
2012 2000-09-16
2013
2014         * version 0.3.29
2015
2016         * src/summaryview.c: enabled to open a new message window with
2017           double-clicking.
2018         * src/prefs_common.[ch]
2019           src/messageview.c: made it preserve the window size of message
2020           window.
2021         * src/prefs_account.c: added `None (local)' to the option menu of
2022           protocol.
2023
2024 2000-09-15
2025
2026         * Makefile.am: added autogen.sh to EXTRA_DIST.
2027
2028 2000-09-09
2029
2030         * src/prefs_common.c: applied the patch from Paul Rolland that
2031           enables font selection dialog (thanks!).
2032         * src/compose.[ch]
2033           src/utils.[ch]: moved tzoffset() and compose_get_date() of
2034           compose.[ch] into utils.[ch].
2035         * src/main.[ch]: renamed the name of filter file to `filterrc'.
2036
2037 2000-09-06
2038
2039         * src/compose.[ch]
2040           src/utils.[ch]: modified address parsing routine so that it
2041           parses quotes correctly.
2042         * src/textview.c: textview_show_part(): modified so that it shows
2043           the simplified headers if the part is text/plain.
2044
2045 2000-09-03
2046
2047         * src/messageview.[ch]
2048           src/summaryview.[ch]
2049           src/mainwindow.c: enabled to open a message in new window.
2050         * src/messageview.[ch]
2051           src/mimeview.[ch]
2052           src/textview.[ch]
2053           src/imageview.[ch]: added destroy function, and modified the
2054           key handling routines.
2055
2056 2000-09-02
2057
2058         * src/socket.c: sock_connect_by_getaddrinfo(): fixed a bug that
2059           caused segmentation fault (thanks to KUROSAWA).
2060         * src/alertpanel.c: modified so that the focused button is
2061           selectable.
2062         * src/account.c
2063           src/compose.c
2064           src/folderview.c: modified so that the order of the buttons of
2065           alert panel will be `Yes', `No'.
2066
2067 2000-09-01
2068
2069         * src/utils.[ch]: added execute_async() and execute_command_line()
2070           that execute command line using execvp().
2071         * src/textview.c
2072           src/mimeview.c
2073           src/procmsg.c: replaced system() with execute_command_line()
2074           for security.
2075         * src/procmsg.c: turn back to system().
2076         * src/utils.c: modified execute_command_line().
2077
2078 2000-08-31
2079
2080         * src/mainwindow.c: main_window_get_size(): modified so that it
2081           doesn't update the height of SummaryView if MessageView is
2082           toggled off.
2083         * src/compose.[ch]: applied the patch from NAKAGAWA that fixes some
2084           probrems of external editor handling (thanks!).
2085         * src/uuencode.[ch]
2086           src/procmime.[ch]: applied the patch from Hiramatu that make it
2087           supports Content-Transfer-Encoding: x-uuencode (thanks!).
2088
2089 2000-08-30
2090
2091         * src/compose.[ch]
2092           src/prefs_common.[ch]: implemented the external editor faculty.
2093         * src/compose.c: compose_attach_property(): fixed some bugs on
2094           changing the property of attached file.
2095         * src/compose.c: fixed some bugs of external editor functions.
2096
2097 2000-08-29
2098
2099         * version 0.3.28
2100
2101         * src/mainwindow.c
2102           src/prefs_common.[ch]
2103           src/summaryview.c: applied the patch from Paul Rolland that
2104           restores the size of widgets when restarting (thanks!).
2105         * src/folderview.c
2106           src/prefs_common.[ch]
2107           src/summaryview.c: applied the patch from Paul Rolland that saves
2108           the width of CTree columns (thanks!).
2109
2110 2000-08-27
2111
2112         * src/headerview.c: modified the height of HeaderView.
2113         * src/textview.c: textview_show_part(): made it process the message
2114           as normal text if it is single-part RFC822 message.
2115         * src/folderview.c
2116           src/summaryview.c: some changes around the key handling.
2117         * src/prefs_common.[ch]: substituted the word `assort' with `filter'.
2118
2119 2000-08-26
2120
2121         * src/codeconv.[ch]: added conv_latintodisp() for ISO-8859-1 support.
2122         * src/procheader.c: procheader_get_one_field(): fixed a bug that
2123           caused segmentation fault if the first line of the file is space
2124           or tab (thanks to Hiramatu).
2125         * src/mimeview.c: mimeview_drag_data_get(): modified so that the
2126           filename doesn't include G_DIR_SEPARATOR (thanks to Hiramatu).
2127         * src/prefs_account.c
2128           src/prefs_common.c: modified the dialog size.
2129         * src/prefs.c: made the dialog window growable.
2130
2131 2000-08-25
2132
2133         * version 0.3.27
2134
2135         * configure.in: removed unnecessary AC_CHECK_FUNC(gettext) that
2136           caused the failure of the detection of libintl.
2137         * src/filter.[ch]
2138           src/prefs_common.c: implemented `not contain', and modified for
2139           future enhancement.
2140         * src/imageview.c: changed alertpanel_error() to g_warning() so that
2141           it doesn't grab mouse events.
2142         * src/compose.[ch]: added compose_list that holds the list of
2143           Compose objects, and added the function compose_get_compose_list().
2144         * src/main.c
2145           src/mainwindow.c
2146           src/summaryview.c: made it confirm if composing message exists.
2147
2148 2000-08-23
2149
2150         * src/compose.c: compose_reply_set_entry(): fixed a bug that caused
2151           segmentation fault when trying to reply the message in the queue
2152           folder (thanks to Kotobuki).
2153           compose_attach_property(): modified the property dialog routine
2154           so that it can handle input error.
2155         * src/mimeview.c: applied the patch from Hiramatu that enables
2156           the drag 'n drop from MimeView (thanks!).
2157         * src/headerview.[ch]
2158           src/procheader.c
2159           src/procmsg.h: applied the patches for X-Face support from
2160           HIROSHIMA (thanks!).
2161
2162 2000-08-22
2163
2164         * src/compose.c: compose_attach_property(): modified so that the
2165           property dialog can actually change the property of attached file.
2166
2167 2000-08-21
2168
2169         * configure.in
2170           src/Makefile.am: updated for gdk_imlib.
2171         * added AUTHORS and NEWS.
2172         * configure.in
2173           acconfig.h
2174           src/Makefile.am: modified so that configure auto-detects gdk-pixbuf
2175           and gdk_imlib library. And fixed a bug on IPv6 detecting.
2176         * src/imageview.c: supported gdk-pixbuf.
2177         * README
2178           README.jp
2179           INSTALL
2180           INSTALL.jp: added the mention about built-in image view.
2181         * configure.in: modified so that configure can disable gdk-pixbuf
2182           or/and gdk_imlib library.
2183
2184 2000-08-20
2185
2186         * src/imageview.[ch]
2187           src/main.c
2188           src/messageview.[ch]
2189           src/mimeview.[ch]: applied the patches from HIROSHIMA that enables
2190           to display image (thanks!).
2191
2192 2000-08-19
2193
2194         * version 0.3.26
2195
2196         * src/summaryview.c: summary_assort_func(): modified to avoid
2197           `not receive' setting.
2198
2199 2000-08-18
2200
2201         * src/filesel.c: applied the patch from HIROSHIMA that makes it
2202           remember previous directory when opening the dialog (thanks!).
2203         * src/summaryview.[ch]: added a function summary_redisplay_msg().
2204         * src/mainwindow.c: set_charset_cb(): made it redisplay the message
2205           that is currently shown when the character set is changed.
2206         * src/inc.c
2207           src/pop.c
2208           src/prefs_common.c
2209           src/filter.h: applied the patch from Tanaka that enables not to
2210           receive specified messages according to the sorting rule (thanks!).
2211
2212 2000-08-15
2213
2214         * src/procmsg.[ch]: added MSG_MIME to the type MsgFlags. And modified
2215           so that it handles MSG_MIME flag, and it scans uncached messages
2216           when cache reading failed even if it is specified not to scan
2217           new messages.
2218         * src/procheader.c: procheader_parse(): added the determination of
2219           multipart MIME message.
2220         * src/main.h: increased CACHE_VERSION.
2221         * src/summaryview.[ch]: added the `MIME' column that shows whether
2222           a message is multipart or not.
2223         * src/prefs_common.[ch]: added the `MIME' column to the setting of
2224           displaying item.
2225         * added src/pixmaps/clip.xpm.
2226         * src/summaryview.c
2227           src/procmsg.[ch]: modified so that it prompts the print command
2228           before printing.
2229
2230 2000-08-14
2231
2232         * src/folderview.c: folderview_create()
2233           src/summaryview.c: summary_create():
2234           src/addressbook.c: addressbook_create(): set the expander style of
2235           CTree to GTK_CTREE_EXPANDER_SQUARE.
2236         * src/compose.c: modified the interface of property dialog.
2237
2238 2000-08-13
2239
2240         * src/compose.c: added property dialog for attached file.
2241
2242 2000-08-11
2243
2244         * src/procmsg.[ch]: added a function procmsg_print_message() that
2245           prints the given message.
2246         * src/summaryview.c: summary_print(): modified so that it prints
2247           all selected messages.
2248         * src/folderview.c: folderview_select_node(): fixed a bug that
2249           didn't focus on folder tree if inbox was empty when incorporating.
2250
2251 2000-08-10
2252
2253         * version 0.3.25
2254
2255         * src/prefs_commmon.[ch]: added `Other' tab and an option for
2256           printing. And moved external browser option to there.
2257         * src/mainwindow.c
2258           src/summayview.[ch]: added print menu and implemented print
2259           functions.
2260
2261 2000-08-09
2262
2263         * src/prefs_account.c: made the default value of smtp_server to
2264           NULL.
2265         * src/folderview.c: folderview_update_msg_num(): modified so that
2266           it doesn't emphasize trash folder even if it has new or unread
2267           messages.
2268
2269 2000-08-08
2270
2271         * src/filesel.c: filesel_select_file(): (perhaps) fixed a bug that
2272           caused segmentation fault when file selection dialog was closed
2273           and other dialog was open immediately.
2274
2275 2000-08-05
2276
2277         * src/compose.c: compose_encode_header(): fixed a bug that caused
2278           infinite loop if wctomb() failed.
2279
2280 2000-08-04
2281
2282         * version 0.3.24
2283
2284         * src/mimeview.c: enabled to open an attached file with double click
2285           and popup menu. And cleaned up the code.
2286         * src/procmime.[ch]: added a function procmime_get_part() that
2287           saves the part of multipart message.
2288
2289 2000-08-03
2290
2291         * src/main.[ch]
2292           src/mimeview.c
2293           src/prefs_common.[ch]
2294           src/procmime.[ch]
2295           src/utils.[ch]: applied a patch that enables to launch attached
2296           image, audio, and HTML file (thanks to Hashimoto).
2297         * src/filter.c: filter_match_condition(): fixed a bug that caused
2298           segmentation fault if the body of specified filter is NULL. And
2299           made the filter considered as being matched on that case.
2300
2301 2000-07-30
2302
2303         * src/summaryview.c:
2304           summary_save_as(): fixed a bug that unabled to save news articles.
2305           summary_display_msg(): added exclusive lock to prevent it from
2306           reading another news article while it is already processing one.
2307         * src/gtkutils.[ch]: added gtkut_widget_wait_for_draw() that waits
2308           the draw signal to be emitted.
2309         * src/mainwindow.c:
2310           main_window_cursor_wait()
2311           main_window_cursor_normal(): added gdk_flush() to change cursor
2312           immediately.
2313         * Makefile.am
2314           libkcc/Makefile.am: added EXTRA_DIST for `make dist'. And added
2315           a target `release' to Makefile.am.
2316
2317 2000-07-28
2318
2319         * src/socket.c: supported IPv6.
2320         * configure.in
2321           acconfig.h: added checking for IPv6.
2322         * prefs_common.c: changed the default of toolbar_style to icon only.
2323
2324 2000-07-27
2325
2326         * initial cvs import.
2327         * updated README and README.jp.
2328
2329 2000-07-24
2330
2331         * version 0.3.23
2332
2333         * src/procmime.[ch]: modified the structure of MimeInfo so that it
2334           can be handled as a node of tree.
2335           Added procmime_mimeinfo_free_all() that frees all of the MimeInfo
2336           recursively.
2337           Added procmime_get_text_part() that scans a message and gets a text
2338           part for quoting.
2339         * src/mimeview.c: divided mimeview_scan_multipart_message() into
2340           procmime_scan_multipart_message() and mimeview_set_multipart_tree().
2341         * src/compose.c: compose_quote(), compose_forward():
2342           made it quote the text part of multipart message properly.
2343           Made it preserve the size of Compose window.
2344         * src/prefs_common.[ch]: added compose_width and compose_height to
2345           the members.
2346         * src/textview.c: textview_show_part(): some code cleanups.
2347         * src/codeconv.[ch]: added a function conv_get_code_conv_func().
2348
2349 2000-07-20
2350
2351         * version 0.3.22
2352
2353         * src/codeconv.[ch]: fixed a bug that showed garbage characters if
2354           the return code of the message was CR+LF. And added
2355           conv_sjistoeuc().
2356         * src/summaryview.c: summary_attract_by_subject(): made it move
2357           the current view point to the selected row when executed.
2358         * src/textview.c: textview_show_part(): modified the character set
2359           determination routine.
2360         * src/folderview.c: folderview_update_msg_num(): fixed a bug that
2361           caused segmentation fault if boldfont was NULL.
2362         * src/compose.c: compose_create(): made it sets itself as the target
2363           of addressbook on window creation.
2364
2365 2000-07-19
2366
2367         * src/compose.c: compose_send(): fixed a bug that didn't save
2368           queued message to outbox when failed to send the message (thanks
2369           to T. Yamamoto).
2370
2371 2000-07-15
2372
2373         * src/inc.[ch]: modified so that it changes error message dialog
2374           depending on the results.
2375
2376 2000-07-14
2377
2378         * src/mainwindow.c: main_window_create(): set usize of account
2379           button on the status bar to 1 so that it doesn't get expanded
2380           more than necessary.
2381         * src/account.[ch]: account_foreach(): made it abort the iteration
2382           if the function returns nonzero.
2383         * src/inc.[ch]
2384           src/pop.c: modified so that it shows error message dialog if the
2385           message processing is failed.
2386
2387 2000-07-04
2388
2389         * version 0.3.21
2390
2391         * src/mainwindow.c: made it popup account selection menu when
2392           account tool button or account status bar is pressed.
2393         * src/folderview.c
2394           src/prefs.c: suppressed the ENOENT perror messages.
2395         * src/pop.c: made it fall back on LAST command if UIDL failed.
2396
2397 2000-07-01
2398
2399         * src/procheader.c: procheader_parse(): fixed a bug that didn't
2400           parse References: header correctly (thanks to YAMAGUCHI).
2401
2402 2000-06-29
2403
2404         * version 0.3.20
2405
2406         * src/compose.c: compose_reply_set_entry(): fixed a bug that didn't
2407           cc'd correctly when replying.
2408         * src/mainwindow.c
2409           src/summaryview.c: sorted out the main menu and the popup menu.
2410
2411 2000-06-26
2412
2413         * version 0.3.19
2414
2415         * src/prefs_account.[ch]
2416           src/compose.c: made it be able to set Cc:, Bcc:, and Reply-To:
2417           automatically at composing (thanks to NAKAGAWA).
2418
2419 2000-06-25
2420
2421         * src/prefs_common.[ch]
2422           src/mainwindow.c
2423           src/main.c: made it selectable whether to ask before cleaning
2424           trash at the exit.
2425         * src/prefs_common.c: cleaned up the code and the interface a bit.
2426         * src/summaryview.c: modified the unthread functions for speeding
2427           up.
2428
2429 2000-06-24
2430
2431         * src/prefs_common.[ch]
2432           src/summaryview.c: made it display recipient on the `From' column
2433           if the address of the sender is the same as the current account
2434           (thanks to NAKAGAWA).
2435         * src/utils.[ch]: added a function extract_address() that extracts
2436           the address from `From:' header string.
2437         * src/mainwindow.c: allsel_cb(): fixed a bug that caused segmentation
2438           fault if `Edit/Select all' was selected when the message view was
2439           hidden (thanks to Tomita).
2440
2441 2000-06-21
2442
2443         * src/summaryview.c: modified execution routine so that it only
2444           unthreads nodes that are needed to be unthreaded.
2445
2446 2000-06-19
2447
2448         * src/news.c: news_session_get(): implemented the reconnection on
2449           being disconnected.
2450         * src/nntp.[ch]: added nntp_mode().
2451
2452 2000-06-18
2453
2454         * src/mbox.c: fixed a bug that didn't close mbox FILE pointer.
2455           And support assortment on processing mbox.
2456         * src/inc.c: inc_drop_message(): modified so that it uses hash table
2457           to store the last message number of folders.
2458         * src/summaryview.c
2459           src/addressbook.c: modified the behavior of CTree at right-click.
2460         * src/pop.c: pop3_getrange_uidl_recv(): fixed a potential buffer
2461           overflow bug (thanks to Nishiyama).
2462
2463 2000-06-17
2464
2465         * version 0.3.18
2466
2467         * src/pop.[ch]
2468           src/inc.[ch]: implemented management of read message on POP server
2469           by UIDL.
2470         * src/utils.[ch]: removed (s)list_remove_all() because it can be
2471           replaced with g_(s)list_free().
2472         * src/summaryview.c: modified the arrangement of menu a bit.
2473         * src/summaryview.c: summary_status_show(): made it doesn't display
2474           server name but newsgroup.
2475         * src/prefs_common.c
2476           src/prefs_account.c: adjusted the calculation routine of dialog
2477           size.
2478
2479 2000-06-15
2480
2481         * version 0.3.17
2482
2483         * src/compose.c: compose_reply_set_entry(): modified so that it
2484           cc's to the all addresses on To: and Cc: of the replied message.
2485           And swapped the position of Subject: and To: entry.
2486
2487 2000-06-14
2488
2489         * src/procheader.c: modified so that it can handle headers that
2490           aren't separated by space.
2491         * src/socket.c: sock_connect(): added a wait after connection to
2492           prevent lockup (thanks to NINOMIYA).
2493
2494 2000-06-13
2495
2496         * src/inc.c:
2497           inc_mail()
2498           inc_all_account_mail(): fixed a bug that caused segmentation
2499           fault if no account exist.
2500         * src/mainwindow.[ch]: made receive button unclickable when
2501           no account exist.
2502         * src/compose.c: compose_queue(): fixed a bug that didn't mark
2503           queued message properly.
2504         * src/utils.[ch]: separated code conversion functions into
2505           src/codeconv.[ch].
2506
2507 2000-06-13
2508
2509         * version 0.3.16
2510
2511         * src/mimeview.c: mimeview_save_as()
2512           src/summaryview.c: summary_save_as(): made it ask whether to
2513           overwrite the existing file.
2514
2515 2000-06-12
2516
2517         * src/utils.c
2518           src/recv.c
2519           src/prefs.c
2520           src/prefs_common.c
2521           src/prefs_account.c
2522           src/addressbook.c
2523           src/compose.c
2524           src/mbox.c: fixed a bug that failed to check write error when
2525           disk was full and caused the loss of the file.
2526
2527 2000-06-11
2528
2529         * src/mainwindow.c: main_window_clean_trash(): made it move focus
2530           to folder view when finished.
2531         * src/utils.[ch]: added code conversion functions for display.
2532           And added strncpy2() that doesn't do zero fill and does
2533           null-termination, unlike original strncpy().
2534         * src/textview.c: modified so that it changes the code conversion
2535           function according to charset. And supported charset=SHIFT_JIS.
2536         * src/mainwindow.c
2537           src/prefs_common.h
2538           src/textview.c: made it possible to force character set of
2539           a message.
2540         * src/folderview.c: folderview_select_next_unread():
2541           made it search unread folder from begin if it isn't found.
2542
2543 2000-06-11
2544
2545         * version 0.3.15
2546
2547         * src/mainwindow.c: fixed a probrem again that main window was
2548           stretched to the width of the toolbar.
2549         * src/mbox.c
2550           src/utils.c: is_header_line(): modified so that it recognizes
2551           a header which doesn't have a space after colon (thanks to Hotta).
2552         * src/filter.c: added `#include <strings.h>'.
2553         * src/smtp.c: replaced snprintf() with g_snprintf().
2554         * src/Makefile.am: added `-I$(top_srcdir)/intl' to INCLUDES for
2555           included gettext.
2556         * included sylpheed.spec.
2557
2558 2000-06-10
2559
2560         * src/prefs_common.[ch]: enabled to set the pixels of line space
2561           and decide whether to leave space on head of lines.
2562         * src/summaryview.c: modified so that it clears message view
2563           when displayed message is removed from the summary view.
2564         * src/mimeview.c: fixed a bug that caused infinite loop if
2565           terminal boundary of multipart message was not found (thanks to
2566           Nishika).
2567         * src/folderview.c: folderview_scan_mailbox(): made it ignore
2568           dot directory.
2569         * src/main.c: made it show warning dialog and exit if the file with
2570           the same name already exists when creating directory.
2571
2572 2000-06-09
2573
2574         * src/textview.c
2575           src/prefs_common.[ch]: made it possible to leave space between
2576           and on head of lines.
2577
2578 2000-06-07
2579
2580         * src/compose.c
2581           src/procmime.[ch]: made it scan /etc/mime.types and determine
2582           the MIME type of the attached file.
2583         * src/summaryview.c: made it clear message view if the summary
2584           is unselected on the execution, and made it move focus to
2585           folder view if the folder becomes empty.
2586         * src/mainwindow.c: fixed a probrem that main window was stretched
2587           to the width of the toolbar.
2588         * src/inc.c: fixed a bug that caused multiple gtk_main() event loop
2589           if `Check new mail on startup' was set.
2590
2591 2000-06-06
2592
2593         * src/compose.c: fixed a probrem that had been unable to insert
2594           a file to the current cursor position.
2595
2596 2000-06-06
2597
2598         * version 0.3.14
2599
2600         * src/compose.[ch]: added `attach' button to the toolbar. And
2601           replaced the icon of `insert' to the new one.
2602
2603 2000-06-05
2604
2605         * src/mainwindow.[ch]: added `Execute' to the toolbar. And added
2606           a function main_window_set_toolbar_sensitive() that sets the
2607           sensitivity of the button of the toolbar.
2608         * src/compose.c: fixed a bug that output wrong header if
2609           a return code was included in the string of the text entry.
2610
2611 2000-06-04
2612
2613         * src/mainwindow.[ch]: added `Delete' to the toolbar and the menu.
2614           And added the same items in popup menu to the main menu.
2615         * src/utils.[ch]: added functions for DnD support.
2616         * src/compose.c: implemented file attachment and insertion with DnD
2617           (thanks to Hiramatu).
2618
2619 2000-06-04
2620
2621         * version 0.3.13
2622
2623         * src/summaryview.c: fixed a bug that passed null pointer to
2624           is_dir_exist().
2625
2626 2000-06-03
2627
2628         * src/alertpanel.[ch]: added functions alertpanel_message(),
2629           alertpanel_notice(), and alertpanel_error(), and cleaned up
2630           the code.
2631         * src/folderview.c
2632           src/compose.c
2633           src/addressbook.c
2634           src/summaryview.c
2635           src/summary_search.c
2636           src/prefs_account.c
2637           src/foldersel.c: made them use alertpanel_error(),
2638           alertpanel_warning() or alertpanel_notice() for error message
2639           dialog.
2640         * src/summaryview.[ch]: enable sorting in reversed order.
2641         * src/inc.c: made it show error message dialog when failed to
2642           connect or authorize.
2643         * src/utils.h: added a macro FILE_OP_ERROR() and replaced many
2644           perror() with it.
2645
2646 2000-06-03
2647
2648         * version 0.3.12
2649
2650         * src/compose.c: fixed a bug that didn't save a message to outbox
2651           when queued.
2652         * src/send.c: send_message_queue(): fixed a bug that included
2653           headers for queueing in the parsed data.
2654         * src/mainwindow.c: send_queue_cb(): made it pop statusbar message
2655           and update queue folder when finished.
2656
2657 2000-06-02
2658
2659         * version 0.3.11
2660
2661         * src/filter.c
2662           src/inc.c
2663           src/compose.c: suppressed the warning messages.
2664         * src/mainwindow.[ch]: added next unread message button and menu
2665           items.
2666         * src/summaryview.[ch]: added a function summary_select_next_unread()
2667           that selects and opens next unread message.
2668
2669 2000-06-01
2670
2671         * src/prefs_common.[ch]: added a setting to decide whether to open
2672           unread message on entering a folder.
2673         * src/summaryview.c: made it open the first unread message only if
2674           the preference is set.
2675         * src/compose.c: fixed a bug that freed the string obtained from
2676           GtkEntry.
2677
2678 2000-05-31
2679
2680         * src/compose.c: added `Send later' to the menu and the toolbar
2681           which queues the message to send it later.
2682
2683 2000-05-30
2684
2685         * src/mainwindow.c: added an interface to resend the queued message.
2686         * src/compose.c: made it show alert dialog when a message will be
2687           queued.
2688
2689 2000-05-29
2690
2691         * src/procmsg.[ch]: added function procmsg_send_queue() that calls
2692           send_message_queue() for each queued messages.
2693
2694 2000-05-28
2695
2696         * src/inc.c: inc_drop_message(): modified so that it drops a message
2697           to the default inbox folder if destination folder doesn't exist.
2698         * src/compose.[ch]: added imput compatible queueing header to the
2699           queued message.
2700         * src/send.[ch]: added function send_message_queue() that send
2701           queued message.
2702
2703 2000-05-27
2704
2705         * configure.in
2706           acconfig.h: made it enabled to decide wheter to use multithread
2707           or not on configure.
2708         * src/summaryview.c: fixed a bug that made thread when executed
2709           despite of the setting (thanks to Hiroshima).
2710         * src/socket.[ch]: changed the return value of public
2711           sock_connect_*() function to the pointer to SockInfo object.
2712         * src/procmime.c: procmime_scan_mime_header():
2713           fixed a bug that returned NULL if the scanned part had no header
2714           (thanks to shigeri).
2715         * src/procmime.[ch]:
2716           added function procmime_scan_content_disposition() that parses
2717           Content-Disposition header field.
2718         * src/mimeview.c: made it uses filename value in Content-Disposition
2719           header.
2720         * src/pop.c
2721         * src/inc.c: modified so that password is prompted if the password
2722           on preferences is empty and previous POP3 session has failed on
2723           authorization.
2724
2725 2000-05-23
2726
2727         * src/socket.[ch]: added non-blocking IO mode socket and
2728           multithreaded connection support.
2729         * src/inc.c: supported multithread connection.
2730
2731 2000-05-22
2732
2733         * src/folderview.c: made the focus of SummaryView grabbed when
2734           a folder is selected only if the messages exist.
2735
2736 2000-05-20
2737
2738         * version 0.3.10
2739
2740         * po/ja.po: fixed a bug that head `/' of a menu label was missing
2741           and caused segmentation fault when opened Compose window.
2742
2743 2000-05-20
2744
2745         * version 0.3.9
2746
2747         * src/utils.c: get_domain_name(): modified so that it uses
2748           gethostname().
2749         * src/mimeview.c: added key binds for `Save as' and
2750           `Display as text'.
2751
2752 2000-05-19
2753
2754         * src/recv.c: fixed a bug that failed to return error value
2755           when fputs() failed and caused the loss of received mails when
2756           disk space was not left (thanks to Tajiri).
2757         * src/compose.c: supported Reply-To.
2758         * src/mimeview.c: improved key operation interface.
2759
2760 2000-05-18
2761
2762         * src/mimeview.[ch]
2763           src/procmime.[ch]
2764           src/textview.[ch]: supported nested multipart message and
2765           clean up the codes.
2766           Supported encapsulated RFC822 message.
2767
2768 2000-05-16
2769
2770         * src/compose.[ch]: made it free the alloc'd memory for attach
2771           information when the compose window is destroyed.
2772           Placed the attachment list and the text widget onto the paned
2773           widget.
2774           Enabled cut/copy/paste/select all on all of the editable widgets.
2775           Implemented removal of attached file and popup menu on attachment
2776           list.
2777         * src/prefs_common.[ch]: added signature separator setting.
2778         * src/alertpanel.[ch]: added a function alertpanel_warning().
2779
2780 2000-05-14
2781
2782         * src/prefs_common.[ch]
2783           src/textview.c: made open URI command customizable.
2784         * src/compose.[ch]: implemented multipart MIME message composition
2785           (attachment of file).
2786         * src/textview.c
2787           src/compose.c: fixed a bug that didn't turn off the GTK+ theme
2788           engine again.
2789
2790 2000-05-13
2791
2792         * version 0.3.8
2793
2794         * src/summaryview.c: added key binds for composing message
2795           (w, a, A, f). Also added other key binds (y, D, Q).
2796         * src/compose.c: made Cc entry take over the Cc of the replied
2797           message.
2798         * src/pixmaps/new.xpm
2799           src/pixmaps/unread.xpm: replaced pixmap image.
2800         * src/procheader.c: procheader_date_get_localtime():
2801           changed the single figures of year from four to two.
2802
2803 2000-05-12
2804
2805         * src/inc.c: made it ask password if it is not specified on account
2806           preferences.
2807         * src/prefs_account.h: added member tmp_pass to struct PrefsAccount
2808           that preserves the temporary password.
2809         * src/inputdialog.[ch]: added function input_dialog_with_invisible()
2810           that prompts input with the string hidden.
2811
2812 2000-05-11
2813
2814         * src/compose.c: fixed a bug that didn't turn off the GTK+ theme
2815           engine if message font wasn't specified.
2816
2817 2000-05-10
2818
2819         * version 0.3.7a
2820
2821         * src/summaryview.c: fixed a bug that stderr was forgotten on
2822           fprintf().
2823
2824 2000-05-10
2825
2826         * version 0.3.7
2827
2828         * src/pop.c: fixed a problem that if some POP3 commands returned
2829           error, the previous operations were all cancelled.
2830         * src/compose.c
2831           src/textview.c: made workaround to the slow down of GtkText widget
2832           when using Pixmap theme or its derivatives.
2833
2834 2000-05-08
2835
2836         * src/inc.c: fixed a bug that caused X IO error when exec'd
2837           nonexistent program.
2838
2839 2000-05-07
2840
2841         * src/folderview.[ch]: added the member `mtime' to the struct
2842           FolderInfo.
2843         * src/summaryview.c: made the mtime of the folder checked that is
2844           going to open.
2845         * src/procmsg.c: added filesystem unchecking mode.
2846
2847 2000-05-05
2848
2849         * src/textview.[ch]: implemented clickable URI (thanks to BONAIM).
2850           And made `X-Mailer:' header emphasized if it contains `Sylpheed'.
2851
2852 2000-05-04
2853
2854         * src/summaryview.c: summary_write_cache(): permission fix of
2855           cache file.
2856
2857 2000-05-04
2858
2859         * version 0.3.6a
2860
2861         * src/headerview.c: added headerview_clear() method.
2862         * src/messageview.c: fixed a bug that didn't clear HeaderView
2863           on messageview_clear().
2864
2865 2000-05-04
2866
2867         * version 0.3.6
2868
2869         * src/messageview.c
2870           src/textview.c: added *_clear() method.
2871         * src/summaryview.c: made it clear MessageView when new folder
2872           is open.
2873
2874 2000-05-03
2875
2876         * src/inc.c: fixed a bug that went to the inbox that was specified
2877           by each account when incorporating from all accounts.
2878         * src/compose.c: made it confirm whether to discard the message or
2879           not when the window will be closed.
2880
2881 2000-05-03
2882
2883         * version 0.3.5
2884
2885         * src/pop.[ch]
2886           src/inc.[ch]: re-supported APOP authentication.
2887         * src/prefs_account.c: fixed a bug that had't saved protocol type.
2888         * src/socket.h
2889           src/statusbar.h: attached G_GNUC_PRINTF() to printf() like
2890           functions.
2891         * src/progressdialog.[ch]: changed the name of class from Progress
2892           to ProgressDialog.
2893
2894 2000-05-02
2895
2896         * src/summaryview.c: fixed a bug that caused segmentation fault
2897           a news folder was selected without using ja message catalog.
2898         * src/utils.h: attached G_GNUC_PRINTF() to printf() like functions.
2899         * src/Makefile.am: added `-DG_LOG_DOMAIN=\"Sylpheed\"' to
2900           INCLUDES.
2901
2902 2000-05-01
2903
2904         * src/automaton.[ch]
2905           src/inc.[ch]
2906           src/pop.[ch]: re-implemented POP3 fetching routines using
2907           finite-state automaton model (thanks to Hiramatu).
2908         * src/inc.c: fixed a bug that caused unwilled quitting of program
2909           when connection to mail server failed. And fixed a memory leak bug.
2910         * src/summaryview.c: made the focus move to FolderView when left
2911           cursor key is pressed.
2912
2913 2000-04-30
2914
2915         * src/textview.c: textview_write_line(): modified quotation
2916           discerning routine a bit.
2917
2918 2000-04-29
2919
2920         * version 0.3.4
2921
2922         * src/procmime.[ch]: moved MIME decorder from src/textview.c to
2923           src/procmime.c.
2924         * src/mimeview.[ch]: implemented saving of multipart message. And
2925           supported MIME encoded file name.
2926         * src/summaryview.c: implemented `Save as'.
2927
2928 2000-04-28
2929
2930         * src/prefs_common.[ch]: implemented an interface for setting the
2931           display item of SummaryView.
2932         * src/addressbook.c
2933           src/account.c: made the column titles of those don't take key
2934           focus.
2935
2936 2000-04-26
2937
2938         * src/textview.c: implemented BASE64 decoding and display.
2939
2940 2000-04-25
2941
2942         * src/prefs_common.[ch]: added members which decide whether
2943           each item of SummaryView is displayed or not.
2944         * src/headerwindow.c
2945           src/logwindow.c: made those windows closed when escape key is
2946           pressed.
2947         * src/headerview.c: disused ScrolledWindow.
2948         * src/base64.c: from64tobits(): modified so that it recognize '\n'
2949           as the last of line as well as '\r'.
2950
2951 2000-04-24
2952
2953         * src/headerview.c: disabled word wrap and line wrap of the text
2954           widget.
2955
2956 2000-04-24
2957
2958         * version 0.3.3
2959
2960         * src/prefs_common.c: prefs_assort_create(): added some headers
2961           to the default headers for assortment.
2962
2963 2000-04-23
2964
2965         * src/procmsg.c: fixed a bug that caused segmentation fault if
2966           the permission of a message was denied on parsing the header
2967           (thanks to wakai@UEC univ.).
2968         * src/mimeview.c: made it pass key press event to SummaryView.
2969
2970 2000-04-21
2971
2972         * src/main.h
2973           src/alertpanel.c: modified font specifications so that they match
2974           to better fonts.
2975         * src/utils.[ch]: added wide-character functions for FreeBSD support.
2976           Added the existence check of <wchar.h>.
2977         * acconfig.h
2978           configure.in: added wint_t and libxpg4 check for FreeBSD support.
2979         * src/unmime.c: modified so that it checks the existence of
2980           <alloca.h>.
2981           Above three are a contribution from Sasaki. Thanks!
2982
2983 2000-04-18
2984
2985         * src/main.h: decreased default height of window.
2986
2987 2000-04-17
2988
2989         * src/procmime.c: fixed a bug that eliminated the parenthesis in
2990           attribute value that was double-quoted.
2991
2992 2000-04-15
2993
2994         * version 0.3.2
2995
2996         * src/mimeview: implemented multipart message parser and display.
2997         * src/procmime.c: procmime_scan_content_type():
2998           supported multiple elements.
2999         * src/textview.c: supported multipart message and clean up the code.
3000
3001 2000-04-14
3002
3003         * src/summaryview.c: added size column and sorting by size.
3004         * src/mainwindow.c: added `Sort by size' to sort menu.
3005         * src/procmime.c: fixed a bug that caused buffer overrun and
3006           segmentation fault.
3007         * src/procmime.c: generalized Content-Type parsing.
3008
3009 2000-04-13
3010
3011         * version 0.3.1
3012
3013         * src/textview.c: supported MIME headers and
3014           Content-Transfer-Encoding: quoted-printable.
3015
3016 2000-04-12
3017
3018         * src/messageview.[ch]
3019           src/textview.[ch]: separated MessageView into two classes.
3020         * src/procmime.[ch]: added for MIME message handling.
3021
3022 2000-04-11
3023
3024         * src/mimeview.[ch]: added for MIME message handling.
3025         * configure.in: added wctype.h and wchar.h existence check.
3026
3027 2000-04-10
3028
3029         * src/procmsg.[ch]
3030           src/procheader.[ch]: some code cleanups.
3031         * src/messageview.[ch]: integrated HeaderView.
3032
3033 2000-04-09
3034
3035         * version 0.3.0
3036
3037 2000-04-08
3038
3039         * src/addressbook.c: Made the tree sorted when folder/group is
3040           added or edited.
3041         * src/xml.c: xml_compare_tag(): fixed a bug that caused segmentation
3042           fault if the current tag was empty.
3043         * src/mainwindow.c: made the state of MainWindow saved.
3044
3045 2000-04-08
3046
3047         * version 0.3.0pre1
3048
3049         * src/addressbook.c: fully implemented address group editing.
3050           Fixed a bug that wrongly confirmed deletion of address when
3051           escape key was pressed on alert dialog.
3052
3053 2000-04-07
3054
3055         * src/addressbook.c: added menu bar. And enabled hierarchical
3056           folder.
3057         * src/prefs_account.c: modified so that it allows not to specify
3058           pop server.
3059         * src/inc.c: inc_account_mail(): modified so that if receiving
3060           server isn't specified, it does nothing.
3061
3062 2000-04-05
3063
3064         * version 0.2.9
3065
3066         * src/addressbook.c: almost fully implemented addressbook functions.
3067
3068 2000-04-04
3069
3070         * src/compose.c: fixed a bug that caused segmentation fault when
3071           `File->Insert file' was selected more than twice.
3072
3073 2000-04-03
3074
3075         * version 0.2.9pre4
3076
3077         * src/addressbook.[ch]: implemented creation of new folder and group,
3078           and deletion of folder and group. And fully implemented
3079           addressbook_delete_object() which deletes the specified object
3080           recursively.
3081
3082 2000-04-02
3083
3084         * src/addressbook.c: implemented registration of address and multiple
3085           appending to Compose address entry.
3086         * src/menu.[ch]: added a function menu_set_insensitive_all() that
3087           turn all menu items insensitive.
3088         * src/folderview.c: some code cleanup.
3089
3090 2000-04-01
3091
3092         * src/account.c
3093           src/prefs_common.c: fixed a bug on getting the number of CList
3094           rows.
3095
3096 2000-03-30
3097
3098         * version 0.2.9pre3
3099
3100         * src/folderview.c: fixed a bug that caused warnings when tree was
3101           expanded/collapsed on the first operation.
3102
3103 2000-03-29
3104
3105         * src/addressbook.c: addressbook_list_selected(): made it be able
3106           to handle multiple address.
3107         * src/compose.c: modified so that when Bcc: is toggled, corresponding
3108           AddressBook also toggle it.
3109         * src/mainwindow.c:
3110           main_window_create(): moved gtk_widget_set_uposition() before
3111           gtk_widget_show() so as not to cause window flickering.
3112           main_window_get_position(): replaced gdk_window_get_position()
3113           with gdk_window_get_root_origin() to acquire correct window
3114           position (Thanks to shigeri for these modifications).
3115
3116 2000-03-27
3117
3118         * src/filesel.c: made it selects home directory on the first time
3119           it is called.
3120
3121 2000-03-26
3122
3123         * src/utils.c: conv_mb_alnum(): modified so that it uses character
3124           conversion table.
3125         * src/foldersel.c: made the folder tree take focus when the dialog
3126           is shown.
3127
3128 2000-03-26
3129
3130         * version 0.2.9pre2
3131
3132         * src/addressbook.c: implemented addressbook_export_to_file() and
3133           related functions.
3134
3135 2000-03-25
3136
3137         * src/xml.[ch]
3138           src/addressbook.c: fixed the variable name for attribute.
3139         * src/prefs_common.[ch]: added a member `conv_mb_alnum'.
3140         * src/utils.[ch]: added conv_mb_alnum() that converts multi-byte
3141           alphabet and numeric into single-byte one.
3142         * src/messageview.c: messageview_show(): made it pass conv_mb_alnum()
3143           when conv_mb_alnum flag is on.
3144
3145 2000-03-25
3146
3147         * version 0.2.9pre1
3148
3149         * src/compose.c: modified so that when Addressbook is open by a
3150           Compose and it is closed, target of Addressbook is reset.
3151         * src/addressbook.c: made it work with Compose.
3152
3153 2000-03-24
3154
3155         * configure.in: AM_PATH_{GLIB, GTK}: raised the required version of
3156           GTK+ and GLIB to 1.2.6.
3157         * src/xml.[ch]: more implementation of XML parser.
3158         * src/addressbook.c: implemented addressbook parsing and displaying
3159           routine.
3160
3161 2000-03-21
3162
3163         * src/folderview.c: folderview_scan_folder(): modified so that if
3164           a folder's message number is zero, set new, unread and total number
3165           to zero.
3166
3167 2000-03-20
3168
3169         * src/xml.[ch]: added for XML handling used by addressbook.
3170         * src/folderview.c: modified so that Trash folder is skipped
3171           when an unread folder is selected automatically by space key.
3172
3173 2000-03-18
3174
3175         * src/summaryview.c: fixed a bug that cursor was turned into watch
3176           forever when a newsgroup was selected.
3177
3178 2000-03-18
3179
3180         * version 0.2.8
3181
3182 2000-03-17
3183
3184         * src/mainwindow.[ch]: implemented counting on setting cursor
3185           type. And modified the menu of `thread view' and `unthread view'.
3186         * src/summaryview.c: enabled thread-toggling on opening folder.
3187         * src/prefs_common.[ch]: added a member `enable_thread' to determine
3188           whether summary view builds thread or not when a folder is open.
3189
3190 2000-03-15
3191
3192         * src/summaryview.c: modified popup sensitivity function a bit.
3193
3194 2000-03-13
3195
3196         * version 0.2.7
3197
3198         * src/addressbook.[ch]: more implementation of the interface of
3199           addressbook.
3200         * src/compose.c: connected to addressbook object.
3201         * src/folderview.[ch]: folderview_compare_path():
3202           modified so that absolute path is correctly compared.
3203           And added folderview_select_node().
3204           And modified folderview_scan_folder() so that it update the summary
3205           when asked.
3206         * src/import.c: made it update folder tree when imported mbox.
3207         * src/summaryview.c: modified according to the changes of
3208           folderview.c. And modified so that it display alert dialog if
3209           source folder is identical to destination.
3210           added summary_set_popup_sensitive() that set the sensitivity of
3211           popup menu according to the context. And made all of the items of
3212           popup menu insensitive when summary is cleared.
3213         * src/procmsg.c: procmsg_move_messages_with_dest():
3214           modified so that if source folder is identical to destination,
3215           abort its process.
3216         * src/summary_search.c
3217           src/manage_window.c: modified so as not to print warning to console
3218           when alert dialog appeared twice.
3219         * src/filesel.c: made file selection dialog transient.
3220
3221 2000-03-11
3222
3223         * src/manage_window.[ch]: added callback function
3224           manage_window_focus_out().
3225         * src/account.c
3226           src/inputdialog.c
3227           src/mainwindow.c
3228           src/prefs_account.c
3229           src/prefs_common.c
3230           src/summary_search.c: added focus_out_event signal handler.
3231         * src/addressbook.[ch]: added preliminary addressbook code.
3232
3233 2000-03-06
3234
3235         * src/utils.h: added a macro Xalloca() that does alloca() and
3236           handles the exception.
3237         * src/import.c: made the import dialog transient window and enabled
3238           cancelling by escape key.
3239
3240 2000-03-04
3241
3242         * version 0.2.6
3243
3244         * src/compose.c: fixed a bug that caused memory leak when compose
3245           window was closed.
3246
3247 2000-03-03
3248
3249         * src/nntp.h: increased NNTP message buffer size for XOVER strings
3250           which is too long.
3251
3252 2000-02-28
3253
3254         * src/summaryview.c: binded step-forward and step-backward to each
3255           Control-n and Control-p.
3256         * src/filter.c: filter_read_str(): fixed a memory leak bug and
3257           replaced g_malloc() for allocating the buffer with alloca().
3258         * src/procheader.c: procheader_get_fromname(),
3259                             procheader_date_get_localtime()
3260           src/utils.c: conv_euctojis()
3261           src/compose.c: compose_quote_parse_fmt()
3262           src/prefs.c: prefs_set_data_from_text()
3263                        prefs_set_text(): replaced g_malloc() with alloca().
3264
3265 2000-02-26
3266
3267         * version 0.2.5
3268
3269         * src/logwindow.c: improved log_window_append() so that it shows
3270           warning, error and normal message with different colors.
3271         * src/utils.[ch]: added functions log_message(), log_warning(), and
3272           log_error() that show normal message, warning, and error for each.
3273           And modified many warning messages to use these.
3274         * src/messageview.c: messageview_init(): made it set colors of
3275           quotation and URI to black when failed to allocate colors.
3276         * src/news.c: news_parse_xover(): replaced g_malloc() for allocating
3277           the buffer with alloca().
3278
3279 2000-02-25
3280
3281         * src/folderview.c: fixed a bug that didn't put previously selected
3282           folder name in text entry. In addition to that, made some
3283           modifications.
3284
3285 2000-02-24
3286
3287         * version 0.2.4
3288
3289         * src/logwindow.[ch]: added log window that displays protocol log.
3290         * src/about.c: adjusted the size of dialog.
3291         * src/folderview.c: made it select a folder when double-clicked.
3292
3293 2000-02-23
3294
3295         * src/prefs_common.[ch]: added an item `translate_header' that
3296           decides whether header name like `From:' or `Subject:' is
3297           translated or not.
3298         * src/compose.c: made it show alert dialog when receiptor isn't
3299           entered.
3300         * src/inc.c: some code cleanups.
3301
3302 2000-02-22
3303
3304         * version 0.2.3
3305
3306         * src/compose.c: made header entries move those focus to next
3307           entry or text widget when activated. And sorted out the menu items.
3308         * src/mainwindow.[ch]
3309           src/prefs_common.[ch]
3310           src/main.c: made it save the sizes of widgets and the position of
3311           window when quitting.
3312         * src/prefs_common.c: set a14, k14 fontset as default message font.
3313         * src/about.c: changed the appearance of about dialog using text
3314           widget and so on.
3315         * src/recv.c: modified recv_write() so that it converts an escaped
3316           From_ line.
3317
3318 2000-02-20
3319
3320         * version 0.2.2
3321
3322         * src/compose.[ch]: supported Bcc.
3323
3324 2000-02-19
3325
3326         * version 0.2.1
3327
3328         * src/utils.[ch]: added function to_number() that examines string
3329           and if that is a number string, return its value.
3330         * src/procmsg.c: fixed a bug that caused malfunction when non-digit
3331           character was included in file name.
3332
3333 2000-02-18
3334
3335         * version 0.2.0
3336
3337         * src/folderview.c: fixed a bug that caused segmentation fault
3338           when opened folder node was deleted (thanks to Hiramatu).
3339           And implemented folderview_rm_server_cb() which removes news server.
3340         * src/mbox.c: modified a warning message.
3341
3342 2000-02-13
3343
3344         * version 0.2.0alpha-pre8
3345
3346         * src/mainwindow.c: inc_all_account_mail_cb(): made it select inbox
3347           folder to prevent the probrem when current folder is updated.
3348         * src/summaryview.c: summary_execute(): made it write to summary
3349           cache when executed.
3350
3351 2000-02-12
3352
3353         * version 0.2.0alpha-pre7
3354
3355         * src/utils.[ch]: added path_cmp() that compares two paths ignoring
3356           trailing directory separator.
3357         * src/folderview.[ch]
3358           src/summaryview.[ch]: modified so that folder tree is updated
3359           when messages are moved or deleted.
3360         * src/inc.c: some code cleanup.
3361
3362 2000-02-11
3363
3364         * version 0.2.0alpha-pre6
3365
3366         * src/utils.[ch]: added get_domain_name() that return domain
3367           name as a static string.
3368         * src/compose.c: compose_generate_msgid(): modified so that even
3369           if current address doesn't contain '@', it generates a decent
3370           message ID.
3371         * src/send.c: some code cleanup.
3372
3373 2000-02-10
3374
3375         * src/folderview.c: modified the behavior of folder tree when
3376           the folder is right-clicked.
3377         * src/compose.c: compose_encode_header(): added irresponsible
3378           buffer overrun check.
3379
3380 2000-02-09
3381
3382         * version 0.2.0alpha-pre5
3383
3384         * updated gettext and libtool.
3385         * configure.in: modified localedir definition so that message
3386           catalogs are installed into correct directories.
3387         * src/folderview.c
3388           src/mainwindow.c: modified them so that a folder can be reopen
3389           even if it is currently open.
3390         * src/prefs_common.[ch]
3391           src/messageview.c: added an option that toggle the coloration of
3392           message.
3393
3394 2000-02-08
3395
3396         * version 0.2.0alpha-pre4
3397
3398         * src/mainwindow.c
3399           src/messageview.c: fixed a bug that broke memory on allocating
3400           colors.
3401
3402 2000-02-07
3403
3404         * src/folderview.c: some bug fixes on selecting folder.
3405
3406 2000-02-07
3407
3408         * version 0.2.0alpha-pre3
3409
3410         * src/folderview.c
3411         * src/summaryview.[ch]: some code cleanups.
3412         * src/messageview.c: fixed a color allocating bug (maybe).
3413
3414 2000-02-06
3415
3416         * version 0.2.0alpha-pre2
3417
3418         * src/folderview.[ch]: made folder view not open selected folder
3419           unless return or space key is pressed, or clicked by mouse
3420           button 1 or 2.
3421         * src/inc.c: some code cleanups.
3422         * TODO.jp: added some items.
3423
3424 2000-02-05
3425
3426         * version 0.2.0alpha-pre1
3427
3428         * src/summaryview.[ch]: fixed a bug that broke summary thread
3429           when deleted duplicated messages (thanks to BONAIM).
3430           And some code cleanup.
3431         * src/procmsg.[ch]: renamed procmsg_move_messages() to
3432           procmsg_move_messages_with_dest(), and replaced former with
3433           new function which doesn't specify destination.
3434         * src/prefs_common.c
3435           src/gtkutils.c: some memory leak fixes of linked lists.
3436         * src/utils.[ch]: added list_remove_all() to remove all elements
3437           of doubly-linked list.
3438         * src/inc.[ch]: added inc_all_account_mail() that incorporates
3439           new messages of all accounts.
3440         * src/account.[ch]: added account_foreach() to process each accounts.
3441         * added TODO.jp
3442
3443 2000-02-04
3444
3445         * version 0.1.23alpha
3446
3447         * src/inc.c: made the folder tree update the message number
3448           when incorporated new messages.
3449         * src/folderview.[ch]: added a function folderview_scan_folder()
3450           to scan one folder on the view, which is specified by folder name.
3451
3452 2000-02-02
3453
3454         * version 0.1.22alpha
3455
3456         * src/prefs_account.[ch]: added the setting of assorting on
3457           receiving.
3458         * src/inc.c: supported assorting on receiving.
3459         * src/procmsg.c: cleaned up the code.
3460         * src/news.c: fixed a bug that locked up when failed to get xover.
3461         * src/compose.c: made a message unmark that is put into specific
3462           folders.
3463
3464 2000-02-01
3465
3466         * version 0.1.21alpha
3467
3468         * src/folderview.c
3469           src/summaryview.c: implemented the function 'go to next folder
3470           when no unread message found.'
3471         * src/summaryview.c: made connection state displayed on the
3472           status bar when connecting to a news server.
3473         * src/compose.c: changed X-Mailer: header field string a bit.
3474         * src/prefs_common.c: implemented residual functions of assortment.
3475
3476 2000-01-31
3477
3478         * version 0.1.20alpha
3479
3480         * src/prefs_common.c: implemented reading/writing/register/deletion
3481           of assortment setting.
3482         * src/mainwindow.c: slightly modified the appearance of statusbar.
3483         * src/account.c: account_delete(): fixed a bug that didn't assigned
3484           the pointer to GList when an account was deleted.
3485
3486 2000-01-29
3487
3488         * src/procmsg.c: procmsg_get_mark_sum(): fixed a bug that failed
3489           to read mark file (thanks to BONAIM).
3490         * src/prefs_common.c: added the interface of assortment setting.
3491
3492 2000-01-28
3493
3494         * src/summaryview.c: fixed a bug that didn't redraw marking properly
3495           when displaying an unread message with left-click (thanks to
3496           shigeri).
3497
3498 2000-01-27
3499
3500         * src/summaryview.[ch]: added functions for assortment.
3501         * src/about.c: added a button to close window.
3502
3503 2000-01-26
3504
3505         * src/procmsg.c: fixed a bug that didn't add news flag correctly.
3506         * src/compose.c: fixed a bug that can't reply to a news article.
3507         * src/filter.[ch]: added for message filtering.
3508         * src/procheader.[ch]: added procheader_get_unfolded_line()
3509           to process filtering. And added procheader_get_header_list()
3510           that reads headers of a message and store them on the memory,
3511           and procheader_header_list_destroy() that removes all headers
3512           read by procheader_get_header_list().
3513
3514 2000-01-25
3515
3516         * version 0.1.19alpha
3517
3518         * src/news.c: modified so that it retrieves only overview information
3519           that is not yet cached.
3520         * src/procmsg.[ch]: modified for news handling.
3521
3522 2000-01-24
3523
3524         * src/news.c: supported xover.
3525         * src/mbox.c: fixed a bug that didn't handle empty line correctly
3526           (Thanks to shigeri).
3527
3528 2000-01-23
3529
3530         * version 0.1.18alpha
3531
3532         * src/procmsg.[ch]: modified some functions so that they can
3533           handle news folder.
3534         * src/news.c: added header cache routine.
3535         * src/procheader.c: fixed a bug that caused memory leak when some
3536           header was duplicated.
3537           And added Newsgroups: in parsing headers.
3538         * src/summaryview.c: added news article cache routine.
3539         * src/compose.c: made it be able to reply/forward news article.
3540
3541 2000-01-22
3542
3543         * src/compose.c: fixed a bug that failed to parse To: header
3544           if a comma is included in double quotation (Thanks to shigeri).
3545         * src/mbox.c: modified the code for processing mbox so that it
3546           can handle unescaped From_ line correctly.
3547
3548 2000-01-21
3549
3550         * version 0.1.17alpha
3551
3552         * src/foldersel.c: fixed a bug that didn't display folder tree.
3553           And added the register routine for news server and group setting.
3554
3555 2000-01-20
3556
3557         * version 0.1.16alpha
3558
3559         * src/statusbar.[ch]: added statusbar_puts_all().
3560           statusbar_puts(): made it truncate a string that is too long.
3561         * src/folderview.[ch]: changed CTree's row data from string
3562           to FolderInfo structure.
3563           And implemented popup menu that registers news server and group.
3564         * src/messageview.c: modified short header display routine.
3565
3566 2000-01-19
3567
3568         * added src/news.[ch] for NetNews session management.
3569         * src/summaryview.[ch]: added NetNews reading codes.
3570
3571 2000-01-18
3572
3573         * src/mainwindow.c
3574           src/prefs_common.[ch]: made them preserve toolbar style.
3575         * src/main.c: made it save configuration before exiting.
3576         * src/summaryview.c: modified summary status display routine.
3577         * added src/nntp.[ch] for handling low level NNTP session.
3578
3579 2000-01-17
3580
3581         * added src/progress.[ch] for displaying progress.
3582         * src/inc.c: modified progress dialog routines to use
3583           src/progress.[ch].
3584         * src/folderview.[ch]: added preliminary NetNews supporting code.
3585
3586 2000-01-16
3587
3588         * version 0.1.15alpha
3589
3590         * src/main.c
3591           src/folderview.c: some permission fixes.
3592         * src/folderview.c: implemented folder creation/renaming/removing.
3593         * src/utils.[ch]: added remove_dir_recursive() that removes
3594           a directory recursively.
3595
3596 2000-01-15
3597
3598         * src/mainwindow.[ch]: added toolbar style selection.
3599         * added src/inputdialog.[ch] to prompt user to enter a string.
3600         * src/summaryview.[ch]: modified the behavior of view on
3601           normal mode.
3602         * src/mbox.c: fixed a bug that couldn't lock file when
3603           lockf() was used (Thanks to shigeri).
3604
3605 2000-01-14
3606
3607         * version 0.1.14alpha
3608
3609         * src/mainwindow.[ch]: changed the appearance of toolbar.
3610           And fixed window handling.
3611         * src/summaryview.c: modified the messages displayed on status bar.
3612         * src/compose.[ch]: added toolbar.
3613         * src/*.xpm: borrowed some icons from gnome-libs (temporary).
3614
3615 2000-01-13
3616
3617         * version 0.1.13alpha
3618
3619         * src/summaryview.c: fixed a bug of threading. And some code
3620           cleanups. And rewrote the routine of deleting duplicated messages
3621           using hash table.
3622         * src/mainwindow.[ch]: added toolbar.
3623
3624 2000-01-12
3625
3626         * version 0.1.12alpha
3627
3628         * src/summary_search.c: if the OS don't have wcsstr(), use wcswcs()
3629           instead.
3630         * src/summaryview.c: changed CTree creating routine as it creates
3631           thread on the fly for speeding up.
3632         * src/procmsg.c: rewrote message processing routines using hash
3633           table for speeding up. It should be considerably faster than
3634           before.
3635
3636 2000-01-11
3637
3638         * version 0.1.11alpha
3639
3640         * po/ja.po: modified msgstr for Solaris standard gettext.
3641         * src/main.c: added config.h inclusion.
3642         * src/compose.c: changed to add replied message's In-Reply-To
3643           message id to References header if it don't have References header.
3644         * src/summaryview.c: changed threading routine to use hash table
3645           for speeding up.
3646
3647 2000-01-11
3648
3649         * version 0.1.10alpha
3650
3651         * po/ja.po: modified msgstr so as not to core dump on Solaris.
3652         * src/main.c: added inclusion of locale.h.
3653           (Thanks to Sato for above.)
3654         * src/mbox.c
3655         * src/socket.c: applied Solaris patch by shigeri with some
3656           modification. (Thanks!)
3657
3658 2000-01-10
3659
3660         * version 0.1.9alpha
3661
3662         * src/compose.c: compose_encode_header(): fixed some bugs.
3663           And modified header generating routines to support proper
3664           References header, and supported Organization header.
3665         * src/procmsg.[ch]
3666           src/procheader.c: removed Cc: and Reply-To: from cache data.
3667         * src/procheader.[ch]: renamed header list structure to HeaderEntry.
3668         * src/summaryview.[ch]: summary_thread_func(): some optimization.
3669           And added summary_pass_key_press_event() to pass key press event
3670           from other widgets.
3671         * src/messageview.c: messageview_key_pressed(): modified so that
3672           key event is passed to summary view even if message view is
3673           separated. (Thanks to wakai@UEC univ. for pointing this out.)
3674
3675 2000-01-09
3676
3677         * version 0.1.8alpha
3678
3679         * src/compose.c: implemented RFC1522, RFC2407 (loosely) compliant
3680           header MIME encoding.
3681         * src/procheader.c: some bug fixes of folded header line processing.
3682         * src/headerview.c: headerview_show(): some bug fixes.
3683
3684 2000-01-07
3685
3686         * version 0.1.7alpha
3687
3688         * src/utils.c: conv_euctojis(): fixed a bug that didn't add
3689           kanji-out sequence [ \033 ( B ] when input string was ended
3690           with kanji. (Thanks to Nozomu Kobayashi for pointing this out.)
3691         * src/compose.c: compose_encode_header(): changed as it outputs
3692           encoded string to another buffer.
3693           And implemented a faculty to save sent message to outbox and
3694           to queue message that failed to send (preliminary).
3695           And, finally implemented proper To: and Cc: processing :)
3696         * src/folderview.c: added preliminary right-clicking popup menu
3697           for operating folders.
3698         * some permission fixes at creating or copying file.
3699
3700 2000-01-07
3701
3702         * version 0.1.6alpha
3703
3704         * src/procheader.c: fixed a bug that didn't null-terminate
3705           header list and caused segmentation fault.
3706
3707 2000-01-06
3708
3709         * version 0.1.5alpha
3710
3711         * src/procheader.[ch]: added function procheader_get_one_field()
3712           that gets one header field that matches the header list.
3713           And removed procheader_get_unfolded_line(), which is less generic.
3714           And rewrote procheader_get_header_fields() using
3715           procheader_get_one_field().
3716         * src/summaryview.c: some bug fixes of key input scan routine.
3717         * README, README.jp: modified documents a bit.
3718
3719 2000-01-05
3720
3721         * src/menu.c: menu_set_sensitive(): fixed a bug that if a menu item
3722           had a submenu, set sensitivity of the submenu, not the item.
3723
3724 2000-01-05
3725
3726         * version 0.1.4alpha
3727
3728         * src/summaryview.c: fixed a bug that caused segmentation fault
3729           when empty summary view was center-clicked.
3730           And fixed a bug that freed moving folder strings when marked
3731           as unread.
3732           If current folder is trash, don't delete message.
3733         * src/summaryview.[ch]
3734         * src/mainwindow.c
3735         * src/procmsg.[ch]: added update-cache mode (discards previous cache).
3736
3737 2000-01-04
3738
3739         * src/procheader.[ch]: more optimization of header processing
3740           routine. And added a new function procheader_get_header_fields()
3741           that receives an array of header name as a parameter and
3742           set header bodies.
3743         * src/utils.[ch]: added remove_return() for removing return code.
3744         * src/unmime.c: added remove_return() on the last of UnMimeHeader().
3745
3746 2000-01-03
3747
3748         * src/compose.c: if message body is ascii only, set US-ASCII as
3749           charset in Content-Type.
3750         * src/main.[ch]
3751         * src/prefs.c
3752         * src/prefs_common.c
3753         * src/prefs_account.c
3754         * src/account.c: changed the location of rc files.
3755         * src/account.c: enabled closing window when escape key is pressed.
3756
3757 2000-01-02
3758
3759         * version 0.1.3alpha
3760
3761         * src/compose.c: fixed a bug that caused segmentation fault
3762           when sending failed.
3763           And relocated header-generation routines from src/send.c.
3764         * src/send.c: moved header-generation routines to src/compose.c.
3765         * src/prefs.c: added '~' to home directory expansion.
3766         * src/prefs_account.[ch]: added signature file path configuration.
3767         * src/prefs_common.[ch]: added spool path configuration.
3768         * src/inc.c: changed the method of user name acquisition to use
3769           g_get_user_name().
3770
3771 2000-01-01
3772
3773         * version 0.1.2alpha
3774
3775         * added ChangeLog (this file), ChangeLog.jp.
3776         * some code cleanups.
3777         * added manage_window.[ch] for transient window management.
3778         * src/procheader.c: optimized header processing routine a bit.
3779         * src/send.c: fixed exception handling on connection.
3780         * src/inc.c: added exception handling on getting user name.
3781
3782 2000-01-01
3783
3784         * version 0.1.1alpha
3785
3786         * src/send.c: fixed a bug that didn't add Content-Type: header.
3787
3788 2000-01-01
3789
3790         * version 0.1.0alpha
3791
3792         * initial release.