GNU bug report logs - #57021
[PATCH] gnu: packages: Add nmail.

Please note: This is a static page, with minimal formatting, updated once a day.
Click here to see this page with the latest information and nicer formatting.

Package: guix-patches; Reported by: M <matf@HIDDEN>; Owned by: Christina O'Donnell <cdo@HIDDEN>; Keywords: patch; merged with #56994; dated Sat, 6 Aug 2022 23:03:01 UTC; Maintainer for guix-patches is guix-patches@HIDDEN.

Message received at 57021 <at> debbugs.gnu.org:


Received: (at 57021) by debbugs.gnu.org; 22 Apr 2024 11:19:14 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Mon Apr 22 07:19:14 2024
Received: from localhost ([127.0.0.1]:45802 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1ryrhZ-0000Sx-VR
	for submit <at> debbugs.gnu.org; Mon, 22 Apr 2024 07:19:14 -0400
Received: from vmi993448.contaboserver.net ([194.163.141.236]:37948
 helo=mutix.org) by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <cdo@HIDDEN>) id 1ryrhW-0000SI-MK
 for 57021 <at> debbugs.gnu.org; Mon, 22 Apr 2024 07:19:12 -0400
Received: from [86.132.246.87] (host217-46-73-1.range217-46.btcentralplus.com
 [217.46.73.1]) (Authenticated sender: cdo)
 by mutix.org (Postfix) with ESMTPSA id 6646CA607A0;
 Mon, 22 Apr 2024 13:18:53 +0200 (CEST)
From: Christina O'Donnell <cdo@HIDDEN>
To: 57021 <at> debbugs.gnu.org,
	othacehe@HIDDEN
Subject: [PATCH v10] gnu: Add nmail.
Date: Mon, 22 Apr 2024 12:18:50 +0100
Message-ID: <2487067d8a5bf3c0e3c55f2bc360fcb6ca32c8f3.1713784082.git.cdo@HIDDEN>
X-Mailer: git-send-email 2.41.0
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 57021
Cc: Christina O'Donnell <cdo@HIDDEN>, M <matf@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

From: M <matf@HIDDEN>

* gnu/packages/mail.scm (nmail): New variable.

Reviewed-by: Christina O'Donnell <cdo@HIDDEN>
Change-Id: I850ac3a1b6e6db6d1869bb3fe8ff9d3a9e71cc86
---
 gnu/packages/mail.scm | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 6d5deca741b..139150224a5 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -51,6 +51,7 @@
 ;;; Copyright © 2022 muradm <mail@HIDDEN>
 ;;; Copyright © 2022 jgart <jgart@HIDDEN>
 ;;; Copyright © 2022 ( <paren@HIDDEN>
+;;; Copyright © 2022 Mathieu Laparie <mlaparie@HIDDEN>
 ;;; Copyright © 2023 Timo Wilken <guix@HIDDEN>
 ;;; Copyright © 2023 Arjan Adriaanse <arjan@HIDDEN>
 ;;; Copyright © 2023 Wilko Meyer <w@HIDDEN>
@@ -455,6 +456,46 @@ (define-public mairix
 Maildir, MH, MMDF or mbox folders.")
       (license license:gpl2))))
 
