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