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