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