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