+(define-public nmail
+  (package
+    (name "nmail")
+    (version "4.54")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/d99kris/nmail/")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0bk2kq0pk1r4w5xv94yh37vrwxs8lczjg11gfraxh9cxyjigwsrp"))))
+    (build-system cmake-build-system)
+    (arguments
+     (list
+      #:phases #~(modify-phases %standard-phases
+                   (replace 'check
+                     (lambda* (#:key tests? #:allow-other-keys)
+                       (when tests?
+                         (invoke "ctest" "--output-on-failure")))))))
+    (inputs (list curl
+                  cyrus-sasl
+                  expat
+                  file
+                  libetpan
+                  ncurses
+                  openssl
+                  sqlite
+                  (list util-linux "lib")
+                  xapian
+                  zlib))
+    (native-inputs (list pkg-config))
+    (home-page "https://github.com/d99kris/nmail")
+    (synopsis "Terminal-based email client")
+    (description
+     "@command{nmail} is an easily configurable terminal-based email client with
+a @code{ncurses} user interface similar to @code{alpine} and @code{pine}.")
+    (license license:expat)))
+
 (define-public go-gitlab.com-shackra-goimapnotify
   (package
     (name "go-gitlab.com-shackra-goimapnotify")

base-commit: 28e41dc3bcb37bfe0dffb118d1b60b6df98a49e2
-- 
2.41.0





Information forwarded to guix-patches@HIDDEN:
bug#57021; Package guix-patches. Full text available.

Message received at 57021 <at> debbugs.gnu.org:


Received: (at 57021) by debbugs.gnu.org; 22 Apr 2024 10:19:47 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Mon Apr 22 06:19:47 2024
Received: from localhost ([127.0.0.1]:45770 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1ryqm2-0002Wh-Oc
	for submit <at> debbugs.gnu.org; Mon, 22 Apr 2024 06:19:47 -0400
Received: from vmi993448.contaboserver.net ([194.163.141.236]:57198
 helo=mutix.org) by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <cdo@HIDDEN>) id 1ryqlz-0002WA-SJ
 for 57021 <at> debbugs.gnu.org; Mon, 22 Apr 2024 06:19:46 -0400
Received: from [192.168.1.172] (host217-46-73-1.range217-46.btcentralplus.com
 [217.46.73.1]) (Authenticated sender: cdo)
 by mutix.org (Postfix) with ESMTPSA id 7D629A60319;
 Mon, 22 Apr 2024 12:19:26 +0200 (CEST)
Date: Mon, 22 Apr 2024 11:19:25 +0100
From: Christina <cdo@HIDDEN>
To: Mathieu <mlaparie@HIDDEN>
Message-ID: <49b576c9-47be-4e8f-ae52-2e43d78b6cc7@HIDDEN>
In-Reply-To: <864e413a-baa5-405b-a0d5-df37dce6fa00@HIDDEN>
References: <864e413a-baa5-405b-a0d5-df37dce6fa00@HIDDEN>
Subject: Re: bug#57021: [PATCH] gnu: packages: Add nmail.
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 57021
Cc: 57021 <at> debbugs.gnu.org
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

Hi Mathieu,

I'm testing it right now connecting to my server on IMAP STARTTLS.

It's working fine for me over IMAP and works over on SMTP over SSL if you=
 receive this message.

Is --enable-login required for OAUTH=3F

I did notice it failed to build a second time due to missing dependencies=
 which is odd. I'll send an update patch to fix that shortly.

Kind regards,
Christina =20

On 2024-04-22 10:21 Mathieu <mlaparie=40disr.it> wrote:

> Awesome news, thanks a ton Christina=21
> =20
> Have you tried sending emails without the =60cyrus-sasl=60 patch=3F Unl=
ess
> the package changed since I submitted this patch, sending emails may
> fail because =60cyrus-sasl=60 needs to be compiled with the
> =60--enable-login=60 flag, which I think was not default. I haven't
> tested lately though because I was running =60nmail=60 and =60cyrus-sas=
l=60
> from my private channel since a long time.
> =20
> Mathieu
> =20
> On 2024-04-21 16:03 Christina O'Donnell <cdo=40mutix.org> wrote:
> =20
>> Hi Mathieu Laparie,
>> =20
>> Thank you for your patch. Sorry it has taken so long to get to it.
>> =20
>> This patch looks good. It applies and runs and lints with few
>> issues.
>> =20
>> I've re-rolled a version 9 patch on the latest master branch,
>> updating the version and changing the formatting slightly.
>> =20
>> Regarding the second diff, I'm not sure what the justification is
>> for
>> changing cyrus-sasl in the same patch, so I've removed that part.
>> If
>> that change needs to happen then I would think it would make more
>> sense as a separate patch.
>> =20
>> Kind regards, Christina
>> 




Information forwarded to guix-patches@HIDDEN, Christina O'Donnell <cdo@HIDDEN>:
bug#57021; Package guix-patches. Full text available.

Message received at 57021 <at> debbugs.gnu.org:


Received: (at 57021) by debbugs.gnu.org; 21 Apr 2024 14:03:26 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Sun Apr 21 10:03:25 2024
Received: from localhost ([127.0.0.1]:43131 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1ryXmu-0006bz-J9
	for submit <at> debbugs.gnu.org; Sun, 21 Apr 2024 10:03:25 -0400
Received: from vmi993448.contaboserver.net ([194.163.141.236]:40216
 helo=mutix.org) by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <cdo@HIDDEN>) id 1ryXms-0006be-MK
 for 57021 <at> debbugs.gnu.org; Sun, 21 Apr 2024 10:03:23 -0400
Received: from [192.168.1.172] (host217-46-73-1.range217-46.btcentralplus.com
 [217.46.73.1]) (Authenticated sender: cdo)
 by mutix.org (Postfix) with ESMTPSA id B5778A63A3F;
 Sun, 21 Apr 2024 16:03:05 +0200 (CEST)
Message-ID: <db8a5d71-70ce-650c-4209-ecdeb4d97a30@HIDDEN>
Date: Sun, 21 Apr 2024 15:03:05 +0100
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101
 Thunderbird/102.15.0
Content-Language: en-US
To: 57021 <at> debbugs.gnu.org, Mathieu Laparie <mlaparie@HIDDEN>
From: Christina O'Donnell <cdo@HIDDEN>
Subject: Re: bug#57021: [PATCH] gnu: packages: Add nmail.
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 57021
Cc: othacehe@HIDDEN
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

Hi Mathieu Laparie,

Thank you for your patch. Sorry it has taken so long to get to it.

This patch looks good. It applies and runs and lints with few issues.

I've re-rolled a version 9 patch on the latest master branch, updating 
the version and changing the formatting slightly.

Regarding the second diff, I'm not sure what the justification is for 
changing cyrus-sasl in the same patch, so I've removed that part. If 
that change needs to happen then I would think it would make more sense 
as a separate patch.

Kind regards,
Christina





Information forwarded to guix-patches@HIDDEN:
bug#57021; Package guix-patches. Full text available.

Message received at 57021 <at> debbugs.gnu.org:


Received: (at 57021) by debbugs.gnu.org; 21 Apr 2024 13:49:47 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Sun Apr 21 09:49:47 2024
Received: from localhost ([127.0.0.1]:43050 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1ryXZh-0004kD-7B
	for submit <at> debbugs.gnu.org; Sun, 21 Apr 2024 09:49:46 -0400
Received: from vmi993448.contaboserver.net ([194.163.141.236]:41876
 helo=mutix.org) by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <cdo@HIDDEN>) id 1ryXZe-0004jl-2t
 for 57021 <at> debbugs.gnu.org; Sun, 21 Apr 2024 09:49:43 -0400
Received: from [86.132.246.87] (host217-46-73-1.range217-46.btcentralplus.com
 [217.46.73.1]) (Authenticated sender: cdo)
 by mutix.org (Postfix) with ESMTPSA id 046F3A60510;
 Sun, 21 Apr 2024 15:49:24 +0200 (CEST)
From: Christina O'Donnell <cdo@HIDDEN>
To: 57021 <at> debbugs.gnu.org
Subject: [PATCH v9] gnu: Add nmail.
Date: Sun, 21 Apr 2024 14:49:07 +0100
Message-ID: <051069797f9f8254cd903abad67770fb8261291c.1713705610.git.cdo@HIDDEN>
X-Mailer: git-send-email 2.41.0
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 57021
Cc: Christina O'Donnell <cdo@HIDDEN>, M <matf@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

From: M <matf@HIDDEN>

* gnu/packages/mail.scm (nmail): New variable.

Reviewed-by: Christina O'Donnell <cdo@HIDDEN>
Change-Id: I850ac3a1b6e6db6d1869bb3fe8ff9d3a9e71cc86
---
 gnu/packages/mail.scm | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index e0fbd0a5ff3..3eb4f57e67e 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -51,6 +51,7 @@
 ;;; Copyright © 2022 muradm <mail@HIDDEN>
 ;;; Copyright © 2022 jgart <jgart@HIDDEN>
 ;;; Copyright © 2022 ( <paren@HIDDEN>
+;;; Copyright © 2022 Mathieu Laparie <mlaparie@HIDDEN>
 ;;; Copyright © 2023 Timo Wilken <guix@HIDDEN>
 ;;; Copyright © 2023 Arjan Adriaanse <arjan@HIDDEN>
 ;;; Copyright © 2023 Wilko Meyer <w@HIDDEN>
@@ -455,6 +456,43 @@ (define-public mairix
 Maildir, MH, MMDF or mbox folders.")
       (license license:gpl2))))
 
+(define-public nmail
+  (package
+    (name "nmail")
+    (version "4.54")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/d99kris/nmail/")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0bk2kq0pk1r4w5xv94yh37vrwxs8lczjg11gfraxh9cxyjigwsrp"))))
+    (build-system cmake-build-system)
+    (arguments
+     (list
+      #:phases #~(modify-phases %standard-phases
+                   (replace 'check
+                     (lambda* (#:key tests? #:allow-other-keys)
+                       (when tests?
+                         (invoke "ctest" "--output-on-failure")))))))
+    (inputs (list cyrus-sasl
+                  file
+                  libetpan
+                  ncurses
+                  openssl
+                  sqlite
+                  (list util-linux "lib")
+                  xapian))
+    (native-inputs (list pkg-config))
+    (home-page "https://github.com/d99kris/nmail")
+    (synopsis "Terminal-based email client")
+    (description
+     "@command{nmail} is an easily configurable terminal-based email client with
+a @code{ncurses} user interface similar to @code{alpine} and @code{pine}.")
+    (license license:expat)))
+
 (define-public go-gitlab.com-shackra-goimapnotify
   (package
     (name "go-gitlab.com-shackra-goimapnotify")

base-commit: ba52975ea91af49e8e6a436438a578589a209ecc
-- 
2.41.0





Information forwarded to guix-patches@HIDDEN:
bug#57021; Package guix-patches. Full text available.
Owner recorded as Christina O'Donnell <cdo@HIDDEN>. Request was from Christina O'Donnell <cdo@HIDDEN> to control <at> debbugs.gnu.org. Full text available.

Message received at 57021 <at> debbugs.gnu.org:


Received: (at 57021) by debbugs.gnu.org; 24 Sep 2022 13:55:37 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Sat Sep 24 09:55:37 2022
Received: from localhost ([127.0.0.1]:43614 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1oc5d3-00012j-De
	for submit <at> debbugs.gnu.org; Sat, 24 Sep 2022 09:55:37 -0400
Received: from knopi.disroot.org ([178.21.23.139]:56236)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <matf@HIDDEN>) id 1oc5d0-0000zm-Av
 for 57021 <at> debbugs.gnu.org; Sat, 24 Sep 2022 09:55:35 -0400
Received: from localhost (localhost [127.0.0.1])
 by disroot.org (Postfix) with ESMTP id 9AE434BFEE;
 Sat, 24 Sep 2022 15:55:33 +0200 (CEST)
X-Virus-Scanned: SPAM Filter at disroot.org
Received: from knopi.disroot.org ([127.0.0.1])
 by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id 8JgntN3acrj5; Sat, 24 Sep 2022 15:55:32 +0200 (CEST)
From: M <matf@HIDDEN>
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disr.it; s=mail;
 t=1664027732; bh=M/fj0GtshPQN02a+l/ETR5Z3BPXxpBdxzjlvQO3AyS0=;
 h=From:To:Cc:Subject:Date:In-Reply-To:References;
 b=ko/oaZR9psFcKTXToys5cTO/20s52ZRYiCS69FJwhVMaGj+/GyVq6T5ve0S6YPicV
 bq2HURtFUF9mWuMiED0QEA6ZlaehFjNtAojTc+ho4T2xcDdk3h0/gnasGaOAwBTUDa
 tzNFTrjHH7E1nzme9liK7gbttO43WM2QVJ+9oXqRhdLQonG6s6blmtSEi/uCx+OVmY
 9WlBXpR+nYujY4b1XsGT+2j3fOyv30jVkRyECzHYX9Ss4fFcpUM1RYO7VarCPpOZQM
 wB6RxqrdStTDrau3aTFPFsQPNGCMIGQKU90ur6jNxNcDkMIejq66k+F5vAHn1OWq+h
 q6uyzGLsGdjfw==
To: 57021 <at> debbugs.gnu.org
Subject: [PATCH v8 2/2] gnu: cyrus-sasl: Enable login.
Date: Sat, 24 Sep 2022 15:55:18 +0200
Message-Id: <20220924135518.21476-2-matf@HIDDEN>
In-Reply-To: <20220924135518.21476-1-matf@HIDDEN>
References: <20220924135518.21476-1-matf@HIDDEN>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Spam-Score: 0.0 (/)
X-Debbugs-Envelope-To: 57021
Cc: M <matf@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

* gnu/packages/cyrus-sasl.scm (cyrus-sasl)[arguments]: Enable login.

  Exchange servers require login for e-mail clients that use cyrus-sasl.
---
 gnu/packages/cyrus-sasl.scm | 6 ++++--
 gnu/packages/mail.scm       | 4 ++--
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/cyrus-sasl.scm b/gnu/packages/cyrus-sasl.scm
index 2cd18f3e5e..edeb2dded2 100644
--- a/gnu/packages/cyrus-sasl.scm
+++ b/gnu/packages/cyrus-sasl.scm
@@ -3,6 +3,7 @@
 ;;; Copyright © 2013 Andreas Enge <andreas@HIDDEN>
 ;;; Copyright © 2016 Leo Famulari <leo@HIDDEN>
 ;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@HIDDEN>
+;;; Copyright © 2022 Mathieu Laparie <mlaparie@HIDDEN>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -54,10 +55,11 @@ (define-public cyrus-sasl
     (list ;; cyrus-sasl.pc refers to -lkrb5, so propagate it.
           mit-krb5))
    (arguments
-    '(#:configure-flags (list (string-append "--with-plugindir="
+    '(#:configure-flags (list "--enable-login" 
+                              (string-append "--with-plugindir="
                                              (assoc-ref %outputs "out")
                                              "/lib/sasl2"))
-
+                        
       ;; The 'plugins' directory has shared source files, such as
       ;; 'plugin_common.c'.  When building the shared libraries there, libtool
       ;; ends up doing "ln -s plugin_common.lo plugin_common.o", which can
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 8f2452a61f..f127772a92 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -409,7 +409,7 @@ (define-public mailutils
 (define-public nmail
   (package
     (name "nmail")
-    (version "3.74")
+    (version "3.89")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -418,7 +418,7 @@ (define-public nmail
               (file-name (git-file-name name version))
               (sha256
                 (base32
-                "07lkl5syx3l37dhsl41nhmjknhxqgmvwc4il4gygsnr333qk75c9"))))
+                "1ris5fijmk41279hm9kp1v0niiq83a2lk2mmq1r9z31k7n2yg2v2"))))
     (build-system cmake-build-system)
     (arguments
       (list #:phases
-- 
2.37.2





Information forwarded to guix-patches@HIDDEN:
bug#57021; Package guix-patches. Full text available.

Message received at 57021 <at> debbugs.gnu.org:


Received: (at 57021) by debbugs.gnu.org; 24 Sep 2022 13:55:37 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Sat Sep 24 09:55:37 2022
Received: from localhost ([127.0.0.1]:43603 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1oc5d2-00012U-Te
	for submit <at> debbugs.gnu.org; Sat, 24 Sep 2022 09:55:37 -0400
Received: from knopi.disroot.org ([178.21.23.139]:55932)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <matf@HIDDEN>) id 1oc5d0-0000zF-8L
 for 57021 <at> debbugs.gnu.org; Sat, 24 Sep 2022 09:55:35 -0400
Received: from localhost (localhost [127.0.0.1])
 by disroot.org (Postfix) with ESMTP id 8B4034C17A;
 Sat, 24 Sep 2022 15:55:32 +0200 (CEST)
X-Virus-Scanned: SPAM Filter at disroot.org
Received: from knopi.disroot.org ([127.0.0.1])
 by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id 1ZGQJS15ckEo; Sat, 24 Sep 2022 15:55:31 +0200 (CEST)
From: M <matf@HIDDEN>
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disr.it; s=mail;
 t=1664027731; bh=D1InEFt7jSyWNarpKcZp5Qtdc8I6FYe5M1zTqTEXvHo=;
 h=From:To:Cc:Subject:Date;
 b=E/wlpj2Iq8N75uzVttnTne8ASGytfb11eDW19Xk0ETZ3iua1/npPRp+NhQq0CiA+j
 tTGWne65qVfSOFLnA72i4mOCweamQAYPYxDe+j/2xUKZugLJVYs/FIHmuXHKHC9EO7
 BTCqiddXwVV5Nm0kkEt3rhH2L2k46M+L/1gBArw9aShqfIcROytx6H3ThEJisUm6Gw
 8W06uHQdbVW+VW1w8tLgNOIZAuWn2KxV6Y94vzZ6sAdZmI/scTF3DrSNeD3GkbLcro
 flnWaaOTmZnSsPUG46IRMzcxVc0Cj5ANOOYrY5u1lHjvEl5fz0e5mnXvQoP2luc/YR
 37xvOv0f1PmKg==
To: 57021 <at> debbugs.gnu.org
Subject: [PATCH v8 1/2] gnu: Add nmail.
Date: Sat, 24 Sep 2022 15:55:17 +0200
Message-Id: <20220924135518.21476-1-matf@HIDDEN>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Spam-Score: 0.0 (/)
X-Debbugs-Envelope-To: 57021
Cc: M <matf@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

* gnu/packages/mail.scm (nmail): New variable.
---
 gnu/packages/mail.scm | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 65d8060862..8f2452a61f 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -50,6 +50,7 @@
 ;;; Copyright © 2022 Guillaume Le Vaillant <glv@HIDDEN>
 ;;; Copyright © 2022 muradm <mail@HIDDEN>
 ;;; Copyright © 2022 jgart <jgart@HIDDEN>
+;;; Copyright © 2022 Mathieu Laparie <mlaparie@HIDDEN>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -405,6 +406,43 @@ (define-public mailutils
      ;; Libraries are under LGPLv3+, and programs under GPLv3+.
      (list license:gpl3+ license:lgpl3+))))
 
