summaryrefslogtreecommitdiffstats
path: root/UPDATING
blob: c80ad10a391262cfa962cdda2e5bd53f16a26766 (plain)
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
This file lists incompatible changes and additional/new features made to
mutt. Please read this file carefully when upgrading your installation.

The description of changes are intentionally brief.  For a more detailed
explanation of features, please refer to the manual at
http://www.mutt.org/doc/manual/ and the release notes at
http://www.mutt.org/relnotes/

The keys used are:
  !: modified feature, -: deleted feature, +: new feature

2.2.13 (2024-03-09):

  ! Bug fix release.

2.2.12 (2023-09-09):

  ! Bug fix release.

2.2.11 (2023-08-18):

  ! Bug fix release.

2.2.10 (2023-03-25):

  ! Bug fix release.
  ! $message_id_format %r and %z expandos use a URL-safe Base64 encoding:
    '-' and '_' instead of '+' and '/'.

2.2.9 (2022-11-12):

  ! Bug fix release.

2.2.8 (2022-11-05):

  ! Bug fix release.
  ! Ncurses now uses ioctl for window size calculation.  Previously, Mutt
    and ncurses differed on this, which could result in screen corruption
    in some cases.
  ! The index now handles resizes without recalculating the top line,
    as other menus in Mutt do.  This should reduce the "jumbling around"
    visual effect during resizes.
  + IMAP Fcc is now supported in batch mode.
  ! In batch mode with $fcc_before_send set, Mutt will abort sending if
    one or more of the Fcc's fails.

2.2.7 (2022-08-07):

  ! Bug fix release.
  ! $query_command output is more strictly parsed, with one tab expected
    between fields.  This allows the name field to be empty.
  ! $pager may contain a %s to specify the argument placement.

2.2.6 (2022-06-05):

  ! Bug fix release.

2.2.5 (2022-05-16):

  ! Bug fix release.

2.2.4 (2022-04-30):

  ! Path variables (DT_PATH) are normalized to remove a trailing '/'.
  ! If $header_cache is used as a directory, the directory must already exist or
    else it will be interpreted as a file.

2.2.3 (2022-04-12):

  ! Bug fix release.

2.2.2 (2022-03-25):

  ! Bug fix release.

2.2.1 (2022-02-19):

  ! Bug fix release.

2.2.0 (2021-02-12):

  + $pager_skip_quoted_context determines the number of lines to show
    before unquoted text when using <skip-quoted> in the pager.
  ! Quadoption prompts and a few boolean prompts now have a '?' choice,
    which will display the associated configuration variable.
  ! <enter>, <return>, and <keypadenter> can be bound to separate
    functions/macros.
  + $sort_thread_groups can be used to sort top-level thread groups differently
    than subthreads.
  ! contrib/smime.rc now uses the cms utility for SMIME encryption/decryption.
  + $compose_confirm_detach_first helps prevent accidentally deleting your
    typed message in the compose menu.
  + The $attach_save_charset_convert quadoption prompts to allow charset
    conversion of received text-type attachments when saving them to disk.
  + --with-gsasl allows configuration with the GNU SASL library, as an
    alternative to Cyrus.
  ! $reply_regexp is now localizable by translators, to add other
    non-standard prefixes used in the locale.  "aw" was removed from the
    default value.
  ! $rfc2047_parameters is enabled by default.

2.1.5 (2021-12-30):

  ! Bug fix release.

2.1.4 (2021-12-11):

  ! Bug fix release.

2.1.3 (2021-09-10):

  ! Bug fix release.

2.1.2 (2021-08-24):

  ! Bug fix release.

2.1.1 (2021-07-12):

  ! Bug fix release.

