4 src/prefs_common.[ch]: remember the size and position of
6 main_window_set_widgets(): fixed a bug that the hidden items on
7 the header view were shown when changing the view type.
8 Instead of setting the window size, set the each view's size.
12 * src/compose.c: compose_select_account(): don't append signature
14 compose_insert_sig(): don't insert "\n\n" if signature string
15 doesn't exist. Always insert signature at the end of message.
19 * improved sylpheed.spec.in (thanks to Andre Oliveira da Costa).
23 * minor code cleanups for the folder system.
24 * src/compose.c: compose_queue(), compose_draft_cb(): code cleanup.
25 * src/folder.c: code cleanups.
27 src/mh.c: calculate message numbers inside the functions.
28 * src/procmsg.c: procmsg_set_flags(): calculate message numbers.
29 * src/summaryview.[ch]: don't calculate and preserve message numbers
38 src/summaryview.c: renamed *_msgs_with_dest() to *_msgs().
42 * src/imap.[ch]: use CAPABILITY to use protocol extentions.
43 imap_greeting(): parse initial server greeting. Also support
46 imap_cmd_append(): use APPENDUID responses if UIDPLUS is supported.
50 * src/imap.c: imap_get_flag_str(): fixed a buffer overrun.
58 * src/main.c: main(): don't save config files on startup.
63 imap_get_msg_list(): removed redundant UID SEARCH ALL when not
65 Unset MSG_NEW flag if \Seen is set.
66 imap_get_uncached_messages(): fetch all messages if both first_uid
71 * src/imap.c: revamped the implementation so that it always
72 exactly reflects the state of IMAP4 servers.
73 imap_get_msg_list(): examine the state of messages using
75 imap_delete_cached_message(): removes single message cache.
76 imap_get_uid(): removed.
77 imap_cmd_search(): new. It issues UID SEARCH command and returns
79 imap_cmd_gen_recv(): made the length of strings unrestricted.
80 imap_get_uid_table(): returns a hash table from UID array.
87 src/news.[ch]: added Folder::close() method.
88 * src/summaryview.c: summary_clear_list(): call folder_item_close().
92 * flags are now taken over when copying messages into IMAP folders
99 mh_add_msgs(): flags can be also specified when adding files.
100 * src/folder.[ch]: added assertions for virtual functions.
101 * src/procmsg.[ch]: procmsg_get_message_file_list(): return the list
103 procmsg_message_file_list_free(): new.
107 * src/procmsg.h: changed MsgPermFlags and MsgTmpFlags from enum to
108 guint32 for portability (thanks to Alfons).
109 * src/imap.c: imap_add_msgs(): removed redundant unlink().
114 session_read_msg_cb()
115 session_read_data_cb(): fixed a bug that ran into infinite loop
116 if connection was closed by remote host (thanks to Yoichi Imai).
117 Added SESSION_EOF state to SessionState.
118 session_is_connected(): new.
119 * src/inc.[ch]: inc_put_error()
120 src/send_message.c: send_put_error(): also put log messages.
124 * more optimization of IMAP4.
125 * src/folder.[ch]: added a method add_msgs() that adds multiple files
127 Removed redundant scan() for the operations of FolderItem.
128 * src/imap.[ch]: implemented Folder::add_msgs() and optimized move
129 and copy from other Folder instances.
130 * src/mh.[ch]: implemented Folder::add_msgs() and cleaned up the code.
131 mh_fetch_msg(): scan folder if required.
132 * src/procmsg.[ch]: procmsg_get_message_file_list(): returns file
133 list from message list.
134 * src/summaryview.c: don't remove MSG_MARKED flags on
135 delete/move/copy operation.
136 summary_display_msg_full(): removed redundant message fetching.
140 * optimized move/copy/delete/mark operations of IMAP4 by using
141 sequence set when issuing commands (adopted claws' implementation
142 with cleaning it up).
144 imap_set_message_flags()
147 imap_cmd_store(): take sequence set string instead of UID number.
148 imap_do_copy_msgs_with_dest(): optimized by using sequence set.
149 imap_cmd_fetch(): use BODY.PEEK instead of BODY.
150 imap_remove_all_msg()
151 imap_set_message_flags(): use FLAGS.SILENT instead of FLAGS.
153 src/summaryview.c: use imap_msg_list_{set,unset}_perm_flags()
154 instead of issuing commands for each message.
159 src/prefs_account.[ch]
161 src/session.[ch]: added an option to enable/disable non-blocking
166 * src/compose.c: compose_attach_append(): display message's subject
167 when attaching message/rfc822 file.
174 session_read_msg_cb()
175 session_read_data_cb(): optimized by removing sock_peek() and
176 buffering received data in user space (correctly implemented
181 * src/session.c: reverted the previous change because it couldn't
182 handle data receiving after messages correctly.
188 session_read_msg_cb(): optimized by removing sock_peek() and
189 buffering messages in user space.
193 * src/imap.[ch]: refactored.
194 Changed all functions that have SockInfo arguments to take
196 Made imap_cmd_count an instance variable: IMAPSession::cmd_count.
197 imap_open(): only establish TCP (or SSL) connection.
198 imap_session_new(): process greeting and authentication here.
202 * src/imap.[ch]: implemented CRAM-MD5 authentication, and made code
204 * src/prefs_account.[ch]: added option menu for IMAP4 authentication
205 type in Receive tab, and hide other protocols' frames.
209 * src/mainwindow.c: send_queue_cb(): don't scan folder twice if
211 * src/procmsg.c: procmsg_send_queue(): return number of sent
217 main_window_set_toolbar_sensitive()
218 main_window_set_menu_sensitive(): removed the locking of file
219 operations while receiving mail.
223 * src/folder.[ch]: folder_item_remove_msg(): take MsgInfo as an
224 argument instead of message number.
225 * src/imap.[ch]: imap_remove_msg(): reimplemented using
227 * src/mh.[ch]: mh_do_move(): reimplemented using
228 mh_do_move_msgs_with_dest().
229 mh_copy_msg(): reimplemented using mh_copy_msgs_with_dest().
230 * src/procmsg.c: procmsg_send_queue(): modified to use message list.
234 * src/rfc2015.c: rfc2015_is_encrypted(): check MimeInfo::mime_type
235 to suppress some warnings.
236 * src/logwindow.c: log_window_append(): don't scroll up when trimming
241 * src/compose.c: add 'Content-Disposition: inline' to a text/plain
242 part when using PGP/MIME signing.
250 * src/defs.h: changed UI_REFRESH_INTERVAL from 40msec to 50msec.
251 * src/session.c: session_read_msg_cb(): make it always fail if
252 sock_read() returns by error.
253 * src/socket.[ch]: sock_check(): handle exceptional SSL condition.
254 sock_has_pending_data(): removed.
255 Removed debug output.
256 * src/send_message.c: send_recv_message(): display messages to
261 * src/inc.[ch]: update received message number on CList while
263 * src/session.c: session_read_data_cb(): optimized by removing
264 g_malloc() and memcpy().
268 * src/socket.[ch]: sock_add_watch(): new. It monitors SSL by original
269 watch functions (otherwise uses g_io_add_watch()).
270 * src/session.[ch]: removed previous workarounds, and replaced
271 g_io_add_watch() with sock_add_watch().
275 * src/socket.[ch]: added sock_has_pending_data() which returns TRUE
276 if socket has pending data.
277 * src/session.c: session_recv_msg(), session_recv_data(): check if
278 socket has pending data and call the callbacks immediately in that
279 case (fixes the hang at ESMTP EHLO on SSL).
283 * src/socket.c: check return value in SSL functions.
287 * src/mimeview.c: mimeview_init(): initialize TextView to prevent
288 slowdown caused by GTK+ themes (thanks to Yuri Arapov).
292 * src/session.c: session_read_data_cb(): clear Session::read_data_buf
293 before calling callbacks.
297 * src/socket.c: made socket connection protocol independent.
298 * src/session.c: removed debug g_print().
299 * src/inc.c: made status bar output less verbose, and show counter
300 on main window's progressbar.
304 * src/session.c: added missing #include <errno.h>.
308 * src/session.[ch]: reimplemented the Session system with non-blocking
309 I/O to solve the performance and the code design issue.
310 * src/socket.[ch]: added sock_connect_async() and
311 sock_connect_async_cancel() to enable asynchronous connection.
312 sock_peek(): modified the implementation.
313 * src/pop.c: optimized the receiving of the responses of
318 * src/procmsg.c: procmsg_get_thread_tree(): prevent threading problems
319 when a node is an ancestor (parent / great parent), which mostly
320 happens with circular references (thanks to Phillipe Gramoulle
321 for finding an sample set of messages, and Alfons for the patch).
325 * src/pop3.c: pop3_get_uidl_table(): return empty hash table even if
326 UIDL list is not found (fixes inability of initial retrieval).
330 * src/main.c: added the option '--status-full' which shows the status
331 of each folder specified. The option '--status' also takes
332 following arguments for folders (thanks to Yuri Arapov).
333 * src/folder.[ch]: folder_get_status(): new. it takes the array of
334 folders as the argument and returns their status.
335 folder_count_total_msgs(): removed.
345 src/inputdialog.c: use gtk_main_iteration() instead of gtk_main()
346 to prevent abort when a button is double-clicked.
350 * src/addr_compl.c: invalidate_address_completion(): check if
351 g_completion_list is NULL (thanks to Kazuhiro NISHIYAMA).
355 * src/pop.c: pop3_session_recv_data_finished(): fixed a bug that
356 deleted messages that is to be kept on server (thanks to Tristan
366 sock_set_io_timeout(): new. It sets the timeout interval.
367 sock_gdk_input_add(): removed since it's not used anymore.
368 * src/prefs_common.[ch]: added an option to set the timeout parameter.
372 * src/action.c: fixed a bug that didn't hide user string in
373 create_io_dialog() (thanks to Markus Amersdorfer).
374 Removed ChildInfo::type and added Children::action_type.
378 * src/inc.c: inc_start(): ask every password before retrieving.
379 Don't popup the redundant error dialog.
381 inc_all_account_mail()
382 inc_progress_dialog_set_list(): separated account list display
384 inc_progress_dialog_set_label()
385 inc_recv_data_finished()
386 inc_recv_message(): properly update the dialog when RETR finished.
391 imap_modified_utf7_to_locale()
392 imap_locale_to_modified_utf7(): fixed compilation failure when not
397 * src/procmime.c: procmime_scan_multipart_message(): fixed parsing
398 of message/rfc822 parts.
402 * src/pop.c: pop3_ok(): detect timeout error.
406 * src/imap.c: imap_locale_to_modified_utf7(): fixed the encoding bug
407 when locale strings include '+'.
408 imap_modified_utf7_to_locale()
409 imap_locale_to_modified_utf7(): at least escape/unescape '&' even
410 if iconv() is not supported.
416 compose_get_signature_str(): include separator in signature string.
417 Don't insert separator if signature file is not found.
418 Disabled use of implicit default signature path (~/.signature) when
428 src/quote_fmt_parse.y
429 src/smtp.c: suppress warnings that gcc-3.3 issues.
430 src/stringtable.c: use string_entry_free().
434 * src/compose.c: compose_insert_sig(): fixed the bug that always
435 appended signature separator if signature file was not found.
436 compose_get_signature_str(): fixed the bug that caused crash if
437 signature file cannot be opened.
445 * src/session.c: session_recv_msg(): removed debug print.
452 imap_cmd_fetch(): check for data size that servers return (fixes
453 vulnerability found in BugTraq).
457 * src/addr_compl.c: get_complete_address()
458 src/addressbook.c: addressbook_format_address()
459 src/compose.c: QUOTE_IF_REQUIRED(): quote if name contains
460 characters that is not defined in atext (RFC 2822, 3.2.4. Atom).
461 * src/main.c: main(): set colormap and visual to solve color problem
462 in Solaris (thanks to Markus Schwarzenberg).
470 * src/prefs_account.c: temporarily removed POP before SMTP option.
474 * src/prefs_common.[ch]: changed the description of "Open message when
475 cursor keys are pressed on summary".
476 * src/summaryview.c: summary_show(): open message when always_show_msg
481 * src/logwindow.[ch]: restrict the maximum lines of the log messages
482 to reduce the memory usage.
486 * src/compose.c: compose_insert_sig(): fixed a crash when signature
487 string contains illegal sequence.
488 * src/utils.[ch]: changed get_wcs_len() to get_mbs_len() for accuracy.
492 * major refactoring of MIME structure.
493 * src/procmime.c: procmime_scan_message(): decrypt message if
494 gpgme is enabled. Create multipart tree only if content-type is
495 multipart/* or message/rfc822.
496 procmime_scan_multipart_message(): fixed the scanning of
498 * src/action.c: parse_append_msgpart()
499 src/messageview.c: messageview_show()
500 src/mimeview.c: mimeview_show_message(): use procmime_scan_message()
501 instead of procmsg_open_message() and procmime_scan_mime_header().
502 mimeview_set_multipart_tree(): conform to the new MIME structure.
503 * src/textview.c: textview_show_part(): removed unnecessary check.
504 * src/procmsg.c: procmsg_open_message_decrypted(): fixed the file
505 pointer when decryption failed.
509 * src/ssl.c: ssl_init_socket_with_method(): replaced log_warning()
510 by g_warning(), and log_print() by debug_print().
511 * src/pop.[ch]: added an error code PS_NOTSUPPORTED, and retry with
512 LAST if UIDL is not supported.
516 * src/codeconv.c: conv_get_code_conv_func(): convert to EUC-JP only
517 if it is the current locale encoding when dest_charset_str is NULL.
521 * src/action.c: execute_actions(): fixed crash when no text widget
522 is selected (thanks to Paul and Melvin).
524 src/prefs_actions.c: added missing reference to Claws team in the
531 session_send_data(): fixed a memory leak and data sending bug.
532 * src/send_message.c:
533 send_message_smtp(): fixed focus management.
537 * src/smtp.[ch]: set the response string to SMTPSession::error_msg
539 * src/send_message.c: show error dialog if error occurred.
540 * src/main.c: send_queue()
541 src/mainwindow.c: send_queue_cb(): don't show error dialog here.
545 * src/session.c: session_close(): kill child process only if
546 state is not SESSION_DISCONNECTED.
547 * src/send_message.c: send_cancel_button_cb()
548 src/inc.c: inc_cancel(): don't set Session::state to
549 SESSION_DISCONNECTED.
550 * src/prefs.[ch]: modified the names of prefs_write_*().
551 * src/address.[ch]: removed.
555 * src/compose.c: compose_template_apply(): overwrite recipients.
559 * src/procheader.c: procheader_date_parse(): removed debug print.
560 * src/session.c: changed every g_print to debug_print.
561 session_child_input(): removed unrequired session_close() (it'll
562 be closed anyway after returning FALSE).
563 * src/send_message.c: send_message_smtp(): changed g_print to
568 * src/procheader.c: procheader_procheader_date_parse(): don't add
569 local timezone offset if timezone is unknown.
570 Made the Y2K workaround code to follow RFC 2822.
571 procheader_scan_date_string(): workaround for date strings which
572 don't have timezone specification.
573 * src/utils.c: remote_tzoffset_sec(): return -1 if timezone is
578 * src/action.[ch]: refactored. Also fixed a bug on MIME mode, and
579 some memory leaks on error.
580 action_update_msgview_menu(): new.
581 * src/messageview.[ch]: added "Tools/Actions" menu. Keep window list.
582 messageview_get_selected_mime_part(): returns MimeInfo of selected
583 part when MessageView is in MIME mode.
584 * src/mimeview.[ch]: mimeview_get_selected_part(): returns MimeInfo
586 * src/summaryview.[ch]: summary_get_selected_msg_list(): returns
587 MsgInfo list of selected messages.
591 * src/prefs_filter.[ch]: include original message's headers as
592 the preset keywords. Modified the sizes of the widgets.
593 * src/utils.[ch]: added str_case_equal() and str_case_hash() for
594 case-insensitive hash.
598 * src/procmsg.c: procmsg_get_filter_keyword(): added X-Sequence to
599 auto-detected headers.
603 src/mainwindow.c: modified function names.
604 get_user_string(): Use input_dialog() instead of its own
609 * src/codeconv.[ch]: conv_encode_header(): don't include '(' and ')'
610 in encoded strings if addr_field is TRUE.
611 * src/compose.c: compose_convert_header(): added a flag 'addr_field'.
615 * src/prefs_actions.[ch]: separated action execution routine into
620 * src/prefs_actions.c: minor code cleanup.
624 * src/codeconv.[ch]: conv_iconv_strdup(): fixed the handling of
630 inc_recv_data_progressive()
631 inc_recv_data_finished()
634 send_send_data_progressive()
635 send_send_data_finished(): added assertion.
639 * src/codeconv.[ch]: conv_iconv_strdup(): fixed potential memory
644 * src/codeconv.[ch]: conv_iconv_strdup(): don't include nul character
645 in source buffer since it messed up some encoding conversion (like
650 * src/procmsg.c: procmsg_get_filter_keyword(): unfold headers and
651 extract ID from List-Id header.
652 * src/utils.[ch]: extract_one_parenthesis_with_skip_quote(): removed.
653 extract_list_id_str(): extract ID string from List-Id header.
657 * src/prefs_actions.c: merged from the claws branch. Fixes several
658 bugs and adds some features.
662 * src/compose.c: compose_parse_header(): fixed a bug that unnecessary
663 linebreaks were included on reediting.
665 src/pop.c: fixed typos: 'occured'.
669 * src/compose.[ch]: implemented auto signature replacement on
671 compose_insert_sig(): added a flag to replace current signature.
672 compose_get_signature_str(): new. It returns signature string.
673 compose_insert_command_output(): removed.
674 compose_select_account(): call compose_insert_sig() on account
676 compose_destroy(): fixed a memory leak of UndoMain object.
677 Compose::sig_str: new. It stores current signature string.
678 * src/gtkutils.[ch]: gtkut_stext_find(): new.
679 Renamed gtk_stext_clear() to gtkut_stext_clear().
680 * src/utils.[ch]: get_wcs_len(): returns wide-character length of
682 normalize_newlines(): converts CR+LF and CR into LF.
683 get_command_output(): returns command output.
687 * src/procmsg.[ch]: procmsg_get_filter_keyword(): new. It returns
688 filter keyword for messages.
689 * src/summaryview.c: summary_filter_open(): use
690 procmsg_get_filter_keyword().
691 * src/messageview.c: create_filter_cb(): implemented.
697 inc_put_error(): display server responses on error.
698 * src/pop.[ch]: added Pop3Session::error_msg, and set server responses
703 * src/messageview.[ch]: separated the forced charset of message view
704 in separate window from the main window.
706 textview_show_message()
708 textview_add_part(): use MessageView::forced_charset if specified.
712 * src/mainwindow.c: modified File menu a bit.
713 * src/menu.[ch]: added functions to handle item factory rc strings.
714 * src/messageview.[ch]: added a menu, and made it take over main
715 window's menu shortcuts.
716 added msginfo which is duplicated on display to MessageView.
717 * src/prefs_common.c: prefs_keybind_apply_clicked(): use
718 menu_factory_clear_rc().
722 * send_message.c: send_message_smtp():
723 re-enabled forcing of SMTP AUTH method.
724 Clear temporary password if authentication failed.
725 * smtp.c: output warning to log and set SMTPSession::error_val
727 * smtp.h: changed error value to enum. Added SMTPSession::error_val.
728 * src/mbox.c: proc_mbox(): force updating of folder.
732 * src/pop.h: changed error value to enum.
733 * src/pop.c: pop3_retr_recv(): return PS_IOERR when inc_drop_message()
735 pop3_ok(): return appropriate error value based on current state.
736 Output warning to log if error occurs.
741 src/news.[ch]: refactored. Remove NNTPSockInfo and use NNTPSession
746 * src/inc.c: inc_pop3_session_do(): retrun appropriate error if
747 Session::state == SESSION_ERROR.
748 * po/POTFILES.in: removed src/automaton.c and src/send.c.
749 Added src/send_message.c.
754 src/session.c: fixed breakage of POP3 retrieval.
755 session_recv_data_from_sock_unescape(): read until terminator
756 appears and also return the actual size.
760 * src/automaton.[ch]: removed.
761 * src/session.c: removed some of the debug output.
762 * src/smtp.c: smtp_session_recv_msg(): workaround in case server
763 returns EHLO-style response to HELO command.
764 Ignore all multiline responses except for EHLO since they are
765 allowed for any command.
770 src/pop.c: fixed retrieval of messages which contain dot-escaped
772 session_recv_data(): added a flag for unescape.
773 session_recv_data_from_sock_unescape(): new. It receives message
774 for each line and unescapes dot-escaped lines.
775 Removed the previous workaround.
776 * src/defs.h: decreased UI_REFRESH_INTERVAL to 40 msec.
780 * src/pop.[ch]: workaround for brekage of retrieval when given size
781 and actual one is different.
785 * src/pop.c: pop3_retr_eom_recv(): ignore invalid end of message
786 since some servers sometimes return incorrect message size.
787 * src/news.c: news_session_new(): zero clear NNTPSession object.
788 Don't initialize Session::sock with nntp_sock->sock to prevent
789 double-free of SockInfo.
790 * src/imap.c: zero clear IMAPSession object.
791 imap_cmd_append(): don't close SockInfo.
795 * src/pop.c: pop3_session_recv_msg(): fixed STLS.
800 src/pop.[ch]: reimplemented using new I/O system.
801 * src/session.[ch]: session_recv_data(): new.
802 session_send_data_to_sock()
803 session_recv_data_from_sock(): decreased the frequency of progress
808 * src/smtp.c: smtp_auth_recv(): fixed CRAM-MD5 authentication.
812 * src/session.[ch]: session_start_tls(): new.
813 session_recv_msg(): made it static.
817 * implemented asynchronous network I/O.
818 * src/session.[ch]: the interface to communicate with servers through
821 src/send_message.[ch]: rewrote using new I/O system.
822 * src/socket.[ch]: renamed *_write() to *_write_all(), and made
823 *_write() as just a simple wrapper for write().
824 * src/utils.c: get_outgoing_rfc2822_str(): new. It modifies the
825 message to send with SMTP or NNTP.
826 file_read_stream_to_str(): new.
830 * src/textview.c: textview_button_pressed(): corrected the range of
832 * src/compose.c: compose_wrap_line_all_full(): treat UTF-8 characters
833 represented with more than 2 bytes as 2 character width and 2 bytes
834 one as a single character width as a workaround for wrapping problem.
838 * src/utils.c: subject_compare_for_sort(): allow null strings (fixes
843 * implemented HTML link correctly.
844 * src/html.[ch]: HTMLAttr, HTMLTag: new structure for attributes /
846 html_get_tag(): new. It parses tag and returns HTMLTag object.
847 html_parse_tag(): also parses <a> tags and 'href' attributes.
848 * src/textview.c: textview_write_link(): new. It creates link string.
852 * src/compose.c: compose_wrap_line_all_full(): fixed an infinite
853 loop / crash bug (thanks to Darko Koruga).
854 compose_write_to_file(): put correct charset element when
855 conversion failed but want to send anyway.
859 * src/headerview.c: headerview_show()
860 src/textview.c: textview_write_line(): remove unreadable characters
861 from displayed strings to prevent crashes on multi-byte
863 * src/codeconv.[ch]: conv_unreadable_locale(): new. It was separated
864 from conv_localetodisp().
868 * src/procmsg.c: procmsg_cmp_by_subject()
869 src/summaryview.c: summary_cmp_by_subject(): ignore Re: when
872 subject_compare_for_sort()
873 trim_subject_for_sort(): new.
881 * src/defs.h: added -i option to the default sendmail command.
885 * src/codeconv.[ch]: added missing character encodings and locales.
890 procmsg_get_mark_sum()
891 procmsg_open_mark_file()
892 procmsg_read_mark_file(): take FolderItem instead of directory
897 * src/codeconv.c: conv_encode_header(): fixed a bug that spaces
898 which is on the wrap boundary would be lost when encoding long
899 non-ascii strings (thanks to Sergey Vlasov).
900 Don't force wrapping within a long word until it reaches hard line
901 length limit (998 characters) (workaround for the breakage of
902 long address list with no spaces).
906 * src/prefs_account.c: fixed compile failure when using neither
911 * src/codeconv.c: fixed UTF-8 locale support.
912 conv_get_code_conv_func(): return conv_noconv if locale encoding
913 is UTF-8. Return conv_latintodisp on ISO-8859-* to locale encoding
915 conv_convert(): call conv_iconv_strdup() instead of
916 conv_codeset_strdup().
917 conv_codeset_strdup(): moved some codes into conv_iconv_strdup().
921 * src/prefs_account.[ch]: added an option to use command output for
923 * src/compose.c: compose_insert_sig(): use command output if
925 compose_insert_command_output(): new.
929 * src/main.c: main(): remove lock socket if sylpheed is not running
930 when --status command is executed.
931 lock_socket_remove(): new.
935 * src/codeconv.c: conv_codeset_strdup(): don't convert if current
936 codeset is US-ASCII (or POSIX).
940 * src/codeconv.c: conv_iconv_strdup(): try to skip invalid characters
941 and continue conversion.
945 * src/summaryview.c: summary_selected(): always update widget
950 * src/utils.c: tzoffset_sec(): fixed a bug that displayed wrong
951 date in timezones more than GMT+12 or less than GMT-12.
955 * src/prefs_common.[ch]
956 src/sourcewindow.c: remember the size of source window.
957 * src/md5.c: fixed a compile problem with gcc 3.3.
961 * src/about.c: about_create(): modified the copyright notice.
965 * src/colorlabel.c: don't use pixmaps for label color rect but draw
966 rectangles so we can respect the color map of palette based visuals
967 (fixes the long time crashes on Solaris - thanks to Alfons
972 * src/procheader.c: procheader_date_parse(): made month string case
974 * src/prefs_filter.c: prefs_filter_close(): fixed the crash when the
975 selection list is empty.
979 * src/quote_fmt_parse.y: removed gettext translatable strings.
980 * src/unmime.c: unmime_header(): remove broken characters when
981 code conversion failed.
982 * src/codeconv.c: conv_encode_header(): fixed a bug that broken
983 headers if long words more than 75 characters are entered.
987 * src/prefs_account.c: prefs_account_receive_create()
988 src/utils.c: to_human_readable(): made units translatable.
992 * src/codeconv.c: isprintableeuckanji(): don't allow more than 0xf4
993 at first byte (fixes abort() problem of glibc).
994 * src/html.c: html_read_line(): remove characters which can't be
995 displayed on the current locale.
1000 trim_subject_for_compare(): renamed from trim_subject().
1001 trim_subject(): new. It removes [...] or (...) at the beginning
1003 * src/prefs_folder_item.c
1005 added options for trimming summary / compose subject.
1006 * src/summaryview.c: summary_set_header(): trim subject if the folder
1008 * src/compose.c: compose_reply_set_entry(): trim subject if the folder
1014 LBREAK_IF_REQUIRED(): don't break lines before first word (fixes
1015 X-Face header problem).
1016 conv_encode_header(): allow up to 97 characters for one word.
1020 * src/filter.c: filter_match_condition(): fixed the bug that
1021 second condition ignored regex.
1022 * src/news.h: NewsGroupInfo: use guint for message numbers
1023 (fix count in grouplist dialog) (thanks to Thorsten Maerz).
1027 * src/codeconv.c: conv_encode_header(): fixed a segfault bug
1028 on code conversion failure.
1029 conv_get_charset_str()
1030 conv_get_charset_from_str(): optimized using hash table.
1034 * src/quote_fmt_parse.y:
1035 SHOW_MESSAGE_NO_SIGNATURE, SHOW_QUOTED_MESSAGE_NO_SIGNATURE:
1036 treat only "\n-- \n" as a signature separator.
1040 * src/gtkutils.[ch]: gtkut_ctree_node_prev(): new.
1041 * src/summary_search.c: summary_search_execute(): search collapsed
1047 conv_unreadable_latin(): include 0x7f as an unreadable character.
1048 conv_localetodisp(): don't remove 8bit characters by default.
1049 conv_get_current_charset()
1050 conv_get_outgoing_charset(): return ISO-8859-15 if "@euro" is
1051 appended at the last of locale name.
1052 * src/compose.c: compose_write_to_file(): show from and to encoding
1053 when code conversion failed.
1061 * src/procmsg.h: WRITE_CACHE_DATA(): little speed improvement
1062 (thanks to Colin Leroy).
1063 * src/mh.c: mh_get_msginfo(): added NULL check (thanks to Thorsten
1068 * src/textview.c: textview_write_line(): don't convert if conv is
1073 * src/codeconv.[ch]:
1074 renamed conv_guess_encoding() to conv_guess_ja_encoding().
1075 conv_localetodisp(): new. It removes unreadable characters from
1076 (assumed) current locale string.
1077 conv_codeset_strdup(): convert into ISO-8859-1 if dest_code is
1078 NULL and current locale encoding is US-ASCII.
1079 conv_get_code_conv_func(): return conv_ustodisp if US-ASCII is
1080 specified for destination charset.
1081 * src/textview.c: textview_write_line(): use conv_localetodisp()
1082 instead of strncpy2() if conversion failed.
1086 * src/codeconv.c: conv_iconv_strdup()
1088 imap_modified_utf7_to_locale()
1089 imap_locale_to_modified_utf7(): use ICONV_CONST macro to remove
1090 a warning on some systems.
1091 * src/codeconv.c: conv_iconv_strdup(): flush iconv() output and
1093 Return NULL instead of incomplete string if conversion failed.
1097 * src/summaryview.c: summary_execute(): select appropriate node
1098 if currently selected node is to be deleted.
1099 * src/gtkutils.[ch]: gtkut_ctree_node_is_selected(): new. Returns
1100 TRUE if the specified node is selected.
1104 * src/summaryview.c: summary_status_show(): fixed a occasional crash
1105 on deleting or moving.
1109 * src/codeconv.c: conv_unreadable_eucjp(): made the validity check
1110 of EUC-JP more accurate.
1111 isprintableeuckanji(): new. Use table for validity check of EUC-JP.
1123 * src/quoted-printable.c: qp_encode_line(): fixed linebreak
1124 duplication bug if the source string has CRLF.
1126 canonicalize_str(): new. Returns newly allocated canonicalized
1128 uncanonicalize_file(): new. Uncanonicalize (CRLF -> LF) text.
1129 uncanonicalize_file_replace(): new.
1130 * src/compose.c: always canonicalize body before processing, and
1131 uncanonicalize before returning.
1135 * src/procmime.c: procmime_get_encoding_for_charset(): prefer
1136 ENC_8BIT for Russian charsets.
1137 * src/compose.c: compose_write_to_file(): use base64 when signing
1142 * src/prefs_common.c: prefs_send_create(): added a description for
1143 the setting of Content-Transfer-Encoding.
1147 * src/codeconv.c: fixed locale_table for Russian locales (thanks to
1149 * src/procmime.c: procmime_get_encoding_for_charset(): return
1150 ENC_BASE64 for ISO-8859-5, KOI8-* and Windows-1251.
1151 * src/compose.c: compose_attach_append(): set correct Content-
1152 Transfer-Encoding for message/rfc822.
1153 compose_write_to_file(): enabled user-definable Content-Transfer-
1155 * src/prefs_common.[ch]: added an option for user-defined Content-
1160 * src/quoted-printable.[ch]: qp_encode_line(): fixed a bug if the
1161 line doesn't end with linebreak.
1165 * implemented quoted-printable encoding.
1166 * src/quoted-printable.[ch]: qp_encode_line(): new.
1168 compose_write_to_file()
1169 compose_write_attach(): implemented quoted-printable encoding.
1170 compose_attach_property_create(): enabled quoted-printable menu
1172 * src/procmime.c: procmime_get_encoding_for_charset(): return
1173 ENC_QUOTED_PRINTABLE for ISO-8859-* and CP125* charset.
1174 * src/Makefile.am: added $(LIBICONV) to sylpheed_LDADD for libiconv
1181 src/utils.[ch]: get_abbrev_newsgroup_name(): improved the way
1182 of abbreviation of newsgroup name.
1186 * configure.in: show the result of iconv detection.
1190 * src/codeconv.[ch]: made the transition from libjconv to iconv().
1191 conv_iconv_strdup(): new.
1195 src/prefs_common.c: replaced HAVE_LIBJCONV to HAVE_ICONV.
1201 src/prefs_folder_item.c: English fix (property -> properties).
1202 * src/prefs_filter.c: alert if entry is not saved.
1203 prefs_filter_dialog_to_filter(): new.
1207 * src/codeconv.c: conv_encode_header(): fixed a bug which output raw
1208 strings after linefeed.
1213 * src/codeconv.[ch]: code cleanup and optimization.
1214 conv_code_converter_new()
1215 conv_convert(): use functions obtained by conv_get_code_conv_func()
1216 when using libjconv.
1217 conv_codeset_strdup(): code cleanup.
1218 conv_get_code_conv_func(): added an argument for destination
1219 character set, and generalized.
1223 * src/codeconv.c: LBREAK_IF_REQUIRED(): break line only if some
1225 * src/compose.c: compose_convert_header(): remove trailing spaces.
1226 * src/customheader.c: custom_header_read_str(): strip the spaces
1228 * src/prefs_customheader.c: prefs_custom_header_clist_set_row():
1229 strip the spaces of name and value.
1237 * src/codeconv.c: conv_encode_header(): fixed a bug which will run
1238 into infinite loop when encountering invalid characters.
1242 * src/procmsg.[ch]: procmsg_sort_msg_list(): new. It sorts message
1244 * src/summaryview.c: summary_show(): removed summary_sort() because
1245 it is done inside folder_item_get_msg_list(). This will improve
1246 the performance of summary display.
1247 Sorted out the summary sort functions using macros.
1251 src/folder.[ch]: folder_item_get_msg_list(): return pre-sorted
1252 list if FolderItem::sort_key is set.
1253 Added SORT_BY_TO to FolderSortKey enum.
1254 * src/mainwindow.c: added "View/Sort/by recipient".
1262 * src/codeconv.c: conv_encode_header(): fix for redundant space on
1264 * src/compose.c: compose_convert_header(): always pass string to
1265 conv_encode_header() for line-breaking.
1269 * src/textview.c: textview_make_clickable_parts(): fixed incorrect
1270 parsing of email addresses.
1274 * src/defs.h: added DEFAULT_BROWSER_CMD.
1275 * src/mimeview.c: mimeview_view_file()
1276 src/prefs_common.c: prefs_other_create()
1277 src/utils.c: open_uri(): changed the default web browser to
1278 mozilla, and changed 'raise' command (which is undocumented)
1279 to 'new-window' in 'netscape -remote'.
1283 * src/compose.c: compose_send_control_enter(): fixed crash on
1284 Ctrl-Enter when Message/Send has no accelerator key (thanks to
1292 sort_summary_type_cb(): prevent unwanted processing on unchecking
1297 * src/main.c: process command line option before gtk_init() to
1298 enable remote operation without X (thanks to Ruslan N. Balkin).
1299 * src/codeconv.c: conv_encode_header(): fixed a potential buffer
1304 * src/Makefile.am: changed $(target_alias) to $(target_triplet)
1305 (the spec of autotools seems to be changed).
1309 * src/imap.c: get path separator using LIST command if server
1310 doesn't support NAMESPACE (based on the patch by Brian Sammon).
1311 imap_parse_list(): added an argument to return path separator.
1312 imap_get_namespace_by_list(): new.
1316 * src/addr_compl.c: add_address(): removed the debug print.
1317 * src/gtkutils.[ch]: gtkut_window_popup()
1318 src/mainwindow.c: main_window_popup(): applied the patch to fix
1319 the behavior of window popup from Sergey Vlasov (thanks!)
1320 * src/account.c: account_edit_create(): use signal_connect_after
1321 for row_move signal to fix the row position bug.
1322 account_row_moved(): scroll the CList half page.
1323 * src/prefs_filter.c: prefs_filter_row_move(): scroll the CList
1325 * src/summaryview.c: summary_reply(): use selection text only if
1326 the displayed message is selected (thanks to Sergey Vlasov).
1330 * src/codeconv.c: conv_encode_header(): reimplemented the routine
1331 of MIME header encoding. And use Q-encoding method if the current
1332 locale is single-byte one.
1333 * src/utils.[ch]: is_next_nonascii(): take multi-byte string instead
1334 of wide-character string. Consider control codes as non-ASCII.
1335 get_next_word_len(): new. It returns the length of next word.
1336 is_next_mbs(), find_wspace(): removed.
1337 * src/quoted-printable.[ch]: new.
1338 qp_decode_line(): decodes one QP line.
1339 qp_decode_q_encoding(): decodes Q-encoded string in MIME header.
1340 qp_get_q_encoding_len(): returns the length when a string is
1342 qp_q_encode(): Q-encode a string (RFC 2047).
1343 * src/unmime.c: moved the functions for quoted-printable to
1348 * src/send.c: send_message_local(): escape line that only have one
1349 dot character (postfix's sendmail command will stop there).
1353 * src/send.c: send_message_local(): don't escape first-dot line
1354 (thanks to Sergey Vlasov).
1358 * autogen.sh: added 'libtoolize --force --copy' to override the
1360 * acconfig.h: removed.
1361 * configure.in: increased minimal version of GPGME to 0.3.10.
1362 Fixed checking of XIM.
1364 ac/gnupg-check-typedef.m4: added an argument for comment.
1368 * src/imageview.[ch]: fixed conflicting declarations of
1369 imageview_show_image() (thanks to Thorsten Maerz).
1373 * src/compose.c: compose_entry_append(): don't add ", " on subject
1375 * src/codeconv.c: conv_get_outgoing_charset(): obtain outgoing
1376 charset from the table (currently disabled for non-Japanese locales).
1377 conv_get_current_locale(): also refer to LC_CTYPE.
1381 * README: added a description about hidden settings.
1385 * src/prefs_common.[ch]: reorganized the common prefs dialog.
1386 Made enable_hscrollbar and bold_unread hidden options.
1390 * src/quote_fmt_parse.y: fixed a parse error (thanks to Andreas Hinz).
1395 account_find_from_message_file()
1396 account_find_from_msginfo(): new. They find an account from the
1397 headers like 'From:', 'X-Sylpheed-Account-Id:', and 'AID:' in the
1400 compose_reedit(): restore messages' previous account on composition.
1401 compose_write_headers(): add 'X-Sylpheed-Account-Id:' header
1406 * src/compose.c: cleaned up the code using compose_entry_set()
1407 (don't use gtk_entry_set_text() directly).
1411 * src/imap.c: imap_parse_namespace(): fixed a memory leak.
1415 * updated autotools and libtool to the latest version.
1416 * configure.in: added AC_PREREQ(2.50).
1420 * src/textview.c: textview_set_font(): fix for message display in
1421 UTF-8 locales (thanks to Sergey Vlasov).
1425 * src/imageview.[ch]: imageview_show_image(): resize images to fit
1426 the window size if specified.
1427 * src/prefs_common.[ch]: added an option 'Resize attached images'.
1431 * refactoring for SMTP implementation.
1432 * src/session.h: added ui_func to Session.
1433 * src/smtp.[ch]: separated the connection routine from
1434 smtp_session_new() to smtp_connect().
1435 Changed the argument of every function other than smtp_ok() from
1436 SockInfo to SMTPSession.
1437 Call UI callback from each functions.
1438 * src/send.c: send_message_smtp(): separated the code for UI update
1439 into send_progress_dialog_update().
1443 * src/smtp.[ch]: separated smtp_auth() from smtp_from().
1444 * src/send.c: send_message_smtp(): call smtp_auth() and display
1445 the state to the dialog.
1449 * src/filter.c: strmatch_regex(): use extended regex (thanks to
1451 * src/main.c: main(): removed the code for assortrc -> filterrc
1453 * src/gtkutils.c: gtkut_font_load(): only use gdk_font_load() if
1454 current locale is C or POSIX.
1455 gtkut_stext_is_uri_string(): include "www." for URI string.
1456 * src/textview.c: textview_make_clickable_parts(): include "www."
1465 * src/textview.c: textview_add_part(): indicate signature status
1466 using different colors.
1470 * src/folder.c: folder_write_list_recursive(): escape
1471 To/Cc/Bcc/Reply-To strings.
1475 * src/codeconv.c: conv_encode_header(): enabled B-encoding of
1476 headers on locales other than Japanese when not using libjconv.
1480 * src/inc.[ch]: added INC_IO_ERROR to IncState. Also added its
1481 corresponding error message.
1482 inc_pop3_session_do(): set INC_IO_ERROR instead of INC_NOSPACE
1487 * src/prefs_account.[ch]: removed prefs_account_save_config() since
1489 * src/procmime.[ch]: removed procmime_mimeinfo_free() since
1490 procmime_mimeinfo_free_all() can be used in every case.
1494 * src/account.c: account_get_special_folder(): support F_INBOX, and
1499 * src/compose.[ch]: ComposeEntryType: changed COMPOSE_* to
1500 COMPOSE_ENTRY_*, and added
1501 COMPOSE_ENTRY_{REPLY_TO,SUBJECT,FOLLOWUP_TO}.
1504 compose_redirect(): added FolderItem to the arguments, and reflect
1505 settings in the item.
1506 compose_entry_set(): new.
1507 compose_entry_append(): code cleanup.
1508 compose_entries_set_from_item(): take ComposeMode in its arguments,
1509 and enabled FolderItem::use_auto_to_on_reply.
1510 * src/summaryview.c: summary_reply(): pass folder_item to
1511 compose_{reply,forward,redirect}().
1515 * src/gtkutils.[ch]:
1516 gtkut_font_load(): new. It automatically choose font or fontset
1518 gtkut_font_load_from_fontset(): new. It tries to load single font
1519 instead of fontset from a fontset string.
1523 src/summaryview.c: workaround for the problem that couldn't display
1524 8-bit characters in C or POSIX locale (use font instead of fontset).
1527 src/textview.c: made code cleanup using gtkut_font_load*().
1531 * src/mh.c: mh_get_msginfo(): set correct message number.
1535 * src/folder.[ch]: added a new virtual method Folder::get_msginfo().
1536 It returns a new MsgInfo associated to a message number.
1537 folder_item_get_msginfo(): new.
1538 * src/imap.[ch]: imap_get_msginfo(): new.
1539 * src/mh.[ch]: mh_get_msginfo(): new.
1540 * src/news.[ch]: news_get_msginfo(): new.
1544 * src/codeconv.c: conv_euctojis(): fixed a bug which will cause
1545 infinite loop if an invalid code appeared.
1549 * src/codeconv.c: conv_codeset_strdup()
1550 src/html.[ch]: html_read_line(): don't output conversion failure
1552 Added HTML_CONV_FAILED to the enum HTMLState.
1556 * implemented per-folder auto-set address (still in progress).
1557 * src/compose.[ch]: compose_new(): added FolderItem to its arguments,
1558 and set entries from it (if mailto is empty).
1559 compose_entry_append(): activate menu if required.
1560 compose_entries_set_from_item(): new.
1561 * src/folder.[ch]: added auto_to, use_auto_to_on_reply, auto_cc,
1562 auto_bcc, and auto_replyto to FolderItem, and renamed apply_sub to
1564 folder_build_tree(), folder_read_folder_func(),
1565 folder_write_list_recursive(): added the above members.
1566 * src/prefs_folder_item.[ch]: added auto-set addresses.
1567 * src/pop.[ch]: removed Pop3State::prev_folder.
1571 * src/compose.c: allow dropping files by also "moving" files from a
1572 file manager (thanks to Alfons).
1576 * compose_reply_set_entry(): made Reply-To have priority over
1577 List-Post on ML reply.
1581 * src/gtksctree.[ch]: gtk_sctree_set_anchor_row(): new.
1582 * src/summaryview.c: summary_step(): fixed a bug that lost the
1583 correct selection anchor.
1584 summary_key_pressed(): use gtk_sctree_select() instead of
1588 src/recv.c: differentiate disk full and socket errors
1589 (thanks to Colin Leroy).
1593 * src/account.c: account_edit_prefs(): removed unused variables.
1594 * src/compose.[ch]: separated WITH_QUOTE/WITHOUT_QUOTE flags in
1597 compose_reply_set_entry(): receive reply type with one argument.
1598 * src/summaryview.c: summary_reply(): reduced conditional branches.
1602 * src/compose.c: compose_redirect(), compose_reedit(): strip CR
1603 from line ends (thanks to Sergey Vlasov).
1604 * src/folderview.c: renamed 'Rescan folder tree' to 'Rebuild
1609 * src/folder.[ch]: added a virtual method Folder::remove_msgs().
1610 * src/imap.[ch]: implemented imap_remove_msgs() which expunges
1611 messages all at once.
1615 * src/account.[ch]: account_open(): new. It opens account prefs
1616 dialog and reflects to UI when finished.
1618 folderview_button_pressed()
1619 folderview_property_cb(): open account prefs dialog when the
1620 property of the root folder of remote account is requested.
1624 * src/account.c: account_destroy(): unref account information in
1626 * src/folder.[ch]: folder_unref_account_all(): new. It unref the
1627 specified account information in all folders.
1629 folderview_rm_imap_server_cb()
1630 folderview_rm_news_server_cb(): destroy Folder first because
1631 folder_destroy() refers to account information.
1635 * src/account.c: account_find_from_item(): fixed a bug which didn't
1636 select the correct account.
1637 * inc_pop3_session_do():
1638 fixed the resource leak when SSL initialization failed.
1639 Immediately break from temporary event loop if cancelled.
1643 * src/account.[ch]: account_find_from_item(): new.
1645 compose_reply(), compose_forward(), compose_redirect()
1646 src/mainwindow.c: compose_cb(): select optimal account when
1648 * src/folder.[ch]: added FolderItem::apply_sub.
1649 * src/menu.[ch]: menu_find_option_menu_index(): new. It finds the
1650 index of option menu which contains the specified data.
1651 * src/prefs_folder_item(): added Compose tab, and the setting of
1656 * configure.in: added $LDAP_LIBS for lber library detection.
1664 * src/procmsg.c: procmsg_msginfo_get_full_info(): fixed a memory
1665 leak, and added error checking.
1669 * src/compose.[ch]: added a flag Compose::use_newsgroups, and
1670 removed Compose::orig_account.
1671 compose_check_for_valid_recipient(): check only enabled entries.
1672 compose_write_headers()
1673 compose_redirect_write_headers(): add Newsgroups header only
1674 when the entry is enabled.
1675 compose_send(): modified the method of finding a mail account
1676 from a news account so that it tries to match the From address.
1677 * src/send.c: send_message_queue(): enabled the queueing of news
1679 * src/news.[ch]: news_post_stream(): new.
1683 * configure.in: check lber first and use $LDAP_LIBS on the check
1688 * po/*.po: fixed many typos of format strings which will lead to
1689 crash (thanks to Sergey Vlasov).
1693 * src/procheader.c: procheader_parse_stream(): added Cc header
1694 to the target for full parsing.
1695 * src/procmsg.[ch]: procmsg_msginfo_get_full_info(): new. It
1696 returns the full message information from the given information.
1697 * src/compose.c: compose_reply(), compose_forward(): get full
1698 message information for Cc header.
1702 * src/inc.c: inc_account_mail(), inc_all_account_mail(): update
1703 IMAP4 and NNTP folder summary after checking those accounts.
1711 * src/prefs_common.c: prefs_compose_create(): modified the label
1712 of the option for Reply button.
1713 * configure.in: add -lldap and -llber to the 5th argument of
1714 AC_CHECK_LIB() for LDAP library detection.
1719 INSTALL.jp: updated.
1723 * src/mainwindow.c: toggle the behavior of Reply button between
1724 normal reply and reply-to-list.
1725 * src/prefs_common.[ch]: added an option to switch the function
1730 * src/compose.c: compose_new(): removed the workaround for XIM
1731 because it doesn't have any effect and only seems to cause
1736 * src/compose.[ch]: compose_reply(): added a flag for reply-to-ML.
1737 compose_parse_header(): parse also List-Post header.
1738 compose_reply_set_entry(): support reply-to-ML (fall back to
1739 normal reply if ML address is not found).
1742 src/summaryview.c: reorganized Reply menu and added 'Reply to
1744 * src/utils.[ch]: scan_mailto_url(): new. It scans mailto URL and
1745 returns newly allocated parameters.
1749 * src/account.c: account_read_config_all(): set account information
1750 to default before initializing with configuration file.
1751 * src/prefs_account.[ch]: prefs_account_new(): new. It returns a
1752 newly created account information structure initialized by
1753 the default settings.
1758 replace_address_in_edit(): check if newtext is NULL.
1759 completion_window_button_press(): fixed a memory leak.
1760 * src/pop.c: LOOKUP_NEXT_MSG(): don't expire messages whose
1761 recv_time is RECV_TIME_KEEP.
1762 pop3_getrange_uidl_recv(): only set get_all flag if
1763 ac_prefs->getall is set.
1764 pop3_retr_recv(): don't delete messages which are not received
1765 by filter, and set recv_time to RECV_TIME_KEEP in the case.
1766 * src/pop.h: added an enum RecvTime.
1767 * src/inc.c: inc_drop_message(): unlink temporary message file if
1768 not received by filter.
1772 * src/mainwindow.c: added 'Edit/Select thread' menu.
1773 * src/summaryview.[ch]: added 'Select thread' to the context menu.
1774 summary_select_thread(): new. It selects all messages of current
1779 * src/rfc2015.c: check_signature(): corrected error handling and
1784 * src/rfc2015.c: check_signature(): correctly remove the last empty
1785 line, and canonicalize the file part before verifying (this should
1786 fix incompatibility with Evolution or some other MUAs).
1787 * src/utils.[ch]: copy_file_part(): new. It copies the specified
1788 range of file stream to another file.
1792 * src/compose.c: compose_write_to_file(): force BASE64 encoding for
1793 8-bit text when signing (thanks to Colin Leroy).
1797 * src/prefs_common.c: prefs_send_create(): fixed the charset string
1798 for Cyrillic (Windows-1251).
1806 * src/codeconv.c: changed the charset for ru_RU.CP1251 to
1807 Windows-1251. Added bg_BG locale.
1811 * src/compose.c: account_activated(): change the state of menu items
1812 and entries according to the selected account.
1813 compose_select_account(): new. It changes the state of title bar,
1814 menu items and entries.
1818 * src/inc.c: inc_mail(): correct new_msgs when inc_spool() returned
1820 Don't refresh summary view on fetching when open_inbox_on_inc is
1825 * src/summaryview.c: summary_show(): refresh even if open_inbox_on_inc
1826 is set (to avoid summary refresh problem).
1827 * src/imap.c: removed warnings by checking the existence of directory
1828 before calling remove*_numbered_files().
1832 * src/prefs_common.c: corrected English.
1836 * src/prefs_common.[ch]: added an option: "Mark messages as read
1837 only when opened in new window".
1842 folder_tree_destroy()
1843 folder_write_list_recursive(): added sanity check.
1844 * src/imap.c: imap_scan_tree(): if folder->node is NULL and
1845 can't get session, create empty folder node (based on the
1846 Alfons' suggestion).
1850 * src/textview.c: textview_key_pressed(): pass GDK_Delete event to
1852 * src/summaryview.c: summary_key_pressed(): scroll correct TextView
1857 * src/news.c: news_scan_group(): fixed wrong message number
1862 * major refactoring for POP3.
1863 * src/inc.[ch]: moved Pop3State, inc_pop3_state_new(),
1864 inc_pop3_state_destroy(), inc_get_uidl_table(), and
1865 inc_write_uidl_list() into pop.c.
1866 Moved Pop3State::folder_table and Pop3State::inc_state into
1869 inc_put_error(): added lockbusy state.
1870 inc_pop3_session_do(): obtain inc_state from Pop3State::error_val.
1871 inc_cancel(): don't terminate the automaton here but just set
1872 the flags to prevent crash.
1874 pop3_getauth_pass_recv()
1875 pop3_getauth_apop_recv(): check lockbusy state.
1876 pop3_retr_recv(): check Pop3State::cancelled flag.
1877 * src/automaton.[ch]: added 'cancelled' flag to Automaton.
1878 automaton_input_cb(): terminate if cancelled flag is true.
1879 * sylpheed.desktop: changed Type=Internet to Type=Application.
1880 Added Categories=Application;Network;.
1886 src/progressdialog.c: show detailed information to the status
1888 Added cur_total_recv_bytes to Pop3State.
1889 * src/prefs_common.[ch]: added an option to specify whether to
1890 close receive dialog when finished.
1894 * src/folder.[ch]: folder_get_path(): new. It returns the root path
1898 imap_folder_destroy()
1900 imap_remove_all_msg()
1901 news_folder_destroy(): remove cache directories / files when
1902 deleting Folder / messages.
1906 is_file_entry_exist(): check if the argument is NULL.
1908 remove_numbered_files()
1909 remove_expired_files(): fixed memory leaks on error.
1918 src/smtp.[ch]: made Folder and Session destructor virtual method.
1922 * src/compose.c: do joining of normal lines only when auto-wrapping.
1923 * src/main.c: modified the warning message for GnuPG.
1924 * src/about.c: about_create(): modified the compiled-in features
1926 * configure.in: improved LDAP library checking (thanks to Alfons).
1936 compose_wrap_line_all(): backed out the change to join lines that
1941 * configure.in: require at least gpgme-0.3.5.
1945 * src/alertpanel.c: alertpanel_create(): minor modification.
1954 * src/alertpanel.c: alertpanel_create(): modified the layout.
1955 * src/rfc2015.c: check_signature(): don't abort on error.
1959 * src/compose.c: compose_wrap_line_all(): freeze widget only if
1960 required to repress flickers.
1964 * src/compose.c: improved line wrapping.
1966 compose_wrap_line_all(): also join lines that are not indented.
1967 dump_text(): handle multi-byte strings correctly.
1971 * src/compose.c: compose_wrap_line_all(): fix for auto-wrapping
1972 (go to next line when space is entered at line limit).
1976 * src/inc.c: inc_get_uidl_table(): fixed a memory leak reported by
1981 * src/mh.c: mh_scan_tree_recursive(): disabled Maildir folder
1982 checking to prevent confusion.
1986 * src/folder.[ch]: folder_item_get_msg_list(): added a wrapper for
1987 method Folder::get_msg_list().
1988 * src/account.c: account_edit_prefs(), account_delete(): use
1989 folderview_set_all() instead of folderview_rescan_all().
1990 * src/folderview.[ch]:
1991 folderview_check_new_all(): new. Updates all folders.
1992 folderview_rescan_tree(): confirm before executing.
1993 folderview_rescan_all(): commented out since it's not used anymore.
1994 folderview_update_item_foreach(): added a flag for summary update.
1995 * src/inc.c: inc_finished(): update summary only when
1996 prefs_common.scan_all_after_inc is set.
1997 inc_drop_message(): set mtime of target folder to 0 to force
1998 the updating of summary.
1999 inc_start(), get_spool(): update also summary when updating
2001 * src/mainwindow.c: changed 'File - Rescan folder tree' to
2002 'File - Check for new messages in all folders'.
2006 * src/compose.c: compose_write_to_file(): clearsign message body
2008 compose_clearsign_text(): new. Replaces the string with clearsigned
2010 * src/prefs_account.c: added an option for clearsign.
2011 * src/rfc2015.c: rfc2015_clearsign(): new.
2012 pgp_sign(): added a flag for clearsign.
2013 * src/utils.[ch]: get_tmp_file(): return newly allocated unique file
2014 name (needs to be freed by caller).
2015 str_write_to_file(), file_read_to_str(): new.
2019 * src/procmsg.c: procmsg_read_mark_file(): check key duplication
2020 to avoid memory leak.
2024 * src/base64.c: include string.h for memcpy().
2025 * src/gtksctree.c: use macro ABS() instead of function abs().
2026 * src/prefs_account.c
2027 src/prefs_common.c: renamed 'send' to 'p_send' so as not to
2028 conflict with the function send() in sys/socket.h.
2029 * src/mainwindow.c: commented out the unnecessary functions.
2030 * src/utils.c: canonicalize_file_replace(): correct warning message.
2034 * src/utils.[ch]: get_tmp_file(): new. Returns the directory for
2035 temporary files in ~/.sylpheed/.
2036 * src/main.c: create temporary directory in ~/.sylpheed/.
2038 src/inc.c: create temporary files in ~/.sylpheed/, and modified
2040 compose_exec_ext_editor(): fixed a bug that failed to create the
2041 temporary file if g_get_tmp_dir() returned directory other than
2046 * src/utils.c: copy_file(): check if dest_bak != NULL when unlinking.
2050 * src/utils.[ch]: canonicalize_file_replace(): fixed a bug that fails
2051 to replace the file when the given file and temporary file are not
2052 on the same filesystem.
2053 copy_file(): added a flag whether to keep backup.
2054 move_file(): added a flag whether to overwrite the destination file.
2058 * src/socket.[ch]: fixed the linking failure when IPv6 is enabled.
2059 * src/select-keys.c: modified key selection dialog.
2063 * src/socket.[ch]: my_gethostbyname(): new.
2064 * src/utils.c: get_domain_name(): return FQDN instead of short
2065 hostname (thanks to Bob Woodside).
2066 * src/template.c: made the debug messages less verbose.
2070 * src/prefs_common.[ch]: removed obsolete default sign key setting.
2071 * src/utils.c: canonicalize_file(): correct the error check of
2076 * src/compose.c: compose_write_to_file():
2077 canonicalize line endings before encrypting/signing (this will fix
2078 interoperability with other MUAs).
2079 Removed unnecessary strdup.
2080 Don't encrypt/sign draft message.
2082 canonicalize_file(), canonicalize_file_replace(): new.
2084 src/select-keys.c: changed g_message() to debug_print() and
2086 * src/mimeview.c: mimeview_check_signature(): removed unnecessary
2087 MIME structure scanning.
2088 * src/textview.c: textview_add_part(): show signature status in
2091 src/sigstatus.c: modified translatable strings and some MIME
2096 * src/procmsg.c: procmsg_save_to_outbox(): don't forget to remove
2097 the temporary file when saving from queue.
2103 src/prefs_account.[ch]
2104 src/prefs_common.[ch]: merged GnuPG stuff from the claws branch.
2105 Modified some messages.
2109 * src/textview.c: textview_scan_header(): fixed a memory leak
2114 * src/prefs_actions.c: execute_actions(): put create_io_dialog()
2115 in right conditional block.
2119 * src/compose.c: compose_wrap_line_all(): fixed character buffer
2125 log_error(): add time stamp to log messages.
2130 corrected a typo (HAVE_SYS_SELECT -> HAVE_SYS_SELECT_H)
2134 * src/socket.c: implemented socket I/O timeout.
2136 * src/pop.c: check errors and return error value correctly.
2140 * src/prefs_actions.c: made the action's input/output dialog display
2141 without delay. Made the dialog modal instead of making window
2142 insensitive. Also cleaned up its UI.
2146 * implemented --attach command line option.
2148 Cmd::attach_files: new member to store file paths.
2149 parse_cmd_opt(): added --attach option. --compose option is implied.
2150 prohibit_duplicate_launch()
2151 lock_socket_input_cb(): added "compose_attach" message.
2154 src/textview.c: renamed compose_new_with_recipient() to
2155 compose_new(), and added an argument for attachment files.
2159 * src/logwindow.c: freeze GtkText widget while hidden.
2160 log_window_append(): changed the header for message and warning.
2164 * src/news.c: implement automatic cache expiration.
2165 news_delete_expired_caches(): new.
2166 news_get_article_list(): fixed a bug that nonexistent messages
2167 were not removed from list.
2168 * src/procmsg.[ch]: procmsg_get_last_num_in_msg_list(): renamed
2169 procmsg_get_last_num_in_cache().
2170 * src/utils.[ch]: remove_expired_files(): new.
2175 inc_mail(): force summary refresh when using external command for
2177 inc_all_account_mail(): fixed a bug on spool checking failure.
2188 src/editldap_basedn.c
2190 src/prefs_common.c: fixed memory leaks which didn't free strings
2191 gtk_editable_get_chars() returned. And minor code cleanups.
2193 src/vcard.h: removed C++-style comments.
2197 * src/codeconv.c: conv_encode_header(): fixed a problem in encoding
2198 strings which include both multi-byte and us-ascii characters.
2202 * src/utils.c: remove_numbered_files(): don't try to unlink()
2205 conv_get_code_conv_func(): return conv_anytodisp() if charset is
2207 conv_unmime_header_overwrite()
2208 conv_unmime_header(): do conv_anytodisp() before decoding header.
2216 * src/compose.c: added 'Tools/Actions' menu.
2220 * src/base64.c: a minor fix for BASE64VAL() macro.
2224 * src/base64.c: base64_decode(): fixed a buffer overrun bug.
2232 src/base64.[ch]: rewrote the BASE64 encode / decode routines.
2233 base64_encode(), base64_decode(): new.
2234 * src/rfc822.[ch]: removed.
2236 src/about.c: removed the copyright notice for fetchmail.
2242 src/unmime.[ch]: rewrote the MIME decode routines.
2244 unmime_quoted_printable_line(): new.
2246 procheader_get_one_field()
2247 procheader_get_unfolded_line(): remove also CR.
2251 * libkcc: removed from the source tree.
2253 src/about.c: removed the copyright notice for libkcc.
2254 * src/codeconv.c: conv_guess_encoding(): check for ASCII code first
2256 * src/prefs_actions.c: removed unnecessary spaces/tabs.
2260 * src/prefs_actions.c: comply with the coding style.
2261 Modified the UI design.
2262 * src/mainwindow.c: main_window_set_menu_sensitive(): enable Actions
2263 menu when multiple messages are selected.
2267 * src/prefs_actions.[ch]: merged the 'Actions' feature from claws.
2268 update_actions_menu(): simplified the menu deletion.
2269 * src/mainwindow.c: added 'Actions' menu to Tools and Configuration.
2273 * src/codeconv.[ch]: implemented conv_jistoeuc(), conv_euctojis(),
2274 conv_sjistoeuc(), and conv_guess_encoding(). Removed the dependency
2279 * configure.in: added check for strchr.
2283 * src/prefs_common.[ch]
2284 src/inc.c: added an option to inhibit receive error dialog.
2288 * src/account.c: account_find_from_address(): support multiple
2289 addresses in header.
2293 * src/gtksctree.[ch]: changed GtkSCTree::anchor_row from gint to
2294 GtkCTreeNode* so that it won't become invalid after the row move.
2295 Removed dependency to gtkutils.c.
2296 * src/prefs_common.[ch]
2297 src/summaryview.c: summary_selected(): added an option to show
2298 message when cursor keys are pressed on summary view.
2304 src/compose.c: changed "host_alias" to "target_alias" so that it
2305 shows the correct system name on cross-compiling (thanks to
2310 * src/prefs_account.[ch]: added the option menu to force an
2311 authentication method for SMTP AUTH.
2313 src/smtp.[ch]: smtp_from(), smtp_auth(): added an argument to
2314 specify the authentication method for SMTP AUTH.
2315 smtp_ehlo(): allow AUTH responses that don't comply with the RFC.
2319 * src/prefs_common.[ch]
2320 src/compose.c: enabled "Wrap on input".
2324 * src/summaryview.[ch]
2325 src/mainwindow.c: added "Go to/{Prev,Next} new message" menu.
2326 Made some code cleanups.
2331 src/prefs_common.[ch]: added the hidden option to specify the
2332 policy of the vertical scrollbar on folder view.
2336 * src/messageview.[ch]:
2337 messageview_copy_clipboard(): fixed a bug that couldn't copy text
2339 messageview_get_current_textview(): new.
2340 messageview_get_text_widget(): removed.
2341 * src/quote_fmt_parse.y: quote message even if msginfo is empty.
2342 * src/compose.[ch]: implemented the "Paste as quotation" feature.
2343 text_inserted(): new callback for "insert_text" signal.
2344 Add quote mark to the pasted text if Compose::paste_as_quotation
2349 * src/compose.c: if the Content-Type of a file is text/*, check
2350 its content and set the optimal Content-Transfer-Encoding (thanks
2355 * src/textview.c: textview_key_pressed(): pass key press event to
2356 main window to activate menu shortcuts (thanks to Alfons).
2360 * src/folder.c: folder_build_tree(): use strtoul() instead of atoi()
2361 for mtime to prevent flooring.
2364 imap_move_msgs_with_dest()
2365 imap_copy_msgs_with_dest(): fixed a bug that prevented multiple
2367 imap_parse_envelope()
2368 imap_cmd_envelope(): use RFC822.HEADER instead of ENVELOPE to get
2369 full information of messages and simplify the parser. Also fixed
2370 the bug that References header was ignored on threading.
2371 imap_parse_one_address()
2372 imap_parse_address(): removed.
2373 imap_get_header(): new. It reads the RFC822 header and returns
2374 a newly allocated string.
2375 * src/procheader.[ch]: changed procheader_parse() to
2376 procheader_parse_stream() and added different interfaces for it.
2380 * po/zh_TW.Big5.po: fixed a mistake that caused a crash.
2388 * src/inc.c: inc_get_uidl_table(): fixed a bug that garbage time
2389 could be inserted into the hash table.
2390 inc_write_uidl_list(): a minor code cleanup.
2391 * src/mainwindow.c: main_window_get_current_state():
2392 make the state unexecutable on an empty folder.
2393 * src/summaryview.c: summary_sort(): don't sort on an empty folder.
2394 * src/pop.c: minor code cleanups.
2398 * src/prefs_account.c: CREATE_RADIO_BUTTONS(): fixed a typo and
2399 corrected the behavior of the radio buttons.
2403 * implemented 'Delete messages after N days' feature for POP3.
2405 inc_get_uidl_table()
2406 inc_write_uidl_list(): moved the location of UIDL list file from
2407 RC_DIR/uidl-* to RC_DIR/uidl/*.
2408 Added received time for each UIDLs.
2409 src/main.c: main(): create RC_DIR/uidl/ directory.
2410 src/pop.[ch]: LOOKUP_NEXT_MSG(): delete expired messages here.
2411 Added recv_time to Pop3MsgInfo.
2412 src/prefs_account.[ch]: added an option for the number of days for
2421 * src/folder.c: folder_set_missing_folders(): fixed a bug that
2422 caused multiplication of special folders on startup if their
2424 * src/folderview.c: folderview_remove_mailbox_cb(): modified the
2429 * src/compose.c: compose_reply(), compose_forward(): reverted the
2430 last change since it causes lockup problem.
2434 * src/compose.c: compose_reply(), compose_forward(): don't autowrap
2436 compose_new_with_recipient(): workaround for initial XIM problem.
2440 * src/mainwindow.c: sort ascending / descending order can be
2441 specified with separated menu items.
2442 Added "View/Sort/Don't sort" menu item.
2443 * src/summaryview.[ch]: summary_sort(): added an argument for
2448 * implemented persistent sort order.
2450 folder_build_tree(): read 'sort_key' and 'sort_type' attributes.
2451 folder_write_list_recursive(): write sorting state.
2453 src/summaryview.[ch]: summary_show(): sort if required.
2454 select the top node on descending sort.
2455 Removed SummarySortType and sorting state variables from
2463 src/prefs_account.[ch]: enabled NNTP over SSL.
2464 * src/nntp.c: nntp_group(): issue MODE READER command and retry
2465 when GROUP command once failed (this seems to avoid problems on
2466 some broken news servers).
2470 * faq/it/*.html: corrected DOS linebreaks.
2471 * faq/*/*.html: changed ">" to ".
2475 * src/prefs_account.c: prefs_account_protocol_activated(): hide
2476 unnecessary frames in SSL tab.
2482 src/prefs_account.[ch]: enabled STLS command in POP3.
2483 * src/account.c: account_clist_set_row(): display TLS setting.
2487 * src/compose.c: compose_send_later_cb(): support redirect function.
2490 src/prefs_account.[ch]: enabled STARTTLS command in IMAP4.
2492 src/smtp.[ch]: use SSLType instead of SSLSMTPType.
2496 * src/utils.[ch]: make_dir(): wrapper for mkdir() and chmod().
2497 * src/compose.c: compose_create(): removed unrequired lines.
2501 * src/news.c: news_scan_group(): fixed a bug that set the wrong
2502 values in some cases.
2503 * src/prefs_account.c: corrected English in Advanced - Folder
2508 * src/textview.c: textview_show_message(), textview_show_part():
2509 fixed a bug that GtkSText *text pointed the incorrect object.
2510 textview_add_part(): freeze GtkSText while adding RFC822 headers.
2511 textview_show_part(): fixed a bug that couldn't display single
2512 part MIME message as text.
2516 * src/compose.c: compose_redirect_write_to_file(): correct the target
2517 for change_file_mode_rw(). Check if fclose() succeeded. Unlink
2518 incomplete file when an error occured.
2523 compose_create(): disable menus for draft on redirection mode.
2524 compose_redirect_write_to_file(): correct the error handling of
2526 * src/prefs_common.c: turned off the "Display recipient on `From'
2527 column if sender is yourself" option by default.
2531 * src/compose.[ch]: implemented 'Redirect' (aka Bounce) feature.
2532 Based on the implementation of the claws branch.
2533 compose_redirect(): create a new window and make it uneditable.
2534 compose_redirect_write_to_file(): copy headers and body of
2535 original message except for some.
2536 compose_redirect_write_headers(): add extra "Resent-*" headers.
2537 compose_create(): set menu sensitivity for redirection mode.
2541 * src/codeconv.c: conv_encode_header(): fixed a bug that unnecessary
2542 space is inserted between encoded string and the following folded
2543 one (thanks to Masahiro Tomita).
2547 * src/mainwindow.[ch]: some refactoring has been made.
2548 main_window_toggle_message_view(): moved summary_toggle_view_real()
2550 * src/messageview.[ch]: messageview_is_visible(): new.
2551 * src/summary_search.c
2552 src/summaryview.[ch]: SummaryView::msg_is_toggled_on: removed.
2553 Instead use messageview_is_visible().
2557 * src/mainwindow.c: added 'Expand/Collapse all threads' menu.
2558 * src/summaryview.[ch]:
2559 summary_expand_threads(), summary_collapse_threads(): new.
2563 * src/mainwindow.c: Fixed the behavior of
2564 '/View/Show or hide/Folder tree' and
2565 '/View/Show or hide/Message view' toggle menu.
2566 Removed '/View/Toggle summary view' menu and integrated the
2567 function into '/View/Show or hide/Message view'.
2568 main_window_set_widgets(): change the state of toggle menu items.
2569 * src/prefs_common.c: prefs_keybind_apply_clicked(): updated menurc
2574 * src/mimeview.c: mimeview_set_multipart_tree(): show single part
2575 MIME contents other than text as children of message/rfc822 part.
2577 procmime_mimeinfo_next(): modified for message/rfc822 part which
2578 content-type is single part MIME.
2579 procmime_scan_multipart_message(): fix for nested message/rfc822
2580 part. Corrected the size of the contents of message/rfc822.
2581 * src/textview.c: textview_show_part(): extract the contents of
2582 multipart/* and message/rfc822. Some code cleanups.
2583 textview_add_parts(): new. It adds the all parts under a part to
2585 textview_clear(): reset body_pos and cur_pos.
2589 * src/addr_compl.c: modified so that it behaves better.
2590 get_address_from_edit(): ignore comma inside of brackets.
2591 completion_window_apply_selection(): new. Only apply the current
2593 completion_window_accept_selection(): removed.
2594 address_completion_complete_address_in_entry(): minor code cleanup.
2595 don't replace address in entry here.
2596 completion_window_select_row(): always apply clist selection to
2598 completion_window_key_press(): don't apply selection here.
2602 * src/imap.c: imap_create_folder(): keep trailing directory separator
2603 to create a folder that contains sub folder.
2607 * src/foldersel.c: sort tree with case insensitive.
2608 * src/mainwindow.c: allsel_cb()
2609 src/messageview.c: messageview_select_all(): fixed 'Select all'
2611 * src/mainwindow.c: removed common and account prefs button from
2616 * src/compose.c: compose_account_option_menu_create(): check if
2625 * manual/ja/*: updated the Japanese manual (thanks to Yoichi Imai).
2626 manual/en/*: updated the English manual.
2628 faq/it/*: added German and Italian FAQ.
2631 faq/fr/*: updated FAQs.
2633 src/mainwindow.c: added German and Italian language.
2637 * src/prefs_account.c: turn off "receive at get all" option by default
2638 when creating an IMAP or News account.
2642 * src/imap.c: imap_scan_tree(): don't use namespace for prefix.
2643 * src/prefs_folder_item.c: show also identifier path.
2644 Made layout using table. Show uneditable entry using background
2646 * src/procmime.c: procmime_get_tmp_file_name(): generate safe
2651 * src/automaton.[ch]: added UI callback to Automaton.
2653 src/pop.c: use callback instead of calling inc_progress_update()
2655 pop3_getrange_uidl_recv(): don't fall back to LAST when 'get all'
2660 * src/folderview.c: properly sort abbreviated newsgroups.
2665 src/prefs_common.[ch]
2666 src/summaryview.c: added an option to specify the minimum length
2667 for abbreviated newsgroups name.
2671 * src/folderview.c: folderview_check_new(): skip unselectable folders.
2672 * src/summaryview.c: added 'Create filter rule' to the context menu.
2673 * src/imap.c: some code cleanups.
2674 imap_scan_tree_recursive(): get path separator for each calls.
2675 imap_get_path_separator(): new.
2679 * src/imap.[ch]: supported namespace for others/shared folders
2681 imap_parse_namespace(): parse also others/shared namespace.
2682 imap_find_namespace(): search also others/shared namespace.
2684 strchr_parenthesis_close(): return pointer to closing parenthesis.
2685 strsplit_parenthesis(): split parenthetic list into array of
2690 * src/procheader.c: procheader_date_parse(): fixed a bug that didn't
2691 parse date string like "Mon,6 May 2002 20:31:12 +0800".
2692 procheader_scan_date_string(): new. Separated string scanning
2693 part from procheader_date_parse().
2697 * src/summary_search.c: summary_search_execute(): unlock while
2698 selecting summary row (thanks to Martin Schaaf).
2699 * src/summaryview.c: summary_set_column_titles(): reversed the
2700 direction of the arrow so that it matches with Win/Mac style.
2704 * src/compose.c: compose_write_headers(): quote self address name
2705 if required. Some code cleanups. Don't override Newsgroups and
2706 Cc with custom headers.
2707 * src/imap.c: imap_add_msg(): return UID for appended message.
2708 * src/compose.c: compose_queue(): check if queue folder exists.
2709 * src/imap.c: QUOTE_IF_REQUIRED(): quote also other IMAP special
2711 imap_open(): removed an unrequired argument.
2715 * src/utils.[ch]: trim_string(): new. It trim characters longer than
2716 the specified length and adds "...".
2717 * src/folderview.c: trim folder name when displaying dialog.
2721 * src/imap.c: imap_create_folder(): don't add prefix for root INBOX
2723 * src/folderview.c: folderview_select()
2724 src/summary_search.c: summary_search_execute(): lock summary view
2725 while searching (thanks to Martin Schaaf).
2733 * sylpheed*.png: added new app icons by WAKAI Kazunao (thanks!).
2737 * src/summaryview.c: summary_show(): fixed a bug that didn't process
2739 * src/account.c: account_edit_prefs(): fixed a crash bug when account
2741 * src/prefs_account.c: prefs_account_apply(): display error dialog
2742 if account name is empty.
2743 * src/imap.c: changed some log_print() to debug_print() to reduce
2748 * src/mh.c: mh_get_new_msg_filename(): new. It returns the filename
2752 mh_do_move_msgs_with_dest()
2754 mh_copy_msgs_with_dest(): use mh_get_new_msg_filename().
2755 * src/utils.[ch]: added is_file_entry_exist() which returns TRUE
2756 if stat() succeeded.
2758 imap_fetch_msg(): SELECT mailbox before FETCH if required.
2759 imap_scan_folder(): set last_num using the value of UIDNEXT.
2760 imap_select(): return immediately if there is no need for SELECT.
2761 preserve the path of currently selected mailbox.
2762 imap_status(): added UIDNEXT.
2766 * src/folder.c: folder_item_scan(): removed the warning.
2767 * src/inputdialog.[ch]: input_dialog_combo(): added an argument for
2768 setting case sensitivity.
2772 * src/mainwindow.c: main_window_create(): restrict the minimum size.
2776 * src/compose.c: merged the new line-wrapping routine.
2777 join_next_line(): fixed a bug that didn't join multibyte
2779 get_indent_length(): modified enums and variable names.
2780 INDENT_CHARS: don't indent ':'.
2782 folderview_rename_folder_cb()
2783 folderview_delete_folder_cb(): support folder identifier.
2784 folderview_rm_imap_folder_cb(): integrated with
2785 folderview_delete_folder_cb().
2789 * src/folder.[ch]: folder_item_scan(): return -1 if scanning failed.
2790 * src/folderview.c: folderview_check_new(): abort checking if
2791 folder_item_scan() failed.
2795 * src/imap.c: imap_create_missing_folders(): create only INBOX and
2797 * src/prefs_folder_item.c: prefs_folder_item_set_dialog(): made the
2798 type of news folders unchangeable.
2799 prefs_folder_item_destroy(): use prefs_dialog_destroy().
2800 * src/prefs.[ch]: prefs_dialog_destroy(): new.
2804 * src/prefs_account.[ch]: added special folder setting to Advanced
2805 tab. Also moved "IMAP server directory" setting to there.
2806 * src/account.[ch]: account_get_special_folder(): new. It returns
2807 the optimal special folder for accounts.
2808 * src/compose.c: use account_get_special_folder().
2809 * src/prefs_folder_item.[ch]: new. Implemented folder property
2810 dialog, and the special folder settings (most of the functions in
2811 claws are not integrated yet, and the structure is slightly
2813 * src/folderview.c: enabled Property menu.
2817 * src/textview.c: IS_RFC822_CHAR(): make email parser also stop
2818 scanning when encountering separators ',' and ';'.
2822 * src/mainwindow.c: reorderd the menu a bit.
2823 * src/compose.c: made 'Ctrl-Enter' ignore some modifiers.
2824 compose_reply_set_entry(): made 'Reply to sender' work for
2829 * src/compose.c: compose_create(): set geometry hints to restrict
2830 the maximum size of window.
2831 * src/imap.c: imap_parse_list(): don't mark INBOX as \Noselect.
2832 imap_get_uncached_messages()
2833 imap_cmd_fetch(): ignore responses which don't include FETCH.
2837 * COPYING: re-licensed (removal of "NO-VIRUS CLAUSE" and addition of
2838 the clause for OpenSSL).
2842 * src/prefs_account.c
2843 src/smtp.[ch]: fixed a bug that didn't complie with OpenSSL enabled.
2849 src/session.[ch]: first reorganization of SMTP protocol handling.
2850 SMTPSession: new class which is a sub class of Session.
2851 smtp_session_new(): moved send_smtp_open() into this function.
2852 smtp_from(): moved SMTP AUTH calls into smtp_auth().
2853 smtp_auth(): use server response for SMTP AUTH method.
2854 smtp_ehlo(): read server response and set auth type flags.
2855 smtp_helo(): separated EHLO command.
2856 smtp_ok(): return the last server response if the buffer is
2858 * src/esmtp.[ch]: merged into smtp.[ch].
2859 * src/imap.c: imap_session_destroy_all(): use session_destroy().
2863 * src/imap.c: imap_open(): show warning message if IMAP4 session
2864 can't be established.
2868 * src/compose.c: made template able to be inserted into the current
2870 * src/mainwindow.c: moved some menu items under the submenu
2871 '/View/Show or hide'.
2876 src/inc.c: changed folder_find_item_from_path() to
2877 folder_find_item_from_identifier().
2879 src/prefs_filter.c: use folder_item_get_identifier() to specify
2884 * src/folder.[ch]: implemented "folder identifier" (and fixed a bug
2885 existed in claws' implementation).
2886 folder_find_from_name(): find Folder from name and type.
2887 folder_get_identifier(): return Folder id.
2888 folder_item_get_identifier(): return FolderItem id.
2889 folder_find_item_from_identifier(): find FolderItem from id.
2890 folder_get_type_string(): return folder type string.
2891 folder_get_type_from_string(): return FolderType from string
2892 (and fixed the wrong g_strcasecmp() usage).
2894 src/import.c: use folder_item_get_identifier() and
2895 folder_find_item_from_identifier().
2899 * src/imap.c: imap_parse_atom(): fixed a bug that cur_pos didn't
2900 point the correct address after reading the continuous line.
2901 imap_scan_folder(): set new number to 0 if unseen number is 0.
2902 imap_parse_flags(): don't add new and unread flag if \Seen flag
2904 * ac/Makefile.am: removed gpgme.m4 from MACROS.
2908 * fixed the old problem that couldn't add flags to currently opened
2911 compose_send(): update outbox after saving.
2913 compose_draft_cb(): use procmsg_add_flags().
2914 * src/folder.[ch]: added "opened" flag and "mark_queue" list to
2916 * src/main.c: send_queue(): send from all queue folders.
2917 * src/mainwindow.c: send_queue_cb(): send from all queue folders.
2919 procmsg_flush_mark_queue(): new. Write all queued flags into file.
2920 procmsg_add_flags(): new. Add specified flags to the folder.
2921 procmsg_send_queue(): added an argument to specify queue folder.
2922 procmsg_save_to_outbox(): use procmsg_add_flags().
2923 * src/summaryview.c:
2924 summary_show(): up the opened flag of FolderItem.
2925 summary_clear_list(): down the opened flag of FolderItem.
2926 summary_write_cache(): call procmsg_flush_mark_queue().
2930 * src/summaryview.[ch]: trim the tail of folder name and selected
2931 number on the status label if the space is not enough.
2935 * src/imap.c: imap_create_special_folder(): fixed a bug that didn't
2936 set SpecialFolderItemType when creating special folders under
2938 * ac/gpgme.m4: removed.
2940 * ac/missing/gdk-pixbuf.m4
2941 ac/missing/gettext.m4
2943 ac/missing/imlib.m4: added for convenience.
2947 * src/esmtp.c: esmtp_auth(): fixed a bug that some garbages are
2948 shown after the decoded challenge string. Fixed a memory leak.
2950 * src/compose.c: compose_draft_cb(): mark draft messages as read.
2951 * src/folderview.c: folderview_update_node(): disable emphasis
2952 for Outbox and Draft folders.
2956 * src/messageview.c: messageview_show(): fixed a memory leak.
2957 * src/summaryview.c: summary_save_as(): show error dialog if copy
2959 * src/about.c: about_show(): make the window active if it is already
2964 * src/compose.c: show confirmation dialog before sending if Subject
2966 compose_check_entries(): new.
2968 compose_send_later_cb(): use compose_check_entries().
2969 * src/imap.c: imap_parse_atom(): more fix for parsing responses.
2973 * src/imap.c: imap_parse_atom(): fixed a bug that didn't parse the
2974 responses with continuous line correctly, and fixed a memory leak.
2978 * src/undo.c: undo_insert_text_cb(): fixed a crash bug if the text
2980 * src/gtkstext.c: gtk_stext_button_press(): cancel current selection
2981 after pasting with middle button to prevent the selection growth.
2986 folderview_rename_folder_cb()
2987 folderview_delete_folder_cb(): modify filter rules only if the
2988 target folder is in the default mailbox.
2989 * src/utils.c: get_abbrev_newsgroup_name(): removed a redundant
2996 src/prefs_common.c: changed 'Tool' menu to 'Tools'.
2997 Moved 'Delete duplicated messages' under 'Tools'.
3001 * src/folderview.c: SET_SPECIAL_FOLDER(): keep the same parent
3003 * src/imap.c: imap_create_special_folder(): fixed a crash bug
3004 when folder creation failed, and re-try to create folders under
3006 imap_scan_tree_recursive(): don't automatically add namespace
3007 prefix if it's INBOX. Search also under the INBOX for special
3009 * src/foldersel.c: SET_SPECIAL_FOLDER(): keep the same parent
3014 * src/utils.[ch]: get_abbrev_newsgroup_name(): new. It returns the
3015 abbreviated newsgroup name.
3016 * src/folderview.c: folderview_update_node(): display newsgroups
3017 with abbreviated name if name and path is the same.
3018 * src/summaryview.c: summary_status_show(): show the newsgroup with
3024 src/folderview.c: changed the label 'Draft' to 'Drafts'.
3025 * src/imap.c: changed the directory name 'Draft' to 'Drafts'.
3026 imap_create_missing_folders(): fixed the wrong assignment of
3027 Queue folder to draft.
3031 * enabled Sent / Draft / Queue folders on IMAP server.
3032 * src/compose.c: compose_queue(), compose_draft_cb(): use account's
3033 queue and draft folder if they exist.
3035 imap_create_trash(): removed.
3036 imap_create_special_folder(): new. Generalized imap_create_trash().
3037 imap_create_missing_folders(): automatically create missing folders.
3038 imap_is_msg_changed(): added the dummy method.
3039 imap_scan_tree_recursive(): search also Sent, Draft and Queue
3040 folders. Minor code cleanups.
3041 imap_parse_envelope(): check for null strings.
3042 src/procmsg.c: procmsg_read_cache(): add F_QUEUE or F_DRAFT flag
3043 for messages on IMAP folder.
3047 * src/compose.c: compose_send(): use account's outbox folder
3049 * src/procmsg.[ch]: procmsg_save_to_outbox(): changed the API so
3050 that the outbox can be specified.
3054 * src/compose.c: don't save to outbox when messages are queued.
3055 compose_save_to_outbox(): moved to procmsg.c.
3056 * src/procmsg.[ch]: procmsg_send_queue(): save to outbox when
3058 procmsg_save_to_outbox(): new. Removes the queueing headers if
3059 needed, and adds the given file to the outbox.
3063 * src/compose.c: compose_wrap_line(): treat '|' also as quote char.
3064 get_indent_length(): treat ':' and '#' also as quote char, and
3065 cleaned up using strchr().
3069 * src/mainwindow.c: modified some menu items.
3073 * src/defs.h: changed OUTBOX_DIR from "outbox" to "sent"
3074 (current "outbox" will be kept until rescan).
3075 * src/folder.c: folder_set_missing_folders(): create the missing
3078 src/folderview.c: changed 'Outbox' to 'Sent'.
3079 * src/main.c: call folder_set_missing_folders().
3080 * src/mh.c: mh_scan_tree(): create missing folders.
3081 * src/summaryview.c: summary_set_menu_sensitive(): fixed a bug that
3082 didn't set the menu sensitivity correctly.
3087 src/imap.[ch]: implemented folder renaming on IMAP (thanks to Mio).
3088 folderview_rename_folder_cb(): reopen the current folder when
3089 the ancestor is renamed.
3090 imap_rename_folder(): new method implementation.
3092 imap_rename_folder_func(): new.
3093 imap_remove_folder(): remove also the cache directory.
3097 * src/imap.c: implemented locale encoding <-> modified utf-7
3098 conversion, and supported i18n of folder name (thanks to Suzuki
3100 imap_path_separator_subst(): handle the escape characters of
3102 imap_modified_utf7_to_locale()
3103 imap_locale_to_modified_utf7(): new.
3104 imap_create_trash(): modified so that it create the Trash folder
3105 to the correct location when imap directory is specified.
3106 imap_get_real_path(): removed debug print.
3110 * src/socket.c: implemented timeout for DNS lookup and connect().
3111 sock_connect_by_hostname(): timeout support and code cleanup.
3112 sock_connect_with_timeout(): new.
3113 sock_peek(): implemented SSL peek.
3117 * src/messageview.c: messageview_show(): display single-part
3118 text/html messages with the normal text view.
3132 src/prefs_customheader.c
3133 src/prefs_display_header.c
3148 src/xml.c: added 'b' to the option of all fopen().
3156 * src/ssl.[ch]: match its coding style.
3157 * src/compose.c: compose_send_later_cb(): fixed a bug that failed
3161 faq/en/sylpheed-faq*.html
3163 faq/es/sylpheed-faq*.html
3165 faq/fr/sylpheed-faq*.html
3171 src/manual.[ch]: added FAQs in English, Spanish and French.
3175 * manual/en/sylpheed*.html: updated to the latest version.
3180 src/mgutils.c: include string.h to remove warning about strlen()
3194 src/summaryview.c: added break to the last label of switch to
3195 prevent the 'deprecated use of label at end of compound statement'
3197 * src/rfc2015.c: passphrase_cb(): fixed the type of r_hd.
3201 * src/inc.[ch]: preserve the pointer to IncProgressDialog to the
3203 inc_cancel_all(): new. It cancels the all current incorporation.
3204 * src/mainwindow.c: added 'Cancel receiving' menu.
3205 * src/textview.c: a minor fix for single-part MIME messages, and
3206 a bit of cleanup for textview_write_body().
3210 * src/inc.c: inc_write_uidl_list(): fixed a bug that lost UIDL
3211 information if any errors occured before issuing UIDL command.
3212 src/inc.h: added uidl_is_valid to Pop3State.
3213 src/pop.c: set uidl_is_valid to TRUE if UIDL becomes valid.
3221 * src/mimeview.c: mimeview_create(): set the initial notebook page
3223 * src/folderview.c: folderview_selected(): scroll the view if the
3224 selected row is hidden.
3225 * src/prefs_filter.c: prefs_filter_register_cb(): scroll the view
3226 and select the added row.
3227 * src/summaryview.c: fix threading for null message ids.
3231 * src/textview.c: textview_show_message(): follow message/rfc822
3233 textview_add_part(): add a caption before the attached text files.
3234 textview_show_header(): don't add the newline.
3235 * src/messageview.c: enabled message search also in MIME mode.
3239 * src/messageview.c: messageview_show(): set header state of
3240 MimeView's TextView, too.
3241 * src/mimeview.c: mimeview_show_message(): call
3242 textview_show_message() to display message.
3243 * src/textview.c: textview_add_part(): new. It adds the content
3244 of message part without clearing the view.
3245 textview_show_message(): display all parts with appropriate
3247 textview_write_body(): separated from textview_show_part().
3252 src/prefs_common.c: added ISO-8859-15 to the codesets for
3253 displaying and sending.
3254 * src/codeconv.c: conv_codeset_strdup(): return NULL if code
3255 conversion failed, and made caller deal with it.
3256 * src/compose.c: compose_write_to_file(): show error dialog when
3257 code conversion failed, and let user select whether to send it
3259 * src/textview.c: textview_write_line(): show the original string
3260 if code conversion failed.
3264 * src/inc.c: get_spool(): fixed a bug that failed to unlock mbox
3265 if copy_mbox() failed (thanks to Alexander Kabaev).
3266 * src/prefs_account.[ch]: added separate user ID / password setting
3268 * src/send.c: send_message_smtp(): use separate user ID / password
3269 for SMTP AUTH if it is specified.
3274 src/pop.[ch]: refactored the UIDL management.
3275 store the information of messages into the array of Pop3MsgInfo
3276 structure, and do full scanning of not retrieved messages.
3282 src/mainwindow.c: set WMCLASS for window/dialog.
3283 * src/codeconv.c: conv_codeset_strdup(): return source string
3284 when jconv_alloc_conv() failed.
3288 * src/mh.c: mh_scan_tree_recursive(): changed the hardcoded directory
3295 src/summaryview.c: implemented the new notebook tab interface for
3297 * src/textview.[ch]: fixed line space related glitches.
3301 * src/prefs_filter.c:
3302 prefs_filter_rename_path()
3303 prefs_filter_delete_path(): fixed a crash when flt->dest was NULL.
3307 * src/recv.[ch]: cancel data receiving if RecvUIFunc returns FALSE.
3308 * src/pop.c: pop3_retr_recv(): fixed false 'No space' when cancelled
3310 * src/inc.c: inc_pop3_recv_func(): abort data receiving when
3311 cancelled, and fixed potential crash bug.
3312 * src/grouplistdialog.c: enabled cancelling of data receiving.
3313 * src/news.c: news_get_group_list(): destroy current session if
3318 * src/manage_window.[ch]: fixed a bug that caused crash when
3319 the main window was hidden.
3320 MANAGE_WINDOW_SIGNALS_CONNECT(): new macro.
3321 Monitor "unmap_event", "destroy" events.
3328 src/grouplistdialog.c
3332 src/message_search.c
3336 src/prefs_customheader.c
3337 src/prefs_display_header.c
3339 src/prefs_template.c
3340 src/summary_search.c
3341 src/summaryview.c: use MANAGE_WINDOW_SIGNALS_CONNECT() macro to
3342 connect signals for window management.
3346 * src/prefs_account.[ch]: added receive size limit option.
3347 * src/pop.c: skip messages larger than the limit size.
3348 LOOKUP_NEXT_MSG(): new macro.
3349 * src/compose.c: compose_attach_append(): check whether the file
3354 * src/rfc2015.c: commented out dump_mimeinfo() and dump_part().
3355 changed g_message()'s to debug_print() and g_warning().
3356 rfc2015_decrypt_message(): fixed a bug that duplicated message
3357 parts when decryption was failed/cancelled. And made some code
3359 * src/passphrase.c: made the dialog transient.
3360 * src/prefs.c: prefs_config_parse_one_line(): removed debug_print().
3365 src/procmsg.[ch]: fixed a bug that failed to parse multipart
3366 messages if GPGME was enabled.
3367 * src/rfc2015.c: commented out copy_gpgmedata_to_temp() which
3369 * src/prefs_account.c: prefs_account_privacy_create(): modified
3370 the vertical spacing.
3374 * src/menu.[ch]: menu_set_sensitive_all(): new.
3375 menu_set_insensitive_all(): made it a wrapper for
3376 menu_set_sensitive_all().
3377 * src/prefs_account.c:
3378 prefs_account_open()
3379 prefs_account_protocol_set_optmenu(): made the protocol type
3380 unchangeable after creating an account.
3381 * src/compose.c: compose_attach_parts(): traverse MIME tree to
3382 extract all attathed files from nested multipart MIME message.
3386 * src/procmsg.[ch]: procmsg_get_mark_sum(): added arguments to
3387 obtain minimum/maximum number, and to specify first number
3390 src/inc.c: enabled new message checking on news folder.
3391 * src/news.c: news_scan_group(): implemented. Guess new/unread
3392 message number from the response of GROUP command and the mark
3394 news_select_group(): return the total/first/last number.
3395 * src/prefs_account.c: prefs_account_receive_create(): modified
3396 the text of the 'Get all' check button.
3400 * src/account.c: made 'Get all' checkbox available for IMAP4 and
3402 * src/inc.c: corrected the argument of folderview_check_new().
3403 * src/prefs_account.c: modification for the "`Get all' checks for
3404 new mail on this account" checkbox.
3408 * src/folderview.[ch]:
3409 folderview_rescan_tree(), folderview_rescan_all(): renamed from
3410 folderview_update_tree() and folderview_update_all().
3411 folderview_update_all_node(): removed.
3412 folderview_check_new(): new. If the argument is NULL, it checks
3413 all local folders. If the arguments is specified, it checks
3414 the (local and remote) folder.
3417 inc_all_account_mail(): check also IMAP4 account.
3422 folderview_rename_folder_cb()
3423 folderview_delete_folder_cb(): modify the filter rules when folder
3425 * src/prefs_filter.[ch]:
3426 prefs_filter_rename_path(): new. It renames the destination paths
3428 prefs_filter_delete_path(): new. It deletes the filter rules if
3429 the destination paths matched.
3430 * thanks to Neill Miller for above.
3434 * src/compose.c: inherit attached files when forwarding or reediting
3435 (rewrote the code in claws branch).
3436 compose_attach_parts(): new. It extracts and attaches the files
3437 in the given message.
3438 compose_attach_append(): chnaged the types of arguments.
3439 * src/messageview.c: messageview_show(): moved the GPG decryption
3441 * src/procmsg.[ch]: procmsg_open_message_decrypted(): new.
3449 * src/summary_search(): summary_search_execute(): scroll the view
3450 when message view is hidden.
3454 * src/foldersel.c: foldersel_set_tree(): made different type of
3455 folders selectable in moving mode.
3456 * src/folderview.[ch]: folderview_update_msg_num(): compare the
3457 numbers with the CTree's labels, and don't update folder_item here.
3458 * src/imap.c: imap_move_msg(), imap_move_msgs_with_dest():
3459 implemented moving between different type of folders.
3460 * src/mh.c: SET_DEST_MSG_FLAGS(): new macro.
3461 mh_do_move(), mh_do_move_msgs_with_dest(): new (renamed previous
3462 mh_move_msg() and mh_move_msgs_with_dest()).
3463 mh_move_msg(), mh_move_msgs_with_dest(): implemented message
3464 moving between different type of folders.
3465 mh_copy_msg(), mh_copy_msgs_with_dest(): some code cleanups.
3466 * src/summaryview.c: summary_status_show(): update folder_item
3468 * po/POTFILES.in: removed reference to headerwindow.c.
3469 * src/summaryview.c: summary_step(): fixed the behavior on the
3470 head and tail of the list.
3474 * src/mainwindow.c: main_window_set_menu_sensitive(): set 'Show
3475 all header' toggle state from the property of the TextView.
3476 * src/summaryview.[ch]: made 'All header' toggle switch.
3477 Prohibited unnecessary menu update.
3478 summary_select_node(): added the argument 'do_refresh'.
3483 * src/utils.c: strsplit_with_quote(): remove quotation characters
3484 in the function (fix composer's external editor problem) (thanks
3485 to Stefaan A Eeckels).
3486 * src/mainwindow.[ch]: made 'Show all header' toggle switch.
3487 main_window_menu_callback_block()
3488 main_window_menu_callback_unblock(): new.
3489 main_window_set_menu_sensitive(): set the toggle status of
3491 show_all_header_cb(): read the status of toggle menu item.
3492 * src/mainwindow.[ch]: made 'Thread view' toggle switch.
3493 * src/prefs_common.c: prefs_keybind_apply_clicked(): removed
3498 * src/imap.c: imap_add_msg(): fixed a bug that didn't replace
3499 the path separator (thanks to Sergey Vlasov).
3500 * src/gtkutils.c: gtkut_editable_get_selection(): return NULL
3501 if the length of selection is zero.
3502 Fixed the assertion.
3503 * src/utils.c: str_open_as_stream(): return immediately if
3504 the length of str is zero.
3505 * src/headerwindow.[ch]: removed.
3507 src/inc.c: removed stale thread support codes.
3511 * src/procmsg.c: procmsg_open_message(): modified so that it
3512 returns the stream of decrypted message file if it exists
3513 (this fixes the failure of gpg decryption in messageview.c).
3523 src/prefs_template.c
3525 src/quote_fmt_parse.y
3527 src/utils.[ch]: if the part of the message text is selected, use
3528 it for quoted text instead of the entire message body (thanks to
3530 src/utils.[ch]: str_open_as_stream(): new. It returns an
3531 temporary stream for the given string.
3532 * src/main.c: added "--send" command line option.
3533 * src/compose.c: compose_reply_set_entry(): add From address to
3534 Cc if Reply-To and to_all are both specified.
3535 * Makefile.am: correct the Source: line in the RPM spec file in
3540 * src/procmsg.c: procmsg_open_message(): fetch message if the cache
3542 * src/foldersel.[ch]: foldersel_folder_sel(): added an argument
3543 that specifies the folder selection type.
3554 src/prefs_customheader.c
3556 src/summaryview.c: made it compile with C compilers other than gcc
3557 (thanks to Shawn Houston).
3561 * src/imap.c: imap_copy_msgs_with_dest(): fixed a bug on traversing
3563 * src/prefs_common.c: made the key binding setting separate dialog.
3564 * src/addressbook.c: addressbook_format_address(): add "" around
3565 the display name if it contains comma (thanks to Satoshi Watanabe).
3566 * src/addr_compl.c: get_complete_address(): add "" around the
3567 display name if it contains comma.
3568 get_address_from_edit(): handle the quotation character correctly.
3569 * src/addr_compl.c: get_complete_address()
3570 src/addressbook.c: addressbook_format_address(): fixed a bug that
3571 caused wrong text processing if the display name is empty.
3576 * src/compose.c: compose_exec_ext_editor_real(): replaced
3577 g_strsplit() with strsplit_with_quote().
3579 src/folderview.c: folderview_drag_motion_cb(): minor code cleanups.
3581 folderview_drag_motion_cb()
3582 folderview_drag_received_cb(): allow dropping into IMAP4 folder.
3583 * src/utils.c: get_file_size_as_crlf(): use fgets() instead of
3587 imap_copy_msgs_with_dest(): use imap_add_msg() if the source
3588 of the message is different from the current mailbox.
3589 Return the correct value.
3590 imap_cmd_append(): properly implemented the APPEND command.
3595 src/messageview.[ch]
3596 src/summaryview.[ch]
3597 src/textview.[ch]: show all headers in the message view, and don't
3598 use the header window anymore.
3600 src/prefs_common.c: changed the default shortcut of 'compose new
3603 src/summaryview.[ch]: summary_display_msg_selected(): new.
3604 Show the selected message if 'Show all header' is selected.
3606 src/sourcewindow.c: changed some procmsg_get_message_file_path()
3607 to procmsg_get_message_file() to be sure the message is
3609 * src/folderview.c: folderview_drag_motion_cb(): allow DnD from
3610 any folder to MH folder.
3611 folderview_drag_received_cb(): copy messages instead of moving
3612 if the source folder is news or IMAP.
3614 src/summaryview.c: allow copy from news folder.
3618 * src/prefs_common.c: prefs_other_create(): modified the design
3619 of the external command settings.
3620 prefs_keybind_apply_clicked(): made the Mew / Wanderlust keybind
3621 preset closer to the original.
3622 Added Mutt keybind preset.
3623 Also change the compose keybinds.
3624 * src/compose.c: modified some menu shortcuts.
3625 * src/codeconv.c: modified the locale_table for Thai encoding.
3629 * src/Makefile.am: added $(GPGME_CFLAGS) to INCLUDES.
3630 * src/prefs_common.c: prefs_interface_create(): modified the
3631 description for menu shortcut.
3635 * src/gtkutils.[ch]: added gtk_stext_clear().
3638 src/summaryview.[ch]: enabled multiple forwarding.
3639 * src/summaryview.c:
3640 summary_set_marks_selected(): set marks for all selected row.
3641 summary_reply(): moved from summary_reply_cb().
3642 * compose.[ch]: compose_forward(): modified so that it receives
3644 * src/mainwindow.c: cleanup for reply processing.
3645 * src/summaryview.c: summary_reply(): fixed a memory leak.
3646 summary_key_pressed(): removed hardcoded mark / mark as unread
3649 src/prefs_common.c: added mark / mark as unread shortcuts to
3654 * src/compose.c: compose_wrap_line_all(): wrap quoted part even
3655 if prefs_common.linewrap_quote is not set (it is only for
3656 auto-wrapping on reply).
3657 * src/prefs_account.c: prefs_account_open(): initialize tmp_ac_prefs
3658 when creating a new account.
3659 * src/mh.c: mh_get_msg_list(): use also st_ctime to detect
3661 * src/prefs_common.c: prefs_interface_create(): modified the
3662 description of key binds selector.
3666 * src/mimeview.c: fixed multiple dialog / moving by correcting
3667 button / key event processing.
3669 src/textview.c: pass some key press events to MimeView in MIME
3671 * src/prefs_filter.c: fixed a bug that didn't set the order of
3673 * src/prefs_common.c: prefs_keybind_apply_clicked(): fixed
3674 empty_menurc string.
3679 src/prefs_common.c: reorganized the menu shortcuts.
3680 Added 'View - Toggle summary view'.
3681 * src/summaryview.[ch]: summary_toggle_view(): made it public
3683 * src/prefs_common.[ch]: swapped the position of 'Shortcut key'
3685 * src/importldif.c: imp_ldif_delete_event(): fixed segfault when
3686 closing the dialog with window manager (in more appropriate way).
3687 * src/imageview.[ch]
3689 src/mimeview.c: fixed wrong scrolling position when switching
3690 between text and image parts. Also free the unrequired image
3691 (thanks to Sergey Vlasov).
3692 * src/prefs_common.c: disabled 'Go to inbox after receiving new mail'
3697 * src/prefs_common.c: implemented shortcut quick changer.
3698 * src/folderview.c: folderview_key_pressed()
3699 src/summaryview.c: summary_key_pressed(): removed some hardcoded
3705 procmime_get_mime_type()
3706 procmime_get_mime_type_table(): made the MIME type search case
3709 gtk_stext_delete_line(): delete newline on empty line.
3710 gtk_stext_delete_to_line_end(): delete newline if cursor is on
3712 (thanks to Yasuzaki Masayoshi.)
3717 src/gtkstext.[ch]: removed the hardcoded shortcuts in GtkSText,
3718 and made them customizable.
3719 * src/utils.[ch]: added get_file_size_as_crlf() which returns
3720 the file size when converting LF to CR+LF.
3724 * src/compose.c: enabled 'Ctrl-Enter' or
3725 'Ctrl-(other modifier keys)-Enter' shortcut that didn't work
3727 * src/gtkstext.c: disabled some Emacs key bindings.
3728 gtk_stext_key_press(): don't extend selection when Shift-Enter
3729 is pressed to prevent the disapperance of cursor.
3730 * src/summaryview.c: summary_select_next_unread(): added the button
3731 to search unread message again from the beginning to the dialog.
3732 * src/folderview.c: folderview_key_pressed(): go to next unread
3733 folder if space key is pressed on the empty folder.
3734 Move CTree focus before selecting row.
3738 * src/defs.h: modified the XLFD of default fonts.
3739 * src/textview.c: textview_create(): fixed a bug that caused
3740 segfault if font couldn't be loaded.
3742 src/grouplistdialog.c: compare subscribed groups with path.
3743 * src/prefs_filter.c: changed 'Operator' to 'Condition'.
3747 * src/compose.c: compose_wrap_line_all(): fixed wrapping crash
3748 when URL is wider than wrapping margin.
3750 src/prefs_filter.[ch]
3751 src/summaryview.[ch]: added "Create filter rule" function based
3752 on the patch from Luca Rosellini.
3753 * src/summaryview.c: summary_filter_open(): added X-List and
3754 X-Mailing-list to the automatically detected headers.
3758 * configure.in: support Mac OS X (Darwin).
3762 * src/prefs_filter.c: use inc_(un)lock() instead of
3763 inc_autocheck_timer_{remove|set}().
3764 * src/summaryview.c: summary_sort(): use gtk_ctree_sort_recursive()
3765 instead of gtk_ctree_sort_node() so that messages within threads
3767 * src/procmsg.c: procmsg_read_mark_file(): fixed a bug that the
3768 target of sizeof was wrong and caused crash on Alpha architecture
3769 (thanks to Motonobu Ichimura).
3774 foldersel_gnode_func(): made the names of special folders
3776 foldersel_set_tree(): move the special folder to the top.
3777 * src/inputdialog.[ch]: input_dialog_query_password(): new.
3781 src/send.c: use input_dialog_query_password() instead of their
3782 own query functions.
3786 * src/defs.h: modified the default font.
3790 src/news.[ch]: moved the class definition and some methods to
3791 the proper location.
3795 * src/mimeview.c: mimeview_save_as()
3796 src/summaryview.c: summary_save_as(): put the default filename
3797 based on the subject.
3798 * src/utils.[ch]: added subst_chars() and subst_for_filename()
3799 which substitute some special characters with underscore.
3800 * src/filesel.c: filesel_select_file(): select the default filename.
3805 INSTALL.jp: added the description and the URL for libjconv.
3806 * src/mainwindow.c: menu entries cleanup.
3812 src/about.c: modified the copyright year.
3813 * src/gtkstext.h: added the notice for modification by the Sylpheed
3819 INSTALL.jp: added the URL for compface.
3827 * src/headerwindow.c
3830 src/sourcewindow.c: set wmclass when creating windows.
3834 * src/compose.c: compose_wrap_line_all(): fixed the bug that
3835 caused infinite loop when wrapping certain patterns of quoted text.
3839 * src/imap.c: imap_parse_envelope(): put the assertion after
3840 imap_parse_address() to prevent segmentation fault.
3845 src/mainwindow.c: modified some labels of menu items.
3846 * src/ldif.c: put the return value of fgetc() in a gint.
3847 * src/importldif.c: don't brace null strings with _().
3848 * src/compose.c: moved the position of Subject entry to the last.
3849 Reorganized the menu.
3850 compose_draft_cb(): added 'keep editing after saving to draft'
3855 * src/mainwindow.c: reorganization of main menu. Removed 'Summary'
3856 menu. Moved 'Help' menu to just the right of 'Configuration'.
3857 Removed 'File - Close' menu item.
3861 * src/mainwindow.c: some menu reorganization.
3862 * AUTHORS: updated. Added more contributors.
3863 * src/account.c: account_row_moved(): new. Moves displayed row to
3864 the appropriate position when up / down button are pressed.
3865 account_clist_set(): move displayed row to the appropriate position.
3867 src/mainwindow.c: set title and wmclass when creating windows.
3871 * src/gtkstext.c: fixed a bug that didn't show block cursor
3872 correctly. Removed unnecessary GdkGC copy. Fixed cursor
3877 src/undo.c: modified to use GtkSText.
3878 * src/menu.h: added #include <gtk/gtkmenu.h>.
3883 configure.in: added XIM checking for GTK+.
3884 * src/gtkstext.[ch]: new. Copied GtkText in GTK+ and renamed.
3888 * src/filter.c: added #include <sys/types.h>.
3892 * src/template.c: template_write_config(): fixed a typo.
3893 * src/compose.c: toolbar_linewrap_cb(): call compose_wrap_line_all().
3895 src/prefs_filter.c: supported regular expression (thanks to
3897 * src/undo.c: undo_paste_clipboard_cb(): fixed a bug that broke
3898 undo state when pasted clipboard was empty.
3899 undo_check_size(): use g_list_last().
3901 undo_redo(): fixed NULL checking and made a bit of optimization.
3903 * src/prefs_common.c: changed the default value of linewrap length
3908 * reorganization of pixmap management.
3909 * src/stock_pixmap.[ch]: new. This module manages all static pixmaps.
3910 * modified every files which directly use pixmaps data to use
3912 * src/undo.[ch]: renamed undo_set_undo_change_funct() to
3913 undo_set_change_state_func(), and changed its argument from
3914 GtkWidget* to gpointer.
3915 undo_merge(): code cleanup.
3916 * src/compose.c: renamed compose_set_undo() to
3917 compose_undo_state_changed().
3921 * src/account.c: account_find_from_address(): made it case
3923 * src/addressbook.c: addressbook_create(): set wmclass.
3924 * src/compose.c: compose_insert_file(): supported DOS/Win/Mac line
3927 src/ldif.[ch]: merged from the claws branch.
3928 * src/importldif.c: removed some warnings.
3929 imp_ldif_field_list_toggle(): fixed button checking.
3930 imp_ldif_dialog_create(): minor layout fix.
3931 * src/ldif.c: removed some warnings.
3933 INSTALL.jp: updated confirmation list.
3936 vcard_test_read_file(): fixed a memory leak of tagtemp.
3937 Some code cleanups (decreasing the indent level).
3940 src/syldap.[ch]: disabled runtime library checking because JPilot
3941 and LDAP libraries are linked on the build time, and the program
3942 doesn't execute without them anyway.
3944 src/addrindex.c: changed "J-Pilot" to "JPilot".
3945 Removed warning for atoi().
3949 * src/procmsg.c: procmsg_empty_trash()
3950 src/mainwindow.c: main_window_empty_trash(): empty trash only if
3951 it contains some messages.
3952 * src/imap.c: search_array_str(): new.
3953 imap_status(): fixed a bug that didn't parse the command response
3958 * merged undo function (by Jens Oberender).
3959 * src/undo.[ch]: new.
3960 undo_insert_text_cb(): fix for multibyte characters (obtain the
3961 number of letters instead of bytes).
3962 * src/compose.[ch]: added the code for undo.
3963 * src/prefs_common.[ch]: added the interface for setting undo level.
3967 * src/compose.c: compose_template_apply()
3968 src/prefs_template.c: prefs_template_clist_set_row()
3969 src/template.c: template_write_config(): don't replace To: and
3970 Subject: entry in composition window if they are empty.
3978 * src/folderview.c: folderview_drag_motion_cb(): fixed a DnD bug.
3979 * src/ldif.c: ldif_get_line(): ignore CR.
3980 * src/mimeview.c: mimeview_show_message(): search also text/html
3981 for first text part.
3985 * src/prefs_account.c: prefs_account_save_config_all(): fixed a bug
3986 that didn't update accountrc if account_list == NULL (thanks to
3991 * src/utils.h: added the macro Xstrcat_a() that concatenates
3992 two strings and return alloca'd string.
3993 * src/imap.c: imap_scan_tree_recursive(): fixed a bug that didn't
3994 handle folder name which includes some spaces correctly
3995 (based on the patch from Willem van Engen (thanks!)).
3996 * src/compose.c: compose_wrap_line_all(): fixed the crash when
3997 wrapping long lines if linewrap quotation is disabled and
3998 a word spanning more than one line.
4002 * applied the Tobias' patch with modification (thanks!).
4004 imap_msg_set_perm_flags()
4005 imap_msg_unset_perm_flags(): new. They set permanent flags to
4008 src/summaryview.c: set flags on IMAP server when flags are changed.
4012 * src/gtkutils.[ch]: gtkut_container_remove(): new. It's a wrapper
4013 of gtk_container_remove() for workaround of a bug in
4014 Gtk{Text,Entry} (thanks to Sergey Vlasov).
4020 src/textview.c: replaced gtk_container_remove() with
4021 gtkut_container_remove(), and removed previous partial fix.
4025 * src/prefs_account.c: prefs_account_apply(): fixed a bug that
4026 checked user ID on "local", but didn't on IMAP4.
4027 * src/imap.c: imap_session_get(): fixed a crash bug when
4028 rfolder->session == NULL.
4029 * Makefile.am: changed the arguments of tar from 'chojf' to
4031 * src/summaryview.c: summary_toggle_view(): disclaim the selection
4032 of textview before removing vpaned.
4036 * src/messageview.c: messageview_change_view_type(): disclaim the
4037 selection before removing textview. This solves the mysterious
4038 copy-paste disability (thanks to Melvin Hadasht).
4039 * src/textview.c: textview_set_font(): use
4040 gtk_editable_claim_selection() instead of
4041 gtk_editable_select_region().
4045 * src/prefs_template.c: prefs_template_window_create(): supported
4046 address completion on the To: entry.
4051 folder_count_total_msgs()
4052 folder_count_total_msgs_func(): use g_node_traverse() to traverse
4057 * src/compose.c: fixed a bug that empty body was refused.
4058 * src/prefs_template.c: fixed a bug that didn't set To: entry
4059 correctly. Display error dialog if format is illegal.
4060 * src/prefs_common.c
4062 src/quote_fmt_parse.y: changed parenthesis "( )" to curly braces
4063 "{ }" to prevent confusion on using parenthesis.
4064 * src/html.c: html_get_parenthesis(): ignore CSS / script stuff.
4068 * src/prefs_template.c: added colon to the header labels.
4073 src/prefs_template.c
4074 src/template.[ch]: added To field to the template.
4078 * src/textview.c: textview_show_part(): use first found
4079 message/rfc822 header.
4080 * src/folderview.c: added "Search messages..." to the context menu.
4081 * src/prefs_common.c: prefs_quote_description_create(): added
4082 description for characters which need to be escaped.
4086 * src/compose.c: compose_wrap_line_all(): more merging from claws.
4087 GET_CHAR(): renamed GET_TEXT() and made it more generic.
4088 Modified compose_wrap_line() and compose_wrap_line_all() to use
4090 * src/textview.c: textview_show_part(): show the header of nested
4091 RFC822 attachment correctly.
4096 src/main.c: added --status option to get new, unread and total
4097 message count from a running Sylpheed (merged from claws).
4098 prohibit_duplicate_launch(): output '\n' only once.
4103 src/gtkutils.[ch]: merged the new wrapping function.
4104 gtkut_text_str_compare_n()
4105 gtkut_text_str_compare()
4106 gtkut_text_is_uri_string(): backport from the GtkSText in the
4107 claws branch, and made modification.
4108 * src/prefs_template.c
4109 src/template.[ch]: added Subject to the template.
4113 * src/compose.c: compose_write_headers(): added missing parenthesis
4114 that generated invalid custom header (thanks to Masaaki Noro).
4115 Allow Sender: custom header.
4119 * src/procheader.c: procheader_date_parse(): workaround for
4120 RFC-incompliant Date header.
4124 * src/addrbook.c: removed redundant functions, and fixed generation
4125 of spurious address book file names.
4126 * src/addrindex.c: V-Card -> vCard.
4130 * src/textview.c: get_email_part(): replaced isalnum() with
4131 the macro IS_ASCII_ALNUM() which restricts the range of
4132 characters to 7bit ASCII (thanks to Shimamoto).
4133 * src/utils.c: remote_tzoffset_sec(): workaround for malformed
4138 * src/textview.c: textview_show_part(): show headers on nested
4143 * src/imap.c: imap_session_get()
4144 src/news.c: news_session_get(): fixed segfault when reconnection
4146 * src/grouplistdialog.c: removed redundant code, and expand nodes
4147 that doesn't match the pattern.
4151 * src/compose.c: modified so that it sends message when any of
4152 To:, Cc:, Bcc:, or Newsgroups: fields have valid recipient.
4153 compose_check_for_valid_recipient(): new.
4154 * src/grouplistdialog.c: improved the UI.
4155 Added appropriate description and search button.
4156 Search doesn't get group list again.
4160 * src/news.[ch]: news_session_get(): update the last access time
4162 news_group_list_free(): new.
4163 * src/grouplistdialog.c: free resources correctly.
4168 src/grouplistdialog.[ch]: more merging of new newsgroup
4169 subscription dialog.
4170 * src/news.[ch]: renamed news_remove_group_list() to
4171 news_remove_group_list_cache().
4175 * src/defs.h: added MAX_ENTRY_LENGTH definition.
4176 * src/compose.c: compose_add_entry_field(): create new entry with
4181 * src/grouplistdialog.c: made non-leaf node selectable.
4182 Give the complete newsgroup name for each nodes.
4186 * src/grouplistdialog.c
4187 src/news.[ch]: merging of new newsgroup subscription dialog
4188 (still in progress. Don't use it yet!).
4192 * src/utils.[ch]: decode_uri(): new. It decodes URL-encoded strings.
4193 * src/compose.[ch]: compose_new_with_recipient(): accept mailto
4195 compose_entries_set(): new. It parses mailto URL and put each
4196 values into the entries.
4200 * src/compose.c: compose_forward(): fixed a bug that forward
4201 quote mark wasn't used (thanks to Hironori IWANE).
4204 src/prefs_common.c: added Thai encodings (thanks to Manrat
4209 * src/socket.c: sock_connect_by_hostname(): removed h_errno.
4213 src/news.c: added last_access_time to Session.
4214 imap_session_get(): check connection only when access interval
4223 * src/socket.c: ssl_gets(): use SSL_peek.
4224 * updated NEWS and AUTHORS.
4225 * Makefile.am: fixed release target.
4229 * src/template.c: changed the format of template file to
4231 * src/compose.c: compose_template_apply(): freeze the text widget
4232 while inserting strings.
4236 * po/POTFILES.in: removed src/template_select.c.
4237 * src/summaryview.c: summary_set_header()
4238 src/address.c: address_parse_str()
4239 src/filter.c: filter_read_str()
4240 src/news.c: news_parse_xover()
4241 src/procheader.c: procheader_get_fromname()
4242 src/utils.c: subject_compare():
4243 replaced Xalloca() + strcpy() with Xstrdup_a().
4244 * src/inputdialog.[ch]: added combo mode.
4245 input_dialog_combo(): new.
4246 * src/prefs_common.[ch]: added MIME open command setting.
4247 prefs_common_{read, save}_config(): read / write command history.
4248 * src/mimeview.c: mimeview_open_with(): use combo input dialog.
4249 * src/utils.[ch]: add_history(): history list management function.
4253 * src/compose.c: select templates from the menu.
4254 compose_set_template_menu(): new.
4255 compose_reflect_prefs_all(): new.
4256 compose_template_apply(): new. Use dummy MsgInfo for parsing.
4257 * src/template.[ch]: store template list to the static heap.
4258 template_get_config(): new.
4259 template_set_config(): new.
4260 * src/prefs_template.c: don't store template list to the global area.
4261 * src/template_select.[ch]: removed.
4262 * src/quote_fmt_parse.y: check folderitem when quoting messages.
4263 * src/mh.c: mh_add_msg(): try to copy file whenever link() failed
4264 (thanks to OSHIRO Naoki).
4268 * src/utils.[ch]: get_template_dir(): new.
4269 * src/template.c: use get_template_dir().
4273 * src/prefs_template.c: modified the dialog layout.
4274 Added symbol description button.
4275 * src/summaryview.c: show an arrow mark to the column of the sort
4277 summary_set_column_titles(): new.
4283 TODO.jp: updated the documents.
4287 * src/Makefile.am: add missing checkbox_{on, off}.xpm.
4288 * src/textview.c: textview_key_pressed()
4289 src/mimeview.c: mimeview_key_pressed()
4290 src/summaryview.c: summary_key_pressed(): delete messages with
4295 * src/socket.c: ssl_gets(): fixed a bug that caused infinite loop
4296 when SSL_read() returned 0.
4297 * src/utils.[ch]: strcrchomp(): new. It removes CR from the tail
4299 * src/quote_fmt_parse.y: convert CRLF to LF when inserting messages.
4300 Add prototype of yylex() to suppress the warning.
4301 * merged the template function.
4302 * src/prefs_template.[ch]
4304 src/template_select.[ch]: new.
4305 Renamed prefs_templates_* -> prefs_template_*.
4306 * src/compose.c: added template menu. Added replyinfo to Compose.
4307 * src/mainwindow.c: added template setting menu.
4308 * src/quote_fmt_lex.l: output literal tab and return as is.
4309 * src/prefs_common.c: changed the pref. name of quote format to
4310 'reply_quote_{mark, format}' and 'fw_quote_{mark, format}'.
4314 * src/prefs_common.[ch]: added Quote tab, and moved the quote
4315 setting from Compose tab.
4316 * merged the new quote format parser.
4317 * src/quote_fmt_lex.h
4320 src/quote_fmt_parse.y: new files for quote format parser.
4321 * configure.in: added checks for lex and yacc.
4322 * src/compose.c: compose_quote_file(), compose_quote_parse_fmt():
4324 compose_quote_fmt(): new.
4325 * src/prefs_common.[ch]: added forward format setting to the
4326 Quote tab. Updated the quote description dialog.
4327 * src/quote_fmt_parse.y: fixed bugs that tried to read file even
4328 if they couldn't get text part.
4332 * src/pixmaps/checkbox_off.xpm
4333 src/pixmaps/checkbox_on.xpm: new.
4334 * src/account.c: display `get all' status with the checkbox pixmaps.
4338 * src/send.c: code cleanup. Pass account prefs structure instead
4340 Query password for SMTP AUTH if not specified (thanks to Mio).
4344 * src/procheader.c: procheader_parse(): fixed a bug that didn't
4345 parse multiple message-id in In-Reply-To: header correctly
4346 (thanks to KAJIWARA).
4350 * src/account.c: enabled 'Get all' setting by clicking the 'G'
4351 column of account list, and added some description.
4352 * src/prefs_common.c: prefs_send_create(): added a description
4353 for outgoing codeset.
4357 * src/prefs_account.[ch]: moved inbox entry to the receive tab,
4358 and added select button and short description.
4359 * src/Makefile.am: added SYSCONFDIR to CPPFLAGS.
4361 procmime_get_mime_type_table()
4362 procmime_get_mime_type_list(): modified so that
4363 $(SYSCONFDIR)/mime.types (or /etc/mime.types if not found) and
4364 $(HOME)/.sylpheed/mime.types are read.
4368 * src/prefs_account.c: moved the address auto-setting to the compose
4370 prefs_account_create(): removed gtk_widget_show_all() for proper
4372 * src/prefs_common.c: changed "Program path" to "Command".
4376 * src/textview.c: textview_set_font(): support Russian charset
4378 * src/summaryview.c: summary_delete(): (hopefully) fixed the crash
4382 prefs_summary_column.c: minor improvements to the English.
4383 * src/main.c: get_queued_message_num(): don't output the warning
4384 when queueing folder is not found.
4392 * src/prefs_summary_column.[ch]:
4393 made prefs_summary_column_get_config() public.
4394 * src/summaryview.c: summary_ctree_create(): some code cleanup.
4395 * configure.in: moved the position of SSL checking after LDAP
4396 for linking problem.
4401 src/summaryview.c: allowed reedit in the outbox.
4402 * src/prefs_summary_column.[ch]: new. UI for setting summary
4404 * src/mainwindow.[ch]: main_window_set_summary_column(): new.
4405 It calls summary_set_column_order().
4406 * src/summaryview.[ch]:
4407 summary_ctree_create(): new. separated from summary_create().
4408 summary_set_column_order(): new. It destroys the current
4409 CTree and replaces it with the new one.
4413 * src/smtp.[ch]: smtp_from(): abort if auth failed.
4414 * changed C++-style comments into C-style in some files, and
4415 removed unnecessary commented out codes.
4416 * src/addrcache.[ch]
4420 src/syldap.[ch]: updated the addressbook code, and fixed the
4423 src/importldif.[ch]: new.
4427 * src/about.c: added some items to compiled-in features.
4428 * src/addr_compl.c: changed LOG_MESSAGE to debug_print.
4429 * src/addressbook.c: changed "V-Card" to "vCard".
4430 addressbook_edit_address_cb(): added
4431 invalidate_address_completion() to the point address is changed.
4432 * src/codeconv.c: changed C++-style comments into C-style.
4436 * src/compose.c: changed "Send" shortcut to Ctrl+Enter.
4440 * src/inc.c: fixed a bug that crashed sylpheed if Cancel button
4445 * src/procmsg.c: procmsg_get_thread_tree(): complete the unfinished
4447 * src/summaryview.c:
4448 summary_thread_init(): separated from summary_thread_build().
4449 summary_thread_build(): removed the codes for initialization.
4450 summary_set_ctree_from_list(): call summary_thread_init() instead
4451 of summary_thread_build().
4452 summary_filter(): fixed a bug that didn't moved messages despite
4453 of immediate execution setting.
4457 * src/procmsg.c: procmsg_get_thread_tree(): new. It generates the
4458 reversed thread tree from message list.
4459 * src/summaryview.c: summary_set_ctree_from_list(): prepend the
4460 node to the head instead of appending to the tail. This prevents
4461 the traverse of node list inside of the GtkCTree, and considerably
4462 speeds up the summary display (the order is O(n^2) -> O(n)).
4466 * src/prefs_common.c
4467 src/summaryview.[ch]: initial modification for reorderable columns.
4471 * src/procmsg.c: procmsg_get_mark_sum(), mark_sum_func(): fixed a
4473 * src/folderview.c: folderview_button_pressed(): code cleanup, and
4474 turn sensitivity off if main window is locked.
4475 * src/syldap.c: syldap_read_data(): removed unnecessary and
4476 unportable sched_yield().
4480 * src/folderview.c: renamed "Update folder tree" context menu to
4481 "Rescan folder tree", and made "Update folder tree" only updates
4483 folderview_update_all_node(): don't show message dialog.
4484 * src/gtkutils.c: gtkut_widget_get_uposition()
4485 src/mainwindow.c: main_window_popup(): clip the coordinate to
4490 * src/utils.c: to_human_readable(): made a bit of optimization.
4491 * src/summaryview.c: summary_delete(): fixed a focus problem.
4492 summary_find_{prev,next}_msg(): new. They find previous/next
4493 message that is not deleted.
4494 * src/prefs_filter.c: scroll CList automatically if moved row
4495 becomes not fully visible.
4499 * updated some autotool scripts.
4500 * src/codeconv.c: conv_encode_header(): fixed a bug that caused
4501 infinite loop when failed to convert encoding.
4502 * src/codeconv.[ch]: a fix for older version of libjconv
4503 (jconv_info_get_current_codeset() returned "EUCJP" instead of
4512 * src/compose.c: compose_write_to_file()
4513 src/codeconv.c: conv_codeset_strdup(): more workaround for
4514 libjconv problem on C locale.
4515 * src/editldap_basedn.c: fixed segfault when opening dialog.
4516 * src/utils.c: is_next_mbs()
4517 src/compose.c: compose_wrap_line(), compose_wrap_line_all():
4518 changed MB_CUR_MAX to MB_LEN_MAX for compliance to ANSI C.
4519 * configure.in: increased the reqired version of GPGME to 0.2.3.
4520 * src/pop.c: pop3_getauth_user_recv(): fixed a bug that closed
4521 the receive dialog when POP3 server refused normal authentication.
4525 * src/prefs_common.c: prefs_receive_create(): correction to English.
4526 * src/compose.c: compose_set_ext_editor_sensitive(): fixed a bug
4527 that didn't set the menu sensitivity correctly (thanks to
4529 * src/summaryview.c: delete messages permanently if the current
4530 folder is trash and 'delete' operation is executed.
4531 Fixed the bug that didn't select the last row correctly (thanks
4532 to Alfons Hoogervorst).
4533 * src/folder.[ch]: folder_item_remove_msgs(): new. It removes
4534 all messages given in the list.
4538 * src/summaryview.c: summary_show(): fixed a bug that didn't show
4539 message even if the 'open unread message on entering folder'
4540 option was turned on.
4544 * src/procmime.c: procmime_get_text_content(): supported HTML.
4548 * src/summaryview.[ch]: implemented new locking mechanism, and
4549 replaced every static locks with summary_lock(), summary_unlock(),
4550 and added locks to some extra functions.
4551 This fixes a bug that caused segfault when 'd' (delete) key
4556 * src/addressbook.c: addressbook_folder_load_person(): fixed a bug
4557 that caused segfault (thanks to Stefaan A Eeckels).
4561 * src/textview.[ch]: added textview_set_position().
4562 * src/messageview.[ch]: added messageview_set_position().
4574 src/editldap_basedn.c
4579 src/vcard.c: converted C++-style comments into C-style one.