+(define-public nmail
+  (package
+    (name "nmail")
+    (version "3.74")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/d99kris/nmail/")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+                (base32
+                "07lkl5syx3l37dhsl41nhmjknhxqgmvwc4il4gygsnr333qk75c9"))))
+    (build-system cmake-build-system)
+    (arguments
+      (list #:phases
+            #~(modify-phases %standard-phases
+                (replace 'check
+                  (lambda* (#:key tests? #:allow-other-keys)
+                    (when tests? (invoke "ctest" "--output-on-failure")))))))
+    (inputs
+     (list cyrus-sasl
+           file
+           libetpan
+           ncurses
+           openssl
+           sqlite
+           (list util-linux "lib")
+           xapian))
+    (native-inputs (list pkg-config))
+    (home-page "https://github.com/d99kris/nmail")
+    (synopsis "Terminal-based email client")
+    (description
+     "@command{nmail} is an easily configurable terminal-based email client with
+a @code{ncurses} user interface similar to @code{alpine} and @code{pine}.")
+    (license license:expat)))
+
 (define-public go-gitlab.com-shackra-goimapnotify
   (package
     (name "go-gitlab.com-shackra-goimapnotify")
-- 
2.37.2





Information forwarded to guix-patches@HIDDEN:
bug#57021; Package guix-patches. Full text available.

Message received at 57021 <at> debbugs.gnu.org:


Received: (at 57021) by debbugs.gnu.org; 16 Sep 2022 09:23:05 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Fri Sep 16 05:23:05 2022
Received: from localhost ([127.0.0.1]:41642 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1oZ7Yu-0006PD-Ms
	for submit <at> debbugs.gnu.org; Fri, 16 Sep 2022 05:23:05 -0400
Received: from knopi.disroot.org ([178.21.23.139]:55442)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <matf@HIDDEN>) id 1oZ7Yq-0006OL-KR
 for 57021 <at> debbugs.gnu.org; Fri, 16 Sep 2022 05:23:01 -0400
Received: from localhost (localhost [127.0.0.1])
 by disroot.org (Postfix) with ESMTP id EB46B4A047;
 Fri, 16 Sep 2022 11:22:59 +0200 (CEST)
X-Virus-Scanned: SPAM Filter at disroot.org
Received: from knopi.disroot.org ([127.0.0.1])
 by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id I_Cd_E1mOg_q; Fri, 16 Sep 2022 11:22:58 +0200 (CEST)
From: M <matf@HIDDEN>
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disr.it; s=mail;
 t=1663320177; bh=K7N1ZTViXt8lwDikSseWlBkcxrEqctqeZwwMS5Bl7dM=;
 h=From:To:Cc:Subject:Date:In-Reply-To:References;
 b=LxnpqIZ0TRmltKYalbBIKU/kjcKJKIO6xJhrvmVSj/GfohnIANzMIneow4fpKiHmD
 EBv3XaAbHuHhx/azZeRmiZ7/3SV83+JxzFCkSzdvvoV6sumOsakgYTdiOPHhYlP5SN
 KOUcYnCNQo4iBHlucTF2qqEXll7mODDvpwUXManHBW0Q0409x9CQz2HDFNqriCo2U4
 HyK2Dh7hjYe29kwKIn8yePAIKuFXS9/DN3cz4lstlgVzJj19qWMrPDRN5EFaN6Gn9V
 6LqvuLrwJ7MTd+M2ANDZl/P7Ea1xpNSX3JG2wIv1v05Y+oh5Ff9b/ZiuuwWv5DvJa/
 mnMLCltcX1BJA==
To: 57021 <at> debbugs.gnu.org
Subject: [PATCH v7 2/2] gnu: cyrus-sasl: Enable login.
Date: Fri, 16 Sep 2022 11:22:44 +0200
Message-Id: <20220916092244.1741-2-matf@HIDDEN>
In-Reply-To: <20220916092244.1741-1-matf@HIDDEN>
References: <20220916092244.1741-1-matf@HIDDEN>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Spam-Score: 0.0 (/)
X-Debbugs-Envelope-To: 57021
Cc: M <matf@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

* gnu/packages/cyrus-sasl.scm (cyrus-sasl)[arguments]: Enable login.

  Exchange servers require login for e-mail clients that use cyrus-sasl.
---
 gnu/packages/cyrus-sasl.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/cyrus-sasl.scm b/gnu/packages/cyrus-sasl.scm
index 2cd18f3e5e..edeb2dded2 100644
--- a/gnu/packages/cyrus-sasl.scm
+++ b/gnu/packages/cyrus-sasl.scm
@@ -3,6 +3,7 @@
 ;;; Copyright © 2013 Andreas Enge <andreas@HIDDEN>
 ;;; Copyright © 2016 Leo Famulari <leo@HIDDEN>
 ;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@HIDDEN>
+;;; Copyright © 2022 Mathieu Laparie <mlaparie@HIDDEN>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -54,10 +55,11 @@ (define-public cyrus-sasl
     (list ;; cyrus-sasl.pc refers to -lkrb5, so propagate it.
           mit-krb5))
    (arguments
-    '(#:configure-flags (list (string-append "--with-plugindir="
+    '(#:configure-flags (list "--enable-login" 
+                              (string-append "--with-plugindir="
                                              (assoc-ref %outputs "out")
                                              "/lib/sasl2"))
-
+                        
       ;; The 'plugins' directory has shared source files, such as
       ;; 'plugin_common.c'.  When building the shared libraries there, libtool
       ;; ends up doing "ln -s plugin_common.lo plugin_common.o", which can
-- 
2.37.2





Information forwarded to guix-patches@HIDDEN:
bug#57021; Package guix-patches. Full text available.

Message received at 57021 <at> debbugs.gnu.org:


Received: (at 57021) by debbugs.gnu.org; 16 Sep 2022 09:23:01 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Fri Sep 16 05:23:01 2022
Received: from localhost ([127.0.0.1]:41639 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1oZ7Yq-0006ON-VH
	for submit <at> debbugs.gnu.org; Fri, 16 Sep 2022 05:23:01 -0400
Received: from knopi.disroot.org ([178.21.23.139]:54664)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <matf@HIDDEN>) id 1oZ7Yo-0006OC-El
 for 57021 <at> debbugs.gnu.org; Fri, 16 Sep 2022 05:23:00 -0400
Received: from localhost (localhost [127.0.0.1])
 by disroot.org (Postfix) with ESMTP id E64E34A026;
 Fri, 16 Sep 2022 11:22:56 +0200 (CEST)
X-Virus-Scanned: SPAM Filter at disroot.org
Received: from knopi.disroot.org ([127.0.0.1])
 by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id K7RfqtNm-Y6z; Fri, 16 Sep 2022 11:22:55 +0200 (CEST)
From: M <matf@HIDDEN>
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disr.it; s=mail;
 t=1663320175; bh=D1InEFt7jSyWNarpKcZp5Qtdc8I6FYe5M1zTqTEXvHo=;
 h=From:To:Cc:Subject:Date;
 b=mZV7Ni7yWlt3i+GpgljwpwJ59Yk+5nPXGT7+stBkD+Ls+y+jrAdP2mgC3mIOY6w2e
 dEvl0sJn2Ae8ePeITqEgmotba44SeZhF7W2Vjc+3sn3uNM0CNW/SDt6pSicKURTRoI
 CYLjyl09Dw2Bzz9yFVCnESV0g55WwMtQHasa8PFH//ZaH+vxswYdTIGkRF+UlUeIO0
 AuqpZwV/kUWdCh1qchxC3RPopuK/EdJeMK6AVn3DgRLEoIHDjc9LWZenqeu7/ddAaV
 XfkPk1G3MKtOMv2gNGu0lkQPSDtkkHaj/ayjPIvaNIJNe3C+f5xglEaVYii8kNKaxb
 RIj6pagpN/X3Q==
To: 57021 <at> debbugs.gnu.org
Subject: [PATCH v7 1/2] gnu: Add nmail.
Date: Fri, 16 Sep 2022 11:22:43 +0200
Message-Id: <20220916092244.1741-1-matf@HIDDEN>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Spam-Score: 0.0 (/)
X-Debbugs-Envelope-To: 57021
Cc: M <matf@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

* gnu/packages/mail.scm (nmail): New variable.
---
 gnu/packages/mail.scm | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 65d8060862..8f2452a61f 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -50,6 +50,7 @@
 ;;; Copyright © 2022 Guillaume Le Vaillant <glv@HIDDEN>
 ;;; Copyright © 2022 muradm <mail@HIDDEN>
 ;;; Copyright © 2022 jgart <jgart@HIDDEN>
+;;; Copyright © 2022 Mathieu Laparie <mlaparie@HIDDEN>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -405,6 +406,43 @@ (define-public mailutils
      ;; Libraries are under LGPLv3+, and programs under GPLv3+.
      (list license:gpl3+ license:lgpl3+))))
 
