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