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