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