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