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