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