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