2.1.0 (2021-06-12):

  ! The -d option allows a negative number. If negative, debug files are
    not rotated. The debug level is the absolute value.
  + <view-pager> in the attachment menu uses a copiousoutput mailcap
    entry, or falls back to raw text.
  + <view-mailcap>, <view-pager>, and <view-text> functions added to the
    compose menu.
  + <view-alt-pager> in the compose menu allows previewing the output
    of the $send_multipart_alternative_filter the way <view-pager> does.
  + <list-action>, bound to Esc-L in the index and pager menu, brings
    up a menu of operations to perform on mailing list emails, such as
    subscribe/unsubscribe.
  + <skip-headers>, bound to 'H' in the pager, will skip to the first
    blank line following the headers.
  ! ~h patterns over IMAP and POP3 will only download the headers of the
    message.  However with message caching enabled (via $message_cachedir)
    the whole message will still be downloaded.
  + $ssl_verify_host_override allows manually specifying the host name
    to verify a server certificate against.
  ! --enable-hcache, with no particular backend enabled, will scan in
    the order: kyotocabinet, tokyocabinet, lmdb, qdbm, gdbm, bdb.
  ! $allow_ansi understands 256-color ANSI escape sequences.
  + $message_id_format can be used to specify a custom message-id
    format.  Since it's a format string, this can also use a filter.
    Please use this option with care, as Mutt won't check if your
    message-id is legal.
  ! mailboxes -nonotify will poll a mailbox for new mail, but will not
    trigger new mail notifications (e.g. $beep_new or $new_mail_command).
  ! $reverse_name affects tagged reply/forward/compose-to-sender
    actions too.
  ! ANSI sequences are filtered for inline-forwarded autoview content,
    in addition to replies.
  ! $forward_decrypt is now a quadoption, defaulting 'yes' for backward
    compatibility.
  ! Pattern functions, (e.g. search and limit) can be interrupted with
    ctrl-c.
  ! The default mailto_allow list now includes cc, in-reply-to, and
    references.
  + $sort_browser_mailboxes controls mailbox browsing, and defaults
    "unsorted".  $sort_browser now only controls directory browsing.
  ! $sort_browser and $sort_browser_mailboxes "unsorted" now means the
    order added (e.g. specified in the muttrc).  Switching back to
    "unsorted" will now resort in that order (previously it was a no-op.)
  ! In the browser ".." is excluded from sorting and kept at the top.
  ! Temp filenames generated for mailcap invocation now allow non-ascii
    characters.
  + $local_date_header, when unset, causes the date in the Date header
    to be formatted using the GMT timezone.

2.0.7 (2021-05-04):

  ! Bug fix release.

2.0.6 (2021-03-06):

  ! Bug fix release.

2.0.5 (2021-01-21):

  ! Bug fix release.

2.0.4 (2020-12-30):

  ! Bug fix release.

2.0.3 (2020-12-04):

  ! Bug fix release.
  ! Some bugs with exact-address handling were fixed.  The "personal"
    field was not properly updated in some case.  The fix may result in
    behavior changes for those who have enabled this mode; most notably in
    alias creation, the query menu, $from + $realname setting, and
    unset $reverse_realname handling.

2.0.2 (2020-11-20):

  ! Bug fix release.

2.0.1 (2020-11-14):

  ! Bug fix release.

