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