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