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