+(define-public nmail
+  (package
+    (name "nmail")
+    (version "3.74")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/d99kris/nmail/")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+                (base32
+                "07lkl5syx3l37dhsl41nhmjknhxqgmvwc4il4gygsnr333qk75c9"))))
+    (build-system cmake-build-system)
+    (arguments
+      (list #:phases
+            #~(modify-phases %standard-phases
+                (replace 'check
+                  (lambda* (#:key tests? #:allow-other-keys)
+                    (when tests? (invoke "ctest" "--output-on-failure")))))))
+    (inputs
+     (list cyrus-sasl
+           file
+           libetpan
+           ncurses
+           openssl
+           sqlite
+           (list util-linux "lib")
+           xapian))
+    (native-inputs (list pkg-config))
+    (home-page "https://github.com/d99kris/nmail")
+    (synopsis "Terminal-based email client")
+    (description
+     "@command{nmail} is an easily configurable terminal-based email client with
+a @code{ncurses} user interface similar to @code{alpine} and @code{pine}.")
+    (license license:expat)))
+
 (define-public go-gitlab.com-shackra-goimapnotify
   (package
     (name "go-gitlab.com-shackra-goimapnotify")
-- 
2.37.2





Information forwarded to guix-patches@HIDDEN:
bug#57021; Package guix-patches. Full text available.

Message received at 57021 <at> debbugs.gnu.org:


Received: (at 57021) by debbugs.gnu.org; 15 Sep 2022 12:37:35 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Thu Sep 15 08:37:35 2022
Received: from localhost ([127.0.0.1]:57426 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1oYo7X-00067s-R2
	for submit <at> debbugs.gnu.org; Thu, 15 Sep 2022 08:37:35 -0400
Received: from knopi.disroot.org ([178.21.23.139]:49464)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <matf@HIDDEN>) id 1oYo7S-00067g-Um
 for 57021 <at> debbugs.gnu.org; Thu, 15 Sep 2022 08:37:30 -0400
Received: from localhost (localhost [127.0.0.1])
 by disroot.org (Postfix) with ESMTP id 0CA5E49FEB;
 Thu, 15 Sep 2022 14:37:25 +0200 (CEST)
X-Virus-Scanned: SPAM Filter at disroot.org
Received: from knopi.disroot.org ([127.0.0.1])
 by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id U2JStfUTboey; Thu, 15 Sep 2022 14:37:24 +0200 (CEST)
From: M <matf@HIDDEN>
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disr.it; s=mail;
 t=1663245442; bh=SJ0bBJG8D1QiqhUCicHNe/OKftSzcUYUSibI+V8k7lc=;
 h=From:To:Cc:Subject:Date;
 b=YyUICn4LydB/cAHw1cr01Xvfph2btXl6r0wLG1k+gSyW25Qaw5Xsf9YlGEn5Z8KoO
 555IC4by5eua2E7LUYLys9lAWUsaTnseP+MH3uDZl4YlvmJ7lZfZlLPpImIJk+DIKj
 OsSOte3kQ57gSehJQKedb12KQD8d+RrRToVrNHLZEfHS0Cd9HQw8EeJTv8mTYzgAql
 80rnbSaLVoKlbgAI+EhoOO9viMlGwlgNFPKlu4/16/e5NkKKgvX89l7VzSVE8QkdaS
 B+miIZfMUiEftzYUj2e97v/fpbaSAr1Ra8e560bKzVPEgDhhnCBndun1GDkLZKg3lp
 FGDAYW5KL8PkA==
To: 57021 <at> debbugs.gnu.org
Subject: [PATCH v7] gnu: cyrus-sasl: Enable login.
Date: Thu, 15 Sep 2022 14:37:03 +0200
Message-Id: <20220915123703.3852-1-matf@HIDDEN>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 57021
Cc: M <matf@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

* gnu/packages/cyrus-sasl.scm (cyrus-sasl)[arguments]: Enable login.

  Exchange servers require login for e-mail clients that use cyrus-sasl.
---
 gnu/packages/cyrus-sasl.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/cyrus-sasl.scm b/gnu/packages/cyrus-sasl.scm
index 2cd18f3e5e..4e23bd5fe0 100644
--- a/gnu/packages/cyrus-sasl.scm
+++ b/gnu/packages/cyrus-sasl.scm
@@ -3,6 +3,7 @@
 ;;; Copyright © 2013 Andreas Enge <andreas@HIDDEN>
 ;;; Copyright © 2016 Leo Famulari <leo@HIDDEN>
 ;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@HIDDEN>
+;;; Copyright © 2022 Mathieu Laparie <mlaparie@HIDDEN>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -54,7 +55,8 @@ (define-public cyrus-sasl
     (list ;; cyrus-sasl.pc refers to -lkrb5, so propagate it.
           mit-krb5))
    (arguments
-    '(#:configure-flags (list (string-append "--with-plugindir="
+    '(#:configure-flags (list (string-append "--enable-login"
+                                             "--with-plugindir="
                                              (assoc-ref %outputs "out")
                                              "/lib/sasl2"))
 
-- 
2.37.2





Information forwarded to guix-patches@HIDDEN:
bug#57021; Package guix-patches. Full text available.

Message received at 57021 <at> debbugs.gnu.org:


Received: (at 57021) by debbugs.gnu.org; 15 Sep 2022 12:26:13 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Thu Sep 15 08:26:12 2022
Received: from localhost ([127.0.0.1]:57422 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1oYnwa-0005qN-Jl
	for submit <at> debbugs.gnu.org; Thu, 15 Sep 2022 08:26:12 -0400
Received: from knopi.disroot.org ([178.21.23.139]:55286)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <matf@HIDDEN>) id 1oYnwY-0005qF-5e
 for 57021 <at> debbugs.gnu.org; Thu, 15 Sep 2022 08:26:10 -0400
Received: from localhost (localhost [127.0.0.1])
 by disroot.org (Postfix) with ESMTP id 8AD2249FF7;
 Thu, 15 Sep 2022 14:26:09 +0200 (CEST)
X-Virus-Scanned: SPAM Filter at disroot.org
Received: from knopi.disroot.org ([127.0.0.1])
 by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id KS46UGoCOzZe; Thu, 15 Sep 2022 14:26:08 +0200 (CEST)
From: M <matf@HIDDEN>
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disr.it; s=mail;
 t=1663244768; bh=WMWXCTehT6GI98bxLuY2IkD6H/Qm4sVfBxl4vsArPk4=;
 h=From:To:Cc:Subject:Date;
 b=lwzLD3Am9AoxHmrjjVpdP9ak12wMoGiXWPdABIPSeLoYKqD3fsIXSJZ+VnaQxI7Mt
 ex694z1lpZisockXCL9uGhvzfxMWmdoc2XWLU7lOSu0WBXteAVJiEuB/bvQWwNbU+t
 wkSW3oE280NsQzYDuU0wbHs+3IjYrGfnYjeO5NV5cV4IzDCwv6eqnu25u5ezX832zB
 6pT5wGw/0lGjMtYvV8Ywmx3PdPYSU0N74qZ91mz1jK3TsPO6z2GcuatXN+wBwT0ffx
 2RpCvJ1Y91iFtNU/A2sN0rwVwoZ5YQwY5TJ36a+WVW/Jbzi+4D3sldswAkb420i3lO
 +EjdqgX15uQWg==
To: 57021 <at> debbugs.gnu.org
Subject: [PATCH v6] Enable login in cyrus-sasl, as Exchange servers expect it
Date: Thu, 15 Sep 2022 14:26:01 +0200
Message-Id: <20220915122601.29255-1-matf@HIDDEN>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 57021
Cc: M <matf@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

---
 gnu/packages/cyrus-sasl.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/cyrus-sasl.scm b/gnu/packages/cyrus-sasl.scm
index 2cd18f3e5e..4e23bd5fe0 100644
--- a/gnu/packages/cyrus-sasl.scm
+++ b/gnu/packages/cyrus-sasl.scm
@@ -3,6 +3,7 @@
 ;;; Copyright © 2013 Andreas Enge <andreas@HIDDEN>
 ;;; Copyright © 2016 Leo Famulari <leo@HIDDEN>
 ;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@HIDDEN>
+;;; Copyright © 2022 Mathieu Laparie <mlaparie@HIDDEN>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -54,7 +55,8 @@ (define-public cyrus-sasl
     (list ;; cyrus-sasl.pc refers to -lkrb5, so propagate it.
           mit-krb5))
    (arguments
-    '(#:configure-flags (list (string-append "--with-plugindir="
+    '(#:configure-flags (list (string-append "--enable-login"
+                                             "--with-plugindir="
                                              (assoc-ref %outputs "out")
                                              "/lib/sasl2"))
 
