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