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