4 added scoring.c scoring.h
5 prefs_folder_item.c prefs_folder_item.h
8 added FOLDERITEM_RC SCORING_RC
10 added prefs field in FolderItem :
11 properties for each folder (PrefsFolderItem),
12 sorting type and mode were added as the first properties.
14 read config for scoring
15 * added src/matcher.[ch]
16 gives functions to parse configuration file to do
17 matching on mails with a list of conditions.
19 add option to sort by score
20 * src/prefs_common.[ch]
21 added preference option to show score and for
23 * added src/prefs_folder_item.[ch]
24 properties for each folder (PrefsFolderItem),
25 sorting type and mode were added as the first properties.
27 added procheader_parse_header()
28 added procheader_header_free()
29 added procheader_headername_equal()
30 and made modification to use them.
32 added score field to MsgInfo structure
33 * added src/scoring.[ch]
34 gives functions to parse configuration file to do
35 scoring on mails with a list of conditions.
36 * src/summaryview.[ch]
37 save the sorting type and mode for the folder
38 added column to display the score of the mail
39 added function summary_score_clicked()
40 sorting type and mode are restored to the folder
43 use procheader_parse_header(), procheader_headername_equal()
44 removed memory leak in text_scan_header when freeing headers
46 changed the function to match names of headers
47 using procheader_headername_equal()
49 Scoring functions are implemented, an interface is needed
55 hopefully fixed the row up navigation bug,
56 removed adding back / forward lines to cache
60 * src/prefs_display_headers.c: user interface changes:
61 (prefs_display_headers_create): remove unused "Show" check button;
62 allow reordering of headers by dragging.
63 (prefs_display_headers_write_config): remove unused variables.
64 (prefs_display_headers_set_dialog): do not insert "(New)" at top
65 of lists (not needed with the new UI).
66 (prefs_display_headers_set_list): scan lists starting from row 0,
67 not 1 (do not skip "(New)").
68 (prefs_display_headers_find_header): new function.
69 (prefs_display_headers_clist_set_row): do not allow duplicates.
70 (prefs_display_headers_delete_cb): do not skip row 0; treat
71 closing the alert window by ESC as "No".
72 (prefs_display_headers_up): do not protect row 0.
73 (prefs_display_headers_down): do not protect row 0.
77 * src/mainwindow.c (next_marked_cb, prev_marked_cb): new
81 (summary_find_next_marked_msg, summary_find_prev_marked_msg,
82 summary_select_next_marked, summary_select_prev_marked): new
87 * src/news.c: fixed a bug when no article can be fetched after
88 server timeout if the connection was restored by news_post():
89 (news_select_group): new function.
90 (news_fetch_msg): call news_select_group() before fetching
92 (news_get_uncached_articles): set session->group after successful
100 changed version of cache, added cc field
102 * src/prefs_display_headers.c
103 the interface was changed
105 * src/prefs_headers.c
110 * completed sync of sylpheed cvs2
111 * src/gtkstext.c: updated row up / down cursor navigation
112 * src/textview.c: re-edited, prepared for fixing the email address
117 * src/prefs_common.c: use alfons' strftime ui code
118 entry_datefmt and datefmt_sample widgets have to be
119 global in this module because of this change
124 * src/prefs_common.[ch] added option to activate the return receipt
129 * src/gtkstext.c: fix for row up/down cursor navigation.
133 * sync with 0.4.66cvs2
137 added add-sender-to-addressbook patch
145 * src/alertpanel.h (AlertValue): added G_ALERT_VALUE_MASK,
148 * src/alertpanel.c (alertpanel_create): new argument can_disable,
149 all existing callers changed to pass FALSE; create a check button
150 to disable the message.
151 (alertpanel_message_with_disable): new function.
152 (alertpanel_show): mask value with G_ALERT_VALUE_MASK.
153 (alertpanel_button_toggled): new function.
154 (alertpanel_button_clicked, alertpanel_close): set value using
157 * src/prefs_common.h (PrefsCommon): new field gpgme_warning.
159 * src/prefs_common.c (prefs_privacy_create): new check button
160 checkbtn_gpgme_warning.
162 * src/main.c (main): moved preferences reading before gpgme
163 initialization; check prefs_common.gpgme_warning before giving the
164 GnuPG warning and set it to FALSE if the user wants to disable the
167 2001-05-02 [hiroyuki]
169 * src/prefs_display_headers.c: modified the layout and some labels.
173 * src/prefs_account.c (prefs_account_fix_size): new function.
174 (prefs_account_create): call prefs_account_fix_size(); use
175 gtk_widget_show instead of gtk_widget_show_all (fixes too large
176 size when the window is shown for the first time).
177 (prefs_account_basic_create): changed layout of serv_table; moved
178 localmbox_entry above smtpserv_entry (logically it replaces
180 (prefs_account_protocol_activated): set sensitivity of
181 nntpauth_chkbtn according to the protocol (in addition to
182 hide/show); commented out gtk_table_set_row_spacing() calls.
183 (prefs_account_nntpauth_toggled): do nothing if nntpauth_chkbtn is
184 not sensitive (fixes a bug with disabled username/password boxes
185 when editing POP3 account after NNTP with authentication).
191 * src/prefs_account.[ch]
193 removed local account without SMTP server
194 added option to use mail command instead of a connexion
195 to SMTP server when a local account is used
196 * src/prefs_headers.c
199 fixed a bug when connexion immediately closed
209 * src/prefs_account.c (Basic, prefs_account_basic_create): new
210 widget nntpauth_chkbtn.
211 (prefs_account_protocol_activated): handle nntpauth_chkbtn
213 (prefs_account_nntpauth_toggled): new function.
215 * src/news.c (news_session_new_for_folder): use NNTP
216 authentication only if ac->use_nntp_auth is set.
220 * src/Makefile.am changed headers.[ch] in customheader.[ch]
221 * src/prefs_display_headers.c changed the UI
222 * src/prefs_headers.c changed account_name to account_id
223 * src/compose.c using customheader.h
225 2001-05-01 [hiroyuki]
229 src/nntp.c: changed sock_read() to sock_gets(), they've been left
234 * src/Makefile.am added prefs_display_headers.[ch] headers_display.[ch]
235 * src/defs.h added HEADERS_DISPLAY_RC : name of the config file
236 for displaying of headers
237 * src/grouplist_dialog.[ch] minor changes to remove warnings
238 * src/prefs_display_headers.[ch] dialog to choose the
239 headers to display in the mail viewer.
240 * src/headers.h correction of #define
241 * src/headers_display.[ch] configuration for displaying of headers.
242 * src/main.c read config of displaying of headers
243 * src/prefs_common.c add a button to access the config dialog
244 for displaying of headers
245 * src/prefs_display_headers.[ch] dialog for configuration for
246 displaying of the headers.
247 * src/prefs_headers.c cleaning of code
248 * src/procheader.c comments added to code
249 * src/textview.c changes to reorder the headers depending
250 on the config for displaying of headers
256 * sync with 0.4.65cvs12
258 NOTE: nntp.c and news.c in claws and cvs branch differ significantly!
262 * src/nntp.h (NNTPSockInfo): new field auth_failed.
264 * src/nntp.c (nntp_mode): return NN_AUTHREQ if sock->auth_failed
265 is set to force reconnection after authentication failure.
266 (nntp_gen_command): set sock->auth_failed on authentication
267 failure, or if sock->userid and sock->passwd are not set.
269 * src/news.c (news_session_new_for_folder): set userid=NULL if
270 password dialog is cancelled.
274 * src/nntp.h (NNTPSockInfo): new type.
276 * src/nntp.c: all functions updated to use NNTPSockInfo instead of
278 (nntp_open_auth, nntp_close): new functions.
279 (nntp_gen_command): new function to handle authentication; all
280 NNTP command functions updated to use it.
281 (nntp_authinfo_user, nntp_authinfo_pass): deleted.
282 (nntp_list): removed old useless code.
284 * src/news.h (NNTPSession): new field nntp_sock.
286 * src/news.c: all functions updated to use NNTPSockInfo instead of
288 (news_session_new): new arguments (userid, passwd); made static;
289 use nntp_open_auth() if needed.
290 (news_session_destroy): use nntp_close() instead of sock_close().
291 (news_query_password): changed arguments.
292 (news_session_new_for_folder): new function.
293 (news_session_get): use news_session_new_for_folder().
294 (news_authenticate): deleted.
295 (news_get_uncached_articles): removed old authentication code.
299 * src/news.c: reverted my previous changes (need to do NNTP
300 authentication in a cleaner way).
304 * src/news.c (news_nntp_group, news_nntp_list, news_nntp_xover,
305 news_nntp_post, news_nntp_mode): new functions (wrappers with
306 authentication support).
307 (news_get_article_cmd, news_get_article, news_get_header): new
308 argument "folder"; all callers changed.
309 (news_get_article_cmd): added authentication support.
310 (news_session_get): use news_nntp_mode() instead of nntp_mode().
311 (news_post): use news_nntp_post() instead of nntp_post().
312 (news_get_uncached_articles): use news_nntp_group() instead of
313 nntp_group() and news_nntp_xover() instead of nntp_xover();
314 removed old authentication code.
315 (news_get_group_list): use news_nntp_list() instead of nntp_list().
317 * src/nntp.c (nntp_list): return real error code instead of
322 * configure.in: fixed wint_t typedef detection again
326 * src/prefs_account.[ch], added A_LOCAL_CMD
327 (send mail with mail command)
328 * src/send.c added function send_message_with_command()
329 * src/inc.c made a more secure get_spool() function with
330 mktemp() but maybe mkstemp() or something more
335 * src/textview.c, colorization of email addresses in headers
339 * bug sync with sylpheed
340 * prefs_common.c: created date format ui for darko
341 * sync with 0.4.65cvs11
342 * configure.in: corrected to have the new gpg checks
346 * completed sync with 0.4.65cvs10
347 * minor debug things added to gtkstext.c
351 * configure.in: remove check for availability of
352 strftime() as advised by Hiroyuki
353 * src/prefs_common.[ch], src/procheader.c:
354 synch strftime() code with Hiroyki's main branch
358 * src/news.c: news_query_password(), news_authenticate(): new
360 news_get_uncached_articles(): added NNTP authentication
362 * src/nntp.[ch]: nntp_authinfo_user(), nntp_authinfo_pass():
364 * src/prefs_account.c: prefs_account_protocol_activated():
365 enable userid and password fields for NNTP.
369 * configure.in: check for availability of strftime()
371 * src/prefs_common.[ch], src/procheader.c: use
372 strftime() for displaying date in summary pane if it
377 * more .cvsignore cleanups [alfons]
381 * ac/sv-check-type.m4: new autoconf macro.
382 * configure.in: fixed wint_t typedef detection (did not work
387 * acconfig.h: added USE_GTKGDK_XIM definition for autoheader.
391 * modified gtkstext.c : buggy cursor navigation fixed,
392 and font descent also taken in account when drawing
396 * added comments in src/news.c src/nntp.c
397 * added src/prefs_headers.[ch]
398 * added src/headers.[ch]
399 * modified compose.c to activate custom headers
400 added function is_in_custom_headers
401 * modified prefs_account.[ch]
402 added function prefs_account_customhdr_edit
403 * modified src/defs.h :
404 added HEADERS_RC : name of the config file
405 for the custom headers
416 added gtkstext with configure.in patch by Hiroyuki which
417 should fix the XIM detection [alfons]
419 * more clean up of cvs [alfons]
421 * removed all Makefile.in files to attic.
423 * updated all .cvsignores to really ignore things that could
424 be unintentionally committed by a recursive commit.
427 * added src/grouplist_dialog.[ch]
428 * changed src/folderview.c to call grouplist_dialog instead
431 added functions news_reset_group_list
432 and news_get_group_list
434 added function nntp_list
436 added GROUPLIST_FILE : name of the newsgroup list cache file
440 * added option to warn about queued messages on exit [sergey]:
442 * src/compose.c: compose_queue(): call folder_item_scan()
443 and folderview_update_item() after queueing.
444 * src/folderview.c: folderview_update_node(): draw the queue
445 folder in bold font if there are queued messages.
446 * src/mainwindow.c: queued_messages(): new function.
447 app_exit_cb(): display warning if there are queued messages
448 if warn_queued_on_exit is set.
449 * prefs_common.[ch]: add warn_queued_on_exit option.
451 * enhanced GnuPG key selection support [sergey]:
453 * src/select-keys.c: updated to newer version from Win32
454 branch with support for selecting arbitrary keys.
455 * src/prefs_account.c: added the Privacy tab to the account
457 prefs_account_privacy_create(),
458 prefs_account_sign_key_set_data_from_radiobtn(),
459 prefs_account_sign_key_set_radiobtn(): new functions.
460 * src/prefs_account.h: new preferences sign_key_type, sign_key_id.
461 * src/rfc2015.c: set_signers(): new function.
462 pgp_sign(): add the account parameter, call set_signers().
463 rfc2015_sign(): add the account parameter, pass it to pgp_sign().
464 * src/rfc2015.h: rfc2015_sign(): updated prototype.
465 * src/compose.c: pass the current account to rfc2015_sign().
467 * tag name claws added to prevent confusion with main branch [alfons]
469 * Sync with sylpheed-0.4.65cvs4 and made it compile. [sergey]
471 * autogen.sh: Added "--enable-maintainer-mode". [sergey]
473 * sync with recent sylpheed cvs. Untested though. [alfons]