-- 
2.37.2





Information forwarded to guix-patches@HIDDEN:
bug#57021; Package guix-patches. Full text available.

Message received at 57021 <at> debbugs.gnu.org:


Received: (at 57021) by debbugs.gnu.org; 15 Sep 2022 12:24:32 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Thu Sep 15 08:24:32 2022
Received: from localhost ([127.0.0.1]:57415 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1oYnux-0005nX-Vk
	for submit <at> debbugs.gnu.org; Thu, 15 Sep 2022 08:24:32 -0400
Received: from knopi.disroot.org ([178.21.23.139]:33912)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <matf@HIDDEN>) id 1oYnuv-0005nO-Us
 for 57021 <at> debbugs.gnu.org; Thu, 15 Sep 2022 08:24:31 -0400
Received: from localhost (localhost [127.0.0.1])
 by disroot.org (Postfix) with ESMTP id 3280249FF3;
 Thu, 15 Sep 2022 14:24:28 +0200 (CEST)
X-Virus-Scanned: SPAM Filter at disroot.org
Received: from knopi.disroot.org ([127.0.0.1])
 by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id 8w9tBYQrges1; Thu, 15 Sep 2022 14:24:26 +0200 (CEST)
From: M <matf@HIDDEN>
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disr.it; s=mail;
 t=1663244666; bh=D1InEFt7jSyWNarpKcZp5Qtdc8I6FYe5M1zTqTEXvHo=;
 h=From:To:Cc:Subject:Date;
 b=wxVTHIMCkib+ar/6vQ2XsJR/OojhI88CJIMKHERAIv01TAdhoBKZuRNNJ6GC970Sk
 T9QCwtS9MUtYtr3gIyk9O6BcoRUfm23JngYMMSkC+z7a43S19xcLPwd2fQCFEabQi9
 4BOWTWlvOxsxpF5VmO2NfX7o4vEtQ1Kn8+mjW1HEg0nRnUVJqc9HxTxA+/TvCjliiJ
 TfQc0HRVZ7vPyxoZvH/FOB3ouKHzMfa3l/3tav/E/0CnUWaB4DzOC5DXJUgTHylPRY
 tEPh9zZmTKUFtaMdyFM5XrPyNEUDd+ypLdmKITfXnsGUE90M0OemATqPRv1t9PeZaT
 NZ+vV6luefBFQ==
To: 57021 <at> debbugs.gnu.org
Subject: [PATCH v5] gnu: Add nmail.
Date: Thu, 15 Sep 2022 14:24:17 +0200
Message-Id: <20220915122417.22636-1-matf@HIDDEN>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 57021
Cc: M <matf@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

* gnu/packages/mail.scm (nmail): New variable.
---
 gnu/packages/mail.scm | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 65d8060862..8f2452a61f 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -50,6 +50,7 @@
 ;;; Copyright © 2022 Guillaume Le Vaillant <glv@HIDDEN>
 ;;; Copyright © 2022 muradm <mail@HIDDEN>
 ;;; Copyright © 2022 jgart <jgart@HIDDEN>
+;;; Copyright © 2022 Mathieu Laparie <mlaparie@HIDDEN>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -405,6 +406,43 @@ (define-public mailutils
      ;; Libraries are under LGPLv3+, and programs under GPLv3+.
      (list license:gpl3+ license:lgpl3+))))
 
+(define-public nmail
+  (package
+    (name "nmail")
+    (version "3.74")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/d99kris/nmail/")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+                (base32
+                "07lkl5syx3l37dhsl41nhmjknhxqgmvwc4il4gygsnr333qk75c9"))))
+    (build-system cmake-build-system)
+    (arguments
+      (list #:phases
+            #~(modify-phases %standard-phases
+                (replace 'check
+                  (lambda* (#:key tests? #:allow-other-keys)
+                    (when tests? (invoke "ctest" "--output-on-failure")))))))
+    (inputs
+     (list cyrus-sasl
+           file
+           libetpan
+           ncurses
+           openssl
+           sqlite
+           (list util-linux "lib")
+           xapian))
+    (native-inputs (list pkg-config))
+    (home-page "https://github.com/d99kris/nmail")
+    (synopsis "Terminal-based email client")
+    (description
+     "@command{nmail} is an easily configurable terminal-based email client with
+a @code{ncurses} user interface similar to @code{alpine} and @code{pine}.")
+    (license license:expat)))
+
 (define-public go-gitlab.com-shackra-goimapnotify
   (package
     (name "go-gitlab.com-shackra-goimapnotify")
-- 
2.37.2





Information forwarded to guix-patches@HIDDEN:
bug#57021; Package guix-patches. Full text available.

Message received at 57021 <at> debbugs.gnu.org:


Received: (at 57021) by debbugs.gnu.org; 11 Sep 2022 22:01:26 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Sun Sep 11 18:01:26 2022
Received: from localhost ([127.0.0.1]:43716 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1oXV14-0001RA-BF
	for submit <at> debbugs.gnu.org; Sun, 11 Sep 2022 18:01:26 -0400
Received: from knopi.disroot.org ([178.21.23.139]:52008)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <matf@HIDDEN>) id 1oXV12-0001R1-Ls
 for 57021 <at> debbugs.gnu.org; Sun, 11 Sep 2022 18:01:25 -0400
Received: from localhost (localhost [127.0.0.1])
 by disroot.org (Postfix) with ESMTP id 0E4634A072;
 Mon, 12 Sep 2022 00:01:24 +0200 (CEST)
X-Virus-Scanned: SPAM Filter at disroot.org
Received: from knopi.disroot.org ([127.0.0.1])
 by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024)
 with UTF8SMTP id Wp83N5HHhDfD; Mon, 12 Sep 2022 00:01:22 +0200 (CEST)
From: M <matf@HIDDEN>
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disr.it; s=mail;
 t=1662933676; bh=D1InEFt7jSyWNarpKcZp5Qtdc8I6FYe5M1zTqTEXvHo=;
 h=From:To:Cc:Subject:Date;
 b=Hjz08l0gKFeVBn27b8IieZ3pTAkIZzU+y2PDdpFfPqKF6Bu5OEP7M8dWQdIe4QL2b
 TAbWZTdtkrCGpNaU3I+Op/VvFKKjHePwhZ0lScUpRBbXm4Aj/RwCgIt+CYgoFO2bnc
 z+u2IqgmMZstDP1gywyYXp+k3zuvh3IH2/l8y5nBeVadr3ecVgPz3Lw/JVDH18BjB3
 kl2llI6wqiHBlIp6l+fw/fWYw3WC7XhW/8cz5nou6TwDNhm2L2BxejjXbxlGWWz6HX
 pBuaO9ytAVJh5sq5gyja0W97qW1C5Co3LFXSzA1Z2cPeCxljrXsof3txboDjjsxZBi
 iqE9k50qh18sA==
To: 57021 <at> debbugs.gnu.org
Subject: [PATCH v4] gnu: Add nmail.
Date: Mon, 12 Sep 2022 00:01:08 +0200
Message-Id: <20220911220108.32405-1-matf@HIDDEN>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 57021
Cc: M <matf@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

* gnu/packages/mail.scm (nmail): New variable.
---
 gnu/packages/mail.scm | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 65d8060862..8f2452a61f 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -50,6 +50,7 @@
 ;;; Copyright © 2022 Guillaume Le Vaillant <glv@HIDDEN>
 ;;; Copyright © 2022 muradm <mail@HIDDEN>
 ;;; Copyright © 2022 jgart <jgart@HIDDEN>
+;;; Copyright © 2022 Mathieu Laparie <mlaparie@HIDDEN>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -405,6 +406,43 @@ (define-public mailutils
      ;; Libraries are under LGPLv3+, and programs under GPLv3+.
      (list license:gpl3+ license:lgpl3+))))
 
