ChangeLog
15.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
2004-12-05 Sergey Poznyakoff
* Makefile.am: Added sql/
* configure.ac: Rewritten sql-related part. Allow to specify
several SQL libraries simultaneously.
* sql: New directory
* sql/Makefile.am: New file
* sql/.cvsignore: New file
* sql/sql.c: New file
* sql/mysql.c: New file
* sql/postgres.c: New file
* auth/mysql.c: Removed
* auth/pgsql.c: Removed
* auth/sql.c: Rewritten using general SQL interface.
* auth/Makefile.am: Removed mysql.c and pgsql.c
* include/mailutils/sql.h: New file
* include/mailutils/Makefile.am: Added sql.h
* include/mailutils/errno.h: Added new error codes.
* mailbox/muerrno.c: Likewise.
* mail.local/mail.local.h (quota_query): New variable
* mail.local/mailquota.c: Retrieve quotas from SQL database
* mail.local/main.c: New option --quota-query
* scripts/sqlmod.sh: New file
* scripts/Makefile.am: Added sqlmod.sh
* doc/texinfo/programs.texi: Documented mailbox quotas
* NEWS: Updated
* README: Updated
* po/POTFILES.in: Updated
2004-12-02 Sergey Poznyakoff
* doc/texinfo/programs.texi: Documented movemail.
2004-11-18 Sergey Poznyakoff
* mailbox/imap/folder.c (authenticate_imap_select): Use
ENOSYS as the default status value to allow MU_ERR_AUTH_FAILURE
to be propagated back to the caller.
(imap_parse): Display "NO/Bad Tagged" error diagnostics only if
status != MU_ERR_AUTH_FAILURE. Should we display it at all?
* movemail/movemail.c: Emacs-iteraction mode (--emacs)
2004-11-17 Wojciech Polak
Added initial version of `libmu_cpp',
a C++ wrapper for Mailutils.
* libmu_cpp: Added new directory.
* libmu_cpp/address.cc: New file.
* libmu_cpp/filter.cc: Likewise.
* libmu_cpp/iterator.cc: Likewise.
* libmu_cpp/mailbox.cc: Likewise.
* libmu_cpp/mailer.cc: Likewise.
* libmu_cpp/message.cc: Likewise.
* libmu_cpp/stream.cc: Likewise.
* libmu_cpp/header.cc: Likewise.
* libmu_cpp/list.cc: Likewise.
* libmu_cpp/mailcap.cc: Likewise.
* libmu_cpp/pop3.cc: Likewise.
* libmu_cpp/url.cc: Likewise.
* libmu_cpp/Makefile.am: Likewise.
* include/mailutils/cpp: Added new directory.
* include/mailutils/cpp/address.h: New file.
* include/mailutils/cpp/error.h: Likewise.
* include/mailutils/cpp/header.h: Likewise.
* include/mailutils/cpp/list.h: Likewise.
* include/mailutils/cpp/mailcap.h: Likewise.
* include/mailutils/cpp/mailutils.h: Likewise.
* include/mailutils/cpp/message.h: Likewise.
* include/mailutils/cpp/stream.h: Likewise.
* include/mailutils/cpp/filter.h: Likewise.
* include/mailutils/cpp/iterator.h: Likewise.
* include/mailutils/cpp/mailbox.h: Likewise.
* include/mailutils/cpp/mailer.h: Likewise.
* include/mailutils/cpp/pop3.h: Likewise.
* include/mailutils/cpp/url.h: Likewise.
* include/mailutils/cpp/Makefile.am: Likewise.
* examples/cpp/addr.cc: New file.
* examples/cpp/http.cc: Likewise.
* examples/cpp/listop.cc: Likewise.
* examples/cpp/sfrom.cc: Likewise.
* examples/cpp/iconv.cc: Likewise.
* examples/cpp/mailcap.cc: Likewise.
* examples/cpp/murun.cc: Likewise.
* examples/cpp/url-parse.cc: Likewise.
* examples/cpp/Makefile.am: Likewise.
2004-11-15 Wojciech Polak
* examples/config: New directory.
* examples/cpp: Likewise.
* examples/scheme: Likewise.
* examples/config/Makefile.am: New file.
* examples/cpp/Makefile.am: Likewise.
* examples/scheme/Makefile.am: Likewise.
* examples/comsat.conf: Moved to config/.
* examples/dot.biffrc: Likewise.
* examples/gnu-imap4d.pam: Likewise.
* examples/gnu-pop3d.pam: Likewise.
* examples/mailutils.rc: Likewise.
* examples/reply.scm: Moved to scheme/.
* examples/Makefile.am: Updated.
* configure.ac: Updated.
2004-11-15 Sergey Poznyakoff
* imap4d/imap4d.c: New option --tls-required: do not allow
authentication until TLS negotiation succeeds.
* imap4d/authenticate.c (imap4d_authenticate): Do not proceed if
tls_required is set.
* imap4d/login.c (imap4d_login): Likewise.
* imap4d/imap4d.h (IMAP_CAPA_STARTTLS,IMAP_CAPA_LOGINDISABLED)
(IMAP_CAPA_XTLSREQUIRED): New defines
* imap4d/starttls.c (imap4d_starttls): Clear tls_required upon
successfull TLS handshake.
(starttls_init): Use IMAP_CAPA_STARTTLS instead of hardcoded
literal.
* include/mailutils/header.h (MU_HEADER_X_EXPIRE_TIMESTAMP): New
define.
* pop3d/pop3d.c: New option --tls-required: do not allow
authentication until TLS negotiation succeeds.
New option --delete-expired: delete expired messages before
closing the mailbox.
* pop3d/capa.c (pop3d_capa): Announce XTLSREQUIRED if appropriate
* pop3d/expire.c (expire_mark_message): New function
* pop3d/pop3d.h: New declarations.
* pop3d/quit.c (pop3d_fix_mark): Use expire_mark_message to
process expired messages. Apart from the new functionality, it
also fixes a bug: len was incorrectly used as a replace indicator
in header_set_value, thus each retrieval of the message was
resetting its expiration date.
* pop3d/stls.c (pop3d_stls): Set state to AUTHORIZATION upon
successful completion of TLS negotiation.
* configure.ac: Raised version number to 0.5.1
* NEWS: Entry for 0.5.1
2004-11-03 Sergey Poznyakoff
* dotlock/dotlock.c: Removed -T option (CAN-2004-0984)
2004-10-26 Sergey Poznyakoff
* imap4d/store.c (imap4d_store0): Send \r\n at the end of
the unsolicited response.
2004-09-18 Sergey Poznyakoff
* configure.ac: Bugfix
* mailbox/mime.c (_mime_munge_content_header): Bugfix
2004-08-31 Wojciech Polak
* mailbox/file_stream.c (prog_stream_create): Changed type
of the second argument to const char*.
(filter_prog_stream_create): Likewise.
(_prog_stream_create): Changed type of the third argument
to const char*.
* include/mailutils/stream.h (prog_stream_create): Changed
type of the second argument to const char*.
(filter_prog_stream_create): Likewise.
* doc/texinfo/stream.texi: Updated.
* configure.ac (AM_GNU_GETTEXT_VERSION): Bump to 0.14.1.
2004-08-24 Sergey Poznyakoff
* mail/util.c (util_do_command): Fixed coredump on unparseable
input strings.
* THANKS: Added Dan Jacobson
2004-08-20 Sergey Poznyakoff
* include/mailutils/guile.h (MU_SCM_SYMBOL_VALUE): New define
(_mu_scm_mailer,_mu_scm_debug): Removed externs.
* include/mailutils/list.h (list_set_destroy_item): Use __PMT in
nested declarations.
* libmu_scm/mu_message.c: Properly access mu-mailer and mu-message
values.
2004-08-11 Sergey Poznyakoff
* mail/send.c (mail_send0): Fixed coredump on reading a
single escape char.
2004-08-08 Sergey Poznyakoff
* headers/argp.h: Protect typedef int error_t by an additional
#ifndef. Thanks Alex S. Moore <asmoore@edge.net> for helping
find out the problem.
2004-08-07 Sergey Poznyakoff
* Makefile.am: Raised automake requirements to version
1.8.5
* examples/nntpclient.c: Minor fixes.
* imap4d/Makefile.am (INCLUDES): Added -Imailbox
* imap4d/imap4d.h: Added missing includes
* include/mailutils/nls.h [!ENABLE_NLS]: Define gettext()
* include/mailutils/nntp.h: Minor changes. The screen is 80x24!
* mailbox/locker.c (_locker_lock_dotlock): Make sure the lock file
is writable for the owner.
* mailbox/imap/folder.c (authenticate_imap_sasl_anon): Use
auth_state instead of state. Possibly this was a typo...
* mailbox/include/imap0.h (struct _f_imap.capac): Changed
type to int.
* mailbox/maildir/mbox.c (maildir_gethostname): Fixed a gross
memory allocation bug.
* mailbox/message.c: Minor changes.
* mailbox/mbox/url.c: Likewise.
* mailbox/nntp/folder.c: Likewise.
* mailbox/nntp/mbox.c: Likewise.
* mailbox/nntp/nntp_article.c: Likewise.
* mailbox/nntp/nntp_connect.c: Likewise.
* mailbox/nntp/nntp_date.c: Likewise.
* mailbox/nntp/nntp_head.c: Likewise.
* mailbox/nntp/nntp_ihave.c: Likewise.
* mailbox/nntp/nntp_post.c: Likewise.
* scripts/guile-1.6/guile-doc-snarf: Bugfix. Always use $AWK.
2004-08-06 Sergey Poznyakoff
* include/mailutils/daemon.h: Include types.h
2004-07-07 Sergey Poznyakoff
* libsieve/extensions/spamd.c (decode_float): Return
signed long value, as SpamAssassin scores can be negative.
(spamd_test): Updated accordingly
2004-07-05 Sergey Poznyakoff
* include/mailutils/registrar.h (mu_register_extra_formats): New
macro.
(mu_register_all_formats): Call mu_register_extra_formats()
* mailbox/mu_argp.c (mu_conf_option): Added ENABLE_NNTP
* mailbox/nntp/Makefile.am: Add nntp0.h
* mh/Makefile.am: Added libmu_nntp.la
* readmsg/readmsg.c (main): Call mu_register_extra_formats()
2004-07-05 Sergey Poznyakoff
* include/mailutils/registrar.h (mu_register_all_mbox_formats):
Removed nntp_record. It is not a *mailbox* format.
* mailbox/mailutils-config.c: Added mu_nntp
* mailbox/include/iterator0.h (_iterator.getitem): Changed
declaration. There's no use passing a pointer to the const
location, since the function *must* assign to it anyway.
* include/mailutils/iterator.h (iterator_set_getitem): Changed
declaration
* mailbox/iterator.c (iterator_set_getitem): Changed
declaration
(iterator_current): Additional typecast on pitem
* mailbox/list.c: Updated declaration of getitem method.
* mailbox/nntp/nntp_iterator.c: Likewise
* mailbox/pop/pop3_iterator.c: Likewise
* mailbox/mailbox.c: Include <list.h>
* mailbox/mailer.c: Likewise
2004-07-05 Alain Magloire
* configure.ac: enable NNTP support.
* example/Makefile.am: Enable NNTP.
* frm/Makefile.am: Enable NNTP.
* from/Makefile.am: Enable NNTP.
* messages/Makefile.am: Enable NNTP.
* readmsg/Makefile.am: Enable NNTP.
* guimb/Makefile.am: Enable NNTP.
* mail/Makefile.am: Enable NNTP.
* sieve/Makefile.am: Enable NNTP.
* imap4d/Makefile.am: Put @AUTHLIBS@ before libmailbox.a (failed
on cygwin if not).
* pop3d/Makefile.am: Put @AUTHLIBS@ before libmailbox.a (failed on
cygwin if not).
* mail.local/Makefile.am: Put @AUTHLIBS@ before libmailbox.a
(failed on cygwin if not).
* mailbox/stream.c (stream_wait): Bugfix. If we buffer return
true if the cache still have data.
* include/mailutils/nntp.h: Define the default NNTP port number.
* include/mailutils/pop3.h: Define the default POP3 port number.
* include/mailutils/registrar.h: Enable NNTP.
* mailbox/nntp/folder.c: New file.
* mailbox/nntp/mbox.c: New file.
* mailbox/nntp/url.c: New file.
* mailbox/nntp/Makefile.am: Updated.
2004-07-03 Sergey Poznyakoff
* mailbox/list.c (list_data_dup): Bugfix: *ptr was not assigned.
* doc/texinfo/muint.texi: Automake does not allow two independent
texi sources to include the same file (version.texi, in this
case). What a stupid lossage! However it handles all files whose
name matches "vers*.texi" as version.texi, which allows to
override the bug: include vers-muint.texi instead of version.texi.
2004-07-01 Sergey Poznyakoff
* include/mailutils/iterator.h (iterator_current)
(iterator_set_getitem): Changed proto
(iterator_get_list): Removed.
* mailbox/include/iterator0.h (struct _iterator.getitem): Changed
declaration.
* mailbox/iterator.c (iterator_current)
(iterator_set_getitem): Changed declaration
* mailbox/list.c (getitem): Changed declaration
* mailbox/rfc2047.c (rfc2047_decode): Fixed buffer
handling
* examples/mta.c: Minor fix
* examples/nntpclient.c: Fixed printf formats
(com_newgroups,com_newnews): Variable declarations are only allowed
before the statements.
* mailbox/nntp/nntp_article.c: Fixed printf formats
* mailbox/nntp/nntp_body.c: Likewise
* mailbox/nntp/nntp_head.c: Likewise
* mailbox/nntp/nntp_iterator.c: Added missing include
(nntp_itr_getitem): Changed declaration
* mailbox/pop/pop3_iterator.c (pop3_itr_getitem): Changed
declaration
2004-06-30 Alain Magloire
* configure.ac: Add nntp directory.
* doc/rfc/pop3.texit: add new API.
* mailbox/Makefile.am: Add nntp directory.
* mailbox/nntp/Makefile.am: Add new files.
* mailbox/nntp/nntp_iterator.c: New file.
* mailbox/nntp/nntp_list_active.c: Use the an iterator_t instead of a lis_t..
* mailbox/nntp/nntp_list_distribpats.c: instead of a lis_t. file.
* mailbox/nntp/nntp_list_times.c: instead of a lis_t. file.
* mailbox/nntp/nntp_list_newgroups.c: instead of a lis_t. file.
* mailbox/nntp/nntp_list_newnews.c: instead of a lis_t. file.
* mailbox/pop3/Makefile.am: Add new files.
* mailbox/pop3/pop3_iterator.c: New file.
* mailbox/pop3/pop3_capa.c: instead of a lis_t. file.
* mailbox/pop3/pop3_lista.c: instead of a lis_t. file.
* mailbox/pop3/pop3_uidla.c: instead of a lis_t. file.
* include/mailutils/Makefile.am: Add nntp.h and pop3.h.
* include/mailutils/nntp.h: Add new declarations.
* include/mailutils/sys/Makefile.am: Add nntp and pop3.hh
* include/mailutils/sys/nntp.h: Add new declarations.
* include/mailutils/pop3.h: NAdd new declarations.
* example/Makefile.am: Adusted to new API.
* example/nntpclient.c: Adusted to new API.
* example/pop3client.c: Adusted to new API.
* example/.cvsignore: Add nntpclient.
2004-06-30 Alain Magloire
* mailbox/list.c (list_get_iterator): Bug fix, wrong size for calloc()
(list_data_dup): Copy the elements.
2004-06-30 Sergey Poznyakoff
* libsieve/extensions/spamd.c (spamd_shutdown): Bugfix
2004-06-29 Alain Magloire
Continuing the framework for NNTP support
* mailbox/nntp/.cvsignore: New file.
* mailbox/nntp/nntp_help.c: New file.
* mailbox/nntp/nntp_ihave.c: New file.
* mailbox/nntp/nntp_list_active.c: New file.
* mailbox/nntp/nntp_list_distribpats.c: New file.
* mailbox/nntp/nntp_list_distributions.c: New file.
* mailbox/nntp/nntp_list_newsgroups.c: New file.
* mailbox/nntp/nntp_list_times.c: New file.
* mailbox/nntp/nntp_newgroups.c: New file.
* mailbox/nntp/nntp_newnews.c: New file.
* mailbox/nntp/nntp_post.c: New file.
* mailbox/nntp/nntp_article.c: implementation.
* mailbox/nntp/nntp_body.c: implementation.
* mailbox/nntp/nntp_connect.c: implementation.
* mailbox/nntp/nntp_date.c: implementation.
* mailbox/nntp/nntp_destroy.c: implementation.
* mailbox/nntp/nntp_group.c: implementation.
* mailbox/nntp/nntp_head.c: implementation.
* mailbox/nntp/nntp_list_extensions.c: implementation.
* mailbox/nntp/nntp_stat.c: implementation.
* mailbox/nntp/nntp_stream.c: implementation.
* include/mailutils/nntp.h: Declarations.
* include/mailutils/sys/nntp.h: Declarations.
* examples/nntpclient.c: Adujsted.
* examples/pop3client.c: Minor bug fixes.
2004-06-28 Sergey Poznyakoff
* mailbox/filter_iconv.c (internal_icvt_read)
(copy_pass): Fixed mistyped conditions.
* mailbox/include/iterator0.h (struct _iterator): rewritten as
a general-purpose iterator structure.
* include/mailutils/iterator.h (iterator_create): Changed
proto.
(iterator_attach,iterator_detach,iterator_advance)
(iterator_set_first,iterator_set_next)
(iterator_set_getitem,iterator_set_finished_p)
(iterator_set_dup,iterator_set_destroy): New functions.
* mailbox/iterator.c: Likewise
* include/mailutils/list.h (list_get_iterator): New function
* mailbox/list.c: Likewise
* examples/listop.c: Replace iterator_create with
list_get_iterator.
* examples/nntpclient.c: Likewise
* examples/pop3client.c: Likewise
* imap4d/util.c: Likewise
* libsieve/comparator.c: Likewise
* libsieve/prog.c: Likewise
* libsieve/register.c: Likewise
* libsieve/require.c: Likewise
* libsieve/sieve.l: Likewise
* mail/retain.c: Likewise
* mail/util.c: Likewise
* mailbox/filter.c: Likewise
* mailbox/folder.c: Likewise
* mailbox/mailbox.c: Likewise
* mailbox/mailer.c: Likewise
* mailbox/mu_auth.c: Likewise
* mailbox/mutil.c: Likewise
* mailbox/observer.c: Likewise
* mh/ali.c: Likewise
* mh/mh_alias.y: Likewise
* mh/pick.y: Likewise
* mh/refile.c: Likewise
2004-06-27 Sergey Poznyakoff
* direntry: New file
2004-06-27 Sergey Poznyakoff
See ChangeLog.0.5 for earlier entries
Local Variables:
mode: change-log
version-control: never
End: