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