+(define-public nmail
+  (package
+    (name "nmail")
+    (version "3.74")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/d99kris/nmail/")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+                (base32
+                "07lkl5syx3l37dhsl41nhmjknhxqgmvwc4il4gygsnr333qk75c9"))))
+    (build-system cmake-build-system)
+    (arguments
+      (list #:phases
+            #~(modify-phases %standard-phases
+                (replace 'check
+                  (lambda* (#:key tests? #:allow-other-keys)
+                    (when tests? (invoke "ctest" "--output-on-failure")))))))
+    (inputs
+     (list cyrus-sasl
+           file
+           libetpan
+           ncurses
+           openssl
+           sqlite
+           (list util-linux "lib")
+           xapian))
+    (native-inputs (list pkg-config))
+    (home-page "https://github.com/d99kris/nmail")
+    (synopsis "Terminal-based email client")
+    (description
+     "@command{nmail} is an easily configurable terminal-based email client with
+a @code{ncurses} user interface similar to @code{alpine} and @code{pine}.")
+    (license license:expat)))
+
 (define-public go-gitlab.com-shackra-goimapnotify
   (package
     (name "go-gitlab.com-shackra-goimapnotify")
-- 
2.37.2





Information forwarded to guix-patches@HIDDEN:
bug#57021; Package guix-patches. Full text available.

Message received at 57021 <at> debbugs.gnu.org:


Received: (at 57021) by debbugs.gnu.org; 11 Sep 2022 21:56:39 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Sun Sep 11 17:56:39 2022
Received: from localhost ([127.0.0.1]:43708 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1oXUwR-0001IH-D1
	for submit <at> debbugs.gnu.org; Sun, 11 Sep 2022 17:56:39 -0400
Received: from knopi.disroot.org ([178.21.23.139]:47636)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <matf@HIDDEN>) id 1oXUwP-0001I9-Bt
 for 57021 <at> debbugs.gnu.org; Sun, 11 Sep 2022 17:56:37 -0400
Received: from localhost (localhost [127.0.0.1])
 by disroot.org (Postfix) with ESMTP id B1BFF4A05D;
 Sun, 11 Sep 2022 23:56:36 +0200 (CEST)
X-Virus-Scanned: SPAM Filter at disroot.org
Received: from knopi.disroot.org ([127.0.0.1])
 by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id ef_anoyyh0cl; Sun, 11 Sep 2022 23:56:35 +0200 (CEST)
Date: Sun, 11 Sep 2022 23:56:35 +0200
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disr.it; s=mail;
 t=1662933395; bh=B6vUGFrn5WQbTSKmR5YYgOkYjlfoBPj6CUfSUAwrVWQ=;
 h=Date:From:To:Cc:In-Reply-To:References:Subject;
 b=vNQ/mnqtcDygmt9huhiXey+HYNO45VVb70kmhZxAu+pkIEa7xJ2nrg7eOiaeFFMvj
 a5rHubPGRvUCy+BKkCoNW7rpvHwSC8HsoigV9YBK4OCUbJVOPIvI2fuzz6gWRPojz6
 wdaXWl8lQtnQX1+Rn9YhHeDht38CELCMbHyfI+vL9fVvB/x87dETYcHdiTVnxjHIbm
 +jqo/zOuRw63ruvV6IOZyiT0il/PR3hMFohrpiN6Sq+l2KyMWUeEoHtceqHcNGnTlO
 Z+aMj+8tZrvWCvD036WJEGx9G9T4ti2lmBoA9W0ej9vjbDUq+rhX6WXrUyjZS0+p9F
 QG4Nhcm525DYA==
From: Mathieu <matf@HIDDEN>
To: M <matf@HIDDEN>
Message-ID: <7256f1ab-46c7-4609-b3e0-f7ae92c30a05@HIDDEN>
In-Reply-To: <20220911214146.9920-1-matf@HIDDEN>
References: <20220911214146.9920-1-matf@HIDDEN>
Subject: Re: [PATCH v3] gnu: Add nmail.
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 57021
Cc: 57021 <at> debbugs.gnu.org
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

And I'll be sending a v4 very soon because I see that the v3 above doesn'=
t take into account the latest changesi from the v2, I reused an outdated=
 version of the patch. My bad.





Information forwarded to guix-patches@HIDDEN:
bug#57021; Package guix-patches. Full text available.

Message received at 57021 <at> debbugs.gnu.org:


Received: (at 57021) by debbugs.gnu.org; 11 Sep 2022 21:46:34 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Sun Sep 11 17:46:34 2022
Received: from localhost ([127.0.0.1]:43694 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1oXUmg-00011z-Ip
	for submit <at> debbugs.gnu.org; Sun, 11 Sep 2022 17:46:34 -0400
Received: from knopi.disroot.org ([178.21.23.139]:37694)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <matf@HIDDEN>) id 1oXUmf-00011s-SZ
 for 57021 <at> debbugs.gnu.org; Sun, 11 Sep 2022 17:46:34 -0400
Received: from localhost (localhost [127.0.0.1])
 by disroot.org (Postfix) with ESMTP id 3E15A4A067
 for <57021 <at> debbugs.gnu.org>; Sun, 11 Sep 2022 23:46:33 +0200 (CEST)
X-Virus-Scanned: SPAM Filter at disroot.org
Received: from knopi.disroot.org ([127.0.0.1])
 by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id 7ihHKf8pzFl0 for <57021 <at> debbugs.gnu.org>;
 Sun, 11 Sep 2022 23:46:32 +0200 (CEST)
Date: Sun, 11 Sep 2022 23:46:31 +0200
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disr.it; s=mail;
 t=1662932792; bh=Mq+O9A5wIwOK8YobhMlbpm2bREQotm3ZUsYRGypiWIg=;
 h=Date:From:To:In-Reply-To:References:Subject;
 b=KwaB2d8o081zNDZ77pzJhbYuLar0x7TVR+i9kviNnZC6eEglcSdZGVDoP1XS8KL2x
 E5qdt9SkLsOxWT14+WlJ7b2s8wlTtx5z4m8qREMTHaRg+KAiP/F8LmhnuSTnrGKjhQ
 vq/4Rp0TjCCC2mwK+AuPRmL14v94XS2bdOmAG0spV6Z2E9N0iIZRmYa2GA5V/8T+dl
 U5P7ip/DCR/Mh/TsrQY5A1MHAwd/8BeTOQoZGzSKwJkE4pjYm2RnutKGHxl0c0QWIR
 ciX5BtA/NzZ3Hv8a/w0G1J1EzzQzPA/IJtzCN/xQuUsNtUinz8I3Ii1+368e1l+XgQ
 8MVI8NkYFz2fg==
From: Mathieu <matf@HIDDEN>
To: 57021 <at> debbugs.gnu.org
Message-ID: <ed6d2d10-dce7-486e-9ec5-e0f570857efd@HIDDEN>
In-Reply-To: <20220911214146.9920-1-matf@HIDDEN>
References: <20220911214146.9920-1-matf@HIDDEN>
Subject: Re: [PATCH v3] gnu: Add nmail.
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 57021
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

I am sending a v3 patch even though a new version of nmail has not been r=
eleased upstream, but will try to update it when a new version is availab=
le.

As far as I understand, the imports are no longer necessary with master, =
I think all required modules are already in mail.scm now, and properly so=
rted in alphabetic order (so that should not be necessary either). Please=
 let me know if I got something wrong.





Information forwarded to guix-patches@HIDDEN:
bug#57021; Package guix-patches. Full text available.

Message received at 57021 <at> debbugs.gnu.org:


Received: (at 57021) by debbugs.gnu.org; 11 Sep 2022 21:42:06 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Sun Sep 11 17:42:06 2022
Received: from localhost ([127.0.0.1]:43690 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1oXUiL-0000vP-R6
	for submit <at> debbugs.gnu.org; Sun, 11 Sep 2022 17:42:06 -0400
Received: from knopi.disroot.org ([178.21.23.139]:42532)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <matf@HIDDEN>) id 1oXUiJ-0000vG-Rv
 for 57021 <at> debbugs.gnu.org; Sun, 11 Sep 2022 17:42:04 -0400
Received: from localhost (localhost [127.0.0.1])
 by disroot.org (Postfix) with ESMTP id 4CBE94A047;
 Sun, 11 Sep 2022 23:42:02 +0200 (CEST)
X-Virus-Scanned: SPAM Filter at disroot.org
Received: from knopi.disroot.org ([127.0.0.1])
 by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id BkHf8q8oycUz; Sun, 11 Sep 2022 23:42:01 +0200 (CEST)
From: M <matf@HIDDEN>
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disr.it; s=mail;
 t=1662932521; bh=sI9gHkIT+Y3w+XAyL/NkOQQA/1bIBCluqCO96QwoQt4=;
 h=From:To:Cc:Subject:Date;
 b=HOq24m/OFAiqwHdO8UXyD3+5+DNZEUB7i+HC67q5zEL5FhTJ4gonvjJmGBneQG4iU
 2N5E5PcL4IHJNf6199fi7ZEFW8dYAcVmnUyAtHEOUuG+MoQwQhYWEVk8cixfVhW3i3
 1uYDhA5P5kViG/SdNJA609rRYDy4NVjhL8Ag6epGGSbLqhHbKtTmhpcrfBnp6RIGv0
 obi/LJFA2Wy4QH6Bu/MnIlMjXdusDqtzUeBk4LKGT3L705rjV3yhAOIGJNkufLscN6
 Ecdq2eu39CzvmPL3P1kEIyzsBZhCjaG3LOFE5flwTLsdYpABuq4i2WehmH6TVGxJai
 FcWjpgM2HtFlA==
To: 57021 <at> debbugs.gnu.org
Subject: [PATCH v3] gnu: Add nmail.
Date: Sun, 11 Sep 2022 23:41:46 +0200
Message-Id: <20220911214146.9920-1-matf@HIDDEN>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 57021
Cc: M <matf@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

* gnu/packages/mail.scm (nmail): New variable.
---
 gnu/packages/mail.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 65d8060862..0526ccb521 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -50,6 +50,7 @@
 ;;; Copyright © 2022 Guillaume Le Vaillant <glv@HIDDEN>
 ;;; Copyright © 2022 muradm <mail@HIDDEN>
 ;;; Copyright © 2022 jgart <jgart@HIDDEN>
+;;; Copyright © 2022 Mathieu Laparie <mlaparie@HIDDEN>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -405,6 +406,42 @@ (define-public mailutils
      ;; Libraries are under LGPLv3+, and programs under GPLv3+.
      (list license:gpl3+ license:lgpl3+))))
 
