forked from karelzak/mutt-kz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
11123 lines (7131 loc) · 381 KB
/
ChangeLog
File metadata and controls
11123 lines (7131 loc) · 381 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
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2011-07-01 17:23 -0700 Brendan Cully <brendan@kublai.com> (94eee9410f7a)
* version.sh: version.sh: fix(?) failure due to bizarre sh quoting
rules
I have not checked POSIX, and sh quoting always makes my head hurt,
but this seems to suffice for my sh (actually bash in sh mode) when
HGROOT contains a space.
2011-05-23 13:22 +0200 Olaf Hering <olaf@aepfle.de> (81a7c41040bf)
* browser.c, browser.h: folder_file: change type of new from short to
int
As requested by Rocco Rutte in bug #2421 increase the type to int.
Signed-off-by: Olaf Hering <olaf@aepfle.de>
* pgppubring.c: fix gcc 4.6 warning -Wunused-but-set-variable in
pgppubring.c
pgppubring.c: In function 'pgp_parse_pgp3_sig': pgppubring.c:424:17:
warning: variable 'hashalg' set but not used [-Wunused-but-set-
variable] pgppubring.c:423:17: warning: variable 'pkalg' set but not
used [-Wunused-but-set-variable]
Signed-off-by: Olaf Hering <olaf@aepfle.de>
2011-06-29 12:01 -0500 David Champion <dgc@uchicago.edu> (8b5e41c6a517)
* version.sh: version.sh: 1003.1 "-k" instead of obsolete "+" syntax
(closes: #3528)
* configure.ac, version.sh: version.sh: support building outside of
source directory
Reported by Emanuele Giaquinta <e.giaquinta@glauco.it>. Thanks also
to Michael Elkins <me@sigpipe.org>.
2011-06-25 20:07 -0700 Brendan Cully <brendan@kublai.com> (b477d7c5733e)
* imap/command.c: Parentheses suggested
* imap/command.c: Do not subscribe to \noselect mailboxes. Closes
#3445
2011-06-25 15:42 -0700 Honza Horak <hhorak@redhat.com> (0e4f1782ea2e)
* imap/message.c: Avoid creating sparse ctx array when fetch responses
are ignored. Closes #3288.
2011-06-25 15:23 -0700 Brendan Cully <brendan@kublai.com> (53dcb3a21da4)
* compose.c, muttlib.c: Silence some eclipse warnings
2011-06-20 16:39 -0700 Michael Elkins <me@mutt.org> (b574d6f9f532)
* sendlib.c: rfc2047 encode recipient list in resent-to header field.
closes #3512
* rfc822.c: copy idn status when duplicating address object
2011-06-20 16:07 -0700 antonio <antonio@dyne.org> (1bb9002567c4)
* doc/manual.xml.head: fix regexp example in documentation
2011-06-18 21:29 -0700 antonio <antonio@dyne.org> (b9856206eee4)
* mutt_ssl_gnutls.c: Remove the deprecated
gnutls_certificate_verify_peers() in favour of the new
gnutls_certificate_veirfy_peers2()
Reported on http://bugs.debian.org/624085
closes #3516
2011-06-18 21:07 -0700 Michael Elkins <me@mutt.org> (beebe6a4d25d)
* imap/auth_login.c: clear logging in message when login succeeded.
closes #3524
2011-05-23 12:59 +0200 Olaf Hering <olaf@aepfle.de> (8570f8a10572)
* smime.c: fix gcc 4.6 warning -Wunused-but-set-variable in smime.c
smime.c: In function 'smime_handle_entity': smime.c:1663:8: warning:
variable 'last_pos' set but not used [-Wunused-but-set-variable]
Signed-off-by: Olaf Hering <olaf@aepfle.de>
* pgp.c: fix gcc 4.6 warning -Wunused-but-set-variable in pgp.c
pgp.c: In function 'pgp_application_pgp_handler': pgp.c:254:8:
warning: variable 'start_pos' set but not used [-Wunused-but-set-
variable]
Signed-off-by: Olaf Hering <olaf@aepfle.de>
* crypt-gpgme.c: fix gcc 4.6 warning -Wunused-but-set-variable in
crypt-gpgme.c
crypt-gpgme.c: In function 'show_one_sig_status': crypt-
gpgme.c:1311:21: warning: variable 'uid' set but not used [-Wunused-
but-set-variable] crypt-gpgme.c: In function
'pgp_gpgme_application_handler': crypt-gpgme.c:2285:27: warning:
variable 'anywarn' set but not used [-Wunused-but-set-variable]
crypt-gpgme.c:2159:8: warning: variable 'start_pos' set but not used
[-Wunused-but-set-variable] crypt-gpgme.c: In function
'crypt_getkeybystr': crypt-gpgme.c:4094:7: warning: variable 'match'
set but not used [-Wunused-but-set-variable]
Signed-off-by: Olaf Hering <olaf@aepfle.de>
* rfc1524.c: fix gcc 4.6 warning -Wunused-but-set-variable in
rfc1524.c
rfc1524.c: In function 'rfc1524_expand_filename': rfc1524.c:453:20:
warning: variable 'r' set but not used [-Wunused-but-set-variable]
Signed-off-by: Olaf Hering <olaf@aepfle.de>
* compose.c: fix gcc 4.6 warning -Wunused-but-set-variable in
compose.c
compose.c: In function 'redraw_crypt_lines': compose.c:113:7:
warning: variable 'off' set but not used [-Wunused-but-set-variable]
Signed-off-by: Olaf Hering <olaf@aepfle.de>
* imap/imap.c: fix gcc 4.6 warning -Wunused-but-set-variable in imap.c
imap.c: In function 'imap_open_mailbox': imap.c:558:15: warning:
variable 'conn' set but not used [-Wunused-but-set-variable] imap.c:
In function 'imap_open_mailbox_append': imap.c:777:15: warning:
variable 'conn' set but not used [-Wunused-but-set-variable] imap.c:
In function 'imap_subscribe': imap.c:1816:15: warning: variable
'conn' set but not used [-Wunused-but-set-variable] imap.c: In
function 'imap_complete': imap.c:1944:15: warning: variable 'conn'
set but not used [-Wunused-but-set-variable]
Signed-off-by: Olaf Hering <olaf@aepfle.de>
2011-05-22 22:13 -0700 Brendan Cully <brendan@kublai.com> (1fc2afbf9e3a)
* keymap.c, mbox.c: Fix some minor warnings
2011-03-30 07:52 -0700 Michael Elkins <me@mutt.org> (f7160c94ff70)
* keymap.c: fix bug where SIGWICH is ignored when $imap_keepalive <
$timeout
closes #3507
2011-03-07 10:17 -0600 David Champion <dgc@uchicago.edu> (8d0281f79b21)
* configure.ac, dotlock.c, mutt.h, version.sh: Extra information in
mutt version string, redux.
Restores [f1b4d1d17200] functionality with a slight change to keep
'make dist' working (see backout in [6b38124a5b81]).
Automake is too much voodoo for me at this time, so I let it keep
VERSION. mutt.h defined MUTT_VERSION as VERSION and the code used
that, so I removed MUTT_VERSION from mutt.h and put it into config.h
via configure.ac. A couple of tweaks were needed elsewhere. This
restores the fancy-versioning feature within mutt and keeps 'make
dist' happy.
2011-03-06 07:31 -0800 Brendan Cully <brendan@kublai.com> (6b38124a5b81)
* configure.ac, version.sh: Back out f1b4d1d17200. It is nice, but it
breaks make dist.
2011-01-03 13:19 -0600 David Champion <dgc@uchicago.edu> (b107737c415c)
* patchlist.sh: Include mq-based patches in the mutt patch list.
This augments the contents of the PATCHES file, so that mq-based
builds do not need to maintain that file.
* configure.ac, version.sh: Include extra information in mutt version
string for developer builds.
When a build is based on an hg clone, include extra information
about the changeset node, distance from a tagged release, and mq
applied patch count.
For example, after this patch is applied my mutt build identifies
itself (in mutt -v and in <show-version>) as:
Mutt 1.5.21+26,mq+22 (7edc2073390d) (2010-09-15)
I have applied 26 changesets applied since 1.5.21 was tagged, 22 of
which are in my mq patch series. A 1.5.21 release build that is not
mercurial-based would still appear simply as "1.5.21".
2011-02-21 23:12 -0800 Brendan Cully <brendan@kublai.com> (047bd501d6db)
* UPDATING, init.h: Lower $imap_keepalive default to 300
seconds
2010-12-30 10:09 -0800 Brendan Cully <brendan@kublai.com> (f01b306ebe0e)
* sendlib.c: Handle missing : in write_one_header debug statement.
Closes #3483
2010-10-13 07:38 -0700 Ralf Wildenhues <wildenhues@ins.uni-bonn.de> (57568da7d9aa)
* thread.c: fix a minor logic error in thread.c, and a dead code line
2010-10-11 07:56 -0700 Michael Elkins <me@mutt.org> (033acdc0a947)
* pager.c: Backed out changeset 11399121296a
2010-10-07 14:43 -0700 Michael Elkins <me@mutt.org> (11399121296a)
* pager.c: support non-breakable space character in the pager
2010-10-01 07:14 -0700 Michael Elkins <me@mutt.org> (1a4c43138685)
* muttlib.c: fix segfault when $message_cachedir is set and opening a
POP3 mailbox.
fixes #3457
2010-09-30 18:11 -0700 Roman Kagan <rkagan@mail.ru> (c10f8863e979)
* crypt-gpgme.c: use gpgme_strerror() in lieu of gpg_strerror()
2010-09-29 14:17 -0700 Michael Elkins <me@mutt.org> (a23835db228d)
* globals.h, handler.c, init.h, mutt.h, rfc3676.c: Add $reflow_text
boolean, and $reflow_wrap variables to control display of
format=flowed text parts.
* rfc3676.c: fix typoh in comment
* rfc3676.c: fix handling of format=flowed when $wrap is 0.
2010-09-23 11:06 -0700 Michael Elkins <me@mutt.org> (f2452f1f1fef)
* rfc2047.c: RFC2047 encode/decode the group name in an address list.
closes #3317
2010-09-23 06:56 -0700 Ivan Vilata i Balaguer <ivan@selidor.net> (51ee8e8a56bb)
* po/ca.po: updated Catalan translation
2010-09-20 14:04 +0100 Emanuele Giaquinta <e.giaquinta@glauco.it> (d2f10c550d90)
* mbox.c: Fix typo
2010-09-16 07:19 -0700 Vsevolod Volkov <vvv@mutt.org.ua> (0ca7ed91fe7f)
* po/ru.po: update ru.po for 1.5.21
2010-09-15 11:47 -0700 me <me@sigpipe.org> (59aad6c21703)
* regex.c: fix compile error with --with-regex and --without-wc-funcs
2010-09-15 10:53 -0700 Brendan Cully <brendan@kublai.com> (bd0afbb35c65)
* UPDATING: Belatedly update UPDATING
2010-09-15 10:21 -0700 Brendan Cully <brendan@kublai.com> (b42be44bb41a)
* .hgsigs: mutt-1.5.21 signed
2010-09-15 10:10 -0700 Brendan Cully <brendan@kublai.com> (9c7bd63635de)
* .hgtags: Added tag mutt-1-5-21-rel for changeset 25a7f8f7d50d
2010-09-15 10:10 -0700 Brendan Cully <brendan@kublai.com> (25a7f8f7d50d)
* VERSION, po/bg.po, po/ca.po, po/cs.po, po/da.po,
po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po,
po/fr.po, po/ga.po, po/gl.po, po/hu.po, po/id.po, po/it.po,
po/ja.po, po/ko.po, po/lt.po, po/nl.po, po/pl.po, po/pt_BR.po,
po/ru.po, po/sk.po, po/sv.po, po/tr.po, po/uk.po, po/zh_CN.po,
po/zh_TW.po: automatic post-release commit for mutt-1.5.21
2010-09-15 10:05 -0700 Michael Elkins <me@mutt.org> (54e3139a0362)
* safe_asprintf.c: suppress check_sec errors
2010-09-13 17:25 -0700 Michael Elkins <me@mutt.org> (20b2d496349f)
* init.h: make $mail_check_recent set by default
2010-09-13 19:00 +0100 Emanuele Giaquinta <e.giaquinta@glauco.it> (fea3860ff672)
* imap/command.c: Restore the previous behaviour of checking for new
messages in imap folders when mail_check_recent is set.
2010-09-12 19:54 -0700 Michael Elkins <me@mutt.org> (a51df78218e8)
* buffy.c, buffy.h, imap/command.c, init.h, mbox.c, mutt.h: add
$mail_check_recent boolean to control whether Mutt will notify about
all new mail, or just new mail received since the last visit to a
mailbox
closes #3271
partly addresses #3310
* smime.c: fix crash when index contains 0 keys
2010-09-11 07:34 -0700 Michael Elkins <me@mutt.org> (0f962f1a6bbb)
* send.c: Allow setting message security in send2-hook
This patch delays checking the message security options until after
the user has an initial chance to edit the message. This allows the
security options to be set in a send2-hook when using $edit_headers.
Without this patch, the user has no way of automatically setting
security based on recipients since the to/cc prompts are bypassed.
The other change in behavior is if the user happened to use a
send2-hook to see if the message had security applied *prior* to
editing the message, that no longer works.
* keymap.c, keymap.h, main.c: support for ncurses extension allowing
binding to function keys with modifiers
* keymap.c: allow octal codes with more than three digits
* crypt-gpgme.c, mime.h, pgp.c, recvattach.c, sendlib.c: add DISPNONE
to mean no preferred Content-Disposition; make pgp-signature parts
DISPNONE for multipart/signed
* recvcmd.c: fix problem with reply-hook not working when a
message/rfc822 attachment is selected
* rfc2047.c: more lenient RFC2047 decoding: accept illegal spaces and
bare question marks in encoded words
* curs_main.c, mx.c: fix crash when new mail is received during IMAP
IDLE
closes #3335
2010-08-25 00:30 +0100 Emanuele Giaquinta <e.giaquinta@glauco.it> (5302767aa6aa)
* rfc2047.c: Use mutt_substrdup in rfc2047_decode_word
2010-08-24 16:40 -0700 Michael Elkins <me@mutt.org> (92b02f77e780)
* rfc2047.c: detect failure to decode word and copy raw string
instead; avoids calling strlen() on uninitialized memory
closes #2923
2010-08-24 18:39 +0100 Emanuele Giaquinta <e.giaquinta@glauco.it> (ebd4beafe5eb)
* mutt_ssl.c: Fix typo.
* browser.c, hook.c, init.c, menu.c, mutt_ssl_gnutls.c, pager.c: Do
not call regfree if regcomp fails. The content of the regex_t
structure is undefined in this case.
* curs_lib.c, mutt_ssl_gnutls.c: use REGCOMP() macro
2010-08-24 10:03 -0700 Michael Elkins <me@mutt.org> (5d59c8b737ba)
* init.c: add REG_ICASE accidentally removed in changeset 1a35f096c8cb
* muttlib.c: do not print debug message on ENOENT
2010-08-14 09:18 -0700 Michael Elkins <me@mutt.org> (04fd8ddea579)
* url.c: avoid c99 syntax for backwards compat
2010-08-06 21:52 +0200 Matthias Andree <matthias.andree@gmx.de> (24a7b1aa2e55)
* buffy.c: Fix comparison signedness warnings.
2010-08-12 16:04 -0700 Michael Elkins <me@mutt.org> (ced5d3dca974)
* imap/util.c: Fix bug in imap_keepalive() which erroneously free
Context when the IMAP connection is shut down by the server.
Closes #3410
* url.c: url_parse_mailto should return 0 on success
fix memory leak errors when unable to parse mailto: URL
closes #3441
* mh.c: always update message body size when parsing a maildir message
* safe_asprintf.c: call va_end() even when vasprintf returns <0
2010-08-09 20:48 -0700 Michael Elkins <me@mutt.org> (6572e8bcd723)
* Makefile.am, imap/message.c, lib.c, lib.h, safe_asprintf.c: rename
mutt_sprintf() to safe_asprintf() to match the GNU extension that
performs a similar task
2010-08-09 10:27 -0700 Vincent Lefevre <vincent@vinc17.org> (e86ee9991dc3)
* postpone.c: In postpone.c, function mutt_num_postponed, the old
{{{OldPostponed}}} is never freed.
closes #3442
2010-08-09 09:38 -0700 Michael Elkins <me@mutt.org> (8051fc8b631c)
* send.c: clear the real name when $reverse_realname is unset and a
match is hit so that $realname can be set in a reply- or send-hook
closes #3427
* doc/manual.xml.head: fix example of mailto: use on the command line
* pager.c: fix buffer underrun when processing ANSI escape sequences
closes #3371
2010-08-08 12:29 -0700 Michael Elkins <me@mutt.org> (4dcf19c58139)
* doc/manual.xml.head, doc/mutt.man: document support for mailto: URLs
on the command line
closes #3400
* imap/message.c: avoid error when the user has requested many extra
headers via IMAP
closes #3435
* lib.c, lib.h: add a malloc+sprintf combo function
2010-08-08 10:21 -0700 Fabian Groffen <grobian@gentoo.org> (d4d703e21cdd)
* pattern.c: fix crash in limit when user enters invalid regexp
closes #3417
2010-08-07 06:44 -0700 Michael Elkins <me@mutt.org> (cc881d855f05)
* mutt_ssl.c: Fix comparison signedness warnings
* pop_lib.c: add comment about safety of cast
2010-08-06 21:58 +0200 Matthias Andree <matthias.andree@gmx.de> (55f50b2db1f8)
* pop_lib.c: Fix comparison signedness warning.
* status.c: Fix signedness warning.
* .hgignore: Ignore backup files ending in a tilde character.
* url.c: Fix comparison signedness warnings.
* gnupgparse.c, pop_auth.c: Fix comparison signedness warnings.
* lib.h: Resolve if/else empty body ambiguity/warnings when compiling
without DEBUG.
2010-08-06 17:08 -0700 Michael Elkins <me@mutt.org> (5b15d4d96277)
* configure.ac, init.c, protos.h: detect availablity of 'long long'
cast time_t to 'long long' prior to bitshifting since it can be a
float value according to POSIX.1-2008
closes #3439
2010-08-06 21:22 +0200 Matthias Andree <matthias.andree@gmx.de> (bf13863e682e)
* md5.c: Drop declaration for unused argv/argc parameters.
Fixes GCC warning with -Wextra.
2010-08-06 13:11 -0700 Michael Elkins <me@mutt.org> (998ca956b41b)
* init.c, muttlib.c: use a 64-bit random value in temporary filenames.
closes #3158
* browser.c: avoid using C99 bool
* browser.c, init.h: add %D format string to $folder_format to expand
the time based on $date_format.
properly set the locale for LC_TIME prior to calling strftime()
closes #1734 closes #3406
* mutt_ssl.c: fix compiler warning about wrong type for
SslSessionCerts
2010-08-06 09:58 +0200 Matthias Andree <matthias.andree@gmx.de> (473fbe29f626)
* mutt_ssl.c: Unbreak X.509 SubjAltName checks,
regression in 6016:dc09812e63a3 that calls strlen on an SSL sk
rather than its string payload.
closes #3426
2010-08-06 07:12 -0700 Michael Elkins <me@mutt.org> (4ae33a8a1391)
* configure.ac: properly set _XOPEN_SOURCE to 600 (POSIX.1-2004) when
detecting th wc*() functions
closes #3341
2010-08-05 21:57 -0700 Michael Elkins <me@mutt.org> (bc5fb152e2ba)
* mbox.c: when parsing From_ lines in mmdf/mbox, the TZ should be
computed based on the time in the string rather than the current
time, otherwise DST issues cause the computed time to be wrong.
closes #2177
* thread.c: explanatory comments
2010-08-05 17:03 -0700 andreas <andreas.amann@tyndall.ie> (0666d9588eac)
* curs_main.c, functions.h: do not leave pager when changing sort
order.
closes #2143
2010-08-05 16:47 -0700 Michael Elkins <me@mutt.org> (57d4b3839172)
* curs_main.c: do not leave pager when using read-thread and read-
subthread
closes #2137
2010-08-04 17:04 -0700 Petr Písař <petr.pisar@atlas.cz> (59ca5d7b1656)
* ChangeLog, po/cs.po: Updated Czech translation
2010-08-04 06:37 -0700 Vincent Lefevre <vincent@vinc17.org> (a7f05f29d9bc)
* po/fr.po: updated French translation
2010-08-03 10:10 -0700 Michael Elkins <me@mutt.org> (2c42f4760c8f)
* browser.c: add locale.h for compililng with -std=c99
* main.c: adjust help for -a to make it clearer that -- is required
terminator
2010-07-31 08:21 -0700 Michael Elkins <me@mutt.org> (7cd85c18bfaf)
* muttlib.c: Fix buffer underflow in expansion of format pipes. Add
better error detection.
Closes #3432.
2010-07-18 14:24 -0700 Michael Elkins <me@mutt.org> (1a35f096c8cb)
* init.c: use REGCOMP() macro
2010-07-18 22:09 +0100 Emanuele Giaquinta <e.giaquinta@glauco.it> (d0e0d174d620)
* init.c: Skip 'attachments' directive if minor type is not a valid
regexp
2010-07-09 11:07 -0700 Joel Dahl <joel@FreeBSD.org> (6b13e8319c1f)
* po/sv.po: fix misspelling in Swedish translation
2010-05-18 08:39 -0700 Michael Elkins <me@sigpipe.org> (29e37994a536)
* send.c: Consider any negative return value from send_message() to be
an error and allow the user to resend.
Closes #3411.
2010-04-24 16:10 -0700 Brendan Cully <brendan@kublai.com> (4cd2daafd03b)
* mutt_ssl.c: openssl: only call SSL_shutdown during clean
shutdown (closes #3407)
2010-04-22 09:14 -0700 Vincent Lefevre <vincent@vinc17.net> (6ebdfd09abc1)
* po/fr.po: updated French translation
2010-04-14 15:47 -0700 Michael Elkins <me@mutt.org> (15b9d6f3284f)
* pgp.c: remove toggle and replace with format in pgp-menu
2010-04-12 15:13 -0500 David Champion <dgc@uchicago.edu> (41a46373ddd9)
* compose.c: Improve clarity/uniformity in compose menu's crypto
display
Incorporates feedback on "Security: None" key hints.
2010-04-13 06:49 -0700 Michael Elkins <me@mutt.org> (4d798ee2898e)
* muttlib.c: fix bug handling wide pad char in soft-fill mode
2010-04-11 20:00 -0700 Michael Elkins <me@mutt.org> (2cd62f40d840)
* compose.c: increase size of buffer used for displaying addresses in
the compose menu to avoid truncating on widescreen displays
* curs_lib.c: clear prompt when user cancels with ^G from a yes/no
prompt
* muttlib.c: Fix bug in soft-fill (%*) in $index_format not accounting
for 'set arrow_cursor'
* pgp.c: Remove the (i) option from the PGP-menu when encryption or
signing is not yet selected. The toggle between PGP/MIME and
Traditional doesn't make sense unless some type of security has been
requested.
Closes #3402.
2010-04-06 09:47 -0700 Michael Elkins <me@mutt.org> (889aa698cc49)
* configure.ac, muttlib.c: fix for compiling Mutt with clang: check
for wchar_h prior to wctype_h in check for wc funcs
2010-04-05 11:12 -0700 Michael Elkins <me@mutt.org> (844174efa648)
* doc/manual.xml.head: [doc] Remove bogus -group parameter from
unlists and unsubscribe commands; add links to address group section
for context.
2010-04-03 20:34 -0700 Michael Elkins <me@mutt.org> (cf97505addf8)
* init.c: prevent user from setting $charset to an empty string since
other code requires it to be set to a valid string
closes #3326
* pager.c: allow regexps to match on continuation header lines in
'color header' commands.
closes #3373
* pattern.c: Fix crash on invalid regexp in search string due to
uninitialized BUFFER variable.
Closes #3401
2010-04-01 10:10 -0700 Simon Ruderich <simon@ruderich.org> (b9baa0234846)
* attach.c, commands.c, filter.c, muttlib.c, send.c: fix comment typos
2010-04-01 09:59 -0700 Michael Elkins <me@mutt.org> (96ed7cdacdc6)
* init.h: Improve documentation for $query_command to note that Mutt
automatically adds quotes according to shell quoting rules (thx:
Simon Ruderich).
* doc/manual.xml.head: Clarify the documentation on what the line-
editor is (thx: Simon Ruderich)
2010-03-31 08:50 -0700 Michael Elkins <me@mutt.org> (7e9e31b1bd7b)
* muttlib.c: avoid buffer overflow when expanding the format string
associated with a 'spam' command.
closes #3397
2010-03-23 16:03 -0700 Michael Elkins <me@mutt.org> (fe29d691deff)
* doc/muttrc.man.head: remove errant commands in secton on setting
alternates
2010-03-22 22:16 -0700 Brendan Cully <brendan@kublai.com> (69e9a1a0ba2f)
* sendlib.c: Fix a format string warning
2010-03-22 20:02 -0700 Marcel Telka <marcel@telka.sk> (f544730656c1)
* compose.c: redraw entire screen when exiting editor after re-editing
the message body in the send menu.
closes #3393.
2010-03-21 09:52 -0700 Michael Elkins <me@mutt.org> (0a29e3f4f4b9)
* sendlib.c: Do not assume whitespace follows the colon in a header
field.
Closes #3385.
2010-03-08 15:13 -0800 Brendan Cully <brendan@kublai.com> (ad6d799951cb)
* configure.ac: Comment about search libsasl for sasl2 functions
2010-03-08 14:04 -0600 Will Fiveash <Will.Fiveash@Sun.COM> (b92b9c6a1c85)
* configure.ac: OpenSolaris sasl fix for configure.ac
2010-03-08 15:00 -0800 Brendan Cully <brendan@kublai.com> (05cec973f0d9)
* pattern.c: When regexp compilation fails, report actual pattern
along with error.
* muttlib.c: mutt_buffer_printf: NULL dptr means use data
* pattern.c: If regcomp fails, assume rx has not been allocated. Fixes
a core dump for save-hook '~f foo\.bar@(something|other)\.com' =foo.
2010-03-02 11:31 -0800 TAKAHASHI Tamotsu <ttakah@lapis.plala.or.jp> (fec2720ff6ef)
* rfc822.c: Fix #2014. Thanks to Vincent Lefevre for help
with this one.
2010-03-02 11:16 -0800 Brendan Cully <brendan@kublai.com> (41cf44ddbb4c)
* copy.c: Fix thinko in [cc02f079b1b9]
2010-03-01 22:40 -0800 Brendan Cully <brendan@kublai.com> (cc02f079b1b9)
* copy.c: Guard dequote with NULL check on personal field
* copy.c, rfc822.c, rfc822.h: Another attempt to dequote
RFC2047-encoded address comments (see #2014)
* rfc822.c: Backed out changeset 2a4ca6917fd0. It is incompatible with
$assumed_charset (see #2014).
2010-02-28 23:03 -0800 Brendan Cully <brendan@kublai.com> (2a4ca6917fd0)
* rfc822.c: RFC-2047 decode address text before dequoting it (see
#2014)
* doc/manual.xml.head: Fix next-unread-mailbox name in
documentation. Closes #3319.
2010-02-28 17:23 -0800 Antonio Radici <antonio@dyne.org> (25459cbb132a)
* po/de.po: Fix German translation of "No undeleted messages." (closes
#3372)
* pop_lib.c: pop: allow user-specified port to override
default in URL. Closes #3322.
2010-02-28 17:00 -0800 ludwig <ludwig@fh-worms.de> (2c78b28027cc)
* crypt-gpgme.c: GPGME: Sender verification should be canse-
insensitive for domain names. Closes #2180
2010-02-26 18:18 -0800 Brendan Cully <brendan@kublai.com> (40eca68c394a)
* UPDATING, init.h: Make $thorough_search default to yes
(closes #3386)
2010-02-23 12:42 -0800 Brendan Cully <brendan@kublai.com> (57124ea5592e)
* commands.c: Don't use freed ctx.path when updating utime of target
mailbox in save-message. Thanks to Sean Boudreau for the bug report.
2010-02-22 23:01 -0800 Vincent Lefevre <vincent@vinc17.net> (f17302c10229)
* po/fr.po: Updated French translation.
2010-02-21 13:16 -0800 Brendan Cully <brendan@kublai.com> (a6fddecdc5f5)
* curs_lib.c: Make mutt_yesorno use mutt_message to print query.
Closes #3352.
2010-02-20 21:56 -0800 Gregory Shapiro <dev.mutt.org@g.gshapiro.net> (f723e07c8e6d)
* OPS, UPDATING, curs_main.c, functions.h: Add imap-logout-
all to log out of all IMAP connections. Closes #2880.
2010-02-17 00:47 -0800 Simon Ruderich <simon@ruderich.org> (260d39279161)
* doc/manual.xml.head: Document 'n' and 'o' flags in index
* doc/devel-notes.txt, doc/muttrc.man.head, init.h,
rfc1524.c: Spelling fixes
2010-02-10 23:29 -0800 Brendan Cully <brendan@kublai.com> (b7ec848af36b)
* doc/manual.xml.head: Fix a typo (closes #3379)
2010-02-01 23:40 -0800 Antonio Radici <antonio@dyne.org> (e9965b78e92d)
* po/sv.po: The Swedish translation has a suboptimal
translation of the word "Bad" in several places. The proposed patch
substitutes Dålig (which implies bad "as in quality", and not bad
"as in error") for Felaktig (erroneous).
Closes #3370.
* init.h: Small fix to the muttrc manpage. Closes #3374
2010-01-13 19:12 +0100 Matthias Andree <matthias.andree@gmx.de> (e2c60de29015)
* configure.ac: Fix hcache build on systems with $(EXEEXT), include it
in mutt_md5.
2009-12-29 00:33 -0500 Brendan Cully <brendan@kublai.com> (31881f38ca1e)
* curs_lib.c: Hack mutt_wstr_trunc to treat M_TREE characters as 1
cell. Closes #3364.
2009-12-28 22:13 -0500 Brendan Cully <brendan@kublai.com> (359de549b2d1)
* doc/manual.xml.head: Remove spurious quotes from query_command
example. Closes #3365.
2009-12-14 10:24 -0800 Brendan Cully <brendan@kublai.com> (736b6af3c5f1)
* rfc1524.c: Fix off-by-one errors in mailcap parser.
Closes #3362
2009-12-10 22:52 -0800 Daniel Jacobowitz <dan@debian.org> (b7d2cb7c7ce1)
* hcache.c: Do not store header color in hcache. If the color
directive is removed from muttrc, the cached value from the last
directive would otherwise still be in effect.
2009-12-07 23:08 -0800 Patrick Welche <prlw1@cam.ac.uk> (1cf34ea1f128)
* mutt_ssl.c: STACK* is not defined with newer SSL, use
STACK_OF instead. Closes #3356.
2009-12-07 22:46 -0800 Peter Rosin <peda@lysator.liu.se> (fc9563de3dcb)
* snprintf.c: Output %p as unsigned in the bundled snprintf
2009-11-14 14:31 -0800 Brendan Cully <brendan@kublai.com> (6928f522ac48)
* curs_main.c: Back out e67f4c347bb4.
I could not reproduce the problem, and the change makes it
impossible to change to a real folder when no folder is currently
open.
2009-10-28 23:03 -0700 Brendan Cully <brendan@kublai.com> (89fb586edda2)
* sendlib.c: Unfold headers to wrap length in pager, when weed is set.
From Rocco's patch queue.
2009-09-22 23:29 -0700 Antonio Radici <antonio@dyne.org> (5037c59a589e)
* po/it.po: Correct Italian translation of y/n/a prompt.
Closes #3336
2009-08-27 22:10 -0700 Petr Písař <petr.pisar@atlas.cz> (605559e4f88f)
* po/cs.po: Updated Czech translation.
2009-08-20 11:34 +0200 René Clerc <rene@clerc.nl> (6b48ff4e69a3)
* doc/manual.xml.head: No-brain documentation typo fix
2009-08-20 11:33 +0200 Rocco Rutte <pdmef@gmx.net> (e196cfc00105)
* doc/manual.xml.head: Backed out changeset c9dd93b09ce7
2009-08-20 11:25 +0200 René Clerc <rene@clerc.nl> (c9dd93b09ce7)
* doc/manual.xml.head: No-brain documentation typo fix Hi Rocco,
Attached a patch for the documentation that fixes a small typo I
stumbled upon. If you'd rather have me opening a trac ticket,
please say so; since this is such a no-brainer I figured I'd e-mail
you directly.
2009-08-17 17:07 +0200 Rocco Rutte <pdmef@gmx.net> (d0fce0eec0b3)
* doc/manual.xml.head, doc/muttrc.man.head, init.h: Doc: fix more
typos
* doc/Makefile.am, doc/mutt.pwl: Doc: fix aspell calls, add
custom mutt-only wordlist
* curs_main.c: Require already opened folder when using templates for
change-folder.
For example, start with -y and type a wrong IMAP password so that no
mailbox is open. Trying to change folders resulted in a crash.
2009-08-14 21:29 +0200 Rocco Rutte <pdmef@gmx.net> (6a08a5244d60)
* pattern.c: Clear last search pattern if it's invalid.
Closes #3315.
We keep both, the string version and compiled version around for
search-next; however, in case of parsing errors we dropped only the
compiled version and not the string one making the code attempting
to perform a search using a NULL pattern.
* pattern.c: Bail on missing pattern modifiers at end of pattern.
Closes #3314.
2009-08-13 23:49 +0200 Rocco Rutte <pdmef@gmx.net> (f8d50e968853)
* doc/Muttrc.head, doc/manual.xml.head, init.h: Docs: fix
typos/style
2009-08-11 12:22 -0700 Tomas Hoger <thoger@redhat.com> (dc09812e63a3)
* mutt_ssl.c: Catch SSL null prefix attach (openssl)
2009-08-09 14:45 -0700 Brendan Cully <brendan@kublai.com> (002b4676d502)
* buffy.c: Add buffy_new and buffy_free abstractions.
2009-08-09 14:53 +0200 Christian Ebert <blacktrash@gmx.net> (0153dbc12dc4)
* doc/manual.xml.head: manual: fix wrong spell checker assumptions
2009-08-09 14:35 +0200 Rocco Rutte <pdmef@gmx.net> (59b4c73e7254)
* doc/manual.xml.head: Manual: Fix typos, consequently use
en_US spelling
2009-08-08 22:50 -0700 Brendan Cully <brendan@kublai.com> (d4ea7f571f10)
* buffy.c: Split out mailbox-specific code in mutt_buffy_check
* buffy.c, muttlib.c, mx.c, mx.h, status.c: Unconditionally define
M_IMAP, M_POP. These aren't bloat, and not having them creates a lot
of #ifdef clutter.
* curs_lib.c: Abort prompt on ^C, as was the case prior to
12a6de725483
2009-08-04 10:47 -0700 Vincent Lefevre <vincent@vinc17.org> (15a695678b7b)
* po/fr.po: Updated French translation.
2009-08-04 12:34 +0200 Rocco Rutte <pdmef@gmx.net> (25c2d70f2f00)
* doc/manual.xml.head: Manual: Add some words of warning to really
remove IRT header when intended
* doc/manual.xml.head: Manual: Put mailbox shortcuts into
table for readability
* doc/manual.xml.head: Manual: Fix docs for push/exec
2009-08-04 12:08 +0200 Johan D <djo33@free.fr> (14bb498c6a1c)
* mh.c: Fix MH parsing, fixes [0698e8195545]. Closes #3312
2009-08-01 15:16 +0200 Rocco Rutte <pdmef@gmx.net> (29727d19634a)
* doc/manual.xml.head: Manual: use full names for é and
è entities. Closes #3286.
This is necessary because we want to install a us-ascii manual.txt
that would contain only "e" instead of accented characters.
2009-07-30 17:56 +0200 Rocco Rutte <pdmef@gmx.net> (4a572310c3b5)
* main.c: Fix mutt -h output for -a/-- options
2009-07-29 13:26 -0700 Brendan Cully <brendan@kublai.com> (a2a4286491b4)
* hcache.c, hcache.h, imap/util.c: Harmonize hcache uidvalidity size
to unsigned int (per IMAP RFC). Closes #3296.
2009-07-28 23:16 +0200 Rocco Rutte <pdmef@gmx.net> (153eac9e03e7)
* Makefile.am: Add group.h to distribution
* group.c, group.h, init.c, rfc822.c: Fix some issues with
ungroup [...] *
2009-07-27 21:14 -0700 Kees Cook <kees@outflux.net> (2fc9348684fe)
* mh.c: Properly propagate mh_read_sequences result. Closes #3308.
2009-07-27 20:49 -0700 Brendan Cully <brendan@kublai.com> (5c076ed18883)
* configure.ac: Do not overwrite docdir unless --with-
docdir was explicitly given. This allows --docdir from autoconf
2.60+ to work, though if given --with-docdir will silently override
--docdir. Closes #3282.
2009-07-24 14:30 +0200 Rocco Rutte <pdmef@gmx.net> (86e066a206ac)
* po/de.po: Update German translation
* init.c: Fix check_sec.sh warning
2009-07-23 23:36 -0400 Aron Griffis <agriffis@n01se.net> (0ee27568ad09)
* init.c: fix :reset to work with empty strings
Signed-off-by: Aron Griffis <agriffis@n01se.net>
2009-07-23 23:32 -0700 Vincent Lefevre <vincent@vinc17.org> (223020f50cb7)
* po/fr.po: Updated French translation.
2009-07-23 23:51 +0200 Matthias Andree <matthias.andree@gmx.de> (1e77b368ef55)
* charset.h, rfc2047.c: Use proper prototype for
mutt_get_default_charset(), fix fallout.