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