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