+(define-public nmail
+  (package
+    (name "nmail")
+    (version "3.74")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/d99kris/nmail/")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "07lkl5syx3l37dhsl41nhmjknhxqgmvwc4il4gygsnr333qk75c9"))))
+    (build-system cmake-build-system)
+    (arguments
+     (list #:phases #~(modify-phases %standard-phases
+                        (replace 'check
+                          (lambda*
+                              (#:key tests? #:allow-other-keys)
+                              (when tests? (invoke "ctest" "--output-on-failure")))))))
+    (inputs (list libetpan
+                  xapian
+                  sqlite
+                  cyrus-sasl
+                  ncurses
+                  openssl
+                  file
+                  (list util-linux "lib")))
+    (native-inputs (list pkg-config))
+    (home-page "https://github.com/d99kris/nmail")
+    (synopsis "Terminal-based email client")
+    (description
+     "@command{nmail} is a terminal-based email client with a
+@code{ncurses} user interface similar to @code{alpine} and @code{pine}.")
+    (license license:expat)))
+
 (define-public go-gitlab.com-shackra-goimapnotify
   (package
     (name "go-gitlab.com-shackra-goimapnotify")
-- 
2.37.2





Information forwarded to guix-patches@HIDDEN:
bug#57021; Package guix-patches. Full text available.

Message received at 57021 <at> debbugs.gnu.org:


Received: (at 57021) by debbugs.gnu.org; 16 Aug 2022 13:38:30 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Tue Aug 16 09:38:29 2022
Received: from localhost ([127.0.0.1]:45367 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1oNwm5-0003fQ-KM
	for submit <at> debbugs.gnu.org; Tue, 16 Aug 2022 09:38:29 -0400
Received: from knopi.disroot.org ([178.21.23.139]:55550)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <matf@HIDDEN>) id 1oNwm3-0003fG-Kj
 for 57021 <at> debbugs.gnu.org; Tue, 16 Aug 2022 09:38:28 -0400
Received: from localhost (localhost [127.0.0.1])
 by disroot.org (Postfix) with ESMTP id 70B0440064;
 Tue, 16 Aug 2022 15:38:26 +0200 (CEST)
X-Virus-Scanned: SPAM Filter at disroot.org
Received: from knopi.disroot.org ([127.0.0.1])
 by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id eQCrOx-CPYlJ; Tue, 16 Aug 2022 15:38:25 +0200 (CEST)
Date: Tue, 16 Aug 2022 15:38:25 +0200
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disr.it; s=mail;
 t=1660657105; bh=lrQLXawUwY57M0FN4oVjWg/uqTugXh/xFZdQtniBD7Q=;
 h=Date:From:To:Cc:In-Reply-To:References:Subject;
 b=0bkGGGh0BZsTwP9frsZqsw2qqjhAOMoE2+JEbNWXyZgo3I265J2qk/bQKwCl7mBFT
 ZNJ4VHMuzqhjni2g+D4Rk4b0k/tDx/+xA/Xj5EBJKHs0C0ErpGY0067o2/OTQRiZ3I
 wBG0/U/vOGZT9WLBY8kdfUzuqymaZv/HRSZ5Bo459zLQ3eradNnI8gZ9Vfq5w16sU0
 Zd+wFMvaCQQXaBY/5jRtmc/Z52QJN5KjHzupCaB5p+jt1LRS+4hqcZzCsoqfpvfOC9
 sbGq/WjUuS5ahUxJUft3ENpGcNjmMc//bKUscnJ/lpEtamIjtXEh8eiWx3z1Y+FXEi
 gc3H/sGJgjrcA==
From: Mathieu <matf@HIDDEN>
To: Mathieu Othacehe <othacehe@HIDDEN>
Message-ID: <ba2164c2-3b4c-4264-8277-74541f61fd15@HIDDEN>
In-Reply-To: <8735e1267m.fsf@HIDDEN>
References: <8735e1267m.fsf@HIDDEN>
Subject: Re: bug#57021: [PATCH] gnu: packages: Add nmail.
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline
X-Spam-Score: 0.0 (/)
X-Debbugs-Envelope-To: 57021
Cc: 57021 <at> debbugs.gnu.org
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

Thanks, I'll try to do that. However I see that the nmail dev is currentl=
y fixing multiple bugs that were reported lately, so I think it would be =
best if I wait until the next release. =20

Thanks for your help=21

M

On 2022-08-12 10:53 Mathieu Othacehe <othacehe=40gnu.org> wrote:

> =20
> Hello,
> =20
>> * gnu/packages/nmail.scm: Reorder module imports. Remove
>> duplicate imports.
>> (nmail): New variable. =46ix style.
> =20
> Thanks for this first contribution. As you are adding a new package,
> the
> preferred way to proceed is to amend your first patch with those
> changes
> and submit a new revision (v2).
> =20
> The module re-ordering stuff should also be part of a new patch. In
> short, we would expect something like:
> =20
> * gnu: Reorder mail module imports.
> * gnu: nmail: New variable.
> =20
> Do you think you could send those two patches in a v3=3F Don't hesitate=

> to
> ask for guidance here or on IRC if I'm unclear.
> =20
> Mathieu




Information forwarded to guix-patches@HIDDEN:
bug#57021; Package guix-patches. Full text available.

Message received at 57021 <at> debbugs.gnu.org:


Received: (at 57021) by debbugs.gnu.org; 12 Aug 2022 08:53:45 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Fri Aug 12 04:53:45 2022
Received: from localhost ([127.0.0.1]:55614 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1oMQQL-0003g7-CR
	for submit <at> debbugs.gnu.org; Fri, 12 Aug 2022 04:53:45 -0400
Received: from eggs.gnu.org ([209.51.188.92]:49340)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <othacehe@HIDDEN>) id 1oMQQK-0003fv-1e
 for 57021 <at> debbugs.gnu.org; Fri, 12 Aug 2022 04:53:44 -0400
Received: from fencepost.gnu.org ([2001:470:142:3::e]:43826)
 by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)
 (Exim 4.90_1) (envelope-from <othacehe@HIDDEN>)
 id 1oMQQD-0008PL-O2; Fri, 12 Aug 2022 04:53:37 -0400
DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org;
 s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To:
 From; bh=G837slC8gtZ8CtqKOiTwQ6PNzfljb+HfUZBVDdcj3gI=; b=dnw0UgyoPpjLOplvkZsq
 S/j2+4eMrSKuagqBWlvfF5bZsE/ud5zzU8HWtLUtCyMi3YuqM303BpHlFxrbVwzupGJx0QzTbU91M
 ruFu7opOO7WwYxglrpHFJrt1iGpmf/15bZL/dKacli3BjDs6hi6CHj8zwCBn6VA3SDZQlxGNJgb6Y
 Ajgag18HX//PbD+EG4JSr3QPuLbhSEARg0mT6FNC0B7Xb/VJMuynS56Ek6ATnjttH8/AjLyhrRxxQ
 ADT2+aq0XBXNQEadwAkGvAulqN7QaXNiMjScyIiHH2z3uqZzhhzTPTA9sxNaCOGbOfAHI0jp7nLyD
 FyUFHH2T0MS3fg==;
Received: from 2a02-8429-81d2-3d01-94c9-8097-ea5c-2775.rev.sfr.net
 ([2a02:8429:81d2:3d01:94c9:8097:ea5c:2775]:41976 helo=meije)
 by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)
 (Exim 4.90_1) (envelope-from <othacehe@HIDDEN>)
 id 1oMQQD-0002iP-5Q; Fri, 12 Aug 2022 04:53:37 -0400
From: Mathieu Othacehe <othacehe@HIDDEN>
To: M <matf@HIDDEN>
Subject: Re: bug#57021: [PATCH] gnu: packages: Add nmail.
References: <d4bd4555b09366c28463643e16b272ad7ca4eed8.1659826927.git.matf@HIDDEN>
Date: Fri, 12 Aug 2022 10:53:33 +0200
In-Reply-To: <d4bd4555b09366c28463643e16b272ad7ca4eed8.1659826927.git.matf@HIDDEN>
 (M.'s message of "Sun, 7 Aug 2022 01:02:07 +0200")
Message-ID: <8735e1267m.fsf@HIDDEN>
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.1 (gnu/linux)
MIME-Version: 1.0
Content-Type: text/plain
X-Spam-Score: -2.3 (--)
X-Debbugs-Envelope-To: 57021
Cc: 57021 <at> debbugs.gnu.org
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -3.3 (---)


Hello,

> * gnu/packages/nmail.scm: Reorder module imports. Remove
>   duplicate imports.
> (nmail): New variable. Fix style.

Thanks for this first contribution. As you are adding a new package, the
preferred way to proceed is to amend your first patch with those changes
and submit a new revision (v2).

The module re-ordering stuff should also be part of a new patch. In
short, we would expect something like:

* gnu: Reorder mail module imports.
* gnu: nmail: New variable.

Do you think you could send those two patches in a v3? Don't hesitate to
ask for guidance here or on IRC if I'm unclear.

Mathieu




Information forwarded to guix-patches@HIDDEN:
bug#57021; Package guix-patches. Full text available.
Merged 56994 57021. Request was from Mathieu <matf@HIDDEN> to control <at> debbugs.gnu.org. Full text available.

Message received at submit <at> debbugs.gnu.org:


Received: (at submit) by debbugs.gnu.org; 6 Aug 2022 23:02:36 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Sat Aug 06 19:02:36 2022
Received: from localhost ([127.0.0.1]:35585 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1oKSoW-0000Fw-H7
	for submit <at> debbugs.gnu.org; Sat, 06 Aug 2022 19:02:36 -0400
Received: from lists.gnu.org ([209.51.188.17]:54924)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <matf@HIDDEN>) id 1oKSoV-0000Fp-3T
 for submit <at> debbugs.gnu.org; Sat, 06 Aug 2022 19:02:35 -0400
Received: from eggs.gnu.org ([2001:470:142:3::10]:50934)
 by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)
 (Exim 4.90_1) (envelope-from <matf@HIDDEN>) id 1oKSoU-0005UO-Vc
 for guix-patches@HIDDEN; Sat, 06 Aug 2022 19:02:35 -0400
Received: from knopi.disroot.org ([178.21.23.139]:37226)
 by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)
 (Exim 4.90_1) (envelope-from <matf@HIDDEN>) id 1oKSoS-0002f5-Oq
 for guix-patches@HIDDEN; Sat, 06 Aug 2022 19:02:34 -0400
