64020867c4d1eef27e483c54ecbdeec1ce35c611
[claws.git] / ChangeLog
1 2002-04-09
2
3         * src/prefs_account.c
4           src/smtp.[ch]: fixed a bug that didn't complie with OpenSSL enabled.
5
6 2002-04-09
7
8         * src/smtp.[ch]
9           src/send.c
10           src/session.[ch]: first reorganization of SMTP protocol handling.
11           SMTPSession: new class which is a sub class of Session.
12           smtp_session_new(): moved send_smtp_open() into this function.
13           smtp_from(): moved SMTP AUTH calls into smtp_auth().
14           smtp_auth(): use server response for SMTP AUTH method.
15           smtp_ehlo(): read server response and set auth type flags.
16           smtp_helo(): separated EHLO command.
17           smtp_ok(): return the last server response if the buffer is
18           specified.
19         * src/esmtp.[ch]: merged into smtp.[ch].
20         * src/imap.c: imap_session_destroy_all(): use session_destroy().
21
22 2002-04-08
23
24         * src/imap.c: imap_open(): show warning message if IMAP4 session
25           can't be established.
26
27 2002-04-06
28
29         * src/compose.c: made template able to be inserted into the current
30           cursor position.
31         * src/mainwindow.c: moved some menu items under the submenu
32           '/View/Show or hide'.
33
34 2002-04-05
35
36         * src/filter.c
37           src/inc.c: changed folder_find_item_from_path() to
38           folder_find_item_from_identifier().
39           src/prefs_account.c
40           src/prefs_filter.c: use folder_item_get_identifier() to specify
41           folder path.
42
43 2002-04-05
44
45         * src/folder.[ch]: implemented "folder identifier" (and fixed a bug
46           existed in claws' implementation).
47           folder_find_from_name(): find Folder from name and type.
48           folder_get_identifier(): return Folder id.
49           folder_item_get_identifier(): return FolderItem id.
50           folder_find_item_from_identifier(): find FolderItem from id.
51           folder_get_type_string(): return folder type string.
52           folder_get_type_from_string(): return FolderType from string
53           (and fixed the wrong g_strcasecmp() usage).
54         * src/export.c
55           src/import.c: use folder_item_get_identifier() and
56           folder_find_item_from_identifier().
57
58 2002-04-03
59
60         * src/imap.c: imap_parse_atom(): fixed a bug that cur_pos didn't
61           point the correct address after reading the continuous line.
62           imap_scan_folder(): set new number to 0 if unseen number is 0.
63           imap_parse_flags(): don't add new and unread flag if \Seen flag
64           exists.
65         * ac/Makefile.am: removed gpgme.m4 from MACROS.
66
67 2002-04-02
68
69         * fixed the old problem that couldn't add flags to currently opened
70           folders.
71         * src/compose.c:
72           compose_send(): update outbox after saving.
73           compose_queue()
74           compose_draft_cb(): use procmsg_add_flags().
75         * src/folder.[ch]: added "opened" flag and "mark_queue" list to
76           FolderItem.
77         * src/main.c: send_queue(): send from all queue folders.
78         * src/mainwindow.c: send_queue_cb(): send from all queue folders.
79         * src/procmsg.[ch]:
80           procmsg_flush_mark_queue(): new. Write all queued flags into file.
81           procmsg_add_flags(): new. Add specified flags to the folder.
82           procmsg_send_queue(): added an argument to specify queue folder.
83           procmsg_save_to_outbox(): use procmsg_add_flags().
84         * src/summaryview.c:
85           summary_show(): up the opened flag of FolderItem.
86           summary_clear_list(): down the opened flag of FolderItem.
87           summary_write_cache(): call procmsg_flush_mark_queue().
88
89 2002-04-01
90
91         * src/summaryview.[ch]: trim the tail of folder name and selected
92           number on the status label if the space is not enough.
93
94 2002-04-01
95
96         * src/imap.c: imap_create_special_folder(): fixed a bug that didn't
97           set SpecialFolderItemType when creating special folders under
98           INBOX.
99         * ac/gpgme.m4: removed.
100         * ac/README: added.
101         * ac/missing/gdk-pixbuf.m4
102           ac/missing/gettext.m4
103           ac/missing/gpgme.m4
104           ac/missing/imlib.m4: added for convenience.
105
106 2002-03-29
107
108         * src/esmtp.c: esmtp_auth(): fixed a bug that some garbages are
109           shown after the decoded challenge string. Fixed a memory leak.
110           Removed strtok().
111         * src/compose.c: compose_draft_cb(): mark draft messages as read.
112         * src/folderview.c: folderview_update_node(): disable emphasis
113           for Outbox and Draft folders.
114
115 2002-03-28
116
117         * src/messageview.c: messageview_show(): fixed a memory leak.
118         * src/summaryview.c: summary_save_as(): show error dialog if copy
119           failed.
120         * src/about.c: about_show(): make the window active if it is already
121           open.
122
123 2002-03-27
124
125         * src/compose.c: show confirmation dialog before sending if Subject
126           is empty.
127           compose_check_entries(): new.
128           compose_send()
129           compose_send_later_cb(): use compose_check_entries().
130         * src/imap.c: imap_parse_atom(): more fix for parsing responses.
131
132 2002-03-26
133
134         * src/imap.c: imap_parse_atom(): fixed a bug that didn't parse the
135           responses with continuous line correctly, and fixed a memory leak.
136
137 2002-03-26
138
139         * src/undo.c: undo_insert_text_cb(): fixed a crash bug if the text
140           length is large.
141         * src/gtkstext.c: gtk_stext_button_press(): cancel current selection
142           after pasting with middle button to prevent the selection growth.
143
144 2002-03-25
145
146         * src/folderview.c:
147           folderview_rename_folder_cb()
148           folderview_delete_folder_cb(): modify filter rules only if the
149           target folder is in the default mailbox.
150         * src/utils.c: get_abbrev_newsgroup_name(): removed a redundant
151           line.
152
153 2002-03-23
154
155         * src/compose.c
156           src/mainwindow.c
157           src/prefs_common.c: changed 'Tool' menu to 'Tools'.
158           Moved 'Delete duplicated messages' under 'Tools'.
159
160 2002-03-23
161
162         * src/folderview.c: SET_SPECIAL_FOLDER(): keep the same parent
163           when moving.
164         * src/imap.c: imap_create_special_folder(): fixed a crash bug
165           when folder creation failed, and re-try to create folders under
166           INBOX.
167           imap_scan_tree_recursive(): don't automatically add namespace
168           prefix if it's INBOX. Search also under the INBOX for special
169           folders.
170         * src/foldersel.c: SET_SPECIAL_FOLDER(): keep the same parent
171           when moving.
172
173 2002-03-23
174
175         * src/utils.[ch]: get_abbrev_newsgroup_name(): new. It returns the
176           abbreviated newsgroup name.
177         * src/folderview.c: folderview_update_node(): display newsgroups
178           with abbreviated name if name and path is the same.
179         * src/summaryview.c: summary_status_show(): show the newsgroup with
180           abbreviated name.
181
182 2002-03-23
183
184         * src/foldersel.c
185           src/folderview.c: changed the label 'Draft' to 'Drafts'.
186         * src/imap.c: changed the directory name 'Draft' to 'Drafts'.
187           imap_create_missing_folders(): fixed the wrong assignment of
188           Queue folder to draft.
189
190 2002-03-22
191
192         * enabled Sent / Draft / Queue folders on IMAP server.
193         * src/compose.c: compose_queue(), compose_draft_cb(): use account's
194           queue and draft folder if they exist.
195           src/imap.[ch]:
196           imap_create_trash(): removed.
197           imap_create_special_folder(): new. Generalized imap_create_trash().
198           imap_create_missing_folders(): automatically create missing folders.
199           imap_is_msg_changed(): added the dummy method.
200           imap_scan_tree_recursive(): search also Sent, Draft and Queue
201           folders. Minor code cleanups.
202           imap_parse_envelope(): check for null strings.
203           src/procmsg.c: procmsg_read_cache(): add F_QUEUE or F_DRAFT flag
204           for messages on IMAP folder.
205
206 2002-03-20
207
208         * src/compose.c: compose_send(): use account's outbox folder
209           if it exists.
210         * src/procmsg.[ch]: procmsg_save_to_outbox(): changed the API so
211           that the outbox can be specified.
212
213 2002-03-20
214
215         * src/compose.c: don't save to outbox when messages are queued.
216           compose_save_to_outbox(): moved to procmsg.c.
217         * src/procmsg.[ch]: procmsg_send_queue(): save to outbox when
218           sending succeeded.
219           procmsg_save_to_outbox(): new. Removes the queueing headers if
220           needed, and adds the given file to the outbox.
221
222 2002-03-20
223
224         * src/compose.c: compose_wrap_line(): treat '|' also as quote char.
225           get_indent_length(): treat ':' and '#' also as quote char, and
226           cleaned up using strchr().
227
228 2002-03-19
229
230         * src/mainwindow.c: modified some menu items.
231
232 2002-03-19
233
234         * src/defs.h: changed OUTBOX_DIR from "outbox" to "sent"
235           (current "outbox" will be kept until rescan).
236         * src/folder.c: folder_set_missing_folders(): create the missing
237           folders.
238         * src/foldersel.c
239           src/folderview.c: changed 'Outbox' to 'Sent'.
240         * src/main.c: call folder_set_missing_folders().
241         * src/mh.c: mh_scan_tree(): create missing folders.
242         * src/summaryview.c: summary_set_menu_sensitive(): fixed a bug that
243           didn't set the menu sensitivity correctly.
244
245 2002-03-18
246
247         * src/folderview.c
248           src/imap.[ch]: implemented folder renaming on IMAP (thanks to Mio).
249           folderview_rename_folder_cb(): reopen the current folder when
250           the ancestor is renamed.
251           imap_rename_folder(): new method implementation.
252           imap_cmd_rename()
253           imap_rename_folder_func(): new.
254           imap_remove_folder(): remove also the cache directory.
255
256 2002-03-17
257
258         * src/imap.c: implemented locale encoding <-> modified utf-7
259           conversion, and supported i18n of folder name (thanks to Suzuki
260           Mio).
261           imap_path_separator_subst(): handle the escape characters of
262           modified utf-7.
263           imap_modified_utf7_to_locale()
264           imap_locale_to_modified_utf7(): new.
265           imap_create_trash(): modified so that it create the Trash folder
266           to the correct location when imap directory is specified.
267           imap_get_real_path(): removed debug print.
268
269 2002-03-14
270
271         * src/socket.c: implemented timeout for DNS lookup and connect().
272           sock_connect_by_hostname(): timeout support and code cleanup.
273           sock_connect_with_timeout(): new.
274           sock_peek(): implemented SSL peek.
275
276 2002-03-13
277
278         * src/messageview.c: messageview_show(): display single-part
279           text/html messages with the normal text view.
280         * src/account.c
281           src/addrbook.c
282           src/addrindex.c
283           src/compose.c
284           src/imap.c
285           src/inc.c
286           src/jpilot.c
287           src/ldif.c
288           src/mbox.c
289           src/mimeview.c
290           src/news.c
291           src/prefs.c
292           src/prefs_common.c
293           src/prefs_customheader.c
294           src/prefs_display_header.c
295           src/prefs_filter.c
296           src/procheader.c
297           src/procmime.c
298           src/procmsg.c
299           src/recv.c
300           src/rfc2015.c
301           src/send.c
302           src/sourcewindow.c
303           src/summaryview.c
304           src/template.c
305           src/textview.c
306           src/unmime.c
307           src/utils.c
308           src/vcard.c
309           src/xml.c: added 'b' to the option of all fopen().
310
311 2002-03-09
312
313         * version 0.7.4
314
315 2002-03-09
316
317         * src/ssl.[ch]: match its coding style.
318         * src/compose.c: compose_send_later_cb(): fixed a bug that failed
319           to save file.
320         * faq/Makefile.am
321           faq/en/Makefile.am
322           faq/en/sylpheed-faq*.html
323           faq/es/Makefile.am
324           faq/es/sylpheed-faq*.html
325           faq/fr/Makefile.am
326           faq/fr/sylpheed-faq*.html
327           configure.in
328           Makefile.am
329           src/Makefile.am
330           src/defs.h
331           src/mainwindow.c
332           src/manual.[ch]: added FAQs in English, Spanish and French.
333
334 2002-03-07
335
336         * manual/en/sylpheed*.html: updated to the latest version.
337         * libkcc/jis.c
338           src/addrcache.c
339           src/addritem.c
340           src/ldif.c
341           src/mgutils.c: include string.h to remove warning about strlen()
342           etc.
343         * src/folder.c
344           src/folderview.c
345           src/inc.c
346           src/logwindow.c
347           src/mainwindow.c
348           src/mimeview.c
349           src/prefs.c
350           src/prefs_common.c
351           src/procheader.c
352           src/send.c
353           src/session.c
354           src/sigstatus.c
355           src/summaryview.c: added break to the last label of switch to
356           prevent the 'deprecated use of label at end of compound statement'
357           warning at gcc-3.0.
358         * src/rfc2015.c: passphrase_cb(): fixed the type of r_hd.
359
360 2002-03-06
361
362         * src/inc.[ch]: preserve the pointer to IncProgressDialog to the
363           static list.
364           inc_cancel_all(): new. It cancels the all current incorporation.
365         * src/mainwindow.c: added 'Cancel receiving' menu.
366         * src/textview.c: a minor fix for single-part MIME messages, and
367           a bit of cleanup for textview_write_body().
368
369 2002-03-05
370
371         * src/inc.c: inc_write_uidl_list(): fixed a bug that lost UIDL
372           information if any errors occured before issuing UIDL command.
373           src/inc.h: added uidl_is_valid to Pop3State.
374           src/pop.c: set uidl_is_valid to TRUE if UIDL becomes valid.
375
376 2002-03-03
377
378         * version 0.7.3
379
380 2002-03-03
381
382         * src/mimeview.c: mimeview_create(): set the initial notebook page
383           to 0.
384         * src/folderview.c: folderview_selected(): scroll the view if the
385           selected row is hidden.
386         * src/prefs_filter.c: prefs_filter_register_cb(): scroll the view
387           and select the added row.
388         * src/summaryview.c: fix threading for null message ids.
389
390 2002-03-02
391
392         * src/textview.c: textview_show_message(): follow message/rfc822
393           parts.
394           textview_add_part(): add a caption before the attached text files.
395           textview_show_header(): don't add the newline.
396         * src/messageview.c: enabled message search also in MIME mode.
397
398 2002-03-01
399
400         * src/messageview.c: messageview_show(): set header state of
401           MimeView's TextView, too.
402         * src/mimeview.c: mimeview_show_message(): call
403           textview_show_message() to display message.
404         * src/textview.c: textview_add_part(): new. It adds the content
405           of message part without clearing the view.
406           textview_show_message(): display all parts with appropriate
407           style.
408           textview_write_body(): separated from textview_show_part().
409
410 2002-02-28
411
412         * src/mainwindow.c
413           src/prefs_common.c: added ISO-8859-15 to the codesets for
414           displaying and sending.
415         * src/codeconv.c: conv_codeset_strdup(): return NULL if code
416           conversion failed, and made caller deal with it.
417         * src/compose.c: compose_write_to_file(): show error dialog when
418           code conversion failed, and let user select whether to send it
419           as is or not.
420         * src/textview.c: textview_write_line(): show the original string
421           if code conversion failed.
422
423 2002-02-27
424
425         * src/inc.c: get_spool(): fixed a bug that failed to unlock mbox
426           if copy_mbox() failed (thanks to Alexander Kabaev).
427         * src/prefs_account.[ch]: added separate user ID / password setting
428           for SMTP AUTH.
429         * src/send.c: send_message_smtp(): use separate user ID / password
430           for SMTP AUTH if it is specified.
431
432 2002-02-26
433
434         * src/inc.[ch]
435           src/pop.[ch]: refactored the UIDL management.
436           store the information of messages into the array of Pop3MsgInfo
437           structure, and do full scanning of not retrieved messages.
438
439 2002-02-26
440
441         * src/filesel.c
442           src/foldersel.c
443           src/mainwindow.c: set WMCLASS for window/dialog.
444         * src/codeconv.c: conv_codeset_strdup(): return source string
445           when jconv_alloc_conv() failed.
446
447 2002-02-25
448
449         * src/mh.c: mh_scan_tree_recursive(): changed the hardcoded directory
450           name to the macros.
451
452 2002-02-24
453
454         * src/messageview.c
455           src/mimeview.[ch]
456           src/summaryview.c: implemented the new notebook tab interface for
457           MIME message.
458         * src/textview.[ch]: fixed line space related glitches.
459
460 2002-02-23
461
462         * src/prefs_filter.c:
463           prefs_filter_rename_path()
464           prefs_filter_delete_path(): fixed a crash when flt->dest was NULL.
465
466 2002-02-23
467
468         * src/recv.[ch]: cancel data receiving if RecvUIFunc returns FALSE.
469         * src/pop.c: pop3_retr_recv(): fixed false 'No space' when cancelled
470           while getting data.
471         * src/inc.c: inc_pop3_recv_func(): abort data receiving when
472           cancelled, and fixed potential crash bug.
473         * src/grouplistdialog.c: enabled cancelling of data receiving.
474         * src/news.c: news_get_group_list(): destroy current session if
475           retrieving failed.
476
477 2002-02-22
478
479         * src/manage_window.[ch]: fixed a bug that caused crash when
480           the main window was hidden.
481           MANAGE_WINDOW_SIGNALS_CONNECT(): new macro.
482           Monitor "unmap_event", "destroy" events.
483         * src/account.c;
484           src/addressbook.c
485           src/compose.c
486           src/export.c
487           src/filesel.c
488           src/foldersel.c
489           src/grouplistdialog.c
490           src/import.c
491           src/inputdialog.c
492           src/mainwindow.c
493           src/message_search.c
494           src/passphrase.c
495           src/prefs_account.c
496           src/prefs_common.c
497           src/prefs_customheader.c
498           src/prefs_display_header.c
499           src/prefs_filter.c
500           src/prefs_template.c
501           src/summary_search.c
502           src/summaryview.c: use MANAGE_WINDOW_SIGNALS_CONNECT() macro to
503           connect signals for window management.
504
505 2002-02-21
506
507         * src/prefs_account.[ch]: added receive size limit option.
508         * src/pop.c: skip messages larger than the limit size.
509           LOOKUP_NEXT_MSG(): new macro.
510         * src/compose.c: compose_attach_append(): check whether the file
511           is readable.
512
513 2002-02-21
514
515         * src/rfc2015.c: commented out dump_mimeinfo() and dump_part().
516           changed g_message()'s to debug_print() and g_warning().
517           rfc2015_decrypt_message(): fixed a bug that duplicated message
518           parts when decryption was failed/cancelled. And made some code
519           cleanup.
520         * src/passphrase.c: made the dialog transient.
521         * src/prefs.c: prefs_config_parse_one_line(): removed debug_print().
522
523 2002-02-20
524
525         * src/messageview.c
526           src/procmsg.[ch]: fixed a bug that failed to parse multipart
527           messages if GPGME was enabled.
528         * src/rfc2015.c: commented out copy_gpgmedata_to_temp() which
529           is not used.
530         * src/prefs_account.c: prefs_account_privacy_create(): modified
531           the vertical spacing.
532
533 2002-02-19
534
535         * src/menu.[ch]: menu_set_sensitive_all(): new.
536           menu_set_insensitive_all(): made it a wrapper for
537           menu_set_sensitive_all().
538         * src/prefs_account.c:
539           prefs_account_open()
540           prefs_account_protocol_set_optmenu(): made the protocol type
541           unchangeable after creating an account.
542         * src/compose.c: compose_attach_parts(): traverse MIME tree to
543           extract all attathed files from nested multipart MIME message.
544
545 2002-02-19
546
547         * src/procmsg.[ch]: procmsg_get_mark_sum(): added arguments to
548           obtain minimum/maximum number, and to specify first number
549           limit.
550         * src/folderview.c
551           src/inc.c: enabled new message checking on news folder.
552         * src/news.c: news_scan_group(): implemented. Guess new/unread
553           message number from the response of GROUP command and the mark
554           data.
555           news_select_group(): return the total/first/last number.
556         * src/prefs_account.c: prefs_account_receive_create(): modified
557           the text of the 'Get all' check button.
558
559 2002-02-18
560
561         * src/account.c: made 'Get all' checkbox available for IMAP4 and
562           NNTP accounts.
563         * src/inc.c: corrected the argument of folderview_check_new().
564         * src/prefs_account.c: modification for the "`Get all' checks for
565           new mail on this account" checkbox.
566
567 2002-02-18
568
569         * src/folderview.[ch]:
570           folderview_rescan_tree(), folderview_rescan_all(): renamed from
571           folderview_update_tree() and folderview_update_all().
572           folderview_update_all_node(): removed.
573           folderview_check_new(): new. If the argument is NULL, it checks
574           all local folders. If the arguments is specified, it checks
575           the (local and remote) folder.
576         * src/inc.c:
577           inc_account_mail()
578           inc_all_account_mail(): check also IMAP4 account.
579
580 2002-02-18
581
582         * src/folderview.c:
583           folderview_rename_folder_cb()
584           folderview_delete_folder_cb(): modify the filter rules when folder
585           is renamed/deleted.
586         * src/prefs_filter.[ch]:
587           prefs_filter_rename_path(): new. It renames the destination paths
588           in the filter list.
589           prefs_filter_delete_path(): new. It deletes the filter rules if
590           the destination paths matched.
591         * thanks to Neill Miller for above.
592
593 2002-02-17
594
595         * src/compose.c: inherit attached files when forwarding or reediting
596           (rewrote the code in claws branch).
597           compose_attach_parts(): new. It extracts and attaches the files
598           in the given message.
599           compose_attach_append(): chnaged the types of arguments.
600         * src/messageview.c: messageview_show(): moved the GPG decryption
601           code to procmsg.c.
602         * src/procmsg.[ch]: procmsg_open_message_decrypted(): new.
603
604 2002-02-16
605
606         * version 0.7.2
607
608 2002-02-16
609
610         * src/summary_search(): summary_search_execute(): scroll the view
611           when message view is hidden.
612
613 2002-02-15
614
615         * src/foldersel.c: foldersel_set_tree(): made different type of
616           folders selectable in moving mode.
617         * src/folderview.[ch]: folderview_update_msg_num(): compare the
618           numbers with the CTree's labels, and don't update folder_item here.
619         * src/imap.c: imap_move_msg(), imap_move_msgs_with_dest():
620           implemented moving between different type of folders.
621         * src/mh.c: SET_DEST_MSG_FLAGS(): new macro.
622           mh_do_move(), mh_do_move_msgs_with_dest(): new (renamed previous
623           mh_move_msg() and mh_move_msgs_with_dest()).
624           mh_move_msg(), mh_move_msgs_with_dest(): implemented message
625           moving between different type of folders.
626           mh_copy_msg(), mh_copy_msgs_with_dest(): some code cleanups.
627         * src/summaryview.c: summary_status_show(): update folder_item
628           here.
629         * po/POTFILES.in: removed reference to headerwindow.c.
630         * src/summaryview.c: summary_step(): fixed the behavior on the
631           head and tail of the list.
632
633 2002-02-15
634
635         * src/mainwindow.c: main_window_set_menu_sensitive(): set 'Show
636           all header' toggle state from the property of the TextView.
637         * src/summaryview.[ch]: made 'All header' toggle switch.
638           Prohibited unnecessary menu update.
639           summary_select_node(): added the argument 'do_refresh'.
640           Some code cleanups.
641
642 2002-02-14
643
644         * src/utils.c: strsplit_with_quote(): remove quotation characters
645           in the function (fix composer's external editor problem) (thanks
646           to Stefaan A Eeckels).
647         * src/mainwindow.[ch]: made 'Show all header' toggle switch.
648           main_window_menu_callback_block()
649           main_window_menu_callback_unblock(): new.
650           main_window_set_menu_sensitive(): set the toggle status of
651           menu items.
652           show_all_header_cb(): read the status of toggle menu item.
653         * src/mainwindow.[ch]: made 'Thread view' toggle switch.
654         * src/prefs_common.c: prefs_keybind_apply_clicked(): removed
655           'Unthread view'.
656
657 2002-02-13
658
659         * src/imap.c: imap_add_msg(): fixed a bug that didn't replace
660           the path separator (thanks to Sergey Vlasov).
661         * src/gtkutils.c: gtkut_editable_get_selection(): return NULL
662           if the length of selection is zero.
663           Fixed the assertion.
664         * src/utils.c: str_open_as_stream(): return immediately if
665           the length of str is zero.
666         * src/headerwindow.[ch]: removed.
667         * src/socket.[ch]
668           src/inc.c: removed stale thread support codes.
669
670 2002-02-12
671
672         * src/procmsg.c: procmsg_open_message(): modified so that it
673           returns the stream of decrypted message file if it exists
674           (this fixes the failure of gpg decryption in messageview.c).
675
676 2002-02-11
677
678         * version 0.7.1
679
680 2002-02-11
681
682         * src/compose.[ch]
683           src/gtkutils.[ch]
684           src/prefs_template.c
685           src/quote_fmt.h
686           src/quote_fmt_parse.y
687           src/summaryview.c
688           src/utils.[ch]: if the part of the message text is selected, use
689           it for quoted text instead of the entire message body (thanks to
690           Darko Koruga).
691           src/utils.[ch]: str_open_as_stream(): new. It returns an
692           temporary stream for the given string.
693         * src/main.c: added "--send" command line option.
694         * src/compose.c: compose_reply_set_entry(): add From address to
695           Cc if Reply-To and to_all are both specified.
696         * Makefile.am: correct the Source: line in the RPM spec file in
697           .tar.bz2 package.
698
699 2002-02-07
700
701         * src/procmsg.c: procmsg_open_message(): fetch message if the cache
702           doesn't exist.
703         * src/foldersel.[ch]: foldersel_folder_sel(): added an argument
704           that specifies the folder selection type.
705         * src/addressbook.c
706           src/compose.c
707           src/editaddress.c
708           src/editgroup.c
709           src/folderview.c
710           src/importldif.c
711           src/mainwindow.c
712           src/md5.c
713           src/mimeview.c
714           src/prefs_common.c
715           src/prefs_customheader.c
716           src/prefs_filter.c
717           src/summaryview.c: made it compile with C compilers other than gcc
718           (thanks to Shawn Houston).
719
720 2002-02-06
721
722         * src/imap.c: imap_copy_msgs_with_dest(): fixed a bug on traversing
723           list.
724         * src/prefs_common.c: made the key binding setting separate dialog.
725         * src/addressbook.c: addressbook_format_address(): add "" around
726           the display name if it contains comma (thanks to Satoshi Watanabe).
727         * src/addr_compl.c: get_complete_address(): add "" around the
728           display name if it contains comma.
729           get_address_from_edit(): handle the quotation character correctly.
730         * src/addr_compl.c: get_complete_address()
731           src/addressbook.c: addressbook_format_address(): fixed a bug that
732           caused wrong text processing if the display name is empty.
733         * updated NEWS.
734
735 2002-02-05
736
737         * src/compose.c: compose_exec_ext_editor_real(): replaced
738           g_strsplit() with strsplit_with_quote().
739         * src/foldersel.c
740           src/folderview.c: folderview_drag_motion_cb(): minor code cleanups.
741         * src/folderview.c:
742           folderview_drag_motion_cb()
743           folderview_drag_received_cb(): allow dropping into IMAP4 folder.
744         * src/utils.c: get_file_size_as_crlf(): use fgets() instead of
745           fread().
746         * src/imap.c
747           imap_copy_msg()
748           imap_copy_msgs_with_dest(): use imap_add_msg() if the source
749           of the message is different from the current mailbox.
750           Return the correct value.
751           imap_cmd_append(): properly implemented the APPEND command.
752
753 2002-02-04
754
755         * src/mainwindow.c
756           src/messageview.[ch]
757           src/summaryview.[ch]
758           src/textview.[ch]: show all headers in the message view, and don't
759           use the header window anymore.
760         * src/mainwindow.c
761           src/prefs_common.c: changed the default shortcut of 'compose new
762           message'.
763         * src/mainwindow.c
764           src/summaryview.[ch]: summary_display_msg_selected(): new.
765           Show the selected message if 'Show all header' is selected.
766         * src/mh.c
767           src/sourcewindow.c: changed some procmsg_get_message_file_path()
768           to procmsg_get_message_file() to be sure the message is
769           retrieved.
770         * src/folderview.c: folderview_drag_motion_cb(): allow DnD from
771           any folder to MH folder.
772           folderview_drag_received_cb(): copy messages instead of moving
773           if the source folder is news or IMAP.
774         * src/mainwindow.c
775           src/summaryview.c: allow copy from news folder.
776
777 2002-02-03
778
779         * src/prefs_common.c: prefs_other_create(): modified the design
780           of the external command settings.
781           prefs_keybind_apply_clicked(): made the Mew / Wanderlust keybind
782           preset closer to the original.
783           Added Mutt keybind preset.
784           Also change the compose keybinds.
785         * src/compose.c: modified some menu shortcuts.
786         * src/codeconv.c: modified the locale_table for Thai encoding.
787
788 2002-02-01
789
790         * src/Makefile.am: added $(GPGME_CFLAGS) to INCLUDES.
791         * src/prefs_common.c: prefs_interface_create(): modified the
792           description for menu shortcut.
793
794 2002-01-31
795
796         * src/gtkutils.[ch]: added gtk_stext_clear().
797         * src/compose.[ch]
798           src/mainwindow.c
799           src/summaryview.[ch]: enabled multiple forwarding.
800         * src/summaryview.c:
801           summary_set_marks_selected(): set marks for all selected row.
802           summary_reply(): moved from summary_reply_cb().
803         * compose.[ch]: compose_forward(): modified so that it receives
804           the message list.
805         * src/mainwindow.c: cleanup for reply processing.
806         * src/summaryview.c: summary_reply(): fixed a memory leak.
807           summary_key_pressed(): removed hardcoded mark / mark as unread
808           shortcuts.
809         * src/mainwindow.c
810           src/prefs_common.c: added mark / mark as unread shortcuts to
811           the menu.
812
813 2002-01-30
814
815         * src/compose.c: compose_wrap_line_all(): wrap quoted part even
816           if prefs_common.linewrap_quote is not set (it is only for
817           auto-wrapping on reply).
818         * src/prefs_account.c: prefs_account_open(): initialize tmp_ac_prefs
819           when creating a new account.
820         * src/mh.c: mh_get_msg_list(): use also st_ctime to detect
821           directory change.
822         * src/prefs_common.c: prefs_interface_create(): modified the
823           description of key binds selector.
824
825 2002-01-29
826
827         * src/mimeview.c: fixed multiple dialog / moving by correcting
828           button / key event processing.
829         * src/mimeview.[ch]
830           src/textview.c: pass some key press events to MimeView in MIME
831           mode.
832         * src/prefs_filter.c: fixed a bug that didn't set the order of
833           rules correctly.
834         * src/prefs_common.c: prefs_keybind_apply_clicked(): fixed
835           empty_menurc string.
836
837 2002-01-28
838
839         * src/mainwindow.c
840           src/prefs_common.c: reorganized the menu shortcuts.
841           Added 'View - Toggle summary view'.
842         * src/summaryview.[ch]: summary_toggle_view(): made it public
843           function.
844         * src/prefs_common.[ch]: swapped the position of 'Shortcut key'
845           and 'On exit'.
846         * src/importldif.c: imp_ldif_delete_event(): fixed segfault when
847           closing the dialog with window manager (in more appropriate way).
848         * src/imageview.[ch]
849           src/messageview.c
850           src/mimeview.c: fixed wrong scrolling position when switching
851           between text and image parts. Also free the unrequired image
852           (thanks to Sergey Vlasov).
853         * src/prefs_common.c: disabled 'Go to inbox after receiving new mail'
854           by default.
855
856 2002-01-28
857
858         * src/prefs_common.c: implemented shortcut quick changer.
859         * src/folderview.c: folderview_key_pressed()
860           src/summaryview.c: summary_key_pressed(): removed some hardcoded
861           key binds.
862
863 2002-01-25
864
865         * src/procmime.c:
866           procmime_get_mime_type()
867           procmime_get_mime_type_table(): made the MIME type search case
868           insensitive.
869         * src/gtkstext.c:
870           gtk_stext_delete_line(): delete newline on empty line.
871           gtk_stext_delete_to_line_end(): delete newline if cursor is on
872           the last of line.
873           (thanks to Yasuzaki Masayoshi.)
874
875 2002-01-23
876
877         * src/compose.c
878           src/gtkstext.[ch]: removed the hardcoded shortcuts in GtkSText,
879           and made them customizable.
880         * src/utils.[ch]: added get_file_size_as_crlf() which returns
881           the file size when converting LF to CR+LF.
882
883 2002-01-22
884
885         * src/compose.c: enabled 'Ctrl-Enter' or
886           'Ctrl-(other modifier keys)-Enter' shortcut that didn't work
887           before.
888         * src/gtkstext.c: disabled some Emacs key bindings.
889           gtk_stext_key_press(): don't extend selection when Shift-Enter
890           is pressed to prevent the disapperance of cursor.
891         * src/summaryview.c: summary_select_next_unread(): added the button
892           to search unread message again from the beginning to the dialog.
893         * src/folderview.c: folderview_key_pressed(): go to next unread
894           folder if space key is pressed on the empty folder.
895           Move CTree focus before selecting row.
896
897 2002-01-21
898
899         * src/defs.h: modified the XLFD of default fonts.
900         * src/textview.c: textview_create(): fixed a bug that caused
901           segfault if font couldn't be loaded.
902         * src/folderview.c
903           src/grouplistdialog.c: compare subscribed groups with path.
904         * src/prefs_filter.c: changed 'Operator' to 'Condition'.
905
906 2002-01-20
907
908         * src/compose.c: compose_wrap_line_all(): fixed wrapping crash
909           when URL is wider than wrapping margin.
910         * src/mainwindow.c
911           src/prefs_filter.[ch]
912           src/summaryview.[ch]: added "Create filter rule" function based
913           on the patch from Luca Rosellini.
914         * src/summaryview.c: summary_filter_open(): added X-List and
915           X-Mailing-list to the automatically detected headers.
916
917 2002-01-18
918
919         * configure.in: support Mac OS X (Darwin).
920
921 2002-01-16
922
923         * src/prefs_filter.c: use inc_(un)lock() instead of
924           inc_autocheck_timer_{remove|set}().
925         * src/summaryview.c: summary_sort(): use gtk_ctree_sort_recursive()
926           instead of gtk_ctree_sort_node() so that messages within threads
927           are also sorted.
928         * src/procmsg.c: procmsg_read_mark_file(): fixed a bug that the
929           target of sizeof was wrong and caused crash on Alpha architecture
930           (thanks to Motonobu Ichimura).
931
932 2002-01-15
933
934         * src/foldersel.c:
935           foldersel_gnode_func(): made the names of special folders
936           translated strings.
937           foldersel_set_tree(): move the special folder to the top.
938         * src/inputdialog.[ch]: input_dialog_query_password(): new.
939         * src/imap.c
940           src/inc.c
941           src/news.c
942           src/send.c: use input_dialog_query_password() instead of their
943           own query functions.
944
945 2002-01-14
946
947         * src/defs.h: modified the default font.
948         * src/folder.[ch]
949           src/mh.[ch]
950           src/imap.[ch]
951           src/news.[ch]: moved the class definition and some methods to
952           the proper location.
953
954 2002-01-11
955
956         * src/mimeview.c: mimeview_save_as()
957           src/summaryview.c: summary_save_as(): put the default filename
958           based on the subject.
959         * src/utils.[ch]: added subst_chars() and subst_for_filename()
960           which substitute some special characters with underscore.
961         * src/filesel.c: filesel_select_file(): select the default filename.
962
963 2002-01-10
964
965         * INSTALL
966           INSTALL.jp: added the description and the URL for libjconv.
967         * src/mainwindow.c: menu entries cleanup.
968
969 2002-01-09
970
971         * README
972           README.jp
973           src/about.c: modified the copyright year.
974         * src/gtkstext.h: added the notice for modification by the Sylpheed
975           Team.
976
977 2002-01-08
978
979         * INSTALL
980           INSTALL.jp: added the URL for compface.
981
982 2002-01-07
983
984         * version 0.7.0
985
986 2002-01-07
987
988         * src/headerwindow.c
989           src/logwindow.c
990           src/messageview.c
991           src/sourcewindow.c: set wmclass when creating windows.
992
993 2002-01-04
994
995         * src/compose.c: compose_wrap_line_all(): fixed the bug that
996           caused infinite loop when wrapping certain patterns of quoted text.
997
998 2002-01-02
999
1000         * src/imap.c: imap_parse_envelope(): put the assertion after
1001           imap_parse_address() to prevent segmentation fault.
1002
1003 2001-12-31
1004
1005         * src/folderview.c
1006           src/mainwindow.c: modified some labels of menu items.
1007         * src/ldif.c: put the return value of fgetc() in a gint.
1008         * src/importldif.c: don't brace null strings with _().
1009         * src/compose.c: moved the position of Subject entry to the last.
1010           Reorganized the menu.
1011           compose_draft_cb(): added 'keep editing after saving to draft'
1012           feature.
1013
1014 2001-12-30
1015
1016         * src/mainwindow.c: reorganization of main menu. Removed 'Summary'
1017           menu. Moved 'Help' menu to just the right of 'Configuration'.
1018           Removed 'File - Close' menu item.
1019
1020 2001-12-25
1021
1022         * src/mainwindow.c: some menu reorganization.
1023         * AUTHORS: updated. Added more contributors.
1024         * src/account.c: account_row_moved(): new. Moves displayed row to
1025           the appropriate position when up / down button are pressed.
1026           account_clist_set(): move displayed row to the appropriate position.
1027         * src/compose.c
1028           src/mainwindow.c: set title and wmclass when creating windows.
1029
1030 2001-12-24
1031
1032         * src/gtkstext.c: fixed a bug that didn't show block cursor
1033           correctly. Removed unnecessary GdkGC copy. Fixed cursor
1034           coordinate.
1035         * src/compose.c
1036           src/gtkutils.[ch]
1037           src/textview.[ch]
1038           src/undo.c: modified to use GtkSText.
1039         * src/menu.h: added #include <gtk/gtkmenu.h>.
1040
1041 2001-12-23
1042
1043         * acconfig.h
1044           configure.in: added XIM checking for GTK+.
1045         * src/gtkstext.[ch]: new. Copied GtkText in GTK+ and renamed.
1046
1047 2001-12-22
1048
1049         * src/filter.c: added #include <sys/types.h>.
1050
1051 2001-12-21
1052
1053         * src/template.c: template_write_config(): fixed a typo.
1054         * src/compose.c: toolbar_linewrap_cb(): call compose_wrap_line_all().
1055         * src/filter.[ch]
1056           src/prefs_filter.c: supported regular expression (thanks to
1057           Yukihiro Nakai).
1058         * src/undo.c: undo_paste_clipboard_cb(): fixed a bug that broke
1059           undo state when pasted clipboard was empty.
1060           undo_check_size(): use g_list_last().
1061           undo_undo()
1062           undo_redo(): fixed NULL checking and made a bit of optimization.
1063           Some code cleanups.
1064         * src/prefs_common.c: changed the default value of linewrap length
1065           to 72.
1066
1067 2001-12-20
1068
1069         * reorganization of pixmap management.
1070         * src/stock_pixmap.[ch]: new. This module manages all static pixmaps.
1071         * modified every files which directly use pixmaps data to use
1072           stock_pixmap_*().
1073         * src/undo.[ch]: renamed undo_set_undo_change_funct() to
1074           undo_set_change_state_func(), and changed its argument from
1075           GtkWidget* to gpointer.
1076           undo_merge(): code cleanup.
1077         * src/compose.c: renamed compose_set_undo() to
1078           compose_undo_state_changed().
1079
1080 2001-12-19
1081
1082         * src/account.c: account_find_from_address(): made it case
1083           insensitive.
1084         * src/addressbook.c: addressbook_create(): set wmclass.
1085         * src/compose.c: compose_insert_file(): supported DOS/Win/Mac line
1086           break.
1087         * src/importldif.c
1088           src/ldif.[ch]: merged from the claws branch.
1089         * src/importldif.c: removed some warnings.
1090           imp_ldif_field_list_toggle(): fixed button checking.
1091           imp_ldif_dialog_create(): minor layout fix.
1092         * src/ldif.c: removed some warnings.
1093         * INSTALL
1094           INSTALL.jp: updated confirmation list.
1095         * src/vcard.c:
1096           vcard_read_file()
1097           vcard_test_read_file(): fixed a memory leak of tagtemp.
1098           Some code cleanups (decreasing the indent level).
1099         * src/addrindex.c
1100           src/jpilot.[ch]
1101           src/syldap.[ch]: disabled runtime library checking because JPilot
1102           and LDAP libraries are linked on the build time, and the program
1103           doesn't execute without them anyway.
1104         * src/addressbook.c
1105           src/addrindex.c: changed "J-Pilot" to "JPilot".
1106           Removed warning for atoi().
1107
1108 2001-12-18
1109
1110         * src/procmsg.c: procmsg_empty_trash()
1111           src/mainwindow.c: main_window_empty_trash(): empty trash only if
1112           it contains some messages.
1113         * src/imap.c: search_array_str(): new.
1114           imap_status(): fixed a bug that didn't parse the command response
1115           correctly.
1116
1117 2001-12-18
1118
1119         * merged undo function (by Jens Oberender).
1120         * src/undo.[ch]: new.
1121           undo_insert_text_cb(): fix for multibyte characters (obtain the
1122           number of letters instead of bytes).
1123         * src/compose.[ch]: added the code for undo.
1124         * src/prefs_common.[ch]: added the interface for setting undo level.
1125
1126 2001-12-16
1127
1128         * src/compose.c: compose_template_apply()
1129           src/prefs_template.c: prefs_template_clist_set_row()
1130           src/template.c: template_write_config(): don't replace To: and
1131           Subject: entry in composition window if they are empty.
1132
1133 2001-12-16
1134
1135         * version 0.6.6
1136
1137 2001-12-15
1138
1139         * src/folderview.c: folderview_drag_motion_cb(): fixed a DnD bug.
1140         * src/ldif.c: ldif_get_line(): ignore CR.
1141         * src/mimeview.c: mimeview_show_message(): search also text/html
1142           for first text part.
1143
1144 2001-12-14
1145
1146         * src/prefs_account.c: prefs_account_save_config_all(): fixed a bug
1147           that didn't update accountrc if account_list == NULL (thanks to
1148           Watanabe).
1149
1150 2001-12-14
1151
1152         * src/utils.h: added the macro Xstrcat_a() that concatenates
1153           two strings and return alloca'd string.
1154         * src/imap.c: imap_scan_tree_recursive(): fixed a bug that didn't
1155           handle folder name which includes some spaces correctly
1156           (based on the patch from Willem van Engen (thanks!)).
1157         * src/compose.c: compose_wrap_line_all(): fixed the crash when
1158           wrapping long lines if linewrap quotation is disabled and
1159           a word spanning more than one line.
1160
1161 2001-12-14
1162
1163         * applied the Tobias' patch with modification (thanks!).
1164         * src/imap.[ch]:
1165           imap_msg_set_perm_flags()
1166           imap_msg_unset_perm_flags(): new. They set permanent flags to
1167           a IMAP message.
1168         * src/compose.c
1169           src/summaryview.c: set flags on IMAP server when flags are changed.
1170
1171 2001-12-11
1172
1173         * src/gtkutils.[ch]: gtkut_container_remove(): new. It's a wrapper
1174           of gtk_container_remove() for workaround of a bug in
1175           Gtk{Text,Entry} (thanks to Sergey Vlasov).
1176         * src/compose.c
1177           src/mainwindow.c
1178           src/messageview.c
1179           src/mimeview.c
1180           src/summaryview.c
1181           src/textview.c: replaced gtk_container_remove() with
1182           gtkut_container_remove(), and removed previous partial fix.
1183
1184 2001-12-09
1185
1186         * src/prefs_account.c: prefs_account_apply(): fixed a bug that
1187           checked user ID on "local", but didn't on IMAP4.
1188         * src/imap.c: imap_session_get(): fixed a crash bug when
1189           rfolder->session == NULL.
1190         * Makefile.am: changed the arguments of tar from 'chojf' to
1191           '--bzip2 -chof'.
1192         * src/summaryview.c: summary_toggle_view(): disclaim the selection
1193           of textview before removing vpaned.
1194
1195 2001-12-08
1196
1197         * src/messageview.c: messageview_change_view_type(): disclaim the
1198           selection before removing textview. This solves the mysterious
1199           copy-paste disability (thanks to Melvin Hadasht).
1200         * src/textview.c: textview_set_font(): use
1201           gtk_editable_claim_selection() instead of
1202           gtk_editable_select_region().
1203
1204 2001-12-06
1205
1206         * src/prefs_template.c: prefs_template_window_create(): supported
1207           address completion on the To: entry.
1208
1209 2001-12-04
1210
1211         * src/folder.c:
1212           folder_count_total_msgs()
1213           folder_count_total_msgs_func(): use g_node_traverse() to traverse
1214           GNode.
1215
1216 2001-12-03
1217
1218         * src/compose.c: fixed a bug that empty body was refused.
1219         * src/prefs_template.c: fixed a bug that didn't set To: entry
1220           correctly. Display error dialog if format is illegal.
1221         * src/prefs_common.c
1222           src/quote_fmt_lex.l
1223           src/quote_fmt_parse.y: changed parenthesis "( )" to curly braces
1224           "{ }" to prevent confusion on using parenthesis.
1225         * src/html.c: html_get_parenthesis(): ignore CSS / script stuff.
1226
1227 2001-11-29
1228
1229         * src/prefs_template.c: added colon to the header labels.
1230
1231 2001-11-28
1232
1233         * src/compose.c
1234           src/prefs_template.c
1235           src/template.[ch]: added To field to the template.
1236
1237 2001-11-27
1238
1239         * src/textview.c: textview_show_part(): use first found
1240           message/rfc822 header.
1241         * src/folderview.c: added "Search messages..." to the context menu.
1242         * src/prefs_common.c: prefs_quote_description_create(): added
1243           description for characters which need to be escaped.
1244
1245 2001-11-26
1246
1247         * src/compose.c: compose_wrap_line_all(): more merging from claws.
1248           GET_CHAR(): renamed GET_TEXT() and made it more generic.
1249           Modified compose_wrap_line() and compose_wrap_line_all() to use
1250           GET_CHAR().
1251         * src/textview.c: textview_show_part(): show the header of nested
1252           RFC822 attachment correctly.
1253
1254 2001-11-25
1255
1256         * src/folder.[ch]
1257           src/main.c: added --status option to get new, unread and total
1258           message count from a running Sylpheed (merged from claws).
1259           prohibit_duplicate_launch(): output '\n' only once.
1260
1261 2001-11-23
1262
1263         * src/compose.c
1264           src/gtkutils.[ch]: merged the new wrapping function.
1265           gtkut_text_str_compare_n()
1266           gtkut_text_str_compare()
1267           gtkut_text_is_uri_string(): backport from the GtkSText in the
1268           claws branch, and made modification.
1269         * src/prefs_template.c
1270           src/template.[ch]: added Subject to the template.
1271
1272 2001-11-22
1273
1274         * src/compose.c: compose_write_headers(): added missing parenthesis
1275           that generated invalid custom header (thanks to Masaaki Noro).
1276           Allow Sender: custom header.
1277
1278 2001-11-20
1279
1280         * src/procheader.c: procheader_date_parse(): workaround for
1281           RFC-incompliant Date header.
1282
1283 2001-11-20
1284
1285         * src/addrbook.c: removed redundant functions, and fixed generation
1286           of spurious address book file names.
1287         * src/addrindex.c: V-Card -> vCard.
1288
1289 2001-11-19
1290
1291         * src/textview.c: get_email_part(): replaced isalnum() with
1292           the macro IS_ASCII_ALNUM() which restricts the range of
1293           characters to 7bit ASCII (thanks to Shimamoto).
1294         * src/utils.c: remote_tzoffset_sec(): workaround for malformed
1295           timezone offset.
1296
1297 2001-11-18
1298
1299         * src/textview.c: textview_show_part(): show headers on nested
1300           muitipart text.
1301
1302 2001-11-17
1303
1304         * src/imap.c: imap_session_get()
1305           src/news.c: news_session_get(): fixed segfault when reconnection
1306           failed.
1307         * src/grouplistdialog.c: removed redundant code, and expand nodes
1308           that doesn't match the pattern.
1309
1310 2001-11-16
1311
1312         * src/compose.c: modified so that it sends message when any of
1313           To:, Cc:, Bcc:, or Newsgroups: fields have valid recipient.
1314           compose_check_for_valid_recipient(): new.
1315         * src/grouplistdialog.c: improved the UI.
1316           Added appropriate description and search button.
1317           Search doesn't get group list again.
1318
1319 2001-11-15
1320
1321         * src/news.[ch]: news_session_get(): update the last access time
1322           correctly.
1323           news_group_list_free(): new.
1324         * src/grouplistdialog.c: free resources correctly.
1325
1326 2001-11-15
1327
1328         * src/folderview.c
1329           src/grouplistdialog.[ch]: more merging of new newsgroup
1330           subscription dialog.
1331         * src/news.[ch]: renamed news_remove_group_list() to
1332           news_remove_group_list_cache().
1333
1334 2001-11-14
1335
1336         * src/defs.h: added MAX_ENTRY_LENGTH definition.
1337         * src/compose.c: compose_add_entry_field(): create new entry with
1338           max length.
1339
1340 2001-11-13
1341
1342         * src/grouplistdialog.c: made non-leaf node selectable.
1343           Give the complete newsgroup name for each nodes.
1344
1345 2001-11-13
1346
1347         * src/grouplistdialog.c
1348           src/news.[ch]: merging of new newsgroup subscription dialog
1349           (still in progress. Don't use it yet!).
1350
1351 2001-11-12
1352
1353         * src/utils.[ch]: decode_uri(): new. It decodes URL-encoded strings.
1354         * src/compose.[ch]: compose_new_with_recipient(): accept mailto
1355           URL.
1356           compose_entries_set(): new. It parses mailto URL and put each
1357           values into the entries.
1358
1359 2001-11-12
1360
1361         * src/compose.c: compose_forward(): fixed a bug that forward
1362           quote mark wasn't used (thanks to Hironori IWANE).
1363         * src/codeconv.[ch]
1364           src/mainwindow.c
1365           src/prefs_common.c: added Thai encodings (thanks to Manrat
1366           Chobchuen).
1367
1368 2001-11-08
1369
1370         * src/socket.c: sock_connect_by_hostname(): removed h_errno.
1371         * src/session.h
1372           src/defs.h
1373           src/imap.[ch]
1374           src/news.c: added last_access_time to Session.
1375           imap_session_get(): check connection only when access interval
1376           has been exceeded.
1377
1378 2001-11-07
1379
1380         * version 0.6.5
1381
1382 2001-11-07
1383
1384         * src/socket.c: ssl_gets(): use SSL_peek.
1385         * updated NEWS and AUTHORS.
1386         * Makefile.am: fixed release target.
1387
1388 2001-11-06
1389
1390         * src/template.c: changed the format of template file to
1391           RFC2822-like.
1392         * src/compose.c: compose_template_apply(): freeze the text widget
1393           while inserting strings.
1394
1395 2001-11-05
1396
1397         * po/POTFILES.in: removed src/template_select.c.
1398         * src/summaryview.c: summary_set_header()
1399           src/address.c: address_parse_str()
1400           src/filter.c: filter_read_str()
1401           src/news.c: news_parse_xover()
1402           src/procheader.c: procheader_get_fromname()
1403           src/utils.c: subject_compare():
1404           replaced Xalloca() + strcpy() with Xstrdup_a().
1405         * src/inputdialog.[ch]: added combo mode.
1406           input_dialog_combo(): new.
1407         * src/prefs_common.[ch]: added MIME open command setting.
1408           prefs_common_{read, save}_config(): read / write command history.
1409         * src/mimeview.c: mimeview_open_with(): use combo input dialog.
1410         * src/utils.[ch]: add_history(): history list management function.
1411
1412 2001-11-04
1413
1414         * src/compose.c: select templates from the menu.
1415           compose_set_template_menu(): new.
1416           compose_reflect_prefs_all(): new.
1417           compose_template_apply(): new. Use dummy MsgInfo for parsing.
1418         * src/template.[ch]: store template list to the static heap.
1419           template_get_config(): new.
1420           template_set_config(): new.
1421         * src/prefs_template.c: don't store template list to the global area.
1422         * src/template_select.[ch]: removed.
1423         * src/quote_fmt_parse.y: check folderitem when quoting messages.
1424         * src/mh.c: mh_add_msg(): try to copy file whenever link() failed
1425           (thanks to OSHIRO Naoki).
1426
1427 2001-11-03
1428
1429         * src/utils.[ch]: get_template_dir(): new.
1430         * src/template.c: use get_template_dir().
1431
1432 2001-11-02
1433
1434         * src/prefs_template.c: modified the dialog layout.
1435           Added symbol description button.
1436         * src/summaryview.c: show an arrow mark to the column of the sort
1437           target.
1438           summary_set_column_titles(): new.
1439         * INSTALL
1440           INSTALL.jp
1441           README
1442           README.jp
1443           TODO
1444           TODO.jp: updated the documents.
1445
1446 2001-11-02
1447
1448         * src/Makefile.am: add missing checkbox_{on, off}.xpm.
1449         * src/textview.c: textview_key_pressed()
1450           src/mimeview.c: mimeview_key_pressed()
1451           src/summaryview.c: summary_key_pressed(): delete messages with
1452           Delete key.
1453
1454 2001-11-01
1455
1456         * src/socket.c: ssl_gets(): fixed a bug that caused infinite loop
1457           when SSL_read() returned 0.
1458         * src/utils.[ch]: strcrchomp(): new. It removes CR from the tail
1459           of strings.
1460         * src/quote_fmt_parse.y: convert CRLF to LF when inserting messages.
1461           Add prototype of yylex() to suppress the warning.
1462         * merged the template function.
1463         * src/prefs_template.[ch]
1464           src/template.[ch]
1465           src/template_select.[ch]: new.
1466           Renamed prefs_templates_* -> prefs_template_*.
1467         * src/compose.c: added template menu. Added replyinfo to Compose.
1468         * src/mainwindow.c: added template setting menu.
1469         * src/quote_fmt_lex.l: output literal tab and return as is.
1470         * src/prefs_common.c: changed the pref. name of quote format to
1471           'reply_quote_{mark, format}' and 'fw_quote_{mark, format}'.
1472
1473 2001-10-31
1474
1475         * src/prefs_common.[ch]: added Quote tab, and moved the quote
1476           setting from Compose tab.
1477         * merged the new quote format parser.
1478         * src/quote_fmt_lex.h
1479           src/quote_fmt.h
1480           src/quote_fmt_lex.l
1481           src/quote_fmt_parse.y: new files for quote format parser.
1482         * configure.in: added checks for lex and yacc.
1483         * src/compose.c: compose_quote_file(), compose_quote_parse_fmt():
1484           removed.
1485           compose_quote_fmt(): new.
1486         * src/prefs_common.[ch]: added forward format setting to the
1487           Quote tab. Updated the quote description dialog.
1488         * src/quote_fmt_parse.y: fixed bugs that tried to read file even
1489           if they couldn't get text part.
1490
1491 2001-10-31
1492
1493         * src/pixmaps/checkbox_off.xpm
1494           src/pixmaps/checkbox_on.xpm: new.
1495         * src/account.c: display `get all' status with the checkbox pixmaps.
1496
1497 2001-10-30
1498
1499         * src/send.c: code cleanup. Pass account prefs structure instead
1500           of many arguments.
1501           Query password for SMTP AUTH if not specified (thanks to Mio).
1502
1503 2001-10-30
1504
1505         * src/procheader.c: procheader_parse(): fixed a bug that didn't
1506           parse multiple message-id in In-Reply-To: header correctly
1507           (thanks to KAJIWARA).
1508
1509 2001-10-29
1510
1511         * src/account.c: enabled 'Get all' setting by clicking the 'G'
1512           column of account list, and added some description.
1513         * src/prefs_common.c: prefs_send_create(): added a description
1514           for outgoing codeset.
1515
1516 2001-10-28
1517
1518         * src/prefs_account.[ch]: moved inbox entry to the receive tab,
1519           and added select button and short description.
1520         * src/Makefile.am: added SYSCONFDIR to CPPFLAGS.
1521         * src/procmime.c:
1522           procmime_get_mime_type_table()
1523           procmime_get_mime_type_list(): modified so that
1524           $(SYSCONFDIR)/mime.types (or /etc/mime.types if not found) and
1525           $(HOME)/.sylpheed/mime.types are read.
1526
1527 2001-10-27
1528
1529         * src/prefs_account.c: moved the address auto-setting to the compose
1530           tab.
1531           prefs_account_create(): removed gtk_widget_show_all() for proper
1532           window size.
1533         * src/prefs_common.c: changed "Program path" to "Command".
1534
1535 2001-10-26
1536
1537         * src/textview.c: textview_set_font(): support Russian charset
1538           on EUC-JP locale.
1539         * src/summaryview.c: summary_delete(): (hopefully) fixed the crash
1540           bug on deleting.
1541         * prefs_account.c
1542           prefs_common.c
1543           prefs_summary_column.c: minor improvements to the English.
1544         * src/main.c: get_queued_message_num(): don't output the warning
1545           when queueing folder is not found.
1546
1547 2001-10-21
1548
1549         * version 0.6.4
1550
1551 2001-10-21
1552
1553         * src/prefs_summary_column.[ch]:
1554           made prefs_summary_column_get_config() public.
1555         * src/summaryview.c: summary_ctree_create(): some code cleanup.
1556         * configure.in: moved the position of SSL checking after LDAP
1557           for linking problem.
1558
1559 2001-10-21
1560
1561         * src/mainwindow.c
1562           src/summaryview.c: allowed reedit in the outbox.
1563         * src/prefs_summary_column.[ch]: new. UI for setting summary
1564           columns.
1565         * src/mainwindow.[ch]: main_window_set_summary_column(): new.
1566           It calls summary_set_column_order().
1567         * src/summaryview.[ch]:
1568           summary_ctree_create(): new. separated from summary_create().
1569           summary_set_column_order(): new. It destroys the current
1570           CTree and replaces it with the new one.
1571
1572 2001-10-19
1573
1574         * src/smtp.[ch]: smtp_from(): abort if auth failed.
1575         * changed C++-style comments into C-style in some files, and
1576           removed unnecessary commented out codes.
1577         * src/addrcache.[ch]
1578           src/addressbook.c
1579           src/addrindex.[ch]
1580           src/jpilot.[ch]
1581           src/syldap.[ch]: updated the addressbook code, and fixed the
1582           thread bug of LDAP.
1583         * src/ldif.[ch]
1584           src/importldif.[ch]: new.
1585
1586 2001-10-18
1587
1588         * src/about.c: added some items to compiled-in features.
1589         * src/addr_compl.c: changed LOG_MESSAGE to debug_print.
1590         * src/addressbook.c: changed "V-Card" to "vCard".
1591           addressbook_edit_address_cb(): added
1592           invalidate_address_completion() to the point address is changed.
1593         * src/codeconv.c: changed C++-style comments into C-style.
1594
1595 2001-10-17
1596
1597         * src/compose.c: changed "Send" shortcut to Ctrl+Enter.
1598
1599 2001-10-16
1600
1601         * src/inc.c: fixed a bug that crashed sylpheed if Cancel button
1602           was clicked twice.
1603
1604 2001-10-16
1605
1606         * src/procmsg.c: procmsg_get_thread_tree(): complete the unfinished
1607           threads.
1608         * src/summaryview.c:
1609           summary_thread_init(): separated from summary_thread_build(). 
1610           summary_thread_build(): removed the codes for initialization.
1611           summary_set_ctree_from_list(): call summary_thread_init() instead
1612           of summary_thread_build().
1613           summary_filter(): fixed a bug that didn't moved messages despite
1614           of immediate execution setting.
1615
1616 2001-10-14
1617
1618         * src/procmsg.c: procmsg_get_thread_tree(): new. It generates the
1619           reversed thread tree from message list.
1620         * src/summaryview.c: summary_set_ctree_from_list(): prepend the
1621           node to the head instead of appending to the tail. This prevents
1622           the traverse of node list inside of the GtkCTree, and considerably
1623           speeds up the summary display (the order is O(n^2) -> O(n)).
1624
1625 2001-10-12
1626
1627         * src/prefs_common.c
1628           src/summaryview.[ch]: initial modification for reorderable columns.
1629
1630 2001-10-12
1631
1632         * src/procmsg.c: procmsg_get_mark_sum(), mark_sum_func(): fixed a
1633           memory leak.
1634         * src/folderview.c: folderview_button_pressed(): code cleanup, and
1635           turn sensitivity off if main window is locked.
1636         * src/syldap.c: syldap_read_data(): removed unnecessary and
1637           unportable sched_yield().
1638
1639 2001-10-11
1640
1641         * src/folderview.c: renamed "Update folder tree" context menu to
1642           "Rescan folder tree", and made "Update folder tree" only updates
1643           folder status.
1644           folderview_update_all_node(): don't show message dialog.
1645         * src/gtkutils.c: gtkut_widget_get_uposition()
1646           src/mainwindow.c: main_window_popup(): clip the coordinate to
1647           nonnegative value.
1648
1649 2001-10-10
1650
1651         * src/utils.c: to_human_readable(): made a bit of optimization.
1652         * src/summaryview.c: summary_delete(): fixed a focus problem.
1653           summary_find_{prev,next}_msg(): new. They find previous/next
1654           message that is not deleted.
1655         * src/prefs_filter.c: scroll CList automatically if moved row
1656           becomes not fully visible.
1657
1658 2001-10-09
1659
1660         * updated some autotool scripts.
1661         * src/codeconv.c: conv_encode_header(): fixed a bug that caused
1662           infinite loop when failed to convert encoding.
1663         * src/codeconv.[ch]: a fix for older version of libjconv
1664           (jconv_info_get_current_codeset() returned "EUCJP" instead of
1665           "EUC-JP").
1666
1667 2001-10-08
1668
1669         * version 0.6.3
1670
1671 2001-10-08
1672
1673         * src/compose.c: compose_write_to_file()
1674           src/codeconv.c: conv_codeset_strdup(): more workaround for
1675           libjconv problem on C locale.
1676         * src/editldap_basedn.c: fixed segfault when opening dialog.
1677         * src/utils.c: is_next_mbs()
1678           src/compose.c: compose_wrap_line(), compose_wrap_line_all():
1679           changed MB_CUR_MAX to MB_LEN_MAX for compliance to ANSI C.
1680         * configure.in: increased the reqired version of GPGME to 0.2.3.
1681         * src/pop.c: pop3_getauth_user_recv(): fixed a bug that closed
1682           the receive dialog when POP3 server refused normal authentication.
1683
1684 2001-10-07
1685
1686         * src/prefs_common.c: prefs_receive_create(): correction to English.
1687         * src/compose.c: compose_set_ext_editor_sensitive(): fixed a bug
1688           that didn't set the menu sensitivity correctly (thanks to
1689           Melvin Hadasht).
1690         * src/summaryview.c: delete messages permanently if the current
1691           folder is trash and 'delete' operation is executed.
1692           Fixed the bug that didn't select the last row correctly (thanks
1693           to Alfons Hoogervorst).
1694         * src/folder.[ch]: folder_item_remove_msgs(): new. It removes
1695           all messages given in the list.
1696
1697 2001-10-05
1698
1699         * src/summaryview.c: summary_show(): fixed a bug that didn't show
1700           message even if the 'open unread message on entering folder'
1701           option was turned on.
1702
1703 2001-10-03
1704
1705         * src/procmime.c: procmime_get_text_content(): supported HTML.
1706
1707 2001-10-02
1708
1709         * src/summaryview.[ch]: implemented new locking mechanism, and
1710           replaced every static locks with summary_lock(), summary_unlock(),
1711           and added locks to some extra functions.
1712           This fixes a bug that caused segfault when 'd' (delete) key
1713           was kept pressing.
1714
1715 2001-10-01
1716
1717         * src/addressbook.c: addressbook_folder_load_person(): fixed a bug
1718           that caused segfault (thanks to Stefaan A Eeckels).
1719
1720 2001-09-30
1721
1722         * src/textview.[ch]: added textview_set_position().
1723         * src/messageview.[ch]: added messageview_set_position().
1724         * src/addrbook.c
1725           src/addrcache.c
1726           src/addressadd.c
1727           src/addressbook.c
1728           src/addrindex.c
1729           src/addritem.c
1730           src/editaddress.c
1731           src/editbook.c
1732           src/editgroup.c
1733           src/editjpilot.c
1734           src/editldap.c
1735           src/editldap_basedn.c
1736           src/editvcard.c
1737           src/jpilot.c
1738           src/mgutils.c
1739           src/syldap.c
1740           src/vcard.c: converted C++-style comments into C-style one.
1741         * src/imap.c: QUOTE_IF_REQUIRED(): new macro. Copy string into
1742           new buffer and quote with double quotes if required.
1743           imap_status(), imap_cmd_login(), imap_cmd_list(),
1744           imap_cmd_do_select(), imap_cmd_create(), imap_cmd_delete(),
1745           imap_cmd_copy(): use QUOTE_IF_REQUIRED().
1746         * compose.c: compose_write_to_file(): workaround for the problem
1747           when using libjconv and 8bit codes cannot be converted on C
1748           locale.
1749         * codeconv.[ch]: added "ANSI_X3.4-1968" to encoding strings.
1750           conv_codeset_strdup(): don't convert if source and destination
1751           codeset are identical.
1752
1753 2001-09-30
1754
1755         * src/textview.[ch]: textview_search_string_backward(): new.
1756           Add the new member cur_pos to TextView.
1757           Connect button_press_event with gtk_signal_connect_after() to
1758           obtain the correct editable position.
1759
1760 2001-09-27
1761
1762         * src/folder.c: folder_write_list_recursive(): preserve unthreaded
1763           state.
1764
1765 2001-09-26
1766
1767         * src/summaryview.c: modified the layout of popup menu.
1768
1769 2001-09-25
1770
1771         * src/folder.c
1772           src/folder.h
1773           src/mainwindow.c
1774           src/summaryview.c: applied the patch from Alfons that allows
1775           threading setting for each folders (tnanks!).
1776
1777 2001-09-23
1778
1779         * src/message_search.[ch]: new. A Dialog for searching in current
1780           message.
1781         * src/gtkutils.[ch]: gtkut_text_match_string(): new. Compare the
1782           text in current position of GtkText and given wide-character
1783           string.
1784         * src/messageview.[ch]: messageview_search_string()
1785           src/textview.[ch]: textview_search_string(): return TRUE if
1786           found.
1787         * src/textview.[ch]: remember the beginning of body.
1788
1789 2001-09-21
1790
1791         * src/procmime.c: procmime_get_first_text_content(): modified so
1792           that it search entire MIME structure.
1793         * src/summary_search.c: summary_search_execute(): use
1794           strdup_mbstowcs() instead of macro. Display matched message.
1795
1796 2001-09-20
1797
1798         * src/inc.c: fix for background POP3 hangs and crashes (thanks to
1799           Sergey Vlasov).
1800         * src/summary_search.c: added body searching function.
1801         * src/procmime.[ch]: procmime_find_string(): changed arguments
1802           and return value. Added case sensitivity option.
1803
1804 2001-09-20
1805
1806         * src/procmime.[ch]:
1807           procmime_find_string()
1808           procmime_find_string_part(): new. It searchs the string from
1809           messages.
1810           Renamed procmime_get_text_part() to
1811           procmime_get_first_text_content().
1812           procmime_get_text_content(): new. It returns the text contents
1813           of the specified MIME part.
1814           procmime_mimeinfo_next(): new. It returns the next node of
1815           MimeInfo tree.
1816
1817 2001-09-19
1818
1819         * src/procmime.c: procmime_get_text_part(): modified so that it
1820           finds a text part in nested multipart message correctly.
1821         * src/procmime.h: added an example of MimeInfo structure.
1822         * src/mimeview.c: mimeview_show_message(): search the first text
1823           part.
1824
1825 2001-09-17
1826
1827         * src/mainwindow.c: ac_menu_popup_closed(): fixed the bug that
1828           caused segfault. Changed 'Preferences per account...' menu item.
1829
1830 2001-09-17
1831
1832         * version 0.6.2
1833
1834 2001-09-16
1835
1836         * src/addrindex.c: translate the "Common address" and "Personal
1837           address" from old addressbook.
1838
1839 2001-09-12
1840
1841         * src/utils.c: get_quote_level(): some optimization and bugfixes.
1842         * src/codeconv.[ch]: conv_get_current_locale(): new.
1843         * src/editaddress.c: edit_person_page_basic(): reverse the order
1844           of first and last name on some locales.
1845
1846 2001-09-11
1847
1848         * src/compose.c: applied the patch from Yasumatsu that reformats
1849           the current paragraph (thanks!). Modified so that it doesn't
1850           reformat quoted paragraphs.
1851           compose_create(): don't fill the entry automatically on reedit
1852           mode.
1853         * src/mainwindow.c
1854           src/summaryview.[ch]: added the "Mark all read" option.
1855           summary_mark_all_read(): new.
1856
1857 2001-09-10
1858
1859         * src/vcard.c
1860           src/mgutils.c
1861           src/syldap.c
1862           src/editldap.c
1863           src/editldap_basedn.c
1864           src/jpilot.c
1865           src/editjpilot.c: removed all warnings.
1866         * configure.in
1867           src/jpilot.[ch]: fixed the problem that failed to detect JPilot
1868           header files on the Debian system.
1869         * src/mainwindow.c
1870           src/summaryview.[ch]: enabled sorting by mark, unread, attachment,
1871           and color label. Enabled moving to next/prev flagged messages.
1872
1873 2001-09-09
1874
1875         * src/pixmaps/dir-close.xpm
1876           src/pixmaps/dir-open.xpm
1877           src/pixmaps/new.xpm
1878           src/pixmaps/unread.xpm: modified the color balance.
1879         * src/utils.[ch]: execute_sync(): new.
1880           execute_command_line(): added the arg for async mode.
1881         * src/inc.c: inc_mail(): use execute_command_line().
1882
1883 2001-09-08
1884
1885         * src/prefs.[ch]
1886           src/prefs_common.[ch]
1887           src/prefs_account.c: modified the layout. Added the option to
1888           launch the external editor automatically.
1889         * src/compose.c: launch the external editor automatically if the
1890           option is set.
1891
1892 2001-09-06
1893
1894         * src/Makefile.am: added extra xpm's.
1895
1896 2001-09-05
1897
1898         * src/addressbook.c: fixed a compilation problem when enabling
1899           LDAP.
1900           addressbook_open(): fixed a missing 'else'.
1901
1902 2001-09-04
1903
1904         * src/pixmaps/dir-close.xpm
1905           src/pixmaps/dir-open.xpm
1906           src/pixmaps/trash.xpm: replaced with the new blue icons.
1907         * merged Match Grun's new addressbook code.
1908         * src/pixmaps/address.xpm
1909           src/pixmaps/book.xpm
1910           src/pixmaps/category.xpm
1911           src/pixmaps/interface.xpm
1912           src/pixmaps/jpilot.xpm
1913           src/pixmaps/ldap.xpm
1914           src/pixmaps/vcard.xpm: new icons.
1915         * src/addrbook.[ch]
1916           src/addrcache.[ch]
1917           src/addressadd.[ch]
1918           src/addressitem.[ch]
1919           src/addrindex.[ch]
1920           src/addritem.[ch]
1921           src/editaddress.[ch]
1922           src/editbook.[ch]
1923           src/editgroup.[ch]
1924           src/editjpilot.[ch]
1925           src/editldap.[ch]
1926           src/editldap_basedn.[ch]
1927           src/editvcard.[ch]
1928           src/jpilot.[ch]
1929           src/mgutils.[ch]
1930           src/syldap.[ch]
1931           src/vcard.[ch]: new. Many fixes to remove the huge amount of
1932           warnings.
1933           addrbook_build_avail_email_vis(): fixed a memory leak.
1934
1935 2001-09-04
1936
1937         * NEWS: brought in the all of the changes previously put on the web.
1938
1939 2001-09-03
1940
1941         * src/mainwindow.c
1942           src/summaryview.c: modified the layout of menus.
1943         * src/mainwindow.c: ac_menu_popup_closed(): fixed a bug that didn't
1944           return a focus to the main window after selecting the account menu.
1945
1946 2001-09-03
1947
1948         * version 0.6.1
1949
1950 2001-09-03
1951
1952         * src/send.c: send_message_data(): fixed a bug that didn't process
1953           body part correctly.
1954
1955 2001-09-02
1956
1957         * src/inc.[ch]: changed inc_autocheck_(un)lock() to inc_(un)lock().
1958           inc_mail(), inc_all_account_mail(): return immediately if locked.
1959         * src/account.c
1960           src/prefs_common.c
1961           src/prefs_account.c: use inc_lock() and inc_unlock() instead of
1962           inc_autocheck_timer_{remove,set}().
1963         * src/summaryview.c: summary_set_colorlabel_color(): get the average
1964           of label color and selected fg color for visibility.
1965
1966 2001-09-01
1967
1968         * src/inc.[ch]: inc_autocheck_lock(), inc_autocheck_unlock(): new.
1969           They increase/decrease the lock count.
1970           inc_autocheck_func(): if locked, delay the autochecking 1 second.
1971           inc_autocheck_timer_set_interval(): set interval by its argument.
1972         * src/summaryview.c: summary_show(): lock the autochecking while
1973           processing.
1974         * src/main.c: app_will_exit(): remove autocheck timer.
1975         * acconfig.h
1976           src/defs.h: removed the definitions of PACKAGE and VERSION to
1977           prevent unnecessary compilation.
1978         * configure.in: changed AC_DEFINE_UNQUOTED of PACKAGE and VERSION
1979           to AC_SUBST, and added src/version.h to AC_OUTPUT.
1980         * src/version.h.in: new.
1981         * src/intl.h: changed dgettext() to gettext().
1982
1983 2001-08-31
1984
1985         * po/ja.po: fixed a typo that crashed Sylpheed with older version
1986           of GTK+.
1987         * configure.in: fixed a bug that didn't show results correctly.
1988           Fixed a bug that --enable-compface and --enable-jconv disabled
1989           the options.
1990         * src/procmsg.c: procmsg_send_queue(): don't abort when sending
1991           message failed.
1992         * src/compose.c: compose_write_headers(): add Bcc: header to the
1993           output file.
1994         * src/send.c: send_message_data(): new. Separated from
1995           send_message_smtp(). Remove Bcc: header before sending.
1996
1997 2001-08-30
1998
1999         * version 0.6.0
2000
2001 2001-08-30
2002
2003         * src/send.c: implemented sending with local sendmail command.
2004           send_message_local(): new. It executes command with popen()
2005           and send the contents of RFC822 message to the command.
2006         * src/prefs_common.[ch]: enabled the external sending command option.
2007         * src/defs.h: #define DEFAULT_SENDMAIL_CMD /usr/sbin/sendmail -t
2008         * src/account.c: account_edit_create(): widened the protocol column.
2009         * src/summaryview.c: summary_set_colorlabel_color(): cleanup of
2010           the code.
2011
2012 2001-08-30
2013
2014         * src/folder.c: folder_item_remove_msg(): scan the folder again
2015           if the last message is removed.
2016         * src/compose.c: compose_queue(), compose_draft_cb(): remove the
2017           old reedited message after adding the new message.
2018
2019 2001-08-29
2020
2021         * src/compose.c: compose_queue(): added AID: to the queueing header.
2022         * src/send.c: send_message_queue(): look for AID: header, and use
2023           the server specified in the account instead of SSV: header.
2024         * src/summaryview.c
2025           src/compose.[ch]: queued messages can be reedited now.
2026           compose_remove_reedit_target(): new. It removes the old reedited
2027           message.
2028           compose_send(), compose_queue(), compose_draft_cb(): if reedit
2029           mode, remove the old message.
2030         * src/procmsg.c: procmsg_msg_exist(): fixed a bug that output
2031           warning.
2032
2033 2001-08-28
2034
2035         * applied the XML string table patch from Alfons Hoogervorst that
2036           stores strings in a hash table and minimizes memory allocations
2037           (thanks!).
2038         * src/stringtable.[ch]: new.
2039           removed all G and g_ prefix from type and function names since
2040           they're not official GLib symbol names.
2041           string_table_insert_string(): fixed a bug that might refer to an
2042           invalid pointer on lookup, and also made a bit of optimization.
2043
2044 2001-08-27
2045
2046         * merged the color label feature from the claws branch (thanks to
2047           Satoshi Nagayasu and Alfons Hoogervoost).
2048         * src/colorlabel.[ch]: new. Renamed from labelcolors.[ch].
2049           Renamed labelcolors_*() to colorlabel_*().
2050         * src/summaryview.[ch]: added color label support.
2051         * src/procmsg.h: added color label flags to the permanent flags.
2052         * updated to gettext 0.10.39.
2053         * src/summaryview.[ch]: put the color label menu item to ItemFactory.
2054         * sylpheed.desktop: added for GNOME.
2055         * configure.in: added AC_MSG_CHECKING() for some options.
2056           Output the configuration results when configure is finished.
2057
2058 2001-08-27
2059
2060         * src/account.c: account_clist_set_row(): fixed a bug that failed
2061           to compile if SSL was not enabled.
2062
2063 2001-08-26
2064
2065         * merged the SSL support from the claws branch (thanks to Christoph
2066           Hohmann).
2067         * src/ssl.[ch]: new.
2068         * src/socket.[ch]: added ssl_read(), ssl_write(), ssl_gets(), and
2069           ssl_getline().
2070           sock_close(): call ssl_done_socket() if SSL is active.
2071         * src/md5.[ch]: removed MD5_CTX typedef and use MD5_CONTEXT to
2072           prevent type confliction.
2073         * src/prefs_account.[ch]: added SSL tab, and modified the expression.
2074         * src/esmtp.[ch]: added esmtp_ehlo(), and esmtp_starttls().
2075           Removed SSL initialization and HELO from esmtp_starttls().
2076           esmtp_auth(): removed use_smtp_auth from its arguments.
2077         * src/send.c: send_smtp_open(): added SSL support.
2078         * src/smtp.c: smtp_helo(): call esmtp_ehlo() if esmtp is true.
2079
2080 2001-08-25
2081
2082         * src/mimeview.c: mimeview_open_with(): braced '%s' with single
2083           quote.
2084
2085 2001-08-24
2086
2087         * src/main.c: open new account dialog if no account is set.
2088         * src/utils.[ch]: log_verbosity_set(): new. It increase/decrease
2089           the verbosity count.
2090           log_print(): put to statusbar only if log_verbosity_count > 0.
2091           log_message(): put to statusbar.
2092         * src/inc.c: inc_pop3_session_do(): set log verbosity.
2093         * src/mainwindow.c: main_window_set_menu_sensitive(): added the
2094           "Compose new message" item.
2095           main_window_show_cur_account(): removed "Current account: " string.
2096         * src/summaryview.c: summary_show(): ignore the current marks if
2097           main window is locked.
2098         * src/compose.c: compose_attach_property(): fixed a bug that caused
2099           segmentation fault.
2100
2101 2001-08-23
2102
2103         * src/mainwindow.c: main_window_get_current_state(): new. It returns
2104           the current state for the sensitivity of UI.
2105           main_window_set_toolbar_sensitive(): use table like
2106           main_window_set_menu_sensitive().
2107
2108 2001-08-23
2109
2110         * src/mainwindow.[ch]: added progressbar and status label to the
2111           statusbar.
2112           main_window_close_cb(): don't exit if locked.
2113         * src/inc.c: update the progressbar of main window, too.
2114
2115 2001-08-22
2116
2117         * src/mainwindow.[ch]: main_window_set_toolbar_sensitive(): removed
2118           the second argument, and determine the sensitivity with the
2119           state of summary view.
2120
2121 2001-08-21
2122
2123         * src/pop.c: pop3_getsize_list_recv(), pop3_retr_recv(),
2124           pop3_delete_recv(): don't try to receive messages which are not
2125           exist.
2126
2127 2001-08-21
2128
2129         * src/mainwindow.c: main_window_lock(), main_window_unlock():
2130           removed the whole menubar locking.
2131           main_window_set_menu_sensitive(): process the sensitivity change
2132           with a table, and deal with locking.
2133
2134 2001-08-20
2135
2136         * src/summaryview.[ch]: summary_get_selection_type(): new.
2137           It returns the current selection state of summary view.
2138           summary_key_pressed(): abort on some commands if main window
2139           is locked.
2140         * src/mainwindow.[ch]: main_window_lock(), main_window_unlock():
2141           increase/decrease the lock count.
2142
2143 2001-08-19
2144
2145         * src/prefs_filter.c: prefs_filter_create(): added List-Id to the
2146           default header list.
2147         * src/prefs_common.[ch]: added the option for receive dialog mode
2148           to the Interface tab.
2149         * src/inc.[ch]: inc_progress_dialog_create(): don't make the dialog
2150           transient, and show dialog only if the setting is
2151           RECV_DIALOG_ALWAYS, or RECV_DIALOG_ACTIVE and a window is active.
2152         * src/mainwindow.[ch]: main_window_lock(), main_window_unlock():
2153           new. Lock / unlock the user-interface.
2154         * src/progressdialog.c: progress_dialog_create(): don't make the
2155           dialog modal.
2156
2157 2001-08-18
2158
2159         * src/folderview.c: folderview_update_node(): suppressed unnecessary
2160           recursive call.
2161         * src/menu.[ch]: menu_button_position(): new. It calculates the
2162           position of popup menu.
2163         * src/mainwindow.c: toolbar_account_button_pressed(),
2164           ac_label_button_pressed(): put the popup menu to the correct
2165           position. Change the style of the button while opening the menu.
2166           ac_menu_popup_closed(): new function called on selection_done
2167           event.
2168         * src/gtkutils.c: gtkut_ctree_node_next(): fixed a crash bug when
2169           node == NULL.
2170         * src/summaryview.c: applied the summary fix patch from Sergey Vlasov
2171           (thanks!).
2172           Fixed the bug that didn't select previous message in refresh mode
2173           if threads were not expanded.
2174           summary_select_node(): new.
2175         * src/inc.c: applied the summary view update optimization patch from
2176           Sergey Vlasov (thanks!).
2177           If no new messages are received, don't perform summary refreshing.
2178           In addition to the Vlasov's patch, POP3 receive information is
2179           also used.
2180         * src/inc.h: added a new member cur_total_num to Pop3State.
2181         * src/pop.c: pop3_retr_recv(): increase state->cur_total_num.
2182
2183 2001-08-14
2184
2185         * version 0.5.3
2186
2187 2001-08-14
2188
2189         * src/summaryview.c: summary_set_row_marks(): got the color of
2190           unread row set properly.
2191         * src/folderview.c: foldreview_update_node(): don't use
2192           gtk_style_copy(), and reuse previously allocated styles.
2193         * README, README.jp: modified.
2194
2195 2001-08-14
2196
2197         * src/pop.c: pop3_getsize_list_recv(): fixed a remotly exploitable
2198           memory corruption bug (thanks to David Looney).
2199         * src/inc.c: inc_all_account_mail(): call inc_finished() even if
2200           there are no enabled accounts, or local spool only.
2201         * src/summaryview.c: applied the summary update improvement patch
2202           from Sergey Vlasov (thanks!). It keeps the position of the
2203           message displayed. Selected and displayed message are also kept.
2204           summary_get_msgnum(): new.
2205           summary_get_current_msgnum(): removed.
2206           summary_select_by_msgnum(): don't display the message.
2207         * src/account.c: added "Get all" column.
2208           account_clist_set_row(): show default and get-all flags with the
2209           mark icon.
2210         * src/utils.c: to_human_readable(): increased the number of decimals
2211           of MB and GB to 2.
2212
2213 2001-08-13
2214
2215         * implemented the long-awaited :) "Add sender to address book" feature.
2216         * src/address.[ch]: added the argument for remarks to
2217           address_item_new().
2218           address_get_folder_list(): new. It traverses the address tree and
2219           returns the folder list.
2220           address_delete_object(): modified so that it removes the node
2221           from the tree.
2222         * src/addressbook.[ch]: addressbook_add_submenu(): new. It creates
2223           a address folder menu and attaches it to the menu item.
2224           addressbook_refresh(): reload the address book folder tree.
2225         * src/summaryview.c: summary_set_add_sender_menu(): new. It attaches
2226           the menu to add sender to address book.
2227           summary_button_pressed(): call summary_set_add_sender_menu()
2228           before popup the menu.
2229
2230 2001-08-12
2231
2232         * src/summaryview.c: summary_thread_build(): fixed a bug that locked
2233           up the process. Optimized the initial thread build.
2234
2235 2001-08-12
2236
2237         * src/summaryview.c: made many code cleanups.
2238           summary_show(): block/unblock the signal handlers instead of
2239           disconnect/connect them.
2240           summary_set_row_marks(): made the font of collapsed node bold if
2241           it has cnildren marked as unread.
2242           summary_thread_build(): block tree_expand signals while processing.
2243           Use loop instead of the recursive function. Mark collapsed nodes
2244           correctly.
2245           summary_unthread(): block tree_collapse signals while processing.
2246           Use loop instead of the recursive function.
2247           summary_thread_func(), summary_unthread_func(): removed.
2248           summary_tree_expanded(), summary_tree_collapsed(): new callback
2249           functions.
2250         * src/inc.[ch]: inc_pop3_session_do(): don't show alert panel when
2251           failed to connect. Show more detailed status on the dialog.
2252
2253 2001-08-10
2254
2255         * src/folderview.c: folderview_update_all_node(): new. It updates
2256           all local folders.
2257         * src/inc.c: update all local folders after incorporation if
2258           scan_all_after_inc option is set.
2259         * src/prefs_common.[ch]: added scan_all_after_inc option.
2260         * src/folder.h: FOLDER_IS_LOCAL(): new macro.
2261
2262 2001-08-09
2263
2264         * src/defs.h
2265           src/headerview.c
2266           src/headerwindow.c
2267           src/textview.c
2268           src/prefs_common.c
2269           src/prefs_common.h: made bold and small font configurable.
2270           src/summaryview.c: display unread messages with bold font.
2271         * src/prefs_common.c
2272           src/prefs_common.h
2273           src/summaryview.c: added an option to enable/disable the
2274           emphasis of unread messages.
2275
2276 2001-08-08
2277
2278         * src/pixmaps/mark.xpm: modified.
2279         * src/gtkutils.[ch]: gtkut_ctree_expand_parent_all(): new.
2280         * src/summaryview.c: summary_set_ctree_from_list(): don't expand
2281           the root messages of threads for performance improvement.
2282           summary_show()
2283           summary_select_next_unread()
2284           summary_step(): expand threads when opening messages.
2285           summary_thread_build(): expand threads if the option is turned on.
2286         * src/prefs_common.[ch]: added "Expand threads" option.
2287
2288 2001-08-08
2289
2290         * src/prefs_common.c: removed "Emulate the behavior of mouse
2291           operation of Emacs-based mailer".
2292         * src/prefs_common.c
2293           src/prefs_account.c: changed the value of VSPACING_NARROW to 3.
2294         * src/pixmaps/new.xpm
2295           src/pixmaps/unread.xpm: reverted.
2296
2297 2001-08-07
2298
2299         * src/address.[ch]:
2300           address_folder_new()
2301           address_group_new()
2302           address_item_new(): changed the return value to AddressObject.
2303           address_build_tree(): don't put assertion for file.
2304         * src/pixmaps/new.xpm
2305           src/pixmaps/unread.xpm: modified a bit.
2306
2307 2001-08-06
2308
2309         * src/addressbook.c: fixed some bugs.
2310
2311 2001-08-06
2312
2313         * separated the logic part of addressbook into another module
2314           (still in progress).
2315         * src/address.[ch]: new. It contains the logic part of addressbook.
2316         * src/addressbook.[ch]: removed the logic part.
2317
2318 2001-08-04
2319
2320         * src/textview.c: textview_show_header(): fixed a bug that a garbage
2321           character was shown after header names.
2322
2323 2001-08-02
2324
2325         * src/inc.c: inc_start(): don't abort with non-fatal error.
2326
2327 2001-08-01
2328
2329         * version 0.5.2
2330
2331 2001-08-01
2332
2333         * src/mimeview.c: mimeview_view_file(): added -x option to the
2334           metamail to prevent the suspention of the main process.
2335           mimeview_button_pressed(): deactivate `Open' menu item if
2336           content-type is application/octet-stream.
2337
2338 2001-07-31
2339
2340         * src/imap.c: imap_parse_atom(): parse escaped characters properly.
2341           get_quoted(): new. It handles the escape character '\'.
2342         * src/folder.c: folder_read_list(): don't output warning if
2343           folderlist.xml doesn't exist.
2344         * src/main.c: main(): write folder list after setup.
2345         * src/textview.c: textview_create()
2346           src/compose.c: compose_create(): set default tab width to 8.
2347
2348 2001-07-29
2349
2350         * src/prefs_common.c: date_format_select_row(): fixed a bug that
2351           caused segfault when selecting the list with key.
2352
2353 2001-07-28
2354
2355         * src/mainwindow.c: main_window_popup(): deiconize the window
2356           when popup (thanks to Henrik Carlqvist).
2357         * src/procmime.c: procmime_scan_mime_type(): new.
2358           procmime_scan_content_type(): use procmime_scan_mime_type().
2359           procmime_scan_mime_header(): scan the extension of attached files
2360           and add the correct MIME type if the Content-Type is
2361           "application/octet-stream" (thanks to Don Quijote).
2362         * src/compose.c: compose_toolbar_create(): added a new "Send later"
2363           icon (thanks to Leandro Pereira).
2364
2365 2001-07-27
2366
2367         * src/prefs_common.c: date_format_create(): modified the layout of
2368           the dialog.
2369
2370 2001-07-26
2371
2372         * src/account.c: account_find_from_address(): fixed a minor bug.
2373         * src/prefs_common.c: incorporated the user-interface for setting
2374           date format from the claws branch, and made some modification to
2375           that.
2376
2377 2001-07-25
2378
2379         * src/account.[ch]: account_edit_create(): modified the text of
2380           default button.
2381           account_find_from_address(): new.
2382         * src/procmime.c:
2383           procmime_scan_content_type(), procmime_scan_content_disposition():
2384           fixed ESC code detection.
2385         * src/compose.c: compose_reply(): automatically select account
2386           according to the message header.
2387         * src/prefs_common.[ch]: added member "reply_account_autosel".
2388
2389 2001-07-25
2390
2391         * src/progressdialog.c: made the CList scrollable.
2392         * src/inc.c: inc_start(): don't abort with non-fatal error.
2393
2394 2001-07-24
2395
2396         * added English Sylpheed User's Manual by Paul Kater
2397           (paul@nlpagan.net) (thanks!).
2398         * configure.in
2399           manual/Makefile.am
2400           src/mainwindow.c: added support for English manual.
2401         * manual/en/sylpheed*.html: added English documentation.
2402         * AUTHORS: updated.
2403
2404 2001-07-23
2405
2406         * src/nntp.c: nntp_ok(): fixed the bug that didn't handle a response
2407           that didn't have any trailing messages.
2408         * src/smtp.c: smtp_ok(): ditto.
2409         * src/compose.c: compose_account_option_menu_create(): modified
2410           the style of the account option menu.
2411
2412 2001-07-22
2413
2414         * src/prefs_customheader.c: prefs_custom_header_clist_set_row():
2415           remove return code from strings automatically.
2416           prefs_custom_header_create(): added "X-Face" to the default
2417           option.
2418         * src/news.c: news_fetch_msg(), news_get_group_list()
2419           src/imap.c: imap_fetch_msg(): create the cache directory before
2420           writing.
2421         * src/procmime.c:
2422           procmime_scan_content_type()
2423           procmime_scan_content_disposition(): convert JIS into EUC-JP
2424           before parsing.
2425         * src/codeconv.c: conv_unmime_header(): cleaned up a bit.
2426         * src/compose.c: don't append attachment headers if the attach
2427           pane is visible but the list is empty.
2428         * src/recv.c: recv_bytes_write(): use g_malloc() instead of alloca().
2429
2430 2001-07-18
2431
2432         * version 0.5.1
2433
2434 2001-07-18
2435
2436         * src/compose.c: compose_quote_parse_fmt()
2437           src/prefs_common.c: prefs_quote_description_create(): added the
2438           symbol `%c' that allows to include Cc in reply format (thanks
2439           to Cyril Bellot).
2440         * src/base64.[ch]
2441           src/procmime.c: procmime_decode_content(): applied the patch
2442           from Sergey Vlasov that allows to decode base64 data with
2443           unusual line length (not a multiple of 4) (thanks!).
2444
2445 2001-07-17
2446
2447         * src/procmsg.[ch]: separated the permanent flags and temporary
2448           flags into two variables, and made MsgFlags a structure that
2449           includes them.
2450           MSG_SET_PERM_FLAGS()
2451           MSG_SET_TMP_FLAGS()
2452           MSG_UNSET_PERM_FLAGS()
2453           MSG_UNSET_TMP_FLAGS(): new macros.
2454         * src/compose.c
2455           src/imap.c
2456           src/inc.c
2457           src/messageview.c
2458           src/mh.c
2459           src/news.c
2460           src/procheader.c
2461           src/summaryview.c: modified for the new MsgFlags.
2462         * src/utils.[ch]: hash_free_value_mem(): new. It frees the values
2463           of hash table.
2464
2465 2001-07-16
2466
2467         * src/inc.c: inc_pop3_recv_func(), inc_progress_update():
2468           display current size with human-readable format.
2469         * src/grouplistdialog.c: grouplist_recv_func(): ditto.
2470         * TODO
2471           TODO.jp: updated.
2472
2473 2001-07-16
2474
2475         * src/codeconv.c:
2476           conv_unmime_header(), conv_unmime_header_overwrite(): workaround
2477           for raw-JIS code in header fields.
2478         * src/folder.c:
2479           folder_get_default_folder()
2480           folder_get_default_inbox()
2481           folder_get_default_outbox()
2482           folder_get_default_draft()
2483           folder_get_default_queue()
2484           folder_get_default_trash(): fixed a bug that caused segfault
2485           if folder_list is NULL.
2486
2487 2001-07-15
2488
2489         * README
2490           README.jp
2491           INSTALL
2492           INSTALL.jp
2493           TODO
2494           TODO.jp: updated.
2495         * src/grouplistdialog.c: grouplist_dialog_set_list(): update UI
2496           while retrieving newsgroup list.
2497           grouplist_dialog_create(): added entry widget and status label.
2498           grouplist_recv_func(): new.
2499           refresh_clicked(): added exclusive lock variable.
2500           clist_selected(): set text entry when the CList is selected.
2501           renamed from group_clist_select().
2502           entry_activated(): new.
2503           grouplist_clear(): renamed from grouplist_free(). Also clears
2504           list and entry widget.
2505         * src/news.c: news_get_group_list(): sped up the list appending
2506           (g_slist_append() becomes very slow if list size is large).
2507         * src/defs.h: added UI_REFRESH_INTERVAL definition.
2508           Changed the definition of NEWSGROUP_LIST.
2509         * src/recv.c: recv_write()
2510           src/send.c: send_message_smtp(): changed the UI refresh interval
2511           to UI_REFRESH_INTERVAL (50msec).
2512         * src/account.c: account_add(): fixed a bug that didn't update
2513           folder tree when a news account was added.
2514         * src/grouplistdialog.c: made exclusive lock variable global, and
2515           lock at grouplist_dialog_set_list().
2516         * src/textview.c: fixed a bug that disabled clickable URI if
2517           message color was disabled.
2518
2519 2001-07-15
2520
2521         * src/grouplistdialog.c: ok_clicked(), cancel_clicked(): don't
2522           quit main loop if gtk_main_level() is 1.
2523           grouplist_dialog_set_list(): freeze CList while appending the list.
2524           grouplist_dialog(): show dialog before updating the list.
2525
2526 2001-07-14
2527
2528         * src/folder.c: folder_write_list_recursive(): add the attribute
2529           `collapsed' if a node have some children.
2530         * src/grouplistdialog.[ch]: new. Newsgroups can be selected from
2531           the list.
2532         * src/news.[ch]:
2533           news_get_group_list(): new. It returns newsgroup list.
2534           news_remove_group_list(): new. It removes newsgroup list cache.
2535         * src/folderview.c: folderview_new_news_group_cb(): call
2536           grouplist_dialog() instead of input_dialog().
2537
2538 2001-07-12
2539
2540         * autogen.sh: modified.
2541         * src/folder.[ch]
2542           src/folderview.c: made expand/collapse state of folders persistent
2543           (thanks to Alfons).
2544
2545 2001-07-06
2546
2547         * version 0.5.0
2548
2549 2001-07-06
2550
2551         * src/imap.c: imap_remove_folder(): select INBOX with EXAMINE before
2552           DELETE.
2553           imap_cmd_do_select(): new. It toggles between SELECT and EXAMINE
2554           according to the argument.
2555           imap_cmd_select(): use imap_cmd_do_select().
2556           imap_cmd_examine(): new.
2557         * src/folderview.c: folderview_rm_imap_folder_cb(): select current
2558           folder again when removing failed.
2559
2560 2001-07-05
2561
2562         * version 0.5.0pre4
2563
2564         * manual/ja/sylpheed.sgml
2565           manual/ja/*.html: updated the Japanese manual (thanks to Imai).
2566         * src/summaryview.c: summary_set_row_marks(): fixed a bug that
2567           didn't set foreground correctly.
2568         * src/folderview.h
2569           src/summaryview.h: removed the member color_normal from FolderView
2570           and SummaryView.
2571         * src/mainwindow.c: main_window_create(): removed color_normal.
2572
2573 2001-07-04
2574
2575         * src/prefs_account.[ch]: the port numbers of IMAP4 and NNTP
2576           became specifiable.
2577         * src/imap.c: imap_session_get()
2578           src/news.c: news_session_new_for_folder(), news_session_get():
2579           use user-defined port number if specified.
2580
2581 2001-07-03
2582
2583         * src/imap.c: imap_scan_tree_recursive(): get mailbox status when
2584           scanning.
2585           imap_scan_folder(): implemented. It updates the numbers of new,
2586           unread and total messages.
2587           imap_status(): new. It parses the response of STATUS command.
2588           imap_status_uidnext(): removed.
2589           imap_cmd_status(): removed.
2590         * src/textview.c: textview_show_part(): fixed potential memory leaks.
2591
2592 2001-07-03
2593
2594         * src/alertpanel.c: alertpanel_create(): fixed truncated message.
2595         * src/rfc2015.c: rfc2015_decrypt_message(): fixed the case problem
2596           of content-type (thanks to René Rebe for the patch).
2597         * src/codeconv.c: code_get_code_conv_func(): fixed the ISO-8859-1
2598           detection.
2599         * src/prefs_common.c: prefs_send_create(): made some more character
2600           sets specifiable when not using libjconv.
2601         * configure.in: disabled --enable-threads option temporarily.
2602         * INSTALL
2603           INSTALL.jp: deleted the description about --enable-threads option.
2604
2605 2001-07-02
2606
2607         * updated gettext to 0.10.38.
2608
2609 2001-07-01
2610
2611         * version 0.5.0pre3
2612
2613         * src/folderview.[ch]: folderview_set_all(): new.
2614         * src/account.c: account_add(): call folderview_set_all() after
2615           creating IMAP4 tree.
2616           account_edit_create(): account preferences dialog can be opened
2617           with double clicking of the list.
2618           account_selected(): new.
2619           account_clist_set(): made the CList focus set correctly.
2620
2621 2001-06-30
2622
2623         * src/imap.c: imap_scan_tree(): call imap_create_trash() if trash
2624           is not found.
2625           imap_scan_tree_recursive(): search the sub folders of INBOX.
2626           recognize Trash folder.
2627           imap_create_tree(): separated the part of creating trash.
2628           imap_create_trash(): new.
2629         * src/folder.c: folder_build_tree(), folder_write_list_recursive():
2630           preserve no_sub and no_select.
2631         * src/summaryview.c: summary_show(): don't proceed if item->no_select
2632           is TRUE.
2633
2634 2001-06-29
2635
2636         * src/imap.c: imap_scan_tree(): fixed a bug that didn't set the
2637           root folder correctly.
2638
2639 2001-06-28
2640
2641         * src/folderview.[ch]:
2642           folderview_update_tree(): new. It updates one folder tree.
2643           folderview_update_tree_cb(): new.
2644           Added "Update folder tree" to the popup menu, and modified some
2645           expressions.
2646
2647 2001-06-27
2648
2649         * src/imap.c: implemented the autoscan of IMAP4 folder list.
2650           imap_scan_tree(): new. It scans the whole IMAP4 folder.
2651           imap_scan_tree_recursive(): new. It traverses the IMAP4 folder tree.
2652           imap_parse_list(): new. It parses the LIST response.
2653           imap_get_real_path(): new. It converts local path into IMAP4 path.
2654         * src/folder.h: added no_sub and no_select to FolderItem.
2655         * src/folder.c: folder_tree_destroy(): reset some variables.
2656         * src/folderview.c: folderview_scan_tree_func(): supported IMAP4.
2657
2658 2001-06-26
2659
2660         * src/imap.c: imap_parse_envelope(): fixed a bug that didn't
2661           parse the FETCH response that continues to the next line.
2662           imap_parse_fetch_element(): removed.
2663           imap_parse_atom(), imap_parse_one_address(), imap_parse_address(),
2664           imap_parse_envelope(), imap_get_uncached_messages(): use GString
2665           and sock_getline() to parse the FETCH response.
2666           imap_remove_all_msg(): fixed a bug that didn't delete messages
2667           correctly.
2668           imap_parse_address(): fixed a bug that didn't concaternate
2669           addresses correctly, using GString.
2670         * src/socket.[ch]: sock_getline(), fd_getline(): new. They read
2671           the whole line and return the newly allocated string.
2672         * src/prefs_account.[ch]: added `IMAP server directory' entry.
2673
2674 2001-06-25
2675
2676         * version 0.5.0pre2
2677
2678         * src/imap.c: imap_create_tree(): pass the path that is separated
2679           by the local filesystem separator to imap_create_folder().
2680           imap_create_folder(): examine the existence of folders using
2681           LIST command instead of STATUS.
2682           imap_cmd_list(): new.
2683           imap_query_password(): new.
2684           imap_session_new(): query password if it is not set.
2685
2686 2001-06-24
2687
2688         * src/imap.c: imap_parse_envelope(): FETCH results can be parsed
2689           with arbitrary order.
2690           imap_parse_fetch_element(): new. it parses one pair of name and
2691           value of FETCH results.
2692           imap_parse_flags(): modified for more flexibility.
2693         * src/utils.[ch]: set_log_file(): new. it opens a new file for
2694           logging.
2695           close_log_file(): new. it closes the opened log file.
2696           log_print(), log_message(), log_warning(), log_error(): also
2697           output to log file.
2698
2699 2001-06-22
2700
2701         * src/imap.c: imap_cmd_status(): check the pointer to "value"
2702           before the assignment (thanks to NISHIJIMA).
2703
2704 2001-06-21
2705
2706         * src/folderview.c: folderview_drag_motion_cb(): don't allow DnD
2707           across MH and IMAP4 folder (for now) (thanks to Hiramatu).
2708         * src/foldersel.[ch]: don't show folders which can't be targets
2709           for current folder.
2710
2711 2001-06-20
2712
2713         * version 0.5.0pre1
2714
2715         * src/imap.c:
2716           imap_get_msg_list()
2717           imap_cmd_envelope()
2718           imap_cmd_fetch()
2719           imap_cmd_copy()
2720           imap_cmd_store(): use UID instead of sequential number.
2721           Renamed imap_set_article_flags() to imap_set_message_flags().
2722         * src/summaryview.c: summary_execute(): don't update summary
2723           even if current folder is IMAP4.
2724         * src/utils.[ch]: remove_numbered_files(): changed the type of
2725           arguments from gint to guint.
2726
2727 2001-06-19
2728
2729         * src/imap.c: imap_cmd_login(), imap_cmd_select(), imap_cmd_status(),
2730           imap_cmd_create(), imap_cmd_delete(), imap_cmd_copy(): don't
2731           enclose with double quotation if string doesn't have space
2732           (workaround for old Cyrus IMAP4 server).
2733           imap_create_folder(): fixed a bug of separator substitution.
2734           renamed imap_session_connect_if_not() to imap_session_get().
2735           imap_get_msg_list(): delete all cached messages if use_cache
2736           is off.
2737           imap_delete_cached_messages(): remove cached files in between
2738           the specified range by reading directory entry.
2739           imap_parse_one_address(): set fromname same as the from address
2740           if it is empty.
2741         * src/utils.[ch]: remove_numbered_files(): new. The range is
2742           specifiable.
2743         * src/summaryview.c: summary_execute(): update summary if current
2744           folder is IMAP4.
2745           KEY_PRESS_EVENT_STOP(): new macro.
2746           summary_key_pressed(): stop signal emission when calling
2747           summary_execute().
2748           summary_select_by_msgnum(): show message only if
2749           msg_is_toggled_on is TRUE. Move current page to the selected
2750           node.
2751         * src/news.c; news_delete_old_articles(): remove cached files in
2752           between the specified range by reading directory entry.
2753         * src/folderview.c:
2754           folderview_selected(), folderview_button_released(): fixed a bug
2755           that didn't select folder correctly.
2756
2757 2001-06-18
2758
2759         * src/mainwindow.c
2760           src/summaryview.c
2761           src/prefs_common.c: improvements to the English (thanks to Paul
2762           Mangan).
2763         * src/mainwindow.c: compose_cb()
2764           src/summaryview.c: summary_key_pressed()
2765           src/compose.c: compose_new_with_recipient(): newsgroups entry
2766           is automatically filled when composing a new article.
2767
2768 2001-06-17
2769
2770         * src/procmsg.c: procmsg_msg_list_free(): fixed a bug that didn't
2771           free list correctly.
2772
2773 2001-06-16
2774
2775         * version 0.4.99
2776
2777         * src/imap.c: imap_find_namespace(): replace namespace path
2778           separator with slash before comparison.
2779           imap_remove_folder(): use namespace.
2780           imap_create_tree(): use namespece when creating Trash.
2781           imap_get_msg_list(): fixed a bug that returned old list and caused
2782           memory leak if exists == 0.
2783           imap_select(): new. It's a wrapper for imap_cmd_select().
2784         * src/foldersel.c: foldersel_set_tree(): show IMAP4 folder too.
2785
2786 2001-06-15
2787
2788         * src/folderview.c:
2789           folderview_new_folder_cb()
2790           folderview_new_imap_folder_cb(): show error dialog when creation
2791           or deletion of folder failed.
2792           Made it allow users to create a folder which contains subfolders.
2793           folderview_button_pressed(): disabled delete menu on the special
2794           IMAP4 folder.
2795         * AUTHORS: incorporated from claws branch. It now contains all
2796           contributors.
2797         * src/send.c: enabled cancellation.
2798           EXIT_IF_CANCELLED(): new macro.
2799           Added cancelled flag to SendProgressDialog.
2800         * src/utils.[ch]: strtailchomp(): new. It removes the trailing
2801           specified character.
2802         * src/imap.c: imap_cmd_fetch(): a fix for MS Exchange 2000 server.
2803
2804 2001-06-15
2805
2806         * src/imap.c: imap_create_tree(): new. It creates required
2807           folders such as INBOX and Trash.
2808           imap_do_copy(), imap_do_copy_msgs_with_dest(): don't expunge
2809           if COPY failed.
2810           imap_remove_all_msg(): return immediately if exists == 0.
2811         * src/account.c: account_add(), account_set_missing_folder():
2812           made them use folder->create_tree().
2813
2814 2001-06-14
2815
2816         * src/imap.c: more namespace implementation.
2817           imap_find_namespace(), imap_path_separator_subst(): new.
2818
2819 2001-06-13
2820
2821         * src/imap.c: imap_parse_namespace(), imap_cmd_namespace(): new.
2822
2823 2001-06-11
2824
2825         * src/summaryview.c: summary_show(): fixed a glitch in folder view.
2826
2827 2001-06-08
2828
2829         * src/imap.[ch]: added imap_add_msg(), and imap_append_message(),
2830           which appends file into IMAP4 folder.
2831           imap_status(): new.
2832           imap_create_folder(): check the existence of a folder before
2833           create it.
2834           renamed the prefix of low-level IMAP4rev1 functions to imap_cmd.
2835         * src/account.c: account_add(), account_set_missing_folder():
2836           create INBOX automatically when creating IMAP4 account.
2837
2838 2001-06-07
2839
2840         * src/utils.[ch]: added itos_buf() that takes the buffer for its
2841           argument.
2842         * src/imap.[ch]: imap_copy_msg(), imap_copy_msgs_with_dest(): new.
2843         * src/folder.c: added copy_msg and copy_msgs_with_dest methods
2844           to the IMAP class.
2845
2846 2001-06-06
2847
2848         * src/utils.[ch]: move_file(): new.
2849         * src/mh.c: mh_move_msg(), mh_move_msgs_with_dest(): modified to
2850           use move_file(), and fixed a bug that didn't close file when
2851           error occured.
2852
2853 2001-06-06
2854
2855         * src/imap.c: renamed imap_delete_messages() and
2856           imap_delete_all_messages() to imap_delete_cached_messages() and
2857           imap_delete_all_cached_messages(). Some code cleanups.
2858         * src/utils.[ch]: added a function remove_all_numbered_files().
2859         * src/mh.c: mh_remove_all_msg()
2860           src/imap.c: imap_delete_all_cached_messages():
2861           use remove_all_numbered_files().
2862         * src/mainwindow.c
2863           src/summaryview.c
2864           src/compose.[ch]: added `Reply to sender'.
2865           compose_reply()
2866           compose_reply_set_entry(): added an argument `ignore_replyto'.
2867
2868 2001-06-05
2869
2870         * src/folderview.c: folderview_selected()
2871           src/summaryview.c: summary_show(): fixed a bug that updated wrong
2872           folder when remaining marks were processed.
2873
2874 2001-06-04
2875
2876         * src/headerwindow.c: headerwindow_show_cb(): always try to show
2877           msginfo, and use the selected message, not the displayed one.
2878         * src/smtp.c: smtp_ok(): fixed sock_gets() error handling.
2879
2880 2001-06-02
2881
2882         * src/folderview.c: folderview_selected()
2883           src/mimeview.c: mimeview_selected(): ungrab the mouse event.
2884         * src/summaryview.c: summary_show(): process the left marks if any.
2885
2886 2001-05-27
2887
2888         * src/passphrase.c: enclosed with #if USE_GPGME.
2889         * src/prefs_account.c: added NNTP AUTH check button.
2890         * src/alertpanel.[ch]: alertpanel_create(): added new argument
2891           `can_disable', all existing callers changed to pass FALSE;
2892           created a check button to disable the message.
2893           alertpanel_message_with_disable(): new.
2894           alertpanel_show(): mask value with G_ALERT_VALUE_MASK.
2895           alertpanel_button_toggled(): new.
2896           alertpanel_button_clicked(), alertpanel_close(): set value using
2897           G_ALERT_VALUE_MASK.
2898         * src/prefs_common.[ch]: added option to toggle GnuPG signature
2899           check popup window, and GnuPG warning.
2900         * src/rfc2015.c: check_signature(): show signature check dialog
2901           only if it is enabled.
2902         * src/main.c: modified GnuPG checking.
2903         * src/main.c
2904           src/prefs_common.c: fixed some compilation bugs when enabled
2905           GPGME.
2906
2907 2001-05-26
2908
2909         * src/codeconv.c: conv_get_code_conv_func(): fix for ISO-8859-*
2910           encodings with libjconv.
2911           conv_encode_header(): fixed an endless loop bug when encountering
2912           an invalid wide character (thanks to Alte).
2913         * src/headerview.c: SET_FONT_STYLE(): fixed segfault with invalid
2914           bold font.
2915         * src/imap.c: imap_create_folder(): don't create folder if the
2916           name is INBOX.
2917         * src/mainwindow.c: main_window_reflect_prefs_all(): hide the
2918           execute button when immediate execution is enabled.
2919
2920 2001-05-22
2921
2922         * README
2923           README.jp: added the "How to run" section.
2924
2925 2001-05-19
2926
2927         * merged NNTP AUTH from the claws branch.
2928         * src/news.[ch]: supported NNTP AUTH.
2929         * src/nntp.[ch]: wrapped SockInfo with NNTPSockInfo for NNTP AUTH.
2930         * INSTALL
2931           INSTALL.jp: modified the confirmation list and the warning about
2932           threads.
2933
2934 2001-05-18
2935
2936         * src/gtkutils.[ch]: moved folderview_find_collapsed_parent() to
2937           gtkut_ctree_find_collapsed_parent().
2938         * src/folderview.c: folderview_select_node(): automatically expand
2939           the parent folders when selected.
2940         * configure.in: made the version number to 0.4.99 (0.5pre)
2941         * src/main.c: main(): moved parse_cmd_opt() before gtk_init()
2942           so that X is not necessary for --help and --version.
2943           parse_cmd_opt(): changed g_get_prgname() to g_basename(argv[0]).
2944         * src/folderview.c: folderview_update_node(): a fix for collapsed
2945           nodes.
2946
2947 2001-05-17
2948
2949         * src/main.c: lock_socket_input_cb(): changed fd_read() to fd_gets().
2950           It caused garbages in --compose option.
2951         * src/socket.[ch]: made fd_gets() public.
2952
2953 2001-05-16
2954
2955         * src/gtkutils.[ch]: gtkut_ctree_node_next(): new.
2956         * src/folderview.c: folderview_find_next_unread(): new.
2957           folderview_select_next_unread(): modified so that it can find
2958           the hidden folder.
2959
2960 2001-05-15
2961
2962         * src/compose.c: compose_write_headers(): excluded also From, To,
2963           Sender because they could be used for SPAM.
2964         * src/folderview.c: add '+' mark to the collapsed folder that have
2965           some unread folders.
2966           folderview_search_new_recursive(),
2967           folderview_have_new_children(),
2968           folderview_search_unread_recursive(),
2969           folderview_have_unread_children(),
2970           folderview_find_collapsed_parent(): new.
2971           folderview_update_node(): display the number of queued messages.
2972
2973 2001-05-14
2974
2975         * src/folder.[ch]
2976           src/mh.[ch]: modified *_add_msg() to use link(). Added the
2977           argument to switch whether to remove the source file or not.
2978         * src/compose.c
2979           src/inc.c
2980           src/mbox.c: modified the argument of folder_item_add_msg() and
2981           removed some unlink()'s.
2982
2983 2001-05-13
2984
2985         * src/prefs_customheader.[ch]: renamed prefs_headers_* to
2986           prefs_custom_header_*. Removed `(New)' row and `Substitute'
2987           button. Supported empty value.
2988           prefs_custom_header_row_moved(): new. Connected "row_move" signal
2989           to the function, and made it set header list.
2990         * src/customheader.c: custom_header_get_str()
2991           src/compose.c: compose_write_headers(): supported empty value.
2992         * src/prefs_display_header.c: prefs_display_header_row_moved(): new.
2993           Connected "row_move" signal to the function, and made it set
2994           header list.
2995         * src/compose.c: compose_write_headers(): modified the order of
2996           headers, and made it encode the custom headers.
2997         * src/prefs_customheader.c: prefs_custom_header_delete_cb()
2998           src/prefs_filter.c: prefs_filter_delete_cb(): treat closing the
2999           alert panel by ESC as "No".
3000
3001 2001-05-13
3002
3003         * merged the custom header stuff from claws branch:
3004         * src/customheader.[ch]
3005           src/prefs_customheader.[ch]: new.
3006         * src/customheader.c: custom_header_read_str(): use strtol() instead
3007           of atoi() and check errors.
3008           custom_header_find(): new function.
3009         * src/compose.c: IS_IN_CUSTOM_HEADER(): new macro.
3010           compose_write_headers(): made it replace headers with user-defined
3011           headers except for some automatically generated headers.
3012
3013 2001-05-11
3014
3015         * src/inc.c: connection_check_cb(): fixed a bug that caused
3016           segmentation fault if connection was not established.
3017         * src/compose.c: compose_create(): even if set_autobcc or set
3018           autoreplyto is checked and the entries are empty, show them.
3019
3020 2001-05-10
3021
3022         * src/textview.c: textview_show_mime_part(): modified the messages.
3023           TEXT_INSERT(): new macro.
3024         * po/ja.po: fixed.
3025         * src/prefs_display_header.c: prefs_display_header_create():
3026           modified the text of checkbutton.
3027
3028 2001-05-09
3029
3030         * src/mimeview.c: added "Open with..." to the context menu.
3031         * src/summaryview.c: summary_print()
3032           src/inputdialog.c: input_dialog(): fixed memory leaks.
3033         * src/textview.c: textview_show_mime_part(): updated the description.
3034         * src/send.c: implemented sending progress dialog.
3035           (TODO: automaton should be used.)
3036           send_progress_dialog_create(), send_progress_dialog_destroy(),
3037           send_cancel(): new.
3038           send_message_smtp(): made it update the dialog for each stage.
3039         * src/utils.[ch]: get_left_file_size(): new. Get the left bytes
3040           of opened file.
3041         * src/summaryview.c: summary_show(): when open_inbox_on_inc is set,
3042           go to first unread message even if folder is same as previous.
3043         * src/prefs_common.c: made color selection dialog transient, and
3044           made escape key close the dialogs.
3045
3046 2001-05-08
3047
3048         * version 0.4.66
3049
3050         * src/select-keys.c: delete_event_cb(): removed `;' from its end.
3051         * src/recv.c: recv_write(): changed the interval to 10msec.
3052         * src/prefs_display_header.c: modified the layout of the dialog,
3053           and made the hidden headers list insensitive when `Show other
3054           headers' is not checked.
3055         * src/textview.c: changed strcasecmp() and strncasecmp() to
3056           the corresponding glib functions.
3057         * src/inc.c: get_spool(): make a temporary file in the home
3058           directory.
3059
3060 2001-05-07
3061
3062         * src/prefs_common.c
3063           src/prefs_account.c
3064           src/prefs_filter.c
3065           src/account.c
3066           src/alertpanel.c
3067           src/filesel.c
3068           src/foldersel.c
3069           src/export.c
3070           src/import.c
3071           src/inputdialog.c
3072           src/passphrase.c
3073           src/select-keys.c
3074           src/sigstatus.c: fixed a bug that accidentally destroyed dialogs
3075           when closed them with delete_event (thanks to DINH).
3076           Added *_deleted() and *delete_event() which handle delete_event
3077           signal correctly.
3078
3079 2001-05-06
3080
3081         * src/prefs_display_header.c: merged some changes from claws branch:
3082           prefs_display_header_create(): allow reordering of headers by
3083           dragging.
3084           prefs_display_header_find_header(): new function.
3085           prefs_display_header_clist_set_row(): don't allow duplicates.
3086         * src/prefs_account.c: prefs_account_receive_create(): changed
3087           the label of the check button.
3088
3089 2001-05-05
3090
3091         * src/pop.c: pop3_getsize_list_recv(): if sscanf() failed, break
3092           immediately.
3093         * src/inc.h: removed cur_msg_bytes from Pop3State.
3094         * src/inc.c: pop3_recv_func()
3095           src/recv.[ch]: made the second arguments of RecvUIFunc current
3096           total read bytes.
3097           recv_write(): made it call UI func if elapsed time is greater
3098           than 0.1 sec.
3099         * src/recv.c: recv_write(): changed the interval to 300 usec.
3100         * src/textview.c: textview_show_header(): if header is Subject,
3101           unfold it.
3102         * src/utils.[ch]: unfold_line(): new.
3103         * src/procheader.[ch]: procheader_get_header_array(): new.
3104         * src/prefs_display_header.c: updated defaults.
3105
3106 2001-05-05
3107
3108         * some merge from the sylpheed-claws branch.
3109           It allows user to specify displayed headers in message view.
3110           (symbol names were also changed.)
3111         * src/prefs_display_header.[ch]
3112           src/displayheader.[ch]: new.
3113         * src/prefs_display_header.c:
3114           removed prefs_display_headers_other_headers_toggled().
3115           removed "(New)" row from the list.
3116         * src/defs.h: added DISPLAY_HEADER_RC.
3117         * src/prefs_common.c: prefs_message_create(): added a button for
3118           opening the display header setting dialog.
3119         * src/prefs_common.h: added show_other_header and disphdr_list
3120           to PrefsCommon.
3121         * src/procheader.[ch]: procheader_get_header_list_from_file(),
3122           procheader_get_header_array_asis(): new.
3123           procheader_get_header_list(): modified so that it takes FILE
3124           pointer for its argument.
3125           procheader_header_array_destroy(), procheader_header_free(): new.
3126         * src/main.c: main(): made it call prefs_display_header_*_config().
3127         * src/textview.c: textview_scan_header(): modified so that it
3128           sorts headers according to user setting.
3129           src/textview_show_header(): made it call
3130           textview_make_clickable_parts().
3131           textview_make_clickable_parts(): added GdkFont to its arguments,
3132           and removed GtkText from them.
3133
3134 2001-05-04
3135
3136         * implemented auto-checking of new mail based on the patch from
3137           Pierric Descamps (thanks!).
3138         * src/inc.c: added inc_autocheck_timer_init(),
3139           inc_autocheck_timer_set(), inc_autocheck_timer_remove(),
3140           inc_autocheck_func() for auto-checking of new mail.
3141         * src/main.c: main(): call inc_autocheck_timer_init().
3142         * src/prefs_common.c: prefs_receive_create(): activated the
3143           auto-checking UI. Added prefs_common_cancel(), and connected
3144           some signals to that.
3145         * src/prefs_common.c
3146           src/prefs_account.c
3147           src/prefs_filter.c
3148           src/account.c: Disabled auto-checking while opening the dialog.
3149         * src/headerview.c: headerview_show_xface(): fixed a bug that
3150           showed a warning when header pane was hidden.
3151
3152 2001-05-03
3153
3154         * src/inc.c
3155           src/pop.c
3156           src/recv.c: removed non-blocking socket mode support since it
3157           does nothing.
3158         * src/pop.c
3159           src/inc.c: modified the messages of incorporation dialog.
3160
3161 2001-05-02
3162
3163         * src/utils.h: made u32 the typedef of guint32.
3164           added BIG_ENDIAN_HOST macro that is used by md5.c.
3165         * src/md5.c: renamed md5c.c. Fixed the indentation. Fixed a bug
3166           that didn't calculate MD5 correctly on big endian machines.
3167
3168 2001-05-01
3169
3170         * version 0.4.65
3171
3172         * src/folder.c: folder_init(): added the method imap_remove_folder.
3173         * src/folderview.c: folderview_rm_imap_folder_cb(): made it
3174           actually remove folder from IMAP4 server.
3175         * src/imap.[ch]: imap_create_folder(): made it actually create
3176           folder on IMAP4 server.
3177           imap_remove_folder(): added.
3178           imap_create(), imap_delete(): added.
3179         * src/summaryview.c: summary_execute_delete(): don't check trash
3180           if folder type is not F_MH.
3181         * thanks to Ishihara for the above changes.
3182         * configure.in
3183           ac/check-type.m4: better wint_t typedef detection (renamed
3184           sv_CHECK_TYPE to SYLPHEED_CHECK_TYPE).
3185
3186 2001-04-30
3187
3188         * src/recv.c: recv_bytes_write(): fixed another bug that caused
3189           infinite loop and buffer overrun.
3190
3191 2001-04-30
3192
3193         * src/socket.[ch]: renamed sock_read() and fd_read() to
3194           sock_gets() and fd_gets() for preventing confusion.
3195           Added sock_read() and fd_read() which is the wrapper of read().
3196         * src/recv.c: recv_bytes_write(): fixed a bug that caused infinite
3197           loop. Use sock_read() instead of fd_read().
3198         * src/esmtp.c
3199           src/imap.c
3200           src/news.c
3201           src/nntp.c
3202           src/pop.c
3203           src/recv.c
3204           src/smtp.c: use sock_gets() instead of sock_read().
3205         * src/imap.c: imap_session_new(): fixed the error detection
3206           of imap_open().
3207
3208 2001-04-28
3209
3210         * src/inc.c: made it displays current read bytes to the dialog.
3211         * src/pop.c: recv_write(): call UI function before editing
3212           strings.
3213
3214 2001-04-27
3215
3216         * src/progressdialog.c: progress_dialog_create(): modified the
3217           size of dialog and made it stretchable.
3218         * src/smtp.c
3219           src/esmtp.c: smtp_ok(), esmtp_ok(): fixed a bug that didn't
3220           process an error response correctly (thanks to Ohmasa).
3221         * src/pop.[ch]: added pop3_getsize_list_send(),
3222           pop3_getsize_list_recv().
3223         * src/recv.[ch]: added recv_set_ui_func() that makes recv_write()
3224           call the callback function for each sock_read().
3225         * src/inc.h: in Pop3State, renamed bytes to total_bytes, and added
3226           cur_msg_bytes, cur_total_bytes, and sizes.
3227         * src/inc.c: added inc_pop3_recv_func() that updates the progress
3228           bar for each sock_read().
3229
3230 2001-04-26
3231
3232         * src/mh.c: mh_is_maildir_one(): modified so that it uses
3233           is_dir_exist().
3234
3235 2001-04-25  Werner Koch  <wk@gnupg.org>
3236
3237         * src/mh.c (mh_is_maildir_one, mh_is_maildir): New.
3238         (mh_scan_tree_recursive): Do not include Maildir style directories
3239         in the scan.
3240
3241         Changed the use of integers to describe sockets by an more abstract
3242         data structure.
3243
3244         * src/automaton.h (struct _Automaton): Add help_sock.
3245         * src/automaton.c (automaton_input_cb): Changed source to be
3246         SockInfo and use wrapper for gdk_input_add.
3247
3248         * src/send.c (SEND_EXIT_IF_ERROR): Adjusted tests and removed test
3249         for invalid socket because this is now done in sock_close. Set
3250         sock to NULL.
3251         (SEND_EXIT_IF_NOTOK): Set closed sock to NULL.
3252         (send_smtp_open): Use only SockInfo.
3253
3254         * src/news.c (news_session_new): Use SockInfo here.
3255         (news_session_destroy): Ditto and set sock to NULL.
3256
3257         * src/nntp.c: Use SockInfo instead of integers
3258         * src/smtp.c: Ditto.
3259         * src/pop.c: Ditto.
3260         * src/recv.c: Ditto.
3261
3262         * src/inc.c (inc_pop3_session_do): Removed sock_sockinfo_free. Put
3263         gdk_input_add into a wrapper.
3264
3265         * src/esmtp.c: Changed socket descriptors to use SockInfo.
3266         * src/esmtp.h: Ditto, included socket.h.
3267         * src/session.h (struct _Session): Likewise.
3268         * src/imap.c (imap_open): Return SockInfo ptr and not an integer.
3269         Removed access to internal data of SockInfo.  Changed all callers
3270         and functions to take SockInfo.
3271         (imap_session_new): Use sock_close here.
3272         (imap_session_destroy): Ditto.
3273
3274         * src/compose.c (compose_exec_ext_editor): Replaced sock_write by
3275         fd_write.
3276
3277         * src/main.c (app_will_exit): Close lock socket using fd_close.
3278         (prohibit_duplicate_launch): Use fd_xxx functions instead of sock_xxx.
3279         (lock_socket_input_cb): Ditto.
3280
3281         * src/socket.h, src/socket.c: Prepared SockInfo structure to use
3282         glib channels. Changed all sock_xxx to use SockInfo instead of an
3283         integer.
3284         (sock_connect_unix, sock_open_unix, sock_accept): Renamed to ..
3285         (fd_connect_unix, fd_open_unix, fd_accept): .. this and changed all
3286         callers.
3287         (fd_read, fd_write, fd_close): New.
3288         (sock_sockinfo_free): Removed.
3289         * src/socket.c (sock_connect_nb): Use close instead sock_close here.
3290         (sock_connect): Ditto.
3291
3292 2001-04-26
3293
3294         * config.h.in: removed.
3295         * ac/Makefile.am: added gnupg-check-typedef.m4 to MACROS.
3296         * .cvsignore: added.
3297         * src/inc.c
3298           src/progressdialog.[ch]
3299           src/pixmaps/complete.xpm
3300           src/pixmaps/continue.xpm
3301           src/pixmaps/error.xpm: applied the patch from Leandro Pereira
3302           that displays the state of message incorporation (thanks!).
3303         * src/inc.c: made the progress dialog change the text of status.
3304
3305 2001-04-25
3306
3307         * removed po/*.gmo, configure, stamp-h.in, aclocal.m4, Makefile.in
3308           from the cvs tree.
3309         * COPYING: removed RSA copyright notice.
3310         * removed po/sylpheed.pot, po/stamp-cat-id, po/cat-id-tbl.c.
3311         * configure.in: added the check of sys/utsname.h.
3312
3313 2001-04-24  Werner Koch  <wk@gnupg.org>
3314
3315         Merged most of the changes from the W32 branch in.
3316
3317         * configure.in: Require gpgme >= 0.2.1
3318
3319         * acconfig.h (HAVE_U32_TYPEDEF): New.
3320         * ac/gnupg-check-typedef.m4: New.
3321         * configure.in: Check for u32 type and the size of some types.
3322         * src/utils.h: Define the u32 type and related constants.
3323
3324         * src/about.c (about_create): Removed the note about MD5.  We are
3325         not any longer using the RSA Inc. implementation.
3326         * src/md5ify.c, src/md5ify.h, src/md5global.h:  Removed.
3327         * src/md5c.c, src/md5c.h: Replaced by an FSF implementation and
3328         renamed the function to standard lowercase convention. Changed all
3329         callers. 
3330         (md5_hex_digest): New.
3331         (md5_hmac): Add hmac function by Martin Schaaf with some 
3332         modifications.
3333         (md5_hex_hmac): New.
3334         * src/esmtp.c, src/esmtp.h (md5_hex_hmac): Removed.
3335         (hmac_md5): Removed.
3336         * src/pop.c (pop3_getauth_apop_send): Replaced the md5_digest by
3337         the new md5_hex_digest function.
3338
3339         * src/about.c: Include utsname.h only if available
3340
3341         * src/utils.c, src/utils.h (get_home_dir): New to better cope with
3342         special Windoze requirements.  Changed all calls to
3343         g_get_home_dir() to this function.
3344
3345         * simple-gettext.c: New.
3346
3347         * src/main.c (main): Issue a warning if GnuPG is not properly
3348         installed.
3349
3350         * src/sigstatus.c, src/sigstatus.h: New.
3351         * src/rfc2015.c (check_signature): Use the sigstatus window and
3352         get the status texts from a utility function.
3353
3354         * src/select-keys.c: Removed the global select_keys var and
3355         pass an allocated one along all functions.
3356         (set_row): Display only keys capable of encryption.
3357         (update_progress): Replaced the progressbar by
3358         a windmill and a text showing for which key we are collecting
3359         info.  Removed progressbar everywhere else and updated callers.
3360
3361         * src/prefs_common.c (prefs_privacy_create) [__MINGW32__]: Do not
3362         display the grab button. 
3363
3364 2001-04-24
3365
3366         * src/prefs_common.[ch]
3367           src/procheader.c: applied the patch from Darko Koruga that
3368           allows user to define their own format for displaying date in
3369           summary view using strftime() (thanks!).
3370         * src/prefs_common.c: prefs_quote_colors_dialog()
3371           src/mainwindow.c: main_window_reflect_prefs_all(): made it
3372           update message colors if the colors setting is changed.
3373         * src/main.[ch]: made it remember the startup directory.
3374         * src/export.c: export_mbox(): made it initially chdir to the
3375           startup directory.
3376         * src/filesel.c: filesel_select_file(): made it open the startup
3377           directory at first.
3378
3379 2001-04-23
3380
3381         * added option to warn about queued messages on exit [sergey]:
3382
3383           * src/compose.c: compose_queue(): call folder_item_scan()
3384             and folderview_update_item() after queueing.
3385           * src/folderview.c: folderview_update_node(): draw the queue
3386             folder in bold font if there are queued messages.
3387           * src/mainwindow.c: queued_messages(): new function.
3388             app_exit_cb(): display warning if there are queued messages
3389             if warn_queued_on_exit is set.
3390           * prefs_common.[ch]: add warn_queued_on_exit option.
3391
3392         * src/mainwindow.c: moved queued_messages() to main.c, and renamed
3393           it to get_queued_message_num().
3394         * src/main.c: app_will_exit(): moved warning dialog code from
3395           app_exit_cb(), and added manage_window_focus_in().
3396
3397         * enhanced GnuPG key selection support [sergey]:
3398
3399           * src/select-keys.c: updated to newer version from Win32
3400             branch with support for selecting arbitrary keys.
3401           * src/prefs_account.c: added the Privacy tab to the account
3402             options window.
3403             prefs_account_privacy_create(),
3404             prefs_account_sign_key_set_data_from_radiobtn(),
3405             prefs_account_sign_key_set_radiobtn(): new functions.
3406           * src/prefs_account.h: new preferences sign_key_type, sign_key_id.
3407           * src/rfc2015.c: set_signers(): new function.
3408             pgp_sign(): add the account parameter, call set_signers().
3409             rfc2015_sign(): add the account parameter, pass it to pgp_sign().
3410           * src/rfc2015.h: rfc2015_sign(): updated prototype.
3411           * src/compose.c: pass the current account to rfc2015_sign().
3412
3413 2001-04-22
3414
3415         * src/mbox.c: export_to_mbox(): fixed a memory leak bug.
3416
3417 2001-04-20
3418
3419         * src/mbox.[ch]: renamed export_mbox() to export_to_mbox().
3420           Fixed a memory leak bug.
3421         * src/export.[ch]: added for exporting folder to mbox.
3422         * src/import.[ch]: made import_mbox() take default folder.
3423           Added description to the dialog.
3424         * src/summaryview.c: summary_show(): fixed a bug that kept the
3425           toolbar buttons insensitive after receiving messages.
3426         * src/export.c
3427           src/import.c: fixed a bug that caused quitting of the program
3428           when OK or Cancel button was clicked several time.
3429         * src/prefs_common.[ch]
3430           src/addressbook.c: added "Add address to destination when
3431           double-clicked" option.
3432
3433 2001-04-19
3434
3435         * src/prefs_common.[ch]: reorganized the items of settings,
3436           and added Message tab.
3437         * src/main.c: parse_cmd_opt(): added command line option --version.
3438         * src/mh.c: made it unset MSG_DELETED flag when moved/copied to
3439           special folders.
3440         * src/prefs_common.[ch]
3441           src/headerview.[ch]: the header pane can be toggled now.
3442         * src/prefs_common.[ch]
3443           src/textview.c: page scroll step is now selectable between
3444           one page and half page.
3445         * src/mbox.[ch]: added export_mbox() that reads all messages
3446           in a folder, and store them into one mbox file.
3447
3448 2001-04-18
3449
3450         * src/prefs_filter.[ch]: separated filter setting code from
3451           prefs_common.c, and made it a separate dialog.
3452
3453 2001-04-17
3454
3455         * version 0.4.64
3456
3457         * src/automaton.[ch]
3458           src/inc.c: fixed the bug that made Sylpheed crash when clicking
3459           Cancel button while getting new mail (thanks to Sergey Vlasov).
3460         * src/xml.c: xml_build_tree()
3461           src/addressbook.c: fixed a bug that caused infinite loop if an
3462           illegal XML file was given.
3463
3464 2001-04-16
3465
3466         * src/summaryview.c
3467           src/inc.c: applied the patch from Sergey Vlasov that fixes the
3468           problem when the "Go to inbox after receiving new mail" option
3469           was turned off (thanks!).
3470
3471 2001-04-15
3472
3473         * src/xml.[ch]: modified so that it supports some characters which
3474           must be escaped, and multiple-lined tag.
3475         * src/folder.c
3476           src/addressbook.c: modified so that it escapes some characters
3477           like '<', '>', '&', ''', '"'.
3478
3479 2001-04-10
3480
3481         * version 0.4.63
3482
3483         * src/folder.[ch]
3484           src/mainwindow.c
3485           src/mh.[ch]
3486           src/procmsg.[ch]
3487           src/summaryview.[ch]: applied the patch from Darko Koruga that
3488           adds copy message operation for the MH folders (thanks!).
3489         * src/imap.c: disabled slash to dot conversion.
3490         * src/imageview.c: fixed a bug that displayed an old image when
3491           loading of a image failed (thanks to Darko Koruga).
3492
3493 2001-04-09
3494
3495         * src/procmsg.c: procmsg_read_cache(): added setvbuf() to speed up
3496           cache reading (thanks to Sergey Vlasov).
3497         * src/inc.c
3498           src/summaryview.[ch]
3499           prefs_common.[ch]: applied the patch that keeps the same folder
3500           after receiving new mail (thanks to Sergey Vlasov).
3501         * src/textview.c
3502           src/utils.[ch]: moved get_quote_level() to utils.c.
3503
3504 2001-04-08
3505
3506         * ac/Makefile.am: added.
3507         * Makefile.am
3508           configure.in: added ac directory.
3509
3510 2001-04-07
3511
3512         * src/summaryview.c: summary_filter(): made it move messages
3513           immediately if immediate_exec option is set.
3514         * src/prefs_common.[ch]
3515           src/textview.[ch]
3516           src/gtkutils.[ch]: applied the message coloring patch from
3517           Stephen Anthony with some modification (thanks!).
3518         * src/gtksctree.c
3519           src/mimeview.c: modified the behavior of MimeView (thanks to
3520           HIRAMATSU).
3521
3522 2001-04-06
3523
3524         * src/utils.c: copy_file()
3525           src/mh.c: applied (and modified) the patch from Darko Koruga
3526           that enables to move messages across file systems (thanks!).
3527         * src/procheader.c
3528           src/utils.[ch]: applied the patch from Jorge Van Hemelryck
3529           that converts the date of messages to the local time (thanks!).
3530         * src/utils.c: remote_tzoffset_sec(): fixed a bug that the signs
3531           of one-letter timezone were reversed.
3532         * src/folder.c: folder_item_add_msg(): put the assertion for the
3533           add_msg() method (thanks to TAKANO).
3534
3535 2001-04-05
3536
3537         * src/procmime.c: procmime_decode_content(): fixed a bug that
3538           corrupted quoted-printable encoded messages when they include
3539           `=00' (thanks to Masahiro Tomita).
3540         * src/gtksctree.c
3541           src/mimeview.c
3542           src/summaryview.c: modified the DnD behavior of MIME view
3543           (thanks to HIRAMATSU).
3544
3545 2001-04-04
3546
3547         * src/about.c: applied the patch from Sergey Vlasov that fixes
3548           the appearance of the about dialog (thanks!).
3549         * src/prefs_common.[ch]
3550           src/rfc2015.[ch]
3551           src/mimeview.c
3552           src/procmime.[ch]
3553           src/compose.[ch]
3554           src/passphrase.c
3555           src/textview.[ch]: applied the GnuPG support patch which had
3556           ported from the sylpheed-win32 branch (thanks to Sergey Vlasov).
3557         * INSTALL, INSTALL.jp: updated the description about GnuPG.
3558
3559 2001-04-03
3560
3561         * src/utils.[ch]: added references_list_append() that parses
3562           References header and makes it string list.
3563         * src/compose.c: modified so that too long References header is
3564           truncated, garbage characters are removed, and header is tidied
3565           up (thanks to Matthias Intemann).
3566
3567 2001-04-02
3568
3569         * src/addr_compl.c: applied the address completion bugfix patch
3570           from Alfons Hoogervorst (thanks!).
3571
3572 2001-04-01
3573
3574         * src/gtksctree.c: modified so that the tree_select_row signal
3575           actually pass the column number.
3576         * src/summaryview.c: summary_selected(): made generic mark and
3577           unread mark can be toggled with clicking of the columns.
3578           Added summary_mark_row_as_read() and summary_mark_row_as_unread().
3579         * src/prefs_common.c
3580           src/prefs_account.c: applied the layout fix patches from Sergey
3581           Vlasov, and adjusted some widths of GtkEntry widgets.
3582         * src/prefs.c: prefs_dialog_create(): enable notebook to take focus.
3583         * src/inc.c: inc_start(): modified so that authentication dialogs
3584           show server name too (thanks to Sergey Vlasov).
3585
3586 2001-03-31
3587
3588         * src/mimeview.c: mimeview_key_pressed(): fixed a bug that caused
3589           segmentation fault when a malformed multipart message is shown
3590           (thanks to Sergey Vlasov).
3591         * src/summaryview.c: summary_display_msg(): made it focus to the
3592           summary view if the MIME list is empty.
3593
3594 2001-03-30
3595
3596         * src/pixmaps/deleted.xpm
3597           src/pixmaps/mark.xpm
3598           src/summaryview.c: added deleted and mark icon.
3599         * src/gtkutils.c: gtkut_widget_init(): changed gtk_widget_destroy()
3600           to gtk_widget_unref().
3601         * src/addr_compl.c: start_address_completion(): fixed the bug that
3602           displayed warning when the address book was empty (thanks to
3603           Chideok Hwang).
3604
3605 2001-03-29
3606
3607         * src/summaryview.c: summary_show(): fixed a memory leak bug
3608           (thanks to ChiDeok Hwang).
3609         * src/pixmaps/forwarded.xpm
3610           src/pixmaps/replied.xpm
3611           src/pixmaps/new.xpm
3612           src/pixmaps/unread.xpm
3613           src/compose.c
3614           src/mainwindow.c
3615           src/prefs_common.c
3616           src/procmsg.h
3617           src/summaryview.[ch]: applied the patch from Marc Hoper
3618           that adds replied and forwarded mark to replying or forwarding
3619           messages (thanks!). And new and unread mark were replaced
3620           by the icons David Mehrmann created (thanks!).
3621         * src/summaryview.c: made the width of unread and MIME column
3622           fixed.
3623         * src/prefs.c: prefs_config_parse_one_line(): made it check the
3624           '=' separator (thanks to Sergey Vlasov).
3625
3626 2001-03-26
3627
3628         * src/prefs_common.[ch]: moved smooth scroll option to the
3629           interface tab.
3630         * src/textview.c: made the one-line scroll also perform smooth
3631           scrolling.
3632
3633 2001-03-25
3634
3635         * src/prefs_common.[ch]
3636           src/textview.c: applied the smooth scroll patch from Setoh and
3637           Ninomiya (thanks!).
3638
3639 2001-03-24
3640
3641         * src/summaryview.c: summary_attract_by_subject(): rewritten it
3642           using hash table for speeding up.
3643         * src/prefs_account.c: made filter_on_receive TRUE by default.
3644         * src/mainwindow.c: reordered menu items.
3645
3646 2001-03-23
3647
3648         * src/gtkutils.c: gtkut_clist_bindings_add(): fixed a bug that
3649           caused address completion not to accept space and enter key.
3650
3651 2001-03-22
3652
3653         * src/utils.[ch]
3654           src/codeconv.c: fixed a bug that didn't encode non-ASCII headers
3655           correctly.
3656         * src/compose.c: fixed a bug that didn't decode some headers
3657           correctly when replying or reediting drafts (thanks to Sergey
3658           Vlasov).
3659
3660 2001-03-21
3661
3662         * src/gtkutils.[ch]: added gtkut_widget_init() that modifies the
3663           behaviors of some classes.
3664         * src/main.c: main(): made it call gtkut_widget_init() first.
3665         * src/summaryview.c: summary_create(): removed the key binding code.
3666
3667 2001-03-19
3668
3669         * src/procmsg.[ch]: modified for the sake of readability.
3670
3671 2001-03-18
3672
3673         * src/mainwindow.c: changed "Clean trash" to "Empty trash".
3674           Added new menu items for folder manipulation.
3675           allsel_cb(): made it change the target between summary view and
3676           message view according to the input focus.
3677           Removed "Select all" from Summary submenu.
3678         * src/folderview.[ch]: added functions for creating/renaming/deleting
3679           folder.
3680         * src/procmsg.[ch]: made "marked" and "deleted" flag permanent, and
3681           removed "important" flag.
3682         * src/summaryview.c: added summary_set_row_marks() that sets style
3683           of a row according to the flags, and made some functions use it.
3684         * src/mainwindow.c: allsel_cb(): modified so that it selects
3685           summary view correctly if message view is toggled off.
3686
3687 2001-03-17
3688
3689         * src/socket.c: sock_connect_by_getaddrinfo(): fixed a resource
3690           leak bug of socket, and rewrote the routine.
3691         * src/inc.c: inc_mail(), inc_all_account_mail(): fixed a bug that
3692           displayed the wrong unread number in the folder tree if a
3693           folder was open and new messages arrived at the folder.
3694         * src/socket.c: sock_connect_by_getaddrinfo(): fixed a bug
3695           again.
3696
3697 2001-03-15
3698
3699         * src/mh.c: mh_move_msg(), mh_move_msgs_with_dest(): made it
3700           check the existence of the destination file.
3701         * src/procmsg.c: procmsg_set_flags(): made it count the last
3702           number of the message list (and fixed a bug that didn't open
3703           newly arrived message).
3704
3705 2001-03-13
3706
3707         * src/prefs_common.c: prefs_send_create(): removed EUC-JP and
3708           Shift_JIS from the outgoing codeset.
3709
3710 2001-03-12
3711
3712         * version 0.4.62
3713
3714 2001-03-11
3715
3716         * src/send.c: send_message_queue(): modified so that it finds
3717           the account from the `From' and the server name of the queued
3718           message.
3719         * src/account.[ch]: added account_find_from_smtp_server() that
3720           finds an account from the specified address and SMTP server.
3721         * src/Makefile.am
3722           src/mainwindow.c
3723           src/summaryview.[ch]
3724           src/sourcewindow.[ch]: integrated the viewing source patch from
3725           DINH V. Hoßþ(thanks!).
3726
3727 2001-03-10
3728
3729         * src/addr_compl.[ch]
3730           src/addressbook.c
3731           src/compose.c: applied the enhanced address completion patch
3732           from Alfons Hoogervorst (thanks!).
3733         * src/addr_compl.c: replaced g_assert() with g_return(_val)_if_fail().
3734         * src/folder.c: folder_init()
3735           src/folderview.c: folderview_drag_motion_cb()
3736           src/procmsg.c: procmsg_clean_trash()
3737           src/summaryview.c: summary_start_drag()
3738           src/imap.[ch]: integrated the IMAP4 move/remove function patch
3739           from Suzuki Mio (thanks!).
3740
3741 2001-03-08
3742
3743         * src/main.c: parse_cmd_opt(): made the --compose option realize
3744           mailto: URI.
3745         * src/utils.[ch]: execute_async(): supported quoted arguments
3746           correctly.
3747           strstr_with_skip_quote(), strsplit_with_quote(): quote-supported
3748           version of g_strsplit().
3749         * src/mimeview.c: mimeview_view_file()
3750           src/prefs_common.c: added single quotation mark around the file
3751           name.
3752
3753 2001-03-07
3754
3755         * configure.in
3756           src/compose.c
3757           src/prefs.c
3758           src/procmime.c
3759           src/summaryview.c
3760           src/mbox.c
3761           src/recv.c
3762           src/utils.[ch]: applied the security fix patch from Dmitry V.
3763           Levin with some modification (thanks!). Added my_tmpfile() to
3764           utils.[ch].
3765         * src/main.c: added --receive-all command-line option.
3766
3767 2001-03-06
3768
3769         * src/socket.c: sock_connect_thread(): fixed a bug that didn't
3770           compile if both multithread and IPv6 are enabled (thanks to
3771           Ishihara).
3772         * src/utils.[ch]
3773           src/compose.c: applied a patch from Jason McCarver that allows
3774           FIFO for signature file (thanks!).
3775         * src/textview.c: made some more refactoring.
3776         * src/socket.c: sock_accept(): changed socklen_t to gint.
3777
3778 2001-03-05
3779
3780         * src/main.c
3781           src/textview.c: some code cleanups.
3782
3783 2001-03-04
3784
3785         * src/compose.[ch]
3786           src/main.c
3787           src/textview.c: integrated the patch from Alfons Hoogervorst that
3788           fixes some glitches in clickable URI and enables mail addresses
3789           clickable, and enables the --compose command line option to
3790           specify address (thanks!).
3791
3792 2001-03-03
3793
3794         * src/esmtp.[ch]
3795           src/smtp.[ch]
3796           src/send.c
3797           src/prefs_account.[ch]
3798           src/Makefile.am: applied the SMTP AUTH patch from Martin Schaaf
3799           and fixed its a few bugs (thanks!).
3800         * src/textview.c: textview_key_pressed(): made it don't move focus
3801           to summary view.
3802         * src/main.c: parse_cmd_opt(): modified the help message.
3803         * src/html.[ch]: added empty_line to HTMLParser and modified
3804           the parser routines a bit.
3805
3806 2001-03-01
3807
3808         * src/html.c: added eucjp_symbol_list, and added some characters
3809           to ascii_symbol_list.
3810
3811 2001-02-19
3812
3813         * src/codeconv.[ch]: added a member `charset' and `charset_str'
3814           to CodeConverter.
3815         * src/html.[ch]: added the symbol list for ISO-8859-1 codeset.
3816           html_parser_new(): made it change the symbol hash table
3817           according to the character set of the document.
3818           html_parse_special(): made it recognize character code number.
3819
3820 2001-02-17
3821
3822         * src/textview.c: added textview_show_html() that parses HTML and
3823           display as a text.
3824           textview_show_part(): made it call textview_show_html() if
3825           the part is text/html.
3826         * src/html.[ch]: implemented HTML parser.
3827
3828 2001-02-15
3829
3830         * src/codeconv.[ch]: added CodeConverter, and its methods
3831           (conv_code_converter_new(), conv_code_converter_destroy(), and
3832            conv_convert()).
3833         * src/textview.c: removed the branches by HAVE_LIBJCONV and
3834           rewrote them using CodeConverter.
3835
3836 2001-02-12
3837
3838         * src/mbox.c: proc_mbox(): workaround for duplicated From_ line.
3839
3840 2001-02-11
3841
3842         * src/codeconv.c: some code cleanups.
3843
3844 2001-02-05
3845
3846         * src/mainwindow.c: main_window_popup(): fixed a bug that didn't
3847           popup the main window correctly.
3848         * src/codeconv.h: fixed a bug that the definition of CS_EUC_CN and
3849           CS_EUC_TW was reversed (thanks to Sakamoto).
3850
3851 2001-02-04
3852
3853         * src/gtkutils.[ch]
3854           src/main.c
3855           src/mainwindow.[ch]
3856           src/socket.[ch]: applied the patch from Hiramatu that enables
3857           prohibition of multiple execution and remote control with
3858           command line option (thanks!).
3859
3860 2001-02-03
3861
3862         * src/summaryview.c: summary_button_pressed(), summary_selected():
3863           made it toggle the view if middle button is clicked while message
3864           view is hidden.
3865           summary_drag_data_get(): fixed a memory leaking.
3866         * src/Makefile.am
3867           src/compose.c: compose_write_headers(): modified so that it uses
3868           host_alias for X-Mailer or X-Newsreader field.
3869
3870 2001-02-03
3871
3872         * version 0.4.61
3873
3874         * src/folderview.c: fixed a bug that prevented a folder from being
3875           created if there were already folders that have the same name
3876           somewhere at another place.
3877
3878 2001-02-02
3879
3880         * src/folderview.c: folderview_update_all(): fixed a bug that
3881           caused segmentation fault when a folder was selected after
3882           updating the folder tree.
3883         * src/compose.c: compose_send(): fixed a locking bug.
3884           compose_write_headers(): fixed a bug that referred to cur_account.
3885           compose_convert_header(): made it check the arguments.
3886
3887 2001-02-01
3888
3889         * src/main.c: some cleanups and added --help option.
3890
3891 2001-01-31
3892
3893         * src/send.c: re-enabled user-defined domain name setting.
3894         * src/utils.c: is_next_mbs(): changed the size of temporary
3895           multibyte array to MB_CUR_MAX.
3896           strdup_mbstowcs(): added error check to mbstowcs().
3897           strdup_wcstombs(): added error check to wcstombs().
3898         * src/addr_compl.c: get_address_from_edit(): made it check the
3899           return value of strdup_mbstowcs().
3900         * src/codeconv.c: conv_encode_header(): added error checking
3901           to strdup_mbstowcs().
3902
3903 2001-01-30
3904
3905         * src/utils.c: log_error(): changed g_error() to g_warning() so
3906           that it doesn't abort.
3907           Added iswalnum().
3908         * src/addr_compl.c: add_address(): fixed a bug that aborted the
3909           program if the name or the address is empty.
3910           get_address_from_edit(): supported multibyte characters.
3911         * configure.in: fixed a typo.
3912         * src/send.c: re-enabled user-defined SMTP port setting.
3913
3914 2001-01-30
3915
3916         * version 0.4.60
3917
3918         * configure.in: added --enable-gpgme option, and disabled GPGME
3919           by default.
3920         * made GPGME related members in MimeInfo not used if disabled.
3921         * src/rfc2015.c: some cleanups for warning.
3922         * README
3923           README.jp
3924           INSTALL
3925           INSTALL.jp: updated.
3926         * Makefile.am: modified bzip2 option.
3927
3928 2001-01-29
3929
3930         * src/procmime.[ch]: added MIME_APPLICATION_OCTET_STREAM to
3931           MIME type.
3932         * src/mimeview.c: mimeview_view_file(): made it do nothing if
3933           the MIME type is application/octet-stream.
3934         * src/folderview.c: folderview_update_all(): made it show modal
3935           dialog while updating folders.
3936         * src/folderview.c: folderview_update_all(): fixed a bug that
3937           didn't remove the dialog.
3938
3939 2001-01-28
3940
3941         * src/mimeinfo.c: merged the patch from John E.P. Hynes that
3942           launches the attached file using metamail (thanks!).
3943         * src/procmime.[ch]: added procmime_get_tmp_file_name().
3944         * src/compose.c
3945           src/addr_compl.[ch]: merged the patch from Alfons Hoogervorst
3946           that enables address completion in the address entry on the
3947           composition window (thanks!).
3948         * src/addr_compl.c: get_all_addresses(), read_address_book():
3949           modified so that it uses xml_free_tree() for freeing the address
3950           tree.
3951
3952 2001-01-27
3953
3954         * src/utils.c: remove_dir_recursive(): fixed a bug that failed to
3955           remove the current directory (thanks to Maki).
3956         * src/summary_search.c: added `Select all matched' option to the
3957           search dialog (thanks to Takahashi).
3958         * src/pixmaps/stock_mail_attach.xpm
3959           src/pixmaps/tb_address_book.xpm
3960           src/compose.c: added some toolbar icons contributed from
3961           Leandro Pereira (thanks!).
3962
3963 2001-01-25
3964
3965         * src/rfc2015.c: passphrase_cb(): *finally* fixed a bug that caused
3966           segmentation fault when the passphrase dialog was cancelled.
3967           Hided the passphrase in the debug message.
3968         * src/about.c: about_create(): fixed a bug that failed to compile
3969           when none of the features were used.
3970         * src/foldersel.c: foldersel_set_tree(): made it display all
3971           MH folders.
3972         * src/inc.c: inc_start(): fixed a bug that showed password dialog
3973           continuously if it was cancelled.
3974         * src/summaryview.c: summary_write_cache(): put an assertion after
3975           folder_item_get_cache_file() to prevent the crash.
3976         * thanks to Maki for the above four fixes.
3977         * src/utils.h: added #include <alloca.h>.
3978
3979 2001-01-24
3980
3981         * src/rfc2015.c: changed some g_message() used for error messages
3982           to g_warning().
3983
3984 2001-01-23
3985
3986         * src/procmsg.[ch]: modified READ_CACHE_DATA() macro so that
3987           it can handle a string data of which length >= BUFFSIZE.
3988         * src/rfc2015.c: rfc2015_encrypt(): changed return to `goto failure'.
3989         * src/pixmaps/stock_mail_receive_all.xpm
3990           src/pixmaps/stock_mail_reply_to_all.xpm
3991           src/Makefile.am
3992           src/mainwindow.c: main_window_toolbar_create(): added new toolbar
3993           icons contributed from David Mehrmann (thanks!).
3994         * src/inc.[ch]: overhauled the architecture so that it don't create
3995           and destroy progress dialog for each incorporation in `get all'
3996           mode.
3997
3998 2001-01-22
3999
4000         * src/mh.c: mh_scan_tree_recursive(): fixed a bug that mistook
4001           sub folders named `inbox', etc. as special folders.
4002         * src/rfc2015.c: rfc2015_encrypt(): fixed a bug that didn't quote
4003           boundary correctly.
4004
4005 2001-01-21
4006
4007         * applied the GnuPG patch from Werner Koch (thanks!).
4008         * removed Mixmaster support.
4009         * src/rfc2015.c: changed g_error() to g_warning() and modified some
4010           messages.
4011         * src/about.c: about_create(): modified compiled-in features list.
4012         * README
4013           README.jp
4014           INSTALL
4015           INSTALL.jp: updated.
4016         * src/select-keys.c: create_dialog(): modified the layout.
4017         * src/headerwindow.c
4018           src/addressbook.c
4019           src/logwindow.c: made it raise the window if the window is already
4020           open.
4021         * src/prefs_common.[ch]: added an option for immediate execution.
4022         * src/summaryview.c: made it execute immediately when messages are
4023           moved or deleted if immediate_exec option is turned on.
4024         * src/summaryview.c: summary_delete(), summary_move_selected_to():
4025           moved summary_step() before summary_execute().
4026         * src/folderview.c: folderview_update_all(): made it scan folder
4027           tree correctly.
4028         * src/compose.c: compose_write_headers(): made it don't add
4029           In-Reply-To header if to_list is empty.
4030
4031 2001-01-09  Werner Koch  <wk@gnupg.org>
4032
4033         * configure.in, acconfig.h: Check for GPGME.
4034         * ac/: New directory for local autoconf macros.
4035         * src/Makefile.am: Add support for GPGME
4036
4037         * src/main.c (idle_function_for_gpgme): New.
4038         (main): Register this function.
4039
4040         * src/about.c: Add a note about GPGME.
4041
4042         * src/rfc2015.c, rfc2015.h: New.
4043
4044         * src/mimeview.c (mimeview_show_message): Check signature.
4045         * src/procmime.c (procmime_scan_message): Ditto.
4046
4047         * src/messageview.c (messageview_show): Add decryption stuff.
4048
4049         * src/compose.c (compose_write_to_file): Encrypt the file if requested.
4050         (compose_toggle_encrypt_cb): New
4051         (compose_toggle_mixmaster_cb): New, just to be prepared for
4052         Mixmaster support.
4053         (compose_write_headers): Suppress some headers in mixmaster mode.
4054
4055         * src/prefs_common.c (prefs_common_create): Add Privacy notebook sheet.
4056         (prefs_privacy_create): New.  Also some new structures etc.
4057         * src/compose.c (compose_create): Set encrypt button to prefs default.
4058         * src/compose.h (struct _Compose): Add use_encryption, use_mixmaster.
4059
4060         * src/compose.c (compose_send): Add missing unlock before one return.
4061
4062 2001-01-18
4063
4064         * src/gtksctree.[ch]
4065           src/folderview.c
4066           src/summaryview.[ch]: applied the patch from Hiramatu that enables
4067           DnD from the summary view to the folder view and fixes some other
4068           probrems (thanks!).
4069         * src/mainwindow.c: scan_tree_func(): fixed a bug that caused
4070           segmentation fault.
4071         * src/imap.c: quoted user name in LOGIN and folder name in SELECT.
4072         * src/gtksctree.c: gtk_sctree_button_press(): fixed a bug that
4073           didn't toggle expansion of node.
4074
4075 2001-01-17
4076
4077         * src/imap.c: applied the patch from Nishimura that updates the
4078           message list more precisely and reads the message flags (thanks!).
4079         * src/textview.c: textview_show_header(): made X-Newsreader field
4080           be emphasized too.
4081         * src/summaryview.c: summary_show(): made it flush events when
4082           displaying summary.
4083
4084 2001-01-15
4085
4086         * src/summaryview.c: applied the patch from Alfons that enabled
4087           the horizontal scrollbar of summary view (thanks!).
4088
4089 2001-01-13
4090
4091         * src/compose.c: compose_cb(): fixed a bug that didn't open the
4092           composition window right after launching the program.
4093         * src/setup.c: scan_tree_func(): fixed a bug that caused
4094           segmentation fault.
4095
4096 2001-01-13
4097
4098         * version 0.4.52
4099
4100         * src/textview.c: textview_set_font(): fixed a bug that caused
4101           segmentation fault if the mode of the text widget was changed
4102           between multibyte and singlebyte while the region was selected
4103           (GTK+ bug?).
4104
4105 2001-01-11
4106
4107         * src/mainwindow.c
4108           src/summaryview.c: made it unable to delete or move messages when
4109           in a news folder.
4110         * src/prefs_common.c
4111           src/news.c: added the option for maximum news article number.
4112
4113 2001-01-10
4114
4115         * src/compose.c: compose_send(): changed the location of temporary
4116           file. Made it use the default account if all of tried account
4117           aren't mail one, and made it show alert dialog and abort when even
4118           that failed.
4119         * src/prefs_account.c: prefs_account_get_new_id(): made it preserve
4120           last id number.
4121           prefs_account_open(): made it fill in personal information
4122           according to the default account when creating a new account.
4123         * sylpheed.spec.in: added to autogenerate sylpheed.spec with the
4124           proper version number (thanks to BONAIM).
4125         * configure.in
4126           Makefile.am: added entries for sylpheed.spec.in.
4127
4128 2001-01-09
4129
4130         * src/compose.[ch]: modified so that it can change account
4131           correctly.
4132         * src/send.[ch]: modified so that it doesn't see cur_account.
4133         * src/prefs_account.c: modified so that news setting doesn't
4134           show SMTP server entry.
4135
4136 2001-01-08
4137
4138         * src/folderview.c: fixed a bug that didn't sort special folders
4139           correctly when a new folder is created or renamed.
4140
4141 2001-01-07
4142
4143         * src/compose.[ch]: enabled to select account at composing window.
4144         * src/folderview.c: made it display unread number next to folder
4145           name.
4146         * src/prefs_common.[ch]: added the option for unread number display.
4147
4148 2001-01-06
4149
4150         * src/compose.[ch]: integrated news posting patch from DINH V. Ho`
4151           and made many modifications (thanks!).
4152           compose_write_headers(): made the spaces in newsgroups removed.
4153           Supported Followup-To.
4154           compose_destroy(): got the objects removed properly.
4155         * src/news.c: merged news_post_to_group() and news_post() since
4156           they doesn't have to do multiple posting.
4157         * src/import.c: import_destsel_cb(): fixed a bug that failed to
4158           import into the selected folder.
4159         * src/prefs_account.c: modified the interfaces.
4160
4161 2001-01-05
4162
4163         * src/codeconv.[ch]
4164           prefs_common.c: changed "SHIFT-JIS" to "Shift_JIS" since the
4165           string is registerd to IANA.
4166         * src/nntp.[ch]: added nntp_post().
4167         * src/news.[ch]: added news_post() and news_post_to_group().
4168
4169 2001-01-04
4170
4171         * src/account.c: account_edit_open()
4172           src/mainwindow.c: new_account_cb(): made it unable to edit
4173           accounts if some composing windows are open.
4174
4175 2001-01-03
4176
4177         * src/folder.[ch]: added folder_set_name().
4178         * src/account.c: made a folder name of IMAP4/NNTP become the same
4179           as the name of account.
4180
4181 2001-01-02
4182
4183         * src/summaryview.c: summary_filter_func(): fixed a bug that failed
4184           to filter messages.
4185
4186 2001-01-02
4187
4188         * version 0.4.51
4189
4190         * src/mbox.c: fixed a bug that didn't incorporate spool file
4191           correctly. Modified so that it recognizes From_ line as separator
4192           of messages even if the previous line isn't empty line.
4193         * src/send.c: send_message_queue()
4194           src/procmsg.c: procmsg_send_queue(): Fixed a bug that printed
4195           warning when it tried to delete a sent message.
4196
4197 2001-01-01
4198
4199         * version 0.4.50
4200
4201         * src/folder.[ch]
4202           src/news.[ch]: modified so that it actually gets news articles.
4203         * src/utils.[ch]: added make_dir_hier() that creates directory
4204           hierarchy.
4205         * src/folder.c:
4206           folder_item_get_cache_file(), folder_item_get_mark_file():
4207           made it creates cache directory if it doesn't exist.
4208           folder_add(): made it insert the added folder into the correct
4209           position.
4210         * src/imap.[ch]: modified so that it suits the new folder
4211           architecture. Fixed a bug that caused segmentation fault
4212           if authentication failed at imap_auth().
4213         * src/folderview.c: implemented IMAP4 folder handling routines.
4214
4215 2000-12-31
4216
4217         * src/prefs_account.[ch]: added account ID and nntp_server
4218           to PrefsAccount. And added the interface for NNTP server.
4219         * src/folderview.c: modified news folder handling routines.
4220         * src/folder.[ch]: removed cache_dir from RemoteFolder, and
4221           modified folder_item_get_path().
4222
4223 2000-12-29
4224
4225         * src/folder.[ch]: added create_folder(), rename_folder(),
4226           remove_folder() to Folder class.
4227         * src/mh.[ch]: added mh_create_folder(), mh_rename_folder(), and
4228           mh_remove_folder().
4229           Implemented mh_create_tree() that creates MH directory tree.
4230           mh_rename_folder(): modified so that the paths of sub folders
4231           are set properly.
4232         * src/folderview.c: modified folderview_new_folder_cb(),
4233           folderview_rename_folder_cb(), and folderview_delete_folder_cb()
4234           so that they work properly.
4235           Added folderview_remove_mailbox_cb() and the menu entry that
4236           remove mailbox from folder tree.
4237         * src/setup.[ch]: added for initial setup.
4238         * src/alertpanel.c: modified the appearance of the dialog.
4239         * src/compose.c: fixed compose_save_to_outbox() and
4240           compose_queue() so that it sets flags correctly.
4241
4242 2000-12-28
4243
4244         * src/mainwindow.c: modified the strings of toolbar labels.
4245
4246 2000-12-27
4247
4248         * src/gtkutils.[ch]: added gtkut_ctree_node_move_if_on_the_edge().
4249         * src/summaryview.c: summary_display_msg(): made it scroll the
4250           list if the message of the edge of that is displayed.
4251
4252 2000-12-25
4253
4254         * src/folder.[ch]
4255           src/mh.[ch]: added functions for moving messages.
4256         * src/procmsg.[ch]: moved procmsg_move_messages_with_dest()
4257           to folder.c and mh.c. Added procmsg_to_folder_hash_table().
4258
4259 2000-12-24
4260
4261         * src/utils.[ch]: added get_tmp_file().
4262         * src/pop.c
4263           src/inc.c
4264           src/folder.c: fixed a bug that failed to drop messages.
4265         * src/mh.c: mh_scan_folder(): made it check new, unread, and total
4266           number of the folder.
4267
4268 2000-12-23
4269
4270         * src/folderview.c: added special folder setting routine.
4271         * src/folder.[ch]: added a method is_msg_changed().
4272           Implemented folder_find_item_from_path().
4273         * src/summaryview.c: fixed some bugs that wrongly freed FolderItem's.
4274         * autogen.sh: fixed so that the configure can take arguments.
4275
4276 2000-12-22
4277
4278         * src/main.c
4279           src/mainwindow.[ch]: added main_window_new_mailbox() that asks
4280           the path of mailbox and create the one.
4281         * src/folderview.c: made the folder tree and selected folder
4282           expanded.
4283
4284 2000-12-21
4285
4286         * src/mh.[ch]
4287           src/folder.c: implemented mh_scan_tree() that scans the folder
4288           recursively and create the tree.
4289
4290 2000-12-19
4291
4292         * src/compose.c
4293           src/defs.h
4294           src/filter.[ch]
4295           src/folder.[ch]
4296           src/foldersel.[ch]
4297           src/folderview.[ch]
4298           src/imap.[ch]
4299           src/import.c
4300           src/inc.c
4301           src/main.[ch]
4302           src/mainwindow.c
4303           src/mbox.[ch]
4304           src/mh.[ch]
4305           src/news.[ch]
4306           src/prefs_common.c
4307           src/procmsg.[ch]
4308           src/summaryview.[ch]
4309           src/xml.[ch]
4310           src/Makefile.am: merged the development tree into the cvs tree.
4311           Some functions are not unimplemented yet.
4312
4313 2000-12-18
4314
4315         * version 0.4.9
4316
4317 2000-12-11
4318
4319         * src/xml.[ch]: supported omitted tag (<tag />).
4320         * src/procmsg.c: procmsg_msg_exist(): fixed a memory leak bug.
4321         * src/imap.c: imap_parse_atom(): fixed a bug that caused
4322           segmentation fault if the subject was empty (thanks to Tsutsui).
4323         * src/folder.[ch]: updated.
4324
4325 2000-12-10
4326
4327         * src/xml.[ch]: added xml_parse_file() that parses the whole XML
4328           file specified and returns the tree.
4329
4330 2000-12-09
4331
4332         * po/pt_BR.po: fixed some typos that caused segmentation fault.
4333
4334 2000-12-07
4335
4336         * version 0.4.8
4337
4338         * src/session.h: added.
4339         * src/folder.[ch]: updated.
4340         * src/compose.c: compose_write_to_file()
4341           src/codeconv.c: conv_get_outgoing_charset_str(): fixed a bug
4342           that put a garbage to charset if the outgoing character set was
4343           specified and non-ascii characters were used in subject.
4344
4345 2000-12-04
4346
4347         * src/statusbar.c: statusbar_puts(): fixed a bug that locked the
4348           progress if the status bar was hidden.
4349
4350 2000-12-03
4351
4352         * src/folder.[ch]: added for the more object-oriented folder
4353           management.
4354
4355 2000-12-02
4356
4357         * version 0.4.7
4358
4359         * src/mainwindow.c
4360           src/prefs_common.[ch]: made the state of status bar get preserved.
4361         * src/compose.c: compose_insert_sig(): modified so that it doesn't
4362           put a separator if a signature file doesn't exist.
4363         * src/prefs_account.[ch]
4364           src/inc.c: added the option that toggles whether to receive
4365           messages when getting from all accounts.
4366         * README
4367           README.jp: updated the description and added some usages.
4368
4369 2000-12-01
4370
4371         * src/Makefile.am
4372           src/gtkshruler.[ch]
4373           src/compose.[ch]: applied the patches from Alfons Hoogervorst
4374           that makes the ruler of composition window graphical (thanks!).
4375
4376 2000-11-27
4377
4378         * src/codeconv.c
4379           src/mainwindow.c
4380           src/prefs_common.c: replaced CS_WINDOWS_1251 with CS_CP1251.
4381
4382 2000-11-27
4383
4384         * version 0.4.6
4385
4386         * src/compose.c: turned the color of quoted messages black again.
4387
4388 2000-11-26
4389
4390         * src/about.c: added a clickable URI to the Sylpheed home page,
4391           and a list of compiled-in features.
4392         * src/compose.c: made the color of quoted messages blue.
4393         * src/summaryview.c: added `Show all header' to the context menu.
4394         * src/prefs_common.c: removed the threading option from the dialog.
4395         * src/compose.c: fixed a bug that didn't parse the quotation format
4396           correctly.
4397
4398 2000-11-25
4399
4400         * src/compose.c: compose_set_ext_editor_sensitive(): modified so
4401           that it toggles linewrap menu item and tool button.
4402         * src/prefs_common.c: modified the default of the signature
4403           separator.
4404         * src/compose.[ch]: added ruler to the compose window.
4405         * src/prefs_common.[ch]: added a member for the state of ruler
4406           display.
4407
4408 2000-11-24
4409
4410         * src/headerview.[ch]: added the destroy function.
4411         * src/messageview.c: messageview_destroy(): fixed a memory leak
4412           bug that didn't freed the HeaderView object.
4413         * src/prefs.c: prefs_write_open(): fixed a memory leak bug.
4414         * src/xml.c: xml_close_file(): fixed a memory leak bug (thanks
4415           to Alfons Hoogervorst for the above three memory leak bug fixes).
4416
4417 2000-11-23
4418
4419         * version 0.4.5
4420
4421         * README
4422           README.jp
4423           INSTALL
4424           INSTALL.jp: modified some descriptions.
4425
4426 2000-11-22
4427
4428         * src/compose.c: implemented line-wrapping functions.
4429         * src/prefs_common.[ch]: added the settings for line-wrapping.
4430         * src/codeconv.[ch]: added Windows-1251 to the codesets.
4431           conv_jistoeuc(): fixed a bug that caused segmentation fault
4432           when some half-width kana characters appeared.
4433         * src/summaryview.c: summary_select_all(): made it show message
4434           on the status bar if the number of messages is large.
4435
4436 2000-11-18
4437
4438         * src/compose.c: compose_reply(), compose_quote_parse_fmt():
4439           modified so that it parses the quotation mark too.
4440           Added %I that means the initial of sender to the format.
4441         * src/codeconv.[ch]: added GB2312 and Big5 to the codesets.
4442           Fixed a bug that set the wrong outgoing codeset.
4443         * src/mainwindow.c
4444           src/prefs_common.c: modified the menu item of Chinese codeset.
4445
4446 2000-11-17
4447
4448         * src/codeconv.[ch]
4449           src/prefs_common.[ch]: modified so that outgoing charset is
4450           saved as a string, not a number.
4451
4452 2000-11-16
4453
4454         * src/textview.c: textview_set_font(): changed the scheme of
4455           selecting between font and fontset. And changed the default
4456           font of ISO-8859-1.
4457         * src/headerview.c: headerview_show_xface(): made it ignore
4458           invalid X-Face.
4459         * src/codeconv.c: conv_codeset_strdup(), conv_get_code_conv_func():
4460           modified so that it consider the source codeset as ISO-2022-JP if
4461           it is NULL and the current locale is Japanese.
4462
4463 2000-11-14
4464
4465         * src/textview.c: textview_destroy(): fixed a bug that caused
4466           segmentation fault if textview->msgfont is NULL (thanks to
4467           Hiramatu).
4468         * src/main.c
4469           src/defs.h: applied the patch from Yanase that enables to
4470           save the shortcuts of the menus (thanks!).
4471
4472 2000-11-11
4473
4474         * src/mainwindow.[ch]: added main_window_set_menu_sensitive() that
4475           toggles the sensitivity of menu items.
4476         * src/summaryview.c: renamed summary_set_popup_sensitive() to
4477           summary_set_menu_sensitive(), and made it set the sensitivity of
4478           the main menu.
4479
4480 2000-11-09
4481
4482         * src/textview.c: textview_init(): fixed a bug that didn't disable
4483           the theme engine of GtkText (thanks to Hiramatu).
4484         * src/compose.c: compose_quote_parse_fmt(): added %n and %N that
4485           means the full name of sender and the first name.
4486         * manual/ja/*.??ml: updated to the latest version.
4487
4488 2000-11-07
4489
4490         * version 0.4.4
4491
4492         * src/defs.h: separated the definitions from main.h and applied the
4493           patch from TOGAWA that sets DEFAULT_SPOOL_PATH and MAXPATHLEN
4494           from the system headers (thanks!).
4495         * src/codeconv.c: conv_get_current_charset(): fixes for lt_LT and
4496           UTF-8 locale.
4497         * src/textview.c: textview_set_font(): modified so that it sets
4498           the correct font when the locale is multi-byte.
4499           textview_destroy(): added proper codes for destruction.
4500           textview_show_header(): fixed the coloration of X-Mailer.
4501
4502 2000-11-06
4503
4504         * src/textview.[ch]: made TextView have single-byte and multi-byte
4505           GtkText, and switch between them according to the given codeset.
4506         * src/compose.c: compose_create(): modified the font setting
4507           routine.
4508
4509 2000-11-02
4510
4511         * src/textview.[ch]: moved the message font variable into TextView.
4512           textview_set_font(): modified so that it uses gdk_font_load()
4513           if the given codeset is US-ASCII or ISO-8859-*.
4514
4515 2000-11-01
4516
4517         * src/codeconv.c
4518           src/procmime.c
4519           src/prefs_common.c
4520           src/textview.c
4521           src/compose.c: workaround for the 8bit code issue (used
4522           gdk_font_load() instead of gdk_fontset_load() when the locale is
4523           C, or not set).
4524
4525 2000-11-01
4526
4527         * version 0.4.3
4528
4529         * src/compose.[ch]: added `Draft' tool button.
4530         * src/imap.c: imap_parse_envelope(): fixed a parsing bug.
4531         * README, README.jp: added the explanation of the locale setting.
4532
4533 2000-10-31
4534
4535         * src/compose.c: made it overwrite the previous draft message when
4536           reedited the draft and saved it again.
4537         * src/procmsg.[ch]: added procmsg_msg_exist() that examine whether
4538           the message really exists.
4539         * src/folderview.[ch]: added folderview_scan_folder_a() and
4540           folderview_scan_folder_foreach_a() that scan the specified
4541           folders for each folderviews.
4542         * src/mainwindow.[ch]: removed main_window_scan_folder() and
4543           main_window_scan_folder_all().
4544           Added `Reedit' to the menu.
4545         * src/import.[ch]: removed MainWindow from the argument of
4546           import_mbox().
4547         * src/summaryview.c: removed the unnecessary items from the popup
4548           menu. Changed summary_reedit_cb() to summary_reedit(), and made
4549           it public.
4550
4551 2000-10-30
4552
4553         * src/compose.h: added a member msginfo to Compose.
4554         * src/procmsg.[ch]: added procmsg_msginfo_copy() that duplicates
4555           the MsgInfo object.
4556
4557 2000-10-25
4558
4559         * src/summaryview.c: made the the popup menu change the sensitivity
4560           according to the context. Fixed a bug that showed the `clean trash'
4561           dialog repeatedly if `D' key was pressed when the focus was on the
4562           summary view.
4563         * src/pixmaps/unread.xpm: changed the color of unread mark to blue.
4564
4565 2000-10-22
4566
4567         * src/main.c: fixed g_thread initialization.
4568
4569 2000-10-21
4570
4571         * src/codeconv.c: added pt_BR to locale_table.
4572         * src/prefs_common.c: prefs_send_create(): added `US-ASCII',
4573           `ISO-8859-1', and Japanese codeset to the option menu of outgoing
4574           codeset when not using libjconv.
4575         * src/compose.c: fixed the bug on saving draft again.
4576
4577 2000-10-19
4578
4579         * src/compose.c: compose_write_headers(): fixed a bug that failed
4580           to write headers if To: was empty when saving draft.
4581
4582 2000-10-18
4583
4584         * src/procmime.[ch]
4585           src/compose.c
4586           src/headerwindow.[ch]
4587           src/summaryview.c
4588           src/messageview.[ch]
4589           src/mimeview.c
4590           src/textview.c
4591           src/procmsg.[ch]
4592           src/procheader.[ch]: modified so that they can handle queue folder
4593           properly.
4594         * src/compose.[ch]
4595           src/summaryview.c: implemented draft-reediting function.
4596         * src/mainwindow.c
4597           src/summaryview.c
4598           src/mimeview.c: replaced *(GtkWidget **) with the macro
4599           GTK_WIDGET_PTR().
4600
4601 2000-10-17
4602
4603         * src/procmsg.[ch]: procmsg_msginfo_free(): fixed a memory leak bug.
4604           Added MSG_QUEUED and MSG_DRAFT to MsgFlags, and made it set them
4605           if the folder is QUEUE_DIR or DRAFT_DIR.
4606
4607 2000-10-14
4608
4609         * version 0.4.2
4610
4611         * src/headerview.c
4612           src/messageview.c: modified the border of the headerview.
4613         * src/gtkutils.h: added the macro GTK_WIDGET_PTR() that casts
4614           an Sylpheed object to GtkWidget.
4615         * src/utils.c: remove_return(), remove_space(): fixed a bug that
4616           possibly caused segmentation fault.
4617         * src/compose.[ch]
4618           src/mainwindow.c
4619           src/summaryview.c: implemented `forward as an attachment'.
4620         * src/utils.[ch]: open_uri(): brought on URI opening function from
4621           textview.c and manual.c.
4622
4623 2000-10-13
4624
4625         * src/mainwindow.c
4626           src/summaryview.c
4627           src/compose.[ch]
4628           src/prefs_common.[ch]: removed `Reply with quote', and added
4629           `Reply to all', and added the option that decides whether to
4630           quote message on replying.
4631
4632 2000-10-12
4633
4634         * src/folderview.c: modified so that it uses gtkut_wait_for_draw()
4635           instead of GTK_EVENTS_FLUSH() for statusbar redraw.
4636         * src/codeconv.[ch]
4637           src/mainwindow.c
4638           src/prefs_common.c: added Baltic (ISO-8859-4,13) to the code sets.
4639         * src/compose.c: compose_send(): modified so that it shows error
4640           dialog when failed to send a message.
4641
4642 2000-10-11
4643
4644         * src/account.c: account_edit_close(): fixed a bug that didn't set
4645           current account when creating an account for the first time.
4646         * configure.in: added es to ALL_LINGUAS.
4647
4648 2000-10-10
4649
4650         * src/codeconv.c: conv_codeset_strdup(): made it use libkcc if
4651           possible.
4652           conv_get_code_conv_func(): modified so that it doesn't convert
4653           codeset if it is unknown.
4654         * src/folderview.c: folderview_update_msg_num(): modified style
4655           changing routine.
4656
4657 2000-10-09
4658
4659         * src/codeconv.c: conv_codeset_strdup(): modified so that it sets
4660           codesets automatically if the arguments are NULL.
4661         * src/textview.c: textview_write_line(): made it output warning
4662           message on the text view if conversion failed.
4663
4664 2000-10-06
4665
4666         * README, README.jp: modified the author of the manual.
4667
4668 2000-10-05
4669
4670         * src/headerview.[ch]
4671           src/messageview.[ch]: modified so that it uses GtkLabel widget
4672           instead of GtkText.
4673         * src/codeconv.c: conv_unmime_header(): modified so that it deletes
4674           unreadable codes if the current locale is EUC-JP and libjconv is
4675           used.
4676
4677 2000-10-04
4678
4679         * src/procmime.[ch]
4680           src/messageview.c
4681           src/mimeview.c
4682           src/textview.c: modified so that it parses MIME message more
4683           preferably.
4684         * src/imap.c: imap_parse_address(): fixed a bug.
4685
4686 2000-10-03
4687
4688         * src/procmsg.[ch]: added procmsg_get_message_file_path().
4689         * src/recv.c: recv_bytes_write(): added CR+LF -> LF conversion
4690           routine.
4691         * src/imap.[ch]: changed the name of the member `group' in
4692           IMAPSession to `mbox'.
4693           imap_gen_send(): modified so that it doesn't output the password
4694           to the log.
4695           Modified session destroying routine.
4696         * src/folderview.c: folderview_write_cache(): made it preserve
4697           the IMAP folder list.
4698         * src/procmime.c: procmime_scan_multipart_message(): fixed a bug
4699           that showed boundary at the end of an attached RFC822 part.
4700         * src/prefs_common.c: changed the default of toolbar style to
4701           both icon and text.
4702
4703 2000-10-02
4704
4705         * src/imap.c: imap_get_uncached_messages(): modified so that it
4706           doesn't get the cached envelopes.
4707           imap_session_get_message_info(): made it read only the cache
4708           if the session is not established.
4709         * src/procmsg.c: procmsg_set_flags(): supported IMAP folder.
4710         * src/news.c: news_get_article_info(): made it read only the cache
4711           if the session is not established.
4712
4713 2000-10-01
4714
4715         * src/textview.c: textview_write_line(): fixed a memory leak bug.
4716         * src/folderview.[ch]: made it create IMAP4 folders from the
4717           account information.
4718         * src/imap.[ch]: imap_session_get(): modified so that it creates
4719           IMAP4 session from the account information.
4720
4721 2000-09-30
4722
4723         * src/imap.[ch]: added for IMAP4 support.
4724         * src/summaryview.[ch]
4725           src/procmsg.c
4726           src/recv.[ch]: modified for IMAP4 support.
4727         * src/folderview.c: more IMAP4 implementation.
4728         * src/procmsg.[ch]: added procmsg_get_message_file() that retrieves
4729           the specified message and return the file name.
4730         * src/gtkutils.c: gtkut_widget_wait_for_draw(): fixed a bug that
4731           locked up the process if the given widget was invisible.
4732
4733 2000-09-28
4734
4735         * src/folderview.[ch]: added IMAP4-related code.
4736
4737 2000-09-28
4738
4739         * version 0.4.1
4740
4741         * src/main.h: added IMAP_CACHE_DIR.
4742         * src/utils.[ch]: added get_imap_cache_dir().
4743         * src/procmsg.h: added M_IMAP to MsgType, and MSG_IMAP to MsgFlags.
4744           Added macro MSG_IS_IMAP().
4745         * src/codeconv.c: added `#include <locale.h>' for setlocale().
4746         * sylpheed.spec: fixed %files section.
4747
4748 2000-09-27
4749
4750         * version 0.4.0
4751
4752         * src/codeconv.c: conv_get_current_charset(): made it compare
4753           string with strncasecmp().
4754         * src/compose.c: comopse_reply_parse_header(): workaround for
4755           the malformed References: header generated by OE5 :(
4756
4757 2000-09-26
4758
4759         * src/prefs_common.c
4760           src/prefs_account.c: modified the layout of the widgets.
4761
4762 2000-09-26
4763
4764         * version 0.3.99
4765
4766         * src/*.[ch]: added copyright notice to the top of the source files.
4767         * src/compose.c: compose_write_attach(): modified filename encode
4768           routine.
4769
4770 2000-09-25
4771
4772         * src/mainwindow.c: fixed the menu entry of manual.
4773         * src/compose.c
4774           src/codeconv.[ch]: moved compose_encode_header() into codeconv.c,
4775           and applied the libjconv patch.
4776         * src/utils.c: strdup_mbstowcs(), strdup_wcstombs(): used g_realloc()
4777           to reduce the alloc'd memory to the optimal size.
4778         * src/prefs_common.[ch]: added outgoing codeset option menu.
4779         * src/compose.c: compose_send(): added exclusive lock to prevent
4780           multiple-sending.
4781         * configure.in: made '--enable-ipv6=no' the default.
4782         * src/compose.c: compose_write_attach(): made it encode the name
4783           of the attached file.
4784         * src/procmsg.c: procmsg_get_last_message_number(): fixed a bug that
4785           didn't check the type of file.
4786           procmsg_move_messages_with_dest(): fixed a bug that failed to
4787           move message if a directory that had the same name existed.
4788         * src/utils.c: is_ascii_str(): modified so that '\t', ' ', '\r', '\n'
4789           are included as ASCII characters.
4790
4791 2000-09-24
4792
4793         * src/compose.c
4794           src/procmime.[ch]: modified so that it actually works when using
4795           libjconv :)
4796         * src/codeconv.[ch]: added conv_codeset_strdup() that converts
4797           the codeset of string according to the codeset specified in
4798           arguments.
4799         * src/utils.[ch]: added is_ascii_str() that determines whether the
4800           string is 7bit-ASCII or not.
4801         * src/procmime.[ch]
4802           src/codeconv.[ch]: moved the character set related functions
4803           into codeconv.c.
4804         * merged the patch and the manual written by BONAIM (thanks!).
4805
4806 2000-09-23
4807
4808         * configure.in
4809           src/compose.c
4810           src/gtkutils.c
4811           src/mainwindow.c
4812           src/procmime.[ch]
4813           src/textview.c
4814           src/unmime.[ch]: applied the patch from Higuchi that utilizes
4815           libjconv and enables to handle many locales, including UTF-8
4816           (Unicode) (thanks!).
4817         * src/account.c: modified so that the account isn't changed when
4818           another account is selected on account edit dialog.
4819
4820 2000-09-20
4821
4822         * src/prefs_common.[ch]
4823           src/textview.c: added an option that specifies whether to display
4824           short headers on message view.
4825         * src/codeconv.[ch]: added function conv_unmime_header() that
4826           decodes MIME-encoded header and converts the character set.
4827           And added conv_unreadable_latin(), and modified conv_latintodisp().
4828         * src/messageview.[ch]: made the window get closed when escape key
4829           is pressed.
4830
4831 2000-09-17
4832
4833         * src/imageview.c: fixed a bug that caused segmentation fault if
4834           message view was in new window.
4835         * src/prefs_common.c: added `xemacs %s' to the external editor
4836           command line list.
4837
4838 2000-09-16
4839
4840         * version 0.3.29
4841
4842         * src/summaryview.c: enabled to open a new message window with
4843           double-clicking.
4844         * src/prefs_common.[ch]
4845           src/messageview.c: made it preserve the window size of message
4846           window.
4847         * src/prefs_account.c: added `None (local)' to the option menu of
4848           protocol.
4849
4850 2000-09-15
4851
4852         * Makefile.am: added autogen.sh to EXTRA_DIST.
4853
4854 2000-09-09
4855
4856         * src/prefs_common.c: applied the patch from Paul Rolland that
4857           enables font selection dialog (thanks!).
4858         * src/compose.[ch]
4859           src/utils.[ch]: moved tzoffset() and compose_get_date() of
4860           compose.[ch] into utils.[ch].
4861         * src/main.[ch]: renamed the name of filter file to `filterrc'.
4862
4863 2000-09-06
4864
4865         * src/compose.[ch]
4866           src/utils.[ch]: modified address parsing routine so that it
4867           parses quotes correctly.
4868         * src/textview.c: textview_show_part(): modified so that it shows
4869           the simplified headers if the part is text/plain.
4870
4871 2000-09-03
4872
4873         * src/messageview.[ch]
4874           src/summaryview.[ch]
4875           src/mainwindow.c: enabled to open a message in new window.
4876         * src/messageview.[ch]
4877           src/mimeview.[ch]
4878           src/textview.[ch]
4879           src/imageview.[ch]: added destroy function, and modified the
4880           key handling routines.
4881
4882 2000-09-02
4883
4884         * src/socket.c: sock_connect_by_getaddrinfo(): fixed a bug that
4885           caused segmentation fault (thanks to KUROSAWA).
4886         * src/alertpanel.c: modified so that the focused button is
4887           selectable.
4888         * src/account.c
4889           src/compose.c
4890           src/folderview.c: modified so that the order of the buttons of
4891           alert panel will be `Yes', `No'.
4892
4893 2000-09-01
4894
4895         * src/utils.[ch]: added execute_async() and execute_command_line()
4896           that execute command line using execvp().
4897         * src/textview.c
4898           src/mimeview.c
4899           src/procmsg.c: replaced system() with execute_command_line()
4900           for security.
4901         * src/procmsg.c: turn back to system().
4902         * src/utils.c: modified execute_command_line().
4903
4904 2000-08-31
4905
4906         * src/mainwindow.c: main_window_get_size(): modified so that it
4907           doesn't update the height of SummaryView if MessageView is
4908           toggled off.
4909         * src/compose.[ch]: applied the patch from NAKAGAWA that fixes some
4910           probrems of external editor handling (thanks!).
4911         * src/uuencode.[ch]
4912           src/procmime.[ch]: applied the patch from Hiramatu that make it
4913           supports Content-Transfer-Encoding: x-uuencode (thanks!).
4914
4915 2000-08-30
4916
4917         * src/compose.[ch]
4918           src/prefs_common.[ch]: implemented the external editor faculty.
4919         * src/compose.c: compose_attach_property(): fixed some bugs on
4920           changing the property of attached file.
4921         * src/compose.c: fixed some bugs of external editor functions.
4922
4923 2000-08-29
4924
4925         * version 0.3.28
4926
4927         * src/mainwindow.c
4928           src/prefs_common.[ch]
4929           src/summaryview.c: applied the patch from Paul Rolland that
4930           restores the size of widgets when restarting (thanks!).
4931         * src/folderview.c
4932           src/prefs_common.[ch]
4933           src/summaryview.c: applied the patch from Paul Rolland that saves
4934           the width of CTree columns (thanks!).
4935
4936 2000-08-27
4937
4938         * src/headerview.c: modified the height of HeaderView.
4939         * src/textview.c: textview_show_part(): made it process the message
4940           as normal text if it is single-part RFC822 message.
4941         * src/folderview.c
4942           src/summaryview.c: some changes around the key handling.
4943         * src/prefs_common.[ch]: substituted the word `assort' with `filter'.
4944
4945 2000-08-26
4946
4947         * src/codeconv.[ch]: added conv_latintodisp() for ISO-8859-1 support.
4948         * src/procheader.c: procheader_get_one_field(): fixed a bug that
4949           caused segmentation fault if the first line of the file is space
4950           or tab (thanks to Hiramatu).
4951         * src/mimeview.c: mimeview_drag_data_get(): modified so that the
4952           filename doesn't include G_DIR_SEPARATOR (thanks to Hiramatu).
4953         * src/prefs_account.c
4954           src/prefs_common.c: modified the dialog size.
4955         * src/prefs.c: made the dialog window growable.
4956
4957 2000-08-25
4958
4959         * version 0.3.27
4960
4961         * configure.in: removed unnecessary AC_CHECK_FUNC(gettext) that
4962           caused the failure of the detection of libintl.
4963         * src/filter.[ch]
4964           src/prefs_common.c: implemented `not contain', and modified for
4965           future enhancement.
4966         * src/imageview.c: changed alertpanel_error() to g_warning() so that
4967           it doesn't grab mouse events.
4968         * src/compose.[ch]: added compose_list that holds the list of
4969           Compose objects, and added the function compose_get_compose_list().
4970         * src/main.c
4971           src/mainwindow.c
4972           src/summaryview.c: made it confirm if composing message exists.
4973
4974 2000-08-23
4975
4976         * src/compose.c: compose_reply_set_entry(): fixed a bug that caused
4977           segmentation fault when trying to reply the message in the queue
4978           folder (thanks to Kotobuki).
4979           compose_attach_property(): modified the property dialog routine
4980           so that it can handle input error.
4981         * src/mimeview.c: applied the patch from Hiramatu that enables
4982           the drag 'n drop from MimeView (thanks!).
4983         * src/headerview.[ch]
4984           src/procheader.c
4985           src/procmsg.h: applied the patches for X-Face support from
4986           HIROSHIMA (thanks!).
4987
4988 2000-08-22
4989
4990         * src/compose.c: compose_attach_property(): modified so that the
4991           property dialog can actually change the property of attached file.
4992
4993 2000-08-21
4994
4995         * configure.in
4996           src/Makefile.am: updated for gdk_imlib.
4997         * added AUTHORS and NEWS.
4998         * configure.in
4999           acconfig.h
5000           src/Makefile.am: modified so that configure auto-detects gdk-pixbuf
5001           and gdk_imlib library. And fixed a bug on IPv6 detecting.
5002         * src/imageview.c: supported gdk-pixbuf.
5003         * README
5004           README.jp
5005           INSTALL
5006           INSTALL.jp: added the mention about built-in image view.
5007         * configure.in: modified so that configure can disable gdk-pixbuf
5008           or/and gdk_imlib library.
5009
5010 2000-08-20
5011
5012         * src/imageview.[ch]
5013           src/main.c
5014           src/messageview.[ch]
5015           src/mimeview.[ch]: applied the patches from HIROSHIMA that enables
5016           to display image (thanks!).
5017
5018 2000-08-19
5019
5020         * version 0.3.26
5021
5022         * src/summaryview.c: summary_assort_func(): modified to avoid
5023           `not receive' setting.
5024
5025 2000-08-18
5026
5027         * src/filesel.c: applied the patch from HIROSHIMA that makes it
5028           remember previous directory when opening the dialog (thanks!).
5029         * src/summaryview.[ch]: added a function summary_redisplay_msg().
5030         * src/mainwindow.c: set_charset_cb(): made it redisplay the message
5031           that is currently shown when the character set is changed.
5032         * src/inc.c
5033           src/pop.c
5034           src/prefs_common.c
5035           src/filter.h: applied the patch from Tanaka that enables not to
5036           receive specified messages according to the sorting rule (thanks!).
5037
5038 2000-08-15
5039
5040         * src/procmsg.[ch]: added MSG_MIME to the type MsgFlags. And modified
5041           so that it handles MSG_MIME flag, and it scans uncached messages
5042           when cache reading failed even if it is specified not to scan
5043           new messages.
5044         * src/procheader.c: procheader_parse(): added the determination of
5045           multipart MIME message.
5046         * src/main.h: increased CACHE_VERSION.
5047         * src/summaryview.[ch]: added the `MIME' column that shows whether
5048           a message is multipart or not.
5049         * src/prefs_common.[ch]: added the `MIME' column to the setting of
5050           displaying item.
5051         * added src/pixmaps/clip.xpm.
5052         * src/summaryview.c
5053           src/procmsg.[ch]: modified so that it prompts the print command
5054           before printing.
5055
5056 2000-08-14
5057
5058         * src/folderview.c: folderview_create()
5059           src/summaryview.c: summary_create():
5060           src/addressbook.c: addressbook_create(): set the expander style of
5061           CTree to GTK_CTREE_EXPANDER_SQUARE.
5062         * src/compose.c: modified the interface of property dialog.
5063
5064 2000-08-13
5065
5066         * src/compose.c: added property dialog for attached file.
5067
5068 2000-08-11
5069
5070         * src/procmsg.[ch]: added a function procmsg_print_message() that
5071           prints the given message.
5072         * src/summaryview.c: summary_print(): modified so that it prints
5073           all selected messages.
5074         * src/folderview.c: folderview_select_node(): fixed a bug that
5075           didn't focus on folder tree if inbox was empty when incorporating.
5076
5077 2000-08-10
5078
5079         * version 0.3.25
5080
5081         * src/prefs_commmon.[ch]: added `Other' tab and an option for
5082           printing. And moved external browser option to there.
5083         * src/mainwindow.c
5084           src/summayview.[ch]: added print menu and implemented print
5085           functions.
5086
5087 2000-08-09
5088
5089         * src/prefs_account.c: made the default value of smtp_server to
5090           NULL.
5091         * src/folderview.c: folderview_update_msg_num(): modified so that
5092           it doesn't emphasize trash folder even if it has new or unread
5093           messages.
5094
5095 2000-08-08
5096
5097         * src/filesel.c: filesel_select_file(): (perhaps) fixed a bug that
5098           caused segmentation fault when file selection dialog was closed
5099           and other dialog was open immediately.
5100
5101 2000-08-05
5102
5103         * src/compose.c: compose_encode_header(): fixed a bug that caused
5104           infinite loop if wctomb() failed.
5105
5106 2000-08-04
5107
5108         * version 0.3.24
5109
5110         * src/mimeview.c: enabled to open an attached file with double click
5111           and popup menu. And cleaned up the code.
5112         * src/procmime.[ch]: added a function procmime_get_part() that
5113           saves the part of multipart message.
5114
5115 2000-08-03
5116
5117         * src/main.[ch]
5118           src/mimeview.c
5119           src/prefs_common.[ch]
5120           src/procmime.[ch]
5121           src/utils.[ch]: applied a patch that enables to launch attached
5122           image, audio, and HTML file (thanks to Hashimoto).
5123         * src/filter.c: filter_match_condition(): fixed a bug that caused
5124           segmentation fault if the body of specified filter is NULL. And
5125           made the filter considered as being matched on that case.
5126
5127 2000-07-30
5128
5129         * src/summaryview.c:
5130           summary_save_as(): fixed a bug that unabled to save news articles.
5131           summary_display_msg(): added exclusive lock to prevent it from
5132           reading another news article while it is already processing one.
5133         * src/gtkutils.[ch]: added gtkut_widget_wait_for_draw() that waits
5134           the draw signal to be emitted.
5135         * src/mainwindow.c:
5136           main_window_cursor_wait()
5137           main_window_cursor_normal(): added gdk_flush() to change cursor
5138           immediately.
5139         * Makefile.am
5140           libkcc/Makefile.am: added EXTRA_DIST for `make dist'. And added
5141           a target `release' to Makefile.am.
5142
5143 2000-07-28
5144
5145         * src/socket.c: supported IPv6.
5146         * configure.in
5147           acconfig.h: added checking for IPv6.
5148         * prefs_common.c: changed the default of toolbar_style to icon only.
5149
5150 2000-07-27
5151
5152         * initial cvs import.
5153         * updated README and README.jp.
5154
5155 2000-07-24
5156
5157         * version 0.3.23
5158
5159         * src/procmime.[ch]: modified the structure of MimeInfo so that it
5160           can be handled as a node of tree.
5161           Added procmime_mimeinfo_free_all() that frees all of the MimeInfo
5162           recursively.
5163           Added procmime_get_text_part() that scans a message and gets a text
5164           part for quoting.
5165         * src/mimeview.c: divided mimeview_scan_multipart_message() into
5166           procmime_scan_multipart_message() and mimeview_set_multipart_tree().
5167         * src/compose.c: compose_quote(), compose_forward():
5168           made it quote the text part of multipart message properly.
5169           Made it preserve the size of Compose window.
5170         * src/prefs_common.[ch]: added compose_width and compose_height to
5171           the members.
5172         * src/textview.c: textview_show_part(): some code cleanups.
5173         * src/codeconv.[ch]: added a function conv_get_code_conv_func().
5174
5175 2000-07-20
5176
5177         * version 0.3.22
5178
5179         * src/codeconv.[ch]: fixed a bug that showed garbage characters if
5180           the return code of the message was CR+LF. And added
5181           conv_sjistoeuc().
5182         * src/summaryview.c: summary_attract_by_subject(): made it move
5183           the current view point to the selected row when executed.
5184         * src/textview.c: textview_show_part(): modified the character set
5185           determination routine.
5186         * src/folderview.c: folderview_update_msg_num(): fixed a bug that
5187           caused segmentation fault if boldfont was NULL.
5188         * src/compose.c: compose_create(): made it sets itself as the target
5189           of addressbook on window creation.
5190
5191 2000-07-19
5192
5193         * src/compose.c: compose_send(): fixed a bug that didn't save
5194           queued message to outbox when failed to send the message (thanks
5195           to T. Yamamoto).
5196
5197 2000-07-15
5198
5199         * src/inc.[ch]: modified so that it changes error message dialog
5200           depending on the results.
5201
5202 2000-07-14
5203
5204         * src/mainwindow.c: main_window_create(): set usize of account
5205           button on the status bar to 1 so that it doesn't get expanded
5206           more than necessary.
5207         * src/account.[ch]: account_foreach(): made it abort the iteration
5208           if the function returns nonzero.
5209         * src/inc.[ch]
5210           src/pop.c: modified so that it shows error message dialog if the
5211           message processing is failed.
5212
5213 2000-07-04
5214
5215         * version 0.3.21
5216
5217         * src/mainwindow.c: made it popup account selection menu when
5218           account tool button or account status bar is pressed.
5219         * src/folderview.c
5220           src/prefs.c: suppressed the ENOENT perror messages.
5221         * src/pop.c: made it fall back on LAST command if UIDL failed.
5222
5223 2000-07-01
5224
5225         * src/procheader.c: procheader_parse(): fixed a bug that didn't
5226           parse References: header correctly (thanks to YAMAGUCHI).
5227
5228 2000-06-29
5229
5230         * version 0.3.20
5231
5232         * src/compose.c: compose_reply_set_entry(): fixed a bug that didn't
5233           cc'd correctly when replying.
5234         * src/mainwindow.c
5235           src/summaryview.c: sorted out the main menu and the popup menu.
5236
5237 2000-06-26
5238
5239         * version 0.3.19
5240
5241         * src/prefs_account.[ch]
5242           src/compose.c: made it be able to set Cc:, Bcc:, and Reply-To:
5243           automatically at composing (thanks to NAKAGAWA).
5244
5245 2000-06-25
5246
5247         * src/prefs_common.[ch]
5248           src/mainwindow.c
5249           src/main.c: made it selectable whether to ask before cleaning
5250           trash at the exit.
5251         * src/prefs_common.c: cleaned up the code and the interface a bit.
5252         * src/summaryview.c: modified the unthread functions for speeding
5253           up.
5254
5255 2000-06-24
5256
5257         * src/prefs_common.[ch]
5258           src/summaryview.c: made it display recipient on the `From' column
5259           if the address of the sender is the same as the current account
5260           (thanks to NAKAGAWA).
5261         * src/utils.[ch]: added a function extract_address() that extracts
5262           the address from `From:' header string.
5263         * src/mainwindow.c: allsel_cb(): fixed a bug that caused segmentation
5264           fault if `Edit/Select all' was selected when the message view was
5265           hidden (thanks to Tomita).
5266
5267 2000-06-21
5268
5269         * src/summaryview.c: modified execution routine so that it only
5270           unthreads nodes that are needed to be unthreaded.
5271
5272 2000-06-19
5273
5274         * src/news.c: news_session_get(): implemented the reconnection on
5275           being disconnected.
5276         * src/nntp.[ch]: added nntp_mode().
5277
5278 2000-06-18
5279
5280         * src/mbox.c: fixed a bug that didn't close mbox FILE pointer.
5281           And support assortment on processing mbox.
5282         * src/inc.c: inc_drop_message(): modified so that it uses hash table
5283           to store the last message number of folders.
5284         * src/summaryview.c
5285           src/addressbook.c: modified the behavior of CTree at right-click.
5286         * src/pop.c: pop3_getrange_uidl_recv(): fixed a potential buffer
5287           overflow bug (thanks to Nishiyama).
5288
5289 2000-06-17
5290
5291         * version 0.3.18
5292
5293         * src/pop.[ch]
5294           src/inc.[ch]: implemented management of read message on POP server
5295           by UIDL.
5296         * src/utils.[ch]: removed (s)list_remove_all() because it can be
5297           replaced with g_(s)list_free().
5298         * src/summaryview.c: modified the arrangement of menu a bit.
5299         * src/summaryview.c: summary_status_show(): made it doesn't display
5300           server name but newsgroup.
5301         * src/prefs_common.c
5302           src/prefs_account.c: adjusted the calculation routine of dialog
5303           size.
5304
5305 2000-06-15
5306
5307         * version 0.3.17
5308
5309         * src/compose.c: compose_reply_set_entry(): modified so that it
5310           cc's to the all addresses on To: and Cc: of the replied message.
5311           And swapped the position of Subject: and To: entry.
5312
5313 2000-06-14
5314
5315         * src/procheader.c: modified so that it can handle headers that
5316           aren't separated by space.
5317         * src/socket.c: sock_connect(): added a wait after connection to
5318           prevent lockup (thanks to NINOMIYA).
5319
5320 2000-06-13
5321
5322         * src/inc.c:
5323           inc_mail()
5324           inc_all_account_mail(): fixed a bug that caused segmentation
5325           fault if no account exist.
5326         * src/mainwindow.[ch]: made receive button unclickable when
5327           no account exist.
5328         * src/compose.c: compose_queue(): fixed a bug that didn't mark
5329           queued message properly.
5330         * src/utils.[ch]: separated code conversion functions into
5331           src/codeconv.[ch].
5332
5333 2000-06-13
5334
5335         * version 0.3.16
5336
5337         * src/mimeview.c: mimeview_save_as()
5338           src/summaryview.c: summary_save_as(): made it ask whether to
5339           overwrite the existing file.
5340
5341 2000-06-12
5342
5343         * src/utils.c
5344           src/recv.c
5345           src/prefs.c
5346           src/prefs_common.c
5347           src/prefs_account.c
5348           src/addressbook.c
5349           src/compose.c
5350           src/mbox.c: fixed a bug that failed to check write error when
5351           disk was full and caused the loss of the file.
5352
5353 2000-06-11
5354
5355         * src/mainwindow.c: main_window_clean_trash(): made it move focus
5356           to folder view when finished.
5357         * src/utils.[ch]: added code conversion functions for display.
5358           And added strncpy2() that doesn't do zero fill and does
5359           null-termination, unlike original strncpy().
5360         * src/textview.c: modified so that it changes the code conversion
5361           function according to charset. And supported charset=SHIFT_JIS.
5362         * src/mainwindow.c
5363           src/prefs_common.h
5364           src/textview.c: made it possible to force character set of
5365           a message.
5366         * src/folderview.c: folderview_select_next_unread():
5367           made it search unread folder from begin if it isn't found.
5368
5369 2000-06-11
5370
5371         * version 0.3.15
5372
5373         * src/mainwindow.c: fixed a probrem again that main window was
5374           stretched to the width of the toolbar.
5375         * src/mbox.c
5376           src/utils.c: is_header_line(): modified so that it recognizes
5377           a header which doesn't have a space after colon (thanks to Hotta).
5378         * src/filter.c: added `#include <strings.h>'.
5379         * src/smtp.c: replaced snprintf() with g_snprintf().
5380         * src/Makefile.am: added `-I$(top_srcdir)/intl' to INCLUDES for
5381           included gettext.
5382         * included sylpheed.spec.
5383
5384 2000-06-10
5385
5386         * src/prefs_common.[ch]: enabled to set the pixels of line space
5387           and decide whether to leave space on head of lines.
5388         * src/summaryview.c: modified so that it clears message view
5389           when displayed message is removed from the summary view.
5390         * src/mimeview.c: fixed a bug that caused infinite loop if
5391           terminal boundary of multipart message was not found (thanks to
5392           Nishika).
5393         * src/folderview.c: folderview_scan_mailbox(): made it ignore
5394           dot directory.
5395         * src/main.c: made it show warning dialog and exit if the file with
5396           the same name already exists when creating directory.
5397
5398 2000-06-09
5399
5400         * src/textview.c
5401           src/prefs_common.[ch]: made it possible to leave space between
5402           and on head of lines.
5403
5404 2000-06-07
5405
5406         * src/compose.c
5407           src/procmime.[ch]: made it scan /etc/mime.types and determine
5408           the MIME type of the attached file.
5409         * src/summaryview.c: made it clear message view if the summary
5410           is unselected on the execution, and made it move focus to
5411           folder view if the folder becomes empty.
5412         * src/mainwindow.c: fixed a probrem that main window was stretched
5413           to the width of the toolbar.
5414         * src/inc.c: fixed a bug that caused multiple gtk_main() event loop
5415           if `Check new mail on startup' was set.
5416
5417 2000-06-06
5418
5419         * src/compose.c: fixed a probrem that had been unable to insert
5420           a file to the current cursor position.
5421
5422 2000-06-06
5423
5424         * version 0.3.14
5425
5426         * src/compose.[ch]: added `attach' button to the toolbar. And
5427           replaced the icon of `insert' to the new one.
5428
5429 2000-06-05
5430
5431         * src/mainwindow.[ch]: added `Execute' to the toolbar. And added
5432           a function main_window_set_toolbar_sensitive() that sets the
5433           sensitivity of the button of the toolbar.
5434         * src/compose.c: fixed a bug that output wrong header if
5435           a return code was included in the string of the text entry.
5436
5437 2000-06-04
5438
5439         * src/mainwindow.[ch]: added `Delete' to the toolbar and the menu.
5440           And added the same items in popup menu to the main menu.
5441         * src/utils.[ch]: added functions for DnD support.
5442         * src/compose.c: implemented file attachment and insertion with DnD
5443           (thanks to Hiramatu).
5444
5445 2000-06-04
5446
5447         * version 0.3.13
5448
5449         * src/summaryview.c: fixed a bug that passed null pointer to
5450           is_dir_exist().
5451
5452 2000-06-03
5453
5454         * src/alertpanel.[ch]: added functions alertpanel_message(),
5455           alertpanel_notice(), and alertpanel_error(), and cleaned up
5456           the code.
5457         * src/folderview.c
5458           src/compose.c
5459           src/addressbook.c
5460           src/summaryview.c
5461           src/summary_search.c
5462           src/prefs_account.c
5463           src/foldersel.c: made them use alertpanel_error(),
5464           alertpanel_warning() or alertpanel_notice() for error message
5465           dialog.
5466         * src/summaryview.[ch]: enable sorting in reversed order.
5467         * src/inc.c: made it show error message dialog when failed to
5468           connect or authorize.
5469         * src/utils.h: added a macro FILE_OP_ERROR() and replaced many
5470           perror() with it.
5471
5472 2000-06-03
5473
5474         * version 0.3.12
5475
5476         * src/compose.c: fixed a bug that didn't save a message to outbox
5477           when queued.
5478         * src/send.c: send_message_queue(): fixed a bug that included
5479           headers for queueing in the parsed data.
5480         * src/mainwindow.c: send_queue_cb(): made it pop statusbar message
5481           and update queue folder when finished.
5482
5483 2000-06-02
5484
5485         * version 0.3.11
5486
5487         * src/filter.c
5488           src/inc.c
5489           src/compose.c: suppressed the warning messages.
5490         * src/mainwindow.[ch]: added next unread message button and menu
5491           items.
5492         * src/summaryview.[ch]: added a function summary_select_next_unread()
5493           that selects and opens next unread message.
5494
5495 2000-06-01
5496
5497         * src/prefs_common.[ch]: added a setting to decide whether to open
5498           unread message on entering a folder.
5499         * src/summaryview.c: made it open the first unread message only if
5500           the preference is set.
5501         * src/compose.c: fixed a bug that freed the string obtained from
5502           GtkEntry.
5503
5504 2000-05-31
5505
5506         * src/compose.c: added `Send later' to the menu and the toolbar
5507           which queues the message to send it later.
5508
5509 2000-05-30
5510
5511         * src/mainwindow.c: added an interface to resend the queued message.
5512         * src/compose.c: made it show alert dialog when a message will be
5513           queued.
5514
5515 2000-05-29
5516
5517         * src/procmsg.[ch]: added function procmsg_send_queue() that calls
5518           send_message_queue() for each queued messages.
5519
5520 2000-05-28
5521
5522         * src/inc.c: inc_drop_message(): modified so that it drops a message
5523           to the default inbox folder if destination folder doesn't exist.
5524         * src/compose.[ch]: added imput compatible queueing header to the
5525           queued message.
5526         * src/send.[ch]: added function send_message_queue() that send
5527           queued message.
5528
5529 2000-05-27
5530
5531         * configure.in
5532           acconfig.h: made it enabled to decide wheter to use multithread
5533           or not on configure.
5534         * src/summaryview.c: fixed a bug that made thread when executed
5535           despite of the setting (thanks to Hiroshima).
5536         * src/socket.[ch]: changed the return value of public
5537           sock_connect_*() function to the pointer to SockInfo object.
5538         * src/procmime.c: procmime_scan_mime_header():
5539           fixed a bug that returned NULL if the scanned part had no header
5540           (thanks to shigeri).
5541         * src/procmime.[ch]:
5542           added function procmime_scan_content_disposition() that parses
5543           Content-Disposition header field.
5544         * src/mimeview.c: made it uses filename value in Content-Disposition
5545           header.
5546         * src/pop.c
5547         * src/inc.c: modified so that password is prompted if the password
5548           on preferences is empty and previous POP3 session has failed on
5549           authorization.
5550
5551 2000-05-23
5552
5553         * src/socket.[ch]: added non-blocking IO mode socket and
5554           multithreaded connection support.
5555         * src/inc.c: supported multithread connection.
5556
5557 2000-05-22
5558
5559         * src/folderview.c: made the focus of SummaryView grabbed when
5560           a folder is selected only if the messages exist.
5561
5562 2000-05-20
5563
5564         * version 0.3.10
5565
5566         * po/ja.po: fixed a bug that head `/' of a menu label was missing
5567           and caused segmentation fault when opened Compose window.
5568
5569 2000-05-20
5570
5571         * version 0.3.9
5572
5573         * src/utils.c: get_domain_name(): modified so that it uses
5574           gethostname().
5575         * src/mimeview.c: added key binds for `Save as' and
5576           `Display as text'.
5577
5578 2000-05-19
5579
5580         * src/recv.c: fixed a bug that failed to return error value
5581           when fputs() failed and caused the loss of received mails when
5582           disk space was not left (thanks to Tajiri).
5583         * src/compose.c: supported Reply-To.
5584         * src/mimeview.c: improved key operation interface.
5585
5586 2000-05-18
5587
5588         * src/mimeview.[ch]
5589           src/procmime.[ch]
5590           src/textview.[ch]: supported nested multipart message and
5591           clean up the codes.
5592           Supported encapsulated RFC822 message.
5593
5594 2000-05-16
5595
5596         * src/compose.[ch]: made it free the alloc'd memory for attach
5597           information when the compose window is destroyed.
5598           Placed the attachment list and the text widget onto the paned
5599           widget.
5600           Enabled cut/copy/paste/select all on all of the editable widgets.
5601           Implemented removal of attached file and popup menu on attachment
5602           list.
5603         * src/prefs_common.[ch]: added signature separator setting.
5604         * src/alertpanel.[ch]: added a function alertpanel_warning().
5605
5606 2000-05-14
5607
5608         * src/prefs_common.[ch]
5609           src/textview.c: made open URI command customizable.
5610         * src/compose.[ch]: implemented multipart MIME message composition
5611           (attachment of file).
5612         * src/textview.c
5613           src/compose.c: fixed a bug that didn't turn off the GTK+ theme
5614           engine again.
5615
5616 2000-05-13
5617
5618         * version 0.3.8
5619
5620         * src/summaryview.c: added key binds for composing message
5621           (w, a, A, f). Also added other key binds (y, D, Q).
5622         * src/compose.c: made Cc entry take over the Cc of the replied
5623           message.
5624         * src/pixmaps/new.xpm
5625           src/pixmaps/unread.xpm: replaced pixmap image.
5626         * src/procheader.c: procheader_date_get_localtime():
5627           changed the single figures of year from four to two.
5628
5629 2000-05-12
5630
5631         * src/inc.c: made it ask password if it is not specified on account
5632           preferences.
5633         * src/prefs_account.h: added member tmp_pass to struct PrefsAccount
5634           that preserves the temporary password.
5635         * src/inputdialog.[ch]: added function input_dialog_with_invisible()
5636           that prompts input with the string hidden.
5637
5638 2000-05-11
5639
5640         * src/compose.c: fixed a bug that didn't turn off the GTK+ theme
5641           engine if message font wasn't specified.
5642
5643 2000-05-10
5644
5645         * version 0.3.7a
5646
5647         * src/summaryview.c: fixed a bug that stderr was forgotten on
5648           fprintf().
5649
5650 2000-05-10
5651
5652         * version 0.3.7
5653
5654         * src/pop.c: fixed a problem that if some POP3 commands returned
5655           error, the previous operations were all cancelled.
5656         * src/compose.c
5657           src/textview.c: made workaround to the slow down of GtkText widget
5658           when using Pixmap theme or its derivatives.
5659
5660 2000-05-08
5661
5662         * src/inc.c: fixed a bug that caused X IO error when exec'd
5663           nonexistent program.
5664
5665 2000-05-07
5666
5667         * src/folderview.[ch]: added the member `mtime' to the struct
5668           FolderInfo.
5669         * src/summaryview.c: made the mtime of the folder checked that is
5670           going to open.
5671         * src/procmsg.c: added filesystem unchecking mode.
5672
5673 2000-05-05
5674
5675         * src/textview.[ch]: implemented clickable URI (thanks to BONAIM).
5676           And made `X-Mailer:' header emphasized if it contains `Sylpheed'.
5677
5678 2000-05-04
5679
5680         * src/summaryview.c: summary_write_cache(): permission fix of
5681           cache file.
5682
5683 2000-05-04
5684
5685         * version 0.3.6a
5686
5687         * src/headerview.c: added headerview_clear() method.
5688         * src/messageview.c: fixed a bug that didn't clear HeaderView
5689           on messageview_clear().
5690
5691 2000-05-04
5692
5693         * version 0.3.6
5694
5695         * src/messageview.c
5696           src/textview.c: added *_clear() method.
5697         * src/summaryview.c: made it clear MessageView when new folder
5698           is open.
5699
5700 2000-05-03
5701
5702         * src/inc.c: fixed a bug that went to the inbox that was specified
5703           by each account when incorporating from all accounts.
5704         * src/compose.c: made it confirm whether to discard the message or
5705           not when the window will be closed.
5706
5707 2000-05-03
5708
5709         * version 0.3.5
5710
5711         * src/pop.[ch]
5712           src/inc.[ch]: re-supported APOP authentication.
5713         * src/prefs_account.c: fixed a bug that had't saved protocol type.
5714         * src/socket.h
5715           src/statusbar.h: attached G_GNUC_PRINTF() to printf() like
5716           functions.
5717         * src/progressdialog.[ch]: changed the name of class from Progress
5718           to ProgressDialog.
5719
5720 2000-05-02
5721
5722         * src/summaryview.c: fixed a bug that caused segmentation fault
5723           a news folder was selected without using ja message catalog.
5724         * src/utils.h: attached G_GNUC_PRINTF() to printf() like functions.
5725         * src/Makefile.am: added `-DG_LOG_DOMAIN=\"Sylpheed\"' to
5726           INCLUDES.
5727
5728 2000-05-01
5729
5730         * src/automaton.[ch]
5731           src/inc.[ch]
5732           src/pop.[ch]: re-implemented POP3 fetching routines using
5733           finite-state automaton model (thanks to Hiramatu).
5734         * src/inc.c: fixed a bug that caused unwilled quitting of program
5735           when connection to mail server failed. And fixed a memory leak bug.
5736         * src/summaryview.c: made the focus move to FolderView when left
5737           cursor key is pressed.
5738
5739 2000-04-30
5740
5741         * src/textview.c: textview_write_line(): modified quotation
5742           discerning routine a bit.
5743
5744 2000-04-29
5745
5746         * version 0.3.4
5747
5748         * src/procmime.[ch]: moved MIME decorder from src/textview.c to
5749           src/procmime.c.
5750         * src/mimeview.[ch]: implemented saving of multipart message. And
5751           supported MIME encoded file name.
5752         * src/summaryview.c: implemented `Save as'.
5753
5754 2000-04-28
5755
5756         * src/prefs_common.[ch]: implemented an interface for setting the
5757           display item of SummaryView.
5758         * src/addressbook.c
5759           src/account.c: made the column titles of those don't take key
5760           focus.
5761
5762 2000-04-26
5763
5764         * src/textview.c: implemented BASE64 decoding and display.
5765
5766 2000-04-25
5767
5768         * src/prefs_common.[ch]: added members which decide whether
5769           each item of SummaryView is displayed or not.
5770         * src/headerwindow.c
5771           src/logwindow.c: made those windows closed when escape key is
5772           pressed.
5773         * src/headerview.c: disused ScrolledWindow.
5774         * src/base64.c: from64tobits(): modified so that it recognize '\n'
5775           as the last of line as well as '\r'.
5776
5777 2000-04-24
5778
5779         * src/headerview.c: disabled word wrap and line wrap of the text
5780           widget.
5781
5782 2000-04-24
5783
5784         * version 0.3.3
5785
5786         * src/prefs_common.c: prefs_assort_create(): added some headers
5787           to the default headers for assortment.
5788
5789 2000-04-23
5790
5791         * src/procmsg.c: fixed a bug that caused segmentation fault if
5792           the permission of a message was denied on parsing the header
5793           (thanks to wakai@UEC univ.).
5794         * src/mimeview.c: made it pass key press event to SummaryView.
5795
5796 2000-04-21
5797
5798         * src/main.h
5799           src/alertpanel.c: modified font specifications so that they match
5800           to better fonts.
5801         * src/utils.[ch]: added wide-character functions for FreeBSD support.
5802           Added the existence check of <wchar.h>.
5803         * acconfig.h
5804           configure.in: added wint_t and libxpg4 check for FreeBSD support.
5805         * src/unmime.c: modified so that it checks the existence of
5806           <alloca.h>.
5807           Above three are a contribution from Sasaki. Thanks!
5808
5809 2000-04-18
5810
5811         * src/main.h: decreased default height of window.
5812
5813 2000-04-17
5814
5815         * src/procmime.c: fixed a bug that eliminated the parenthesis in
5816           attribute value that was double-quoted.
5817
5818 2000-04-15
5819
5820         * version 0.3.2
5821
5822         * src/mimeview: implemented multipart message parser and display.
5823         * src/procmime.c: procmime_scan_content_type():
5824           supported multiple elements.
5825         * src/textview.c: supported multipart message and clean up the code.
5826
5827 2000-04-14
5828
5829         * src/summaryview.c: added size column and sorting by size.
5830         * src/mainwindow.c: added `Sort by size' to sort menu.
5831         * src/procmime.c: fixed a bug that caused buffer overrun and
5832           segmentation fault.
5833         * src/procmime.c: generalized Content-Type parsing.
5834
5835 2000-04-13
5836
5837         * version 0.3.1
5838
5839         * src/textview.c: supported MIME headers and
5840           Content-Transfer-Encoding: quoted-printable.
5841
5842 2000-04-12
5843
5844         * src/messageview.[ch]
5845           src/textview.[ch]: separated MessageView into two classes.
5846         * src/procmime.[ch]: added for MIME message handling.
5847
5848 2000-04-11
5849
5850         * src/mimeview.[ch]: added for MIME message handling.
5851         * configure.in: added wctype.h and wchar.h existence check.
5852
5853 2000-04-10
5854
5855         * src/procmsg.[ch]
5856           src/procheader.[ch]: some code cleanups.
5857         * src/messageview.[ch]: integrated HeaderView.
5858
5859 2000-04-09
5860
5861         * version 0.3.0
5862
5863 2000-04-08
5864
5865         * src/addressbook.c: Made the tree sorted when folder/group is
5866           added or edited.
5867         * src/xml.c: xml_compare_tag(): fixed a bug that caused segmentation
5868           fault if the current tag was empty.
5869         * src/mainwindow.c: made the state of MainWindow saved.
5870
5871 2000-04-08
5872
5873         * version 0.3.0pre1
5874
5875         * src/addressbook.c: fully implemented address group editing.
5876           Fixed a bug that wrongly confirmed deletion of address when
5877           escape key was pressed on alert dialog.
5878
5879 2000-04-07
5880
5881         * src/addressbook.c: added menu bar. And enabled hierarchical
5882           folder.
5883         * src/prefs_account.c: modified so that it allows not to specify
5884           pop server.
5885         * src/inc.c: inc_account_mail(): modified so that if receiving
5886           server isn't specified, it does nothing.
5887
5888 2000-04-05
5889
5890         * version 0.2.9
5891
5892         * src/addressbook.c: almost fully implemented addressbook functions.
5893
5894 2000-04-04
5895
5896         * src/compose.c: fixed a bug that caused segmentation fault when
5897           `File->Insert file' was selected more than twice.
5898
5899 2000-04-03
5900
5901         * version 0.2.9pre4
5902
5903         * src/addressbook.[ch]: implemented creation of new folder and group,
5904           and deletion of folder and group. And fully implemented
5905           addressbook_delete_object() which deletes the specified object
5906           recursively.
5907
5908 2000-04-02
5909
5910         * src/addressbook.c: implemented registration of address and multiple
5911           appending to Compose address entry.
5912         * src/menu.[ch]: added a function menu_set_insensitive_all() that
5913           turn all menu items insensitive.
5914         * src/folderview.c: some code cleanup.
5915
5916 2000-04-01
5917
5918         * src/account.c
5919           src/prefs_common.c: fixed a bug on getting the number of CList
5920           rows.
5921
5922 2000-03-30
5923
5924         * version 0.2.9pre3
5925
5926         * src/folderview.c: fixed a bug that caused warnings when tree was
5927           expanded/collapsed on the first operation.
5928
5929 2000-03-29
5930
5931         * src/addressbook.c: addressbook_list_selected(): made it be able
5932           to handle multiple address.
5933         * src/compose.c: modified so that when Bcc: is toggled, corresponding
5934           AddressBook also toggle it.
5935         * src/mainwindow.c:
5936           main_window_create(): moved gtk_widget_set_uposition() before
5937           gtk_widget_show() so as not to cause window flickering.
5938           main_window_get_position(): replaced gdk_window_get_position()
5939           with gdk_window_get_root_origin() to acquire correct window
5940           position (Thanks to shigeri for these modifications).
5941
5942 2000-03-27
5943
5944         * src/filesel.c: made it selects home directory on the first time
5945           it is called.
5946
5947 2000-03-26
5948
5949         * src/utils.c: conv_mb_alnum(): modified so that it uses character
5950           conversion table.
5951         * src/foldersel.c: made the folder tree take focus when the dialog
5952           is shown.
5953
5954 2000-03-26
5955
5956         * version 0.2.9pre2
5957
5958         * src/addressbook.c: implemented addressbook_export_to_file() and
5959           related functions.
5960
5961 2000-03-25
5962
5963         * src/xml.[ch]
5964           src/addressbook.c: fixed the variable name for attribute.
5965         * src/prefs_common.[ch]: added a member `conv_mb_alnum'.
5966         * src/utils.[ch]: added conv_mb_alnum() that converts multi-byte
5967           alphabet and numeric into single-byte one.
5968         * src/messageview.c: messageview_show(): made it pass conv_mb_alnum()
5969           when conv_mb_alnum flag is on.
5970
5971 2000-03-25
5972
5973         * version 0.2.9pre1
5974
5975         * src/compose.c: modified so that when Addressbook is open by a
5976           Compose and it is closed, target of Addressbook is reset.
5977         * src/addressbook.c: made it work with Compose.
5978
5979 2000-03-24
5980
5981         * configure.in: AM_PATH_{GLIB, GTK}: raised the required version of
5982           GTK+ and GLIB to 1.2.6.
5983         * src/xml.[ch]: more implementation of XML parser.
5984         * src/addressbook.c: implemented addressbook parsing and displaying
5985           routine.
5986
5987 2000-03-21
5988
5989         * src/folderview.c: folderview_scan_folder(): modified so that if
5990           a folder's message number is zero, set new, unread and total number
5991           to zero.
5992
5993 2000-03-20
5994
5995         * src/xml.[ch]: added for XML handling used by addressbook.
5996         * src/folderview.c: modified so that Trash folder is skipped
5997           when an unread folder is selected automatically by space key.
5998
5999 2000-03-18
6000
6001         * src/summaryview.c: fixed a bug that cursor was turned into watch
6002           forever when a newsgroup was selected.
6003
6004 2000-03-18
6005
6006         * version 0.2.8
6007
6008 2000-03-17
6009
6010         * src/mainwindow.[ch]: implemented counting on setting cursor
6011           type. And modified the menu of `thread view' and `unthread view'.
6012         * src/summaryview.c: enabled thread-toggling on opening folder.
6013         * src/prefs_common.[ch]: added a member `enable_thread' to determine
6014           whether summary view builds thread or not when a folder is open.
6015
6016 2000-03-15
6017
6018         * src/summaryview.c: modified popup sensitivity function a bit.
6019
6020 2000-03-13
6021
6022         * version 0.2.7
6023
6024         * src/addressbook.[ch]: more implementation of the interface of
6025           addressbook.
6026         * src/compose.c: connected to addressbook object.
6027         * src/folderview.[ch]: folderview_compare_path():
6028           modified so that absolute path is correctly compared.
6029           And added folderview_select_node().
6030           And modified folderview_scan_folder() so that it update the summary
6031           when asked.
6032         * src/import.c: made it update folder tree when imported mbox.
6033         * src/summaryview.c: modified according to the changes of
6034           folderview.c. And modified so that it display alert dialog if
6035           source folder is identical to destination.
6036           added summary_set_popup_sensitive() that set the sensitivity of
6037           popup menu according to the context. And made all of the items of
6038           popup menu insensitive when summary is cleared.
6039         * src/procmsg.c: procmsg_move_messages_with_dest():
6040           modified so that if source folder is identical to destination,
6041           abort its process.
6042         * src/summary_search.c
6043           src/manage_window.c: modified so as not to print warning to console
6044           when alert dialog appeared twice.
6045         * src/filesel.c: made file selection dialog transient.
6046
6047 2000-03-11
6048
6049         * src/manage_window.[ch]: added callback function
6050           manage_window_focus_out().
6051         * src/account.c
6052           src/inputdialog.c
6053           src/mainwindow.c
6054           src/prefs_account.c
6055           src/prefs_common.c
6056           src/summary_search.c: added focus_out_event signal handler.
6057         * src/addressbook.[ch]: added preliminary addressbook code.
6058
6059 2000-03-06
6060
6061         * src/utils.h: added a macro Xalloca() that does alloca() and
6062           handles the exception.
6063         * src/import.c: made the import dialog transient window and enabled
6064           cancelling by escape key.
6065
6066 2000-03-04
6067
6068         * version 0.2.6
6069
6070         * src/compose.c: fixed a bug that caused memory leak when compose
6071           window was closed.
6072
6073 2000-03-03
6074
6075         * src/nntp.h: increased NNTP message buffer size for XOVER strings
6076           which is too long.
6077
6078 2000-02-28
6079
6080         * src/summaryview.c: binded step-forward and step-backward to each
6081           Control-n and Control-p.
6082         * src/filter.c: filter_read_str(): fixed a memory leak bug and
6083           replaced g_malloc() for allocating the buffer with alloca().
6084         * src/procheader.c: procheader_get_fromname(),
6085                             procheader_date_get_localtime()
6086           src/utils.c: conv_euctojis()
6087           src/compose.c: compose_quote_parse_fmt()
6088           src/prefs.c: prefs_set_data_from_text()
6089                        prefs_set_text(): replaced g_malloc() with alloca().
6090
6091 2000-02-26
6092
6093         * version 0.2.5
6094
6095         * src/logwindow.c: improved log_window_append() so that it shows
6096           warning, error and normal message with different colors.
6097         * src/utils.[ch]: added functions log_message(), log_warning(), and
6098           log_error() that show normal message, warning, and error for each.
6099           And modified many warning messages to use these.
6100         * src/messageview.c: messageview_init(): made it set colors of
6101           quotation and URI to black when failed to allocate colors.
6102         * src/news.c: news_parse_xover(): replaced g_malloc() for allocating
6103           the buffer with alloca().
6104
6105 2000-02-25
6106
6107         * src/folderview.c: fixed a bug that didn't put previously selected
6108           folder name in text entry. In addition to that, made some
6109           modifications.
6110
6111 2000-02-24
6112
6113         * version 0.2.4
6114
6115         * src/logwindow.[ch]: added log window that displays protocol log.
6116         * src/about.c: adjusted the size of dialog.
6117         * src/folderview.c: made it select a folder when double-clicked.
6118
6119 2000-02-23
6120
6121         * src/prefs_common.[ch]: added an item `translate_header' that
6122           decides whether header name like `From:' or `Subject:' is
6123           translated or not.
6124         * src/compose.c: made it show alert dialog when receiptor isn't
6125           entered.
6126         * src/inc.c: some code cleanups.
6127
6128 2000-02-22
6129
6130         * version 0.2.3
6131
6132         * src/compose.c: made header entries move those focus to next
6133           entry or text widget when activated. And sorted out the menu items.
6134         * src/mainwindow.[ch]
6135           src/prefs_common.[ch]
6136           src/main.c: made it save the sizes of widgets and the position of
6137           window when quitting.
6138         * src/prefs_common.c: set a14, k14 fontset as default message font.
6139         * src/about.c: changed the appearance of about dialog using text
6140           widget and so on.
6141         * src/recv.c: modified recv_write() so that it converts an escaped
6142           From_ line.
6143
6144 2000-02-20
6145
6146         * version 0.2.2
6147
6148         * src/compose.[ch]: supported Bcc.
6149
6150 2000-02-19
6151
6152         * version 0.2.1
6153
6154         * src/utils.[ch]: added function to_number() that examines string
6155           and if that is a number string, return its value.
6156         * src/procmsg.c: fixed a bug that caused malfunction when non-digit
6157           character was included in file name.
6158
6159 2000-02-18
6160
6161         * version 0.2.0
6162
6163         * src/folderview.c: fixed a bug that caused segmentation fault
6164           when opened folder node was deleted (thanks to Hiramatu).
6165           And implemented folderview_rm_server_cb() which removes news server.
6166         * src/mbox.c: modified a warning message.
6167
6168 2000-02-13
6169
6170         * version 0.2.0alpha-pre8
6171
6172         * src/mainwindow.c: inc_all_account_mail_cb(): made it select inbox
6173           folder to prevent the probrem when current folder is updated.
6174         * src/summaryview.c: summary_execute(): made it write to summary
6175           cache when executed.
6176
6177 2000-02-12
6178
6179         * version 0.2.0alpha-pre7
6180
6181         * src/utils.[ch]: added path_cmp() that compares two paths ignoring
6182           trailing directory separator.
6183         * src/folderview.[ch]
6184           src/summaryview.[ch]: modified so that folder tree is updated
6185           when messages are moved or deleted.
6186         * src/inc.c: some code cleanup.
6187
6188 2000-02-11
6189
6190         * version 0.2.0alpha-pre6
6191
6192         * src/utils.[ch]: added get_domain_name() that return domain
6193           name as a static string.
6194         * src/compose.c: compose_generate_msgid(): modified so that even
6195           if current address doesn't contain '@', it generates a decent
6196           message ID.
6197         * src/send.c: some code cleanup.
6198
6199 2000-02-10
6200
6201         * src/folderview.c: modified the behavior of folder tree when
6202           the folder is right-clicked.
6203         * src/compose.c: compose_encode_header(): added irresponsible
6204           buffer overrun check.
6205
6206 2000-02-09
6207
6208         * version 0.2.0alpha-pre5
6209
6210         * updated gettext and libtool.
6211         * configure.in: modified localedir definition so that message
6212           catalogs are installed into correct directories.
6213         * src/folderview.c
6214           src/mainwindow.c: modified them so that a folder can be reopen
6215           even if it is currently open.
6216         * src/prefs_common.[ch]
6217           src/messageview.c: added an option that toggle the coloration of
6218           message.
6219
6220 2000-02-08
6221
6222         * version 0.2.0alpha-pre4
6223
6224         * src/mainwindow.c
6225           src/messageview.c: fixed a bug that broke memory on allocating
6226           colors.
6227
6228 2000-02-07
6229
6230         * src/folderview.c: some bug fixes on selecting folder.
6231
6232 2000-02-07
6233
6234         * version 0.2.0alpha-pre3
6235
6236         * src/folderview.c
6237         * src/summaryview.[ch]: some code cleanups.
6238         * src/messageview.c: fixed a color allocating bug (maybe).
6239
6240 2000-02-06
6241
6242         * version 0.2.0alpha-pre2
6243
6244         * src/folderview.[ch]: made folder view not open selected folder
6245           unless return or space key is pressed, or clicked by mouse
6246           button 1 or 2.
6247         * src/inc.c: some code cleanups.
6248         * TODO.jp: added some items.
6249
6250 2000-02-05
6251
6252         * version 0.2.0alpha-pre1
6253
6254         * src/summaryview.[ch]: fixed a bug that broke summary thread
6255           when deleted duplicated messages (thanks to BONAIM).
6256           And some code cleanup.
6257         * src/procmsg.[ch]: renamed procmsg_move_messages() to
6258           procmsg_move_messages_with_dest(), and replaced former with
6259           new function which doesn't specify destination.
6260         * src/prefs_common.c
6261           src/gtkutils.c: some memory leak fixes of linked lists.
6262         * src/utils.[ch]: added list_remove_all() to remove all elements
6263           of doubly-linked list.
6264         * src/inc.[ch]: added inc_all_account_mail() that incorporates
6265           new messages of all accounts.
6266         * src/account.[ch]: added account_foreach() to process each accounts.
6267         * added TODO.jp
6268
6269 2000-02-04
6270
6271         * version 0.1.23alpha
6272
6273         * src/inc.c: made the folder tree update the message number
6274           when incorporated new messages.
6275         * src/folderview.[ch]: added a function folderview_scan_folder()
6276           to scan one folder on the view, which is specified by folder name.
6277
6278 2000-02-02
6279
6280         * version 0.1.22alpha
6281
6282         * src/prefs_account.[ch]: added the setting of assorting on
6283           receiving.
6284         * src/inc.c: supported assorting on receiving.
6285         * src/procmsg.c: cleaned up the code.
6286         * src/news.c: fixed a bug that locked up when failed to get xover.
6287         * src/compose.c: made a message unmark that is put into specific
6288           folders.
6289
6290 2000-02-01
6291
6292         * version 0.1.21alpha
6293
6294         * src/folderview.c
6295           src/summaryview.c: implemented the function 'go to next folder
6296           when no unread message found.'
6297         * src/summaryview.c: made connection state displayed on the
6298           status bar when connecting to a news server.
6299         * src/compose.c: changed X-Mailer: header field string a bit.
6300         * src/prefs_common.c: implemented residual functions of assortment.
6301
6302 2000-01-31
6303
6304         * version 0.1.20alpha
6305
6306         * src/prefs_common.c: implemented reading/writing/register/deletion
6307           of assortment setting.
6308         * src/mainwindow.c: slightly modified the appearance of statusbar.
6309         * src/account.c: account_delete(): fixed a bug that didn't assigned
6310           the pointer to GList when an account was deleted.
6311
6312 2000-01-29
6313
6314         * src/procmsg.c: procmsg_get_mark_sum(): fixed a bug that failed
6315           to read mark file (thanks to BONAIM).
6316         * src/prefs_common.c: added the interface of assortment setting.
6317
6318 2000-01-28
6319
6320         * src/summaryview.c: fixed a bug that didn't redraw marking properly
6321           when displaying an unread message with left-click (thanks to
6322           shigeri).
6323
6324 2000-01-27
6325
6326         * src/summaryview.[ch]: added functions for assortment.
6327         * src/about.c: added a button to close window.
6328
6329 2000-01-26
6330
6331         * src/procmsg.c: fixed a bug that didn't add news flag correctly.
6332         * src/compose.c: fixed a bug that can't reply to a news article.
6333         * src/filter.[ch]: added for message filtering.
6334         * src/procheader.[ch]: added procheader_get_unfolded_line()
6335           to process filtering. And added procheader_get_header_list()
6336           that reads headers of a message and store them on the memory,
6337           and procheader_header_list_destroy() that removes all headers
6338           read by procheader_get_header_list().
6339
6340 2000-01-25
6341
6342         * version 0.1.19alpha
6343
6344         * src/news.c: modified so that it retrieves only overview information
6345           that is not yet cached.
6346         * src/procmsg.[ch]: modified for news handling.
6347
6348 2000-01-24
6349
6350         * src/news.c: supported xover.
6351         * src/mbox.c: fixed a bug that didn't handle empty line correctly
6352           (Thanks to shigeri).
6353
6354 2000-01-23
6355
6356         * version 0.1.18alpha
6357
6358         * src/procmsg.[ch]: modified some functions so that they can
6359           handle news folder.
6360         * src/news.c: added header cache routine.
6361         * src/procheader.c: fixed a bug that caused memory leak when some
6362           header was duplicated.
6363           And added Newsgroups: in parsing headers.
6364         * src/summaryview.c: added news article cache routine.
6365         * src/compose.c: made it be able to reply/forward news article.
6366
6367 2000-01-22
6368
6369         * src/compose.c: fixed a bug that failed to parse To: header
6370           if a comma is included in double quotation (Thanks to shigeri).
6371         * src/mbox.c: modified the code for processing mbox so that it
6372           can handle unescaped From_ line correctly.
6373
6374 2000-01-21
6375
6376         * version 0.1.17alpha
6377
6378         * src/foldersel.c: fixed a bug that didn't display folder tree.
6379           And added the register routine for news server and group setting.
6380
6381 2000-01-20
6382
6383         * version 0.1.16alpha
6384
6385         * src/statusbar.[ch]: added statusbar_puts_all().
6386           statusbar_puts(): made it truncate a string that is too long.
6387         * src/folderview.[ch]: changed CTree's row data from string
6388           to FolderInfo structure.
6389           And implemented popup menu that registers news server and group.
6390         * src/messageview.c: modified short header display routine.
6391
6392 2000-01-19
6393
6394         * added src/news.[ch] for NetNews session management.
6395         * src/summaryview.[ch]: added NetNews reading codes.
6396
6397 2000-01-18
6398
6399         * src/mainwindow.c
6400           src/prefs_common.[ch]: made them preserve toolbar style.
6401         * src/main.c: made it save configuration before exiting.
6402         * src/summaryview.c: modified summary status display routine.
6403         * added src/nntp.[ch] for handling low level NNTP session.
6404
6405 2000-01-17
6406
6407         * added src/progress.[ch] for displaying progress.
6408         * src/inc.c: modified progress dialog routines to use
6409           src/progress.[ch].
6410         * src/folderview.[ch]: added preliminary NetNews supporting code.
6411
6412 2000-01-16
6413
6414         * version 0.1.15alpha
6415
6416         * src/main.c
6417           src/folderview.c: some permission fixes.
6418         * src/folderview.c: implemented folder creation/renaming/removing.
6419         * src/utils.[ch]: added remove_dir_recursive() that removes
6420           a directory recursively.
6421
6422 2000-01-15
6423
6424         * src/mainwindow.[ch]: added toolbar style selection.
6425         * added src/inputdialog.[ch] to prompt user to enter a string.
6426         * src/summaryview.[ch]: modified the behavior of view on
6427           normal mode.
6428         * src/mbox.c: fixed a bug that couldn't lock file when
6429           lockf() was used (Thanks to shigeri).
6430
6431 2000-01-14
6432
6433         * version 0.1.14alpha
6434
6435         * src/mainwindow.[ch]: changed the appearance of toolbar.
6436           And fixed window handling.
6437         * src/summaryview.c: modified the messages displayed on status bar.
6438         * src/compose.[ch]: added toolbar.
6439         * src/*.xpm: borrowed some icons from gnome-libs (temporary).
6440
6441 2000-01-13
6442
6443         * version 0.1.13alpha
6444
6445         * src/summaryview.c: fixed a bug of threading. And some code
6446           cleanups. And rewrote the routine of deleting duplicated messages
6447           using hash table.
6448         * src/mainwindow.[ch]: added toolbar.
6449
6450 2000-01-12
6451
6452         * version 0.1.12alpha
6453
6454         * src/summary_search.c: if the OS don't have wcsstr(), use wcswcs()
6455           instead.
6456         * src/summaryview.c: changed CTree creating routine as it creates
6457           thread on the fly for speeding up.
6458         * src/procmsg.c: rewrote message processing routines using hash
6459           table for speeding up. It should be considerably faster than
6460           before.
6461
6462 2000-01-11
6463
6464         * version 0.1.11alpha
6465
6466         * po/ja.po: modified msgstr for Solaris standard gettext.
6467         * src/main.c: added config.h inclusion.
6468         * src/compose.c: changed to add replied message's In-Reply-To
6469           message id to References header if it don't have References header.
6470         * src/summaryview.c: changed threading routine to use hash table
6471           for speeding up.
6472
6473 2000-01-11
6474
6475         * version 0.1.10alpha
6476
6477         * po/ja.po: modified msgstr so as not to core dump on Solaris.
6478         * src/main.c: added inclusion of locale.h.
6479           (Thanks to Sato for above.)
6480         * src/mbox.c
6481         * src/socket.c: applied Solaris patch by shigeri with some
6482           modification. (Thanks!)
6483
6484 2000-01-10
6485
6486         * version 0.1.9alpha
6487
6488         * src/compose.c: compose_encode_header(): fixed some bugs.
6489           And modified header generating routines to support proper
6490           References header, and supported Organization header.
6491         * src/procmsg.[ch]
6492           src/procheader.c: removed Cc: and Reply-To: from cache data.
6493         * src/procheader.[ch]: renamed header list structure to HeaderEntry.
6494         * src/summaryview.[ch]: summary_thread_func(): some optimization.
6495           And added summary_pass_key_press_event() to pass key press event
6496           from other widgets.
6497         * src/messageview.c: messageview_key_pressed(): modified so that
6498           key event is passed to summary view even if message view is
6499           separated. (Thanks to wakai@UEC univ. for pointing this out.)
6500
6501 2000-01-09
6502
6503         * version 0.1.8alpha
6504
6505         * src/compose.c: implemented RFC1522, RFC2407 (loosely) compliant
6506           header MIME encoding.
6507         * src/procheader.c: some bug fixes of folded header line processing.
6508         * src/headerview.c: headerview_show(): some bug fixes.
6509
6510 2000-01-07
6511
6512         * version 0.1.7alpha
6513
6514         * src/utils.c: conv_euctojis(): fixed a bug that didn't add
6515           kanji-out sequence [ \033 ( B ] when input string was ended
6516           with kanji. (Thanks to Nozomu Kobayashi for pointing this out.)
6517         * src/compose.c: compose_encode_header(): changed as it outputs
6518           encoded string to another buffer.
6519           And implemented a faculty to save sent message to outbox and
6520           to queue message that failed to send (preliminary).
6521           And, finally implemented proper To: and Cc: processing :)
6522         * src/folderview.c: added preliminary right-clicking popup menu
6523           for operating folders.
6524         * some permission fixes at creating or copying file.
6525
6526 2000-01-07
6527
6528         * version 0.1.6alpha
6529
6530         * src/procheader.c: fixed a bug that didn't null-terminate
6531           header list and caused segmentation fault.
6532
6533 2000-01-06
6534
6535         * version 0.1.5alpha
6536
6537         * src/procheader.[ch]: added function procheader_get_one_field()
6538           that gets one header field that matches the header list.
6539           And removed procheader_get_unfolded_line(), which is less generic.
6540           And rewrote procheader_get_header_fields() using
6541           procheader_get_one_field().
6542         * src/summaryview.c: some bug fixes of key input scan routine.
6543         * README, README.jp: modified documents a bit.
6544
6545 2000-01-05
6546
6547         * src/menu.c: menu_set_sensitive(): fixed a bug that if a menu item
6548           had a submenu, set sensitivity of the submenu, not the item.
6549
6550 2000-01-05
6551
6552         * version 0.1.4alpha
6553
6554         * src/summaryview.c: fixed a bug that caused segmentation fault
6555           when empty summary view was center-clicked.
6556           And fixed a bug that freed moving folder strings when marked
6557           as unread.
6558           If current folder is trash, don't delete message.
6559         * src/summaryview.[ch]
6560         * src/mainwindow.c
6561         * src/procmsg.[ch]: added update-cache mode (discards previous cache).
6562
6563 2000-01-04
6564
6565         * src/procheader.[ch]: more optimization of header processing
6566           routine. And added a new function procheader_get_header_fields()
6567           that receives an array of header name as a parameter and
6568           set header bodies.
6569         * src/utils.[ch]: added remove_return() for removing return code.
6570         * src/unmime.c: added remove_return() on the last of UnMimeHeader().
6571
6572 2000-01-03
6573
6574         * src/compose.c: if message body is ascii only, set US-ASCII as
6575           charset in Content-Type.
6576         * src/main.[ch]
6577         * src/prefs.c
6578         * src/prefs_common.c
6579         * src/prefs_account.c
6580         * src/account.c: changed the location of rc files.
6581         * src/account.c: enabled closing window when escape key is pressed.
6582
6583 2000-01-02
6584
6585         * version 0.1.3alpha
6586
6587         * src/compose.c: fixed a bug that caused segmentation fault
6588           when sending failed.
6589           And relocated header-generation routines from src/send.c.
6590         * src/send.c: moved header-generation routines to src/compose.c.
6591         * src/prefs.c: added '~' to home directory expansion.
6592         * src/prefs_account.[ch]: added signature file path configuration.
6593         * src/prefs_common.[ch]: added spool path configuration.
6594         * src/inc.c: changed the method of user name acquisition to use
6595           g_get_user_name().
6596
6597 2000-01-01
6598
6599         * version 0.1.2alpha
6600
6601         * added ChangeLog (this file), ChangeLog.jp.
6602         * some code cleanups.
6603         * added manage_window.[ch] for transient window management.
6604         * src/procheader.c: optimized header processing routine a bit.
6605         * src/send.c: fixed exception handling on connection.
6606         * src/inc.c: added exception handling on getting user name.
6607
6608 2000-01-01
6609
6610         * version 0.1.1alpha
6611
6612         * src/send.c: fixed a bug that didn't add Content-Type: header.
6613
6614 2000-01-01
6615
6616         * version 0.1.0alpha
6617
6618         * initial release.