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