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