2.0.0 (2020-11-07):

  + Domain-literal support for email addresses, e.g user@[IPv6:fcXX:...]
  ! Buffy completion only occurs for the "change-folder" set of functions.
    It has been disabled for <attach-message>, <write-fcc>, the fcc
    mailbox prompt, and the autocrypt scan mailbox prompt.
  ! The "save/copy message to mailbox" set of functions use the "mailbox"
    history list, instead of the "filename" list.
  ! Message-ID extraction permits values missing angle brackets and '@'
    to allow properly threading the garbage sent by some providers.
    Mutt will add missing angle brackets when sending out replies, however.
  ! When adding multiple attachments, via <attach-file> in the compose menu,
    the browser menu can be exiting via <quit> after tagging the files.
    Previously, <select-entry> had to be used.
  ! ctrl-p/ctrl-n are by default bound to <history-up>/<history-down> in the
    editor menu.
  + The "cd" command allows changing the current working directory.
    As part of this, Mutt expands relative paths internally.  There
    may be a change to some "prettified" relative paths because of this.
  ! Some configuration variable default values are localizable by
    translators.  Currently these are: $attribution, $compose_format,
    $forward_attribution_intro, $forward_attribution_trailer, $status_format,
    $ts_icon_format, $ts_status_format.
  + Mutt will try to automatically reconnect to an IMAP mailbox on error,
    and will merge unsync'ed changes if possible.
  ! $crypt_protected_headers_subject defaults to "...", following the
    protected headers revised specification.
  ! Date, From, To, Cc, and Reply-To headers are stored as protected headers.
  + XOAUTH2 support.  Please see the manual, contrib script mutt_oauth2.py,
    and mutt_oauth.py.README for more details.
  + $tunnel_is_secure, default set, assumes a connection via $tunnel is
    encrypted.  Unsetting this will cause $ssl_starttls and $ssl_force_tls
    to be respected.
  + Patterns are completable in the editor menu.  Invoke the <complete> function
    (by default bound to Tab) after typing ~ to get a selectable list.
  ! $reply_to is consulted before $reply_self.
  + $copy_decode_weed, default unset, controls header weeding for <decode-copy>
    and <decode-save>.
  + $pipe_decode_weed, default set, enables header weeding for <pipe-message>.
  + $print_decode_weed, default set, enables header weeding for <print-message>.
  ! format=flowed attachments are space-unstuffed when viewed, saved,
    piped, and printed.
  + The "run" command will execute MuttLisp. $muttlisp_inline_eval, if set, will
    execute unquoted parenthesized command arguments as MuttLisp.  Please see
    the manual for more details about both.
  + $cursor_overlay, when set, will overlay the indicator, tree,
    sidebar_highlight, and sidebar_indicator colors onto the current line.
    "default" colors will be overridden and attributes will be merged.
  ! The message-id generation algorithm uses a random number instead of
    the step counter and PID.
  ! $ssl_force_tls defaults set.  (Trying this again for 2.0).
  ! $hostname is set *after* muttrc processing.  It can be manually set
    in the muttrc to avoid using DNS calls to obtain the FQDN.
  + $attach_save_dir specifies a directory to use when saving attachments.

1.14.7 (2020-08-29):

  ! Bug fix release.

1.14.6 (2020-07-11):

  ! Bug fix release.

1.14.5 (2020-06-23):

  ! Bug fix release.
  - $ssl_starttls no longer controls aborting an unencrypted IMAP PREAUTH
    connection.  Only $ssl_force_tls does this.  Mutt highly recommends
    setting $ssl_force_tls if you rely on STARTTLS.
  ! Using a $tunnel is considered secure, and will not consult
    $ssl_force_tls for an unencrypted IMAP PREAUTH connection.

1.14.4 (2020-06-18):

  ! Bug fix release.

1.14.3 (2020-06-14):

  ! Bug fix release.
  ! $ssl_starttls and $ssl_force_tls also control aborting an unencrypted
    IMAP PREAUTH connection.

1.14.2 (2020-05-25):

  ! Bug fix release.

1.14.1 (2020-05-16):

  ! Bug fix release.

