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