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