1.14.0 (2020-05-02):

  + $imap_deflate enables support for COMPRESS=DEFLATE compression.
    Defaults unset, but please give it a try and report any issues.
  ! Date pattern modifiers accept YYYYMMDD format dates.
  + $crypt_opportunistic_encrypt_strong_keys modifies
    $crypt_opportunistic_encrypt to only look at strong (fully-valid) keys.
  ! Pattern modifiers ~b, ~B, and ~h are allowed in send2-hook patterns.
  + New compose menu functions <move-up> and <move-down> to rearrange
    the order parts.
  + Background editing support.  Compose and browse your mailbox at the same
    time, or have multiple compose sessions ongoing!
    New config vars $background_edit, $background_confirm_quit, and
    $background_format.  New function <background-compose-menu> in the
    index and pager menu.  New %B expando added to the default for
    $status_format.  Please see the manual and release notes for details.
  + $fcc_delimiter, when set, allows Fcc'ing to multiple mailboxes via
    $record or fcc-hook.
  + Index and pager menu functions <sidebar-first> and <sidebar-last>.
  ! "mailboxes -label" allows displaying a label in the sidebar or
    mailbox browser instead of the mailbox path.  "-nolabel" removes
    an existing label.
  ! "mailboxes -nopoll" turn off new mail polling for the mailbox.
    "-poll" restores polling for an existing mailbox.
  ! "root" disposition added to the "attachments" command.  Please see
    the manual for the details of how it works.
  ! Decryption failures will no longer abort the displaying the pager.
  ! With "exact address" enabled, mailboxes that contain non-ascii
    characters, or sequences that require RFC 2047 encoding, will be
    written in normalized "Name <user@host>" form when sending emails,
    so that they can be properly RFC 2047 and IDNA encoded.

1.13.5 (2020-03-28):

  ! Bug fix release.

1.13.4 (2020-02-15):

  ! Bug fix release.
  ! $ssl_force_tls reverted to default unset.  Defaulting this set was
    overly optimistic, and caused breakage.

1.13.3 (2020-01-12):

  ! Bug fix release.

1.13.2 (2019-12-18):

  ! Bug fix release.

1.13.1 (2019-12-14):

  ! Bug fix release.
  + $sidebar_relative_shortpath_indent, default unset, enables the
    indentation and shortpath behavior introduced in 1.13.0.
  + $sidebar_use_mailbox_shortcuts, default unset, displays standard
    mailbox shortcuts, '~' and '=' in the sidebar.  When unset, the
    sidebar will remove a $folder prefix but won't display mailbox
    shortcuts.

1.13.0 (2019-11-30):

  ! <half-up> and <half-down> in the pager are now symmetric.
  ! $ssl_force_tls is now set by default.
  ! Configure option --with-regex is renamed to --with-bundled-regex.
    Most modern OS should be fine using their own regex library.  The
    rename is to clarify the intention of the option.
  ! Configure option --disable-doc now only disables the manual generation.
    Other parts of the doc directory (man pages, Muttrc file) are generated.
  ! $user_agent is now unset by default.
  ! unattachments now has a '*' parameter to remove all attachment counting.
  + Autocrypt support.  Enabled via configure option --enable-autocrypt.
    Please see the manual for details on how to enable and use this properly.
  + Byte size displays can be customized via new variables $size_show_bytes,
    $size_show_mb, $size_show_fractions, $size_units_on_left.
  + $ssl_use_tlsv1_3, default set, allows TLS1.3 connections if supported
    by the server.
  ! format=flowed space stuffing works again, and is performed after every
    edit, not just the first time.
  + $browser_sticky_cursor, default set, attempts to keep the cursor on the
    same mailbox when performing operations in the browser.
  ! <display-filename> in the browser menu shows the full path for local and
    IMAP mailboxes.
  ! $sidebar_folder_indent and $sidebar_short_path are now based on previous
    entries in the sidebar, allowing them to work on mailboxes outside $folder.
  ! Sidebar entries are now prefixed with mailbox shortcuts '~' and '='.  This
    uses the same code as other parts of mutt, for more consistent display.
  + <browse-mailboxes> allows direct access to the mailboxes list from the
    index and pager, without having to use a macro.  This improves
    $browser_sticky_cursor initial selection of the current mailbox.
  ! <pipe-message> with $pipe_decode set will update MIME headers to decoded
    text/plain values.
  + $send_multipart_alternative and $send_multipart_alternative_filter allow
    the generation of a multipart/alternative when composing a message.  See
    their documentation in the manual for more details.  Also see
    contrib/markdown2html for a sample filter.
  + In the compose menu <view-alt>, <view-alt-text>, <view-alt-mailcap> allow
    previewing the output of the $send_multipart_alternative_filter.
  ! $write_bcc now defaults unset.  It no longer affects the Fcc copy, which
    will always include the Bcc header.
  + When $count_alternatives is set, Mutt will recurse inside
    multipart/alternatives while performing attachment searching and counting.
    This affects %X in the index and ~X pattern matching.

