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