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