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