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