1.12.2 (2019-09-21):

  ! Bug fix release.

1.12.1 (2019-06-15):

  ! Bug fix release.
  + $fcc_before_send, when set, causes Fcc to occur before sending instead of
    afterwards.  When set, the message is saved as-sent; please see the
    documentation for details.

1.12.0 (2019-05-25)

  ! $ssl_use_tlsv1 and $ssl_use_tlsv1_1 now default to unset.
  + $auto_subscribe, when set, automatically adds an email with the List-Post
    header to the subscribe list.
  ! Fcc now occurs after sending a message.  If the fcc fails, mutt will prompt
    to try again, or to try another mailbox.
  + Basic protected header ("memory hole") support added for the Subject header.
    See the config vars: $crypt_protected_headers_read,
    $crypt_protected_headers_save, $crypt_protected_headers_subject,
    and $crypt_protected_headers_write.
  ! Color names can be prefixed with "light" in addition to "bright".  "bright"
    colors are bold face, while "light" are non-bold.
  ! Color commands can now include an attribute (e.g. bold, underline).
  ! $pgp_use_gpg_agent defaults set.
  + <descend-directory> in the browser menu allows entering nested maildir
    directories.
  + <group-chat-reply> replies to all, but preserves To recipients in the reply.
  + $include_encrypted, default unset, prevents separately encrypted contents
    from being included in a reply.  This helps to prevent a decryption oracle
    attack.
  ! With gpgme >= 1.11, recipient keys with a trailing '!' now force subkey use,
    as with classic gpg.
  ! In send mode, %{charset} mailcap expansion uses the current charset of the
    file.
  + $imap_fetch_chunk_size allows fetching new headers in groups of this size.
    This might help with timeouts during opening of huge mailboxes.
    If you have huge mailboxes, you should also try $imap_qresync.
  ! <toggle-write> can be invoked from the pager too.
  + The $forward_attachments quadoption allows including attachments in
    inline-forwards (i.e. $mime_forward unset, $forward_decode set.)

1.11.4 (2019-03-13):

  ! Bug fix release.

1.11.3 (2019-02-01):

  ! Bug fix release.

1.11.2 (2019-01-07):

  ! Bug fix release.

1.11.1 (2018-12-01):

  ! Bug fix release.
  ! IMAP retrieves the Sender header by default.  It doesn't need to be added
    to $imap_headers.

1.11.0 (2018-11-25):

  + inotify is used for local mailbox monitoring on Linux.  Configuration flag
    --disable-filemonitor turns this off.
  + OAUTHBEARER support for IMAP, SMTP and POP via
    $imap_oauth_refresh_command, $smtp_oauth_refresh_command, and
    $pop_oauth_refresh_command.
  ! $pgp_timeout and $smime_timeout support 32-bit numbers.
  + <check-stats> manually updates mailbox statistics, the same way
    $mail_check_stats does when set.
  ! Thread limited views, e.g. ~(pattern), now show new mail as it arrives.
  ! Command line argument -z and -Z options also work for IMAP mailboxes.
  + $imap_condstore and $imap_qresync enable IMAP CONDSTORE and QRESYNC
    support, respectively.  QRESYNC should provide much faster mailbox opening.
  ! $abort_noattach skips quoted lines (as defined by $quote_regexp and
    $smileys).
  ! Initial IMAP header downloading can be aborted with ctrl-c.
  + <compose-to-sender> composes a message to the sender of the selected
    message, in the index or attachment menu.
  ! Address book queries ($query_format) now support multibyte characters.
  + Finnish translation.
  ! pgpring has been renamed to mutt_pgpring.
  ! Certificate prompts show sha-256 instead of md5 fingerprints.
  ! Non-threaded $sort_aux "reverse-" settings now work properly.
  + The manual can be generated and installed in GNU Info format.
  + index-format-hook and the new %@name@ expando for $index_format enable
    dynamic index formats using pattern matching against the current message.
    This can be used, for example, to format dates based on the age of
    the message.
  ! Relative date matching allows hour, minute, and second units: HMS.

