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