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