1.10.1 (2018-07-16):

  ! Bug fix release.
  + $pgp_check_gpg_decrypt_status_fd, when set (the default), checks
    GnuPG status fd output more thoroughly for spooofed encrypted
    messages.  Please see contrib/gpg.rc for suggested values.

1.10.0 (2018-05-19):

  ! $reply_self is now respected for group-reply, even with $metoo unset.
  ! Enabled $imap_poll_timeout when $imap_idle is set.
  ! Added %R (number of read messages) expando for $status_format.
  + When $change_folder_next is set, the <change-folder> function
    mailbox suggestion will start at the next folder in your
    "mailboxes" list, instead of starting at the first folder in the
    list.
  + $new_mail_command specifies a command to run after a new message is
    received.
  + $pgp_default_key specifies the default key-pair to use for PGP
    operations.  It will be used for both encryption and signing
    (unless $pgp_sign_as is set).  See contrib/gpg.rc.
  ! $smime_default_key now specifies the default key-pair to use for
    both encryption and signing S/MIME operations.  See
    contrib/smime.rc.
  + $smime_sign_as can be used to specify a sign-only key-pair for
    S/MIME operations.
  - $pgp_self_encrypt_as is now deprecated, and is an alias for
    $pgp_default_key.  $smime_self_encrypt_as is also deprecated, and
    is an alias for $smime_default_key.
  ! $pgp_self_encrypt and $smime_self_encrypt now default to set.
    This makes setting $pgp_default_key or $smime_default_key all that
    is required to enable self-encryption (for both classic and GPGME
    mode).
  + The <history-search> function (default: ^R) will search history based
    on the text currently typed in.  That is, type the search string first,
    then hit ^R.
  + The $abort_noattach quadoption controls whether to abort sending a
    message that matches $abort_noattach_regexp and has no attachments.
  + Mutt can now be configured --with-idn2.  This requires the libidn1
    compatibility layer present in libidn2 v2.0.0 or greater.
  + Unsetting $browser_abbreviate_mailboxes turns off '=' and '~'
    shortcuts for mailbox names in the browser mailbox list.
  ! $sort_browser now has 'count' and 'unread' options.
  + <error-history> will display the last $error_history count of
    error/informational messages generated.
  + The ~M pattern matches content-type headers.  Note that this
    pattern may be slow because it reads each message in.
  + The "echo" command can be used to display a message, for instance
    when running a macro or sourcing a file.

1.9.5 (2018-04-14):

  ! Bug fix release.

1.9.4 (2018-03-03):

  ! Bug fix release.

1.9.3 (2018-01-27):

  ! Bug fix release.

1.9.2 (2017-12-15):

  ! Bug fix release.

1.9.1 (2017-09-23):

  ! Bug fix release.

1.9.0 (2017-09-02):

  + $ssl_verify_partial_chains permits verifying partial certificate chains.
    This allows the storage of only intermediate/host certificates in the
    $certificate_file. (OpenSSL 1.0.2b and newer only)
  ! SNI support added for OpenSSL and GnuTLS.
  + Choice and confirmation prompts can now wrap across multiple lines.
  + Window resizes are handled while in the line editor.
  + "color compose&qu