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