* [PATCH 0/1] Mutt 1.6.0
@ 2016-04-05 7:05 Leo Famulari
2016-04-05 7:05 ` [PATCH 1/1] gnu: mutt: Update to 1.6.0 Leo Famulari
2016-04-05 10:04 ` [PATCH 0/1] Mutt 1.6.0 Efraim Flashner
0 siblings, 2 replies; 3+ messages in thread
From: Leo Famulari @ 2016-04-05 7:05 UTC (permalink / raw)
To: guix-devel
Mutt has released version 1.6.0. They recommend users review the
changes [0], which are copied here:
The keys used are:
!: modified feature, -: deleted feature, +: new feature
1.6.0 (2016-04-04):
+ Enabled utf-8 mailbox support for IMAP.
+ New expandos %r and %R for comma separated list of To: and Cc:
recipients respectively.
+ Improved support for internationalized email and SMTPUTF8
(RFC653[0-3]).
! $use_idn has been renamed to $idn_decode.
+ $idn_encode controls whether outgoing email address domains will
be IDNA encoded. If your MTA supports it, unset to use utf-8
email address domains.
+ The S/MIME message digest algorithm is now specified using the
option $smime_sign_digest_alg. Note that $smime_sign_command
should be modified to include "-md %d". Please see
contrib/smime.rc.
+ $reflow_space_quotes allows format=flowed email quotes to be
displayed with spacing between them.
! multipart draft files are now supported.
+ The "-E" command line argument causes mutt to edit draft or include
files.
All changes made in mutt will be saved back out to those files.
+ $resume_draft_files and $resume_edited_draft_files control how
mutt processes draft files.
+ For classic gpg mode, $pgp_decryption_okay should be set to verify
multipart/encrypted are actually encrypted. Please see
contrib/gpg.rc for the suggested value.
! mailto URL header parameters by default are now restricted to
'body' and 'subject'.
+ mailto_allow and unmailto_allow can be used to add or remove
allowed mailto header parameters.
! The method of setting $hostname has been changed. Rather than
scanning /etc/resolv.conf, the domain will now be determined using
DNS calls.
[0]
http://www.mutt.org/doc/UPDATING
Leo Famulari (1):
gnu: mutt: Update to 1.6.0.
gnu/packages/mail.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--
2.7.3
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/1] gnu: mutt: Update to 1.6.0.
2016-04-05 7:05 [PATCH 0/1] Mutt 1.6.0 Leo Famulari
@ 2016-04-05 7:05 ` Leo Famulari
2016-04-05 10:04 ` [PATCH 0/1] Mutt 1.6.0 Efraim Flashner
1 sibling, 0 replies; 3+ messages in thread
From: Leo Famulari @ 2016-04-05 7:05 UTC (permalink / raw)
To: guix-devel
* gnu/packages/mail.scm (mutt): Update to 1.6.0.
---
gnu/packages/mail.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 1022ac7..7bcb93c 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -177,14 +177,14 @@ aliasing facilities to work just as they would on normal mail.")
(define-public mutt
(package
(name "mutt")
- (version "1.5.24")
+ (version "1.6.0")
(source (origin
(method url-fetch)
(uri (string-append "ftp://ftp.mutt.org/pub/mutt/mutt-"
version ".tar.gz"))
(sha256
(base32
- "0012njrgxf1barjksqkx7ccid2l0xyikhna9mjs9vcfpbrvcm4m2"))
+ "06bc2drbgalkk68rzg7hq2v5m5qgjxff5357wg0419dpi8ivdbr9"))
(patches (list (search-patch "mutt-store-references.patch")))))
(build-system gnu-build-system)
(inputs
--
2.7.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 0/1] Mutt 1.6.0
2016-04-05 7:05 [PATCH 0/1] Mutt 1.6.0 Leo Famulari
2016-04-05 7:05 ` [PATCH 1/1] gnu: mutt: Update to 1.6.0 Leo Famulari
@ 2016-04-05 10:04 ` Efraim Flashner
1 sibling, 0 replies; 3+ messages in thread
From: Efraim Flashner @ 2016-04-05 10:04 UTC (permalink / raw)
To: Leo Famulari; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 2437 bytes --]
On Tue, Apr 05, 2016 at 03:05:06AM -0400, Leo Famulari wrote:
> Mutt has released version 1.6.0. They recommend users review the
> changes [0], which are copied here:
>
> The keys used are:
> !: modified feature, -: deleted feature, +: new feature
>
> 1.6.0 (2016-04-04):
>
> + Enabled utf-8 mailbox support for IMAP.
> + New expandos %r and %R for comma separated list of To: and Cc:
> recipients respectively.
> + Improved support for internationalized email and SMTPUTF8
> (RFC653[0-3]).
> ! $use_idn has been renamed to $idn_decode.
> + $idn_encode controls whether outgoing email address domains will
> be IDNA encoded. If your MTA supports it, unset to use utf-8
> email address domains.
> + The S/MIME message digest algorithm is now specified using the
> option $smime_sign_digest_alg. Note that $smime_sign_command
> should be modified to include "-md %d". Please see
> contrib/smime.rc.
> + $reflow_space_quotes allows format=flowed email quotes to be
> displayed with spacing between them.
> ! multipart draft files are now supported.
> + The "-E" command line argument causes mutt to edit draft or include
> files.
> All changes made in mutt will be saved back out to those files.
> + $resume_draft_files and $resume_edited_draft_files control how
> mutt processes draft files.
> + For classic gpg mode, $pgp_decryption_okay should be set to verify
> multipart/encrypted are actually encrypted. Please see
> contrib/gpg.rc for the suggested value.
> ! mailto URL header parameters by default are now restricted to
> 'body' and 'subject'.
> + mailto_allow and unmailto_allow can be used to add or remove
> allowed mailto header parameters.
> ! The method of setting $hostname has been changed. Rather than
> scanning /etc/resolv.conf, the domain will now be determined using
> DNS calls.
>
> [0]
> http://www.mutt.org/doc/UPDATING
>
> Leo Famulari (1):
> gnu: mutt: Update to 1.6.0.
>
> gnu/packages/mail.scm | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> --
> 2.7.3
>
I didn't see your patch and I've already pushed 1.6.0 to master
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-04-05 10:05 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-05 7:05 [PATCH 0/1] Mutt 1.6.0 Leo Famulari
2016-04-05 7:05 ` [PATCH 1/1] gnu: mutt: Update to 1.6.0 Leo Famulari
2016-04-05 10:04 ` [PATCH 0/1] Mutt 1.6.0 Efraim Flashner
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).