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