f914e23a524dcec049db93f73df21d860e4de6e4
[claws.git] / ChangeLog.claws
1 2001-05-01 [hoa]
2
3         * src/Makefile.am changed headers.[ch] in customheader.[ch]
4         * src/prefs_display_headers.c changed the UI
5         * src/prefs_headers.c changed account_name to account_id
6         * src/compose.c using customheader.h
7
8 2001-05-01 [hiroyuki]
9
10         * src/esmtp.c
11           src/news.c
12           src/nntp.c: changed sock_read() to sock_gets(), they've been left
13           unsynched.
14
15 2001-05-01 [hoa]
16
17         * src/Makefile.am added prefs_display_headers.[ch] headers_display.[ch]
18         * src/defs.h added HEADERS_DISPLAY_RC : name of the config file
19                 for displaying of headers
20         * src/grouplist_dialog.[ch] minor changes to remove warnings
21         * src/prefs_display_headers.[ch] dialog to choose the
22         headers to display in the mail viewer.
23         * src/headers.h correction of #define
24         * src/headers_display.[ch] configuration for displaying of headers.
25         * src/main.c read config of displaying of headers
26         * src/prefs_common.c add a button to access the config dialog
27                 for displaying of headers
28         * src/prefs_display_headers.[ch] dialog for configuration for
29                 displaying of the headers.
30         * src/prefs_headers.c cleaning of code
31         * src/procheader.c comments added to code
32         * src/textview.c changes to reorder the headers depending
33                 on the config for displaying of headers
34
35 2001-04-30 [alfons]
36
37         0.4.65claws7
38
39         * sync with 0.4.65cvs12
40
41         NOTE: nntp.c and news.c in claws and cvs branch differ significantly!
42
43 2001-04-30 [sergey]
44
45         * src/nntp.h (NNTPSockInfo): new field auth_failed.
46
47         * src/nntp.c (nntp_mode): return NN_AUTHREQ if sock->auth_failed
48         is set to force reconnection after authentication failure.
49         (nntp_gen_command): set sock->auth_failed on authentication
50         failure, or if sock->userid and sock->passwd are not set.
51
52         * src/news.c (news_session_new_for_folder): set userid=NULL if
53         password dialog is cancelled.
54
55 2001-04-30 [sergey]
56
57         * src/nntp.h (NNTPSockInfo): new type.
58
59         * src/nntp.c: all functions updated to use NNTPSockInfo instead of
60         SockInfo.
61         (nntp_open_auth, nntp_close): new functions.
62         (nntp_gen_command): new function to handle authentication; all
63         NNTP command functions updated to use it.
64         (nntp_authinfo_user, nntp_authinfo_pass): deleted.
65         (nntp_list): removed old useless code.
66
67         * src/news.h (NNTPSession): new field nntp_sock.
68
69         * src/news.c: all functions updated to use NNTPSockInfo instead of
70         SockInfo.
71         (news_session_new): new arguments (userid, passwd); made static;
72         use nntp_open_auth() if needed.
73         (news_session_destroy): use nntp_close() instead of sock_close().
74         (news_query_password): changed arguments.
75         (news_session_new_for_folder): new function.
76         (news_session_get): use news_session_new_for_folder().
77         (news_authenticate): deleted.
78         (news_get_uncached_articles): removed old authentication code.
79
80 2001-04-30 [sergey]
81
82         * src/news.c: reverted my previous changes (need to do NNTP
83         authentication in a cleaner way).
84         
85 2001-04-29 [sergey]
86
87         * src/news.c (news_nntp_group, news_nntp_list, news_nntp_xover,
88         news_nntp_post, news_nntp_mode): new functions (wrappers with
89         authentication support).
90         (news_get_article_cmd, news_get_article, news_get_header): new
91         argument "folder"; all callers changed.
92         (news_get_article_cmd): added authentication support.
93         (news_session_get): use news_nntp_mode() instead of nntp_mode().
94         (news_post): use news_nntp_post() instead of nntp_post().
95         (news_get_uncached_articles): use news_nntp_group() instead of
96         nntp_group() and news_nntp_xover() instead of nntp_xover();
97         removed old authentication code.
98         (news_get_group_list): use news_nntp_list() instead of nntp_list().
99
100         * src/nntp.c (nntp_list): return real error code instead of
101         hardcoded NN_ERROR.
102
103 2001-04-29 [sergey]
104
105         * configure.in: fixed wint_t typedef detection again
106
107 2001-04-28 [hoa]
108
109         * src/prefs_account.[ch], added A_LOCAL_CMD
110                 (send mail with mail command)
111         * src/send.c added function send_message_with_command()
112         * src/inc.c made a more secure get_spool() function with
113                 mktemp() but maybe mkstemp() or something more
114                 secure can be used.
115
116 2001-04-28 [alfons]
117
118         * src/textview.c, colorization of email addresses in headers
119
120         0.4.65claws6
121
122         * bug sync with sylpheed
123         * prefs_common.c: created date format ui for darko
124         * sync with 0.4.65cvs11
125         * configure.in: corrected to have the new gpg checks
126
127 2001-04-27 [alfons]
128
129         * completed sync with 0.4.65cvs10
130         * minor debug things added to gtkstext.c
131
132 2001-04-27 [darko]
133
134         * configure.in: remove check for availability of
135           strftime() as advised by Hiroyuki
136         * src/prefs_common.[ch], src/procheader.c:
137           synch strftime() code with Hiroyki's main branch
138
139 2001-04-26 [sergey]
140
141         * src/news.c: news_query_password(), news_authenticate(): new
142           functions.
143           news_get_uncached_articles(): added NNTP authentication
144           handling.
145         * src/nntp.[ch]: nntp_authinfo_user(), nntp_authinfo_pass():
146           new functions.
147         * src/prefs_account.c: prefs_account_protocol_activated():
148           enable userid and password fields for NNTP.
149
150 2001-04-26
151
152         * configure.in: check for availability of strftime()
153           [darko]
154         * src/prefs_common.[ch], src/procheader.c: use
155           strftime() for displaying date in summary pane if it
156           is available
157
158 2001-04-25
159
160         * more .cvsignore cleanups [alfons]
161
162 2001-04-25
163
164         * ac/sv-check-type.m4: new autoconf macro.
165         * configure.in: fixed wint_t typedef detection (did not work
166           with gcc-2.96).
167
168 2001-04-25
169
170         * acconfig.h: added USE_GTKGDK_XIM definition for autoheader.
171           [hiroyuki]
172
173 2001-04-24
174         * modified gtkstext.c : buggy cursor navigation fixed, 
175           and font descent also taken in account when drawing
176           cursor. [alfons]
177
178 2001-04-24 [hoa]
179         * added comments in src/news.c src/nntp.c
180         * added src/prefs_headers.[ch]
181         * added src/headers.[ch]
182         * modified compose.c to activate custom headers
183                 added function is_in_custom_headers
184         * modified prefs_account.[ch]
185                 added function prefs_account_customhdr_edit
186         * modified src/defs.h :
187                 added HEADERS_RC : name of the config file
188                 for the custom headers
189
190 2001-04-24
191
192     0.4.65claws5
193
194         * configure.in
195           src/gtkstext.[ch]
196           src/compose.c
197           src/Makefile.am
198           
199           added gtkstext with configure.in patch by Hiroyuki which
200           should fix the XIM detection [alfons]
201
202         * more clean up of cvs [alfons]
203
204                  * removed all Makefile.in files to attic.
205
206                  * updated all .cvsignores to really ignore things that could
207                    be unintentionally committed by a recursive commit.
208
209 2001-04-23 [hoa]
210         * added src/grouplist_dialog.[ch]
211         * changed src/folderview.c to call grouplist_dialog instead
212                 of inputdialog
213         * src/news.c :
214                 added functions news_reset_group_list
215                 and news_get_group_list
216         * src/nntp.c :
217                 added function nntp_list
218         * src/defs.h :
219                 added GROUPLIST_FILE : name of the newsgroup list cache file
220
221 2001-04-21
222
223         * added option to warn about queued messages on exit [sergey]:
224
225           * src/compose.c: compose_queue(): call folder_item_scan()
226             and folderview_update_item() after queueing.
227           * src/folderview.c: folderview_update_node(): draw the queue
228             folder in bold font if there are queued messages.
229           * src/mainwindow.c: queued_messages(): new function.
230             app_exit_cb(): display warning if there are queued messages
231             if warn_queued_on_exit is set.
232           * prefs_common.[ch]: add warn_queued_on_exit option.
233
234         * enhanced GnuPG key selection support [sergey]:
235
236           * src/select-keys.c: updated to newer version from Win32
237             branch with support for selecting arbitrary keys.
238           * src/prefs_account.c: added the Privacy tab to the account
239             options window.
240             prefs_account_privacy_create(),
241             prefs_account_sign_key_set_data_from_radiobtn(),
242             prefs_account_sign_key_set_radiobtn(): new functions.
243           * src/prefs_account.h: new preferences sign_key_type, sign_key_id.
244           * src/rfc2015.c: set_signers(): new function.
245             pgp_sign(): add the account parameter, call set_signers().
246             rfc2015_sign(): add the account parameter, pass it to pgp_sign().
247           * src/rfc2015.h: rfc2015_sign(): updated prototype.
248           * src/compose.c: pass the current account to rfc2015_sign().
249
250         * tag name claws added to prevent confusion with main branch [alfons]
251
252         * Sync with sylpheed-0.4.65cvs4 and made it compile. [sergey]
253
254         * autogen.sh: Added "--enable-maintainer-mode". [sergey]
255
256         * sync with recent sylpheed cvs. Untested though. [alfons]
257