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