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