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