Received: from localhost (localhost [127.0.0.1])
 by disroot.org (Postfix) with ESMTP id 0815C41D3A;
 Sun,  7 Aug 2022 01:02:28 +0200 (CEST)
X-Virus-Scanned: SPAM Filter at disroot.org
Received: from knopi.disroot.org ([127.0.0.1])
 by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id bzxcHsvUfKEO; Sun,  7 Aug 2022 01:02:26 +0200 (CEST)
From: M <matf@HIDDEN>
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disr.it; s=mail;
 t=1659826946; bh=jKamt/l7cJAMl1sh3bwZ8ErN8RF/tErUcYZWgdX1D7Q=;
 h=From:To:Cc:Subject:Date;
 b=1TfnrGf5fo7KV81ot89BFionKrC4/we9+OqXzmQtEKV2H8DQjelftPjteUxOUduit
 NZS2x8MvTj/BnlPrvo0e04h8yUDKHFIPpcafUgy4grF1LX9vLtvzRo9NZU7uuJGfIP
 OUxNzAT63yOaN6NlEkA6LhLj0ztNdr3wWuBlw1uizTcokkEfK+x32Flh5NrhaRiE2i
 sYYn0HpShgREA4McOIUuXrSMrKCDTCfUV5mGAo+epa+aZHtgrLP2vnL52gkJ3adzgs
 TYPeKFuNGA0B1CJDAA6Z/hui78gSNVjZIJ/H7HF6mg3OJRI/YMZ293kvOhC280Mgrt
 sbpoJP1WLhZkA==
To: guix-patches@HIDDEN
Subject: [PATCH] gnu: packages: Add nmail.
Date: Sun,  7 Aug 2022 01:02:07 +0200
Message-Id: <d4bd4555b09366c28463643e16b272ad7ca4eed8.1659826927.git.matf@HIDDEN>
Mime-Version: 1.0
Content-Transfer-Encoding: 8bit
Received-SPF: pass client-ip=178.21.23.139; envelope-from=matf@HIDDEN;
 helo=knopi.disroot.org
X-Spam_score_int: -20
X-Spam_score: -2.1
X-Spam_bar: --
X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1,
 DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001,
 SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no
X-Spam_action: no action
X-Spam-Score: -1.3 (-)
X-Debbugs-Envelope-To: submit
Cc: M <matf@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -2.3 (--)

* gnu/packages/nmail.scm: Reorder module imports. Remove
  duplicate imports.
(nmail): New variable. Fix style.
---
 gnu/packages/mail.scm | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 0bc6519dd2..24730d5eb3 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -456,19 +456,20 @@ (define-public nmail
                 "07lkl5syx3l37dhsl41nhmjknhxqgmvwc4il4gygsnr333qk75c9"))))
     (build-system cmake-build-system)
     (arguments
-     (list #:phases #~(modify-phases %standard-phases
+     (list #:phases
+           #~(modify-phases %standard-phases
                         (replace 'check
-                          (lambda*
-                              (#:key tests? #:allow-other-keys)
+                          (lambda* (#:key tests? #:allow-other-keys)
                               (when tests? (invoke "ctest" "--output-on-failure")))))))
-    (inputs (list libetpan
-                  xapian
-                  sqlite
-                  cyrus-sasl
-                  ncurses
-                  openssl
-                  file
-                  (list util-linux "lib")))
+    (inputs
+     (list cyrus-sasl
+           file
+           libetpan
+           ncurses
+           openssl
+           sqlite
+           (list util-linux "lib")
+           xapian))
     (native-inputs (list pkg-config))
     (home-page "https://github.com/d99kris/nmail")
     (synopsis "Terminal-based email client")
-- 
2.34.0





Acknowledgement sent to M <matf@HIDDEN>:
New bug report received and forwarded. Copy sent to guix-patches@HIDDEN. Full text available.
Report forwarded to guix-patches@HIDDEN:
bug#57021; Package guix-patches. Full text available.
Please note: This is a static page, with minimal formatting, updated once a day.
Click here to see this page with the latest information and nicer formatting.
Last modified: Mon, 22 Apr 2024 11:30:01 UTC

GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997 nCipher Corporation Ltd, 1994-97 Ian Jackson.