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