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