From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 03 08:06:59 2022 Received: (at submit) by debbugs.gnu.org; 3 Aug 2022 12:07:00 +0000 Received: from localhost ([127.0.0.1]:46406 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oJD9O-00031o-Ki for submit@debbugs.gnu.org; Wed, 03 Aug 2022 08:06:59 -0400 Received: from lists.gnu.org ([209.51.188.17]:49310) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oJD9L-00030n-US for submit@debbugs.gnu.org; Wed, 03 Aug 2022 08:06:56 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:58218) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oJD9K-00081S-9z for guix-patches@gnu.org; Wed, 03 Aug 2022 08:06:55 -0400 Received: from knopi.disroot.org ([178.21.23.139]:48644) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oJD9H-00034l-Kp for guix-patches@gnu.org; Wed, 03 Aug 2022 08:06:53 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 8E9E240EF1; Wed, 3 Aug 2022 14:06:35 +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 Y6B_yM-4eNv6; Wed, 3 Aug 2022 14:06:34 +0200 (CEST) From: "(" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1659528290; bh=RMGxhSNvZKUFiCx2JJ470BAS5mZzGDGYea2X8CISKRw=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=IFvoV2ShoDDlH6/nEE6NvmwY0unWgS4DoordsS/M46KpFvFScvZuf8kRGa1qCAqoo i+kjnkG649h83xmq+YrErF2894cHuQE8IAHy5IGhh/oNK5831BPInrlYG/0LUDoR8u EqkPcc8hHoP9yDuIfjJTFqWWUQqdK1YYS809wgn5A24doSoqBoRzeYqhv7M2iCDDQ+ vw2wJ0cxymw5BHbC8TrBgtMHWsxNpts2MuUaWcV3ej+nRVPiBfIHzg4BgmosjvFDxG GThp8hTP4qiVvaOffC7g1i16eVvFbqcZpvGkdjaSViGtfAoLGEipTSksMafG6quIj7 IUyismKYEVYtQ== To: guix-patches@gnu.org Subject: [PATCH 22/41] gnu: Add go-github-com-emersion-go-imap. Date: Wed, 3 Aug 2022 13:04:20 +0100 Message-Id: <20220803120439.5108-22-paren@disroot.org> In-Reply-To: <20220803120439.5108-1-paren@disroot.org> References: <20220803120439.5108-1-paren@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=paren@disroot.org; 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.4 (-) X-Debbugs-Envelope-To: submit Cc: "\(unmatched-parenthesis" X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) From: "(unmatched-parenthesis" * gnu/packages/golang.scm (go-github-com-emersion-go-imap): New variable. --- gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 404f5ae0e4..618841952d 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -10469,3 +10469,29 @@ (define-public go-github-com-emersion-go-sasl "The sasl package provides a Simple Authentication and Security Layer implementation for Go.") (license license:expat))) + +(define-public go-github-com-emersion-go-imap + (package + (name "go-github-com-emersion-go-imap") + (version "1.2.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emersion/go-imap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0ak2ysvfcc9w0g1070msis8x9sh6gzvf0nd65ks594siwbmqddw8")))) + (build-system go-build-system) + (arguments + (list #:import-path "github.com/emersion/go-imap")) + (propagated-inputs (list go-golang-org-x-text + go-github-com-emersion-go-sasl + go-github-com-emersion-go-message)) + (home-page "https://github.com/emersion/go-imap") + (synopsis "IMAP4rev1 library written in Go") + (description + "The imap package provides an IMAP4rev1 library written in Go. It +can be used to build IMAP clients and servers.") + (license license:expat))) -- 2.37.1 From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 03 08:17:52 2022 Received: (at control) by debbugs.gnu.org; 3 Aug 2022 12:17:52 +0000 Received: from localhost ([127.0.0.1]:46549 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oJDJw-0003VQ-BA for submit@debbugs.gnu.org; Wed, 03 Aug 2022 08:17:52 -0400 Received: from knopi.disroot.org ([178.21.23.139]:45588) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oJDJt-0003VF-69 for control@debbugs.gnu.org; Wed, 03 Aug 2022 08:17:50 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 9CA2040D96 for ; Wed, 3 Aug 2022 14:17:48 +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 3rXwhm5q2hK1 for ; Wed, 3 Aug 2022 14:17:47 +0200 (CEST) Mime-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1659529067; bh=WMWGEbG5sg0dFQzbWHnMFMTLFP+a3LO8S3y8TT+KO0Q=; h=Date:Subject:From:To; b=X5zvbNM7x0wl7OqwPD+Ffu2opwG2nordWZBykon9ky7ykI+jMxJmRUafqCO+P9ijO QRKX2wN/8kjtBTwLZT7fSU9HpUOXK2pq8G6DsHuFZW59Kqf3ag1qhZ5FJSq9LQzwkS YYi3Bnl9nqOzcm/IVC62yRq344GfF1FtMGProvu+1nJ65+WQq4K1Q8evktfGp2SKjp Rooe6UsP4RKWEdfKUCXNKWwwVJFe1z3jIL75S64S34vuCJZsa7QKM4OiKumfZ8whsg Xsz9tAWFchfyJ6nBtQHV29vfZyFT1ZIjPJw+isn1xXuItlGYWhhCTVx5j4GIXS0EAS 28a48lbbojgTA== Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Wed, 03 Aug 2022 13:17:46 +0100 Message-Id: Subject: From: "(" To: X-Spam-Score: 2.0 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: merge 55903 56909 56914 56910 56911 56912 56913 56915 56916 56917 56918 56919 56920 56921 56922 56923 56924 56925 56926 56927 56928 56934 56930 56929 56931 56933 56936 56935 56932 56941 56938 56939 56 [...] Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 2.0 BLANK_SUBJECT Subject is present but empty X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) merge 55903 56909 56914 56910 56911 56912 56913 56915 56916 56917 56918 569= 19 56920 56921 56922 56923 56924 56925 56926 56927 56928 56934 56930 56929 = 56931 56933 56936 56935 56932 56941 56938 56939 56937 56942 56940 56943 569= 44 56945 56946 56947 56948 56949 thanks -- ( From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 03 08:32:01 2022 Received: (at control) by debbugs.gnu.org; 3 Aug 2022 12:32:01 +0000 Received: from localhost ([127.0.0.1]:46741 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oJDXd-0006Gg-1b for submit@debbugs.gnu.org; Wed, 03 Aug 2022 08:32:01 -0400 Received: from knopi.disroot.org ([178.21.23.139]:56268) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oJDXa-0006GY-RY for control@debbugs.gnu.org; Wed, 03 Aug 2022 08:31:59 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 5C14040DED for ; Wed, 3 Aug 2022 14:31:58 +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 E_E3ZYQrJPp3 for ; Wed, 3 Aug 2022 14:31:57 +0200 (CEST) Mime-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1659529904; bh=VPXzsnu7xHX/DJXk0Ame3rH2Frx2BImX8NbBTYPwhqk=; h=Date:Subject:From:To; b=fpUzS8b+PV3yGLEJUGlegB3Z8nLN9w93Ky2L03kPDE3ZQJE+OKcujMmqKTlpGzrF6 1rglT5nYRGhugteiKrxz01TOoZZ64WKnavu49NdkMMIY+OwuDEw5+DHvI9paDNQ9UX amgPytIJXyCx42y0IDMdhrpVWlKljqDlCwYLvd+szO67u3SWoMt2XL8Hgf9v8BUZX0 wngHN772uX1rhiIJoXHBPtdOHm7Jj7ocaeod5UhIC5549hmm6t4za2xB4nctX4J1xt fOqdBEPmMaBaShe0E7BXDD9H+u2+8ipK4HYAaS/p2FLqZIacIFtCX26b+PhDkKjcn1 8qqtPN5KamN4A== Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Wed, 03 Aug 2022 13:31:44 +0100 Message-Id: Subject: From: "(" To: X-Spam-Score: 2.0 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: close 56909 56914 56910 56911 56912 56913 56915 56916 56917 56918 56919 56920 56921 56922 56923 56924 56925 56926 56927 56928 56934 56930 56929 56931 56933 56936 56935 56932 56941 56938 56939 56937 56 [...] Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 2.0 BLANK_SUBJECT Subject is present but empty X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) close 56909 56914 56910 56911 56912 56913 56915 56916 56917 56918 56919 569= 20 56921 56922 56923 56924 56925 56926 56927 56928 56934 56930 56929 56931 = 56933 56936 56935 56932 56941 56938 56939 56937 56942 56940 56943 56944 569= 45 56946 56947 56948 56949 thanks -- ( From unknown Thu Jun 19 16:23:01 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug No longer marked as fixed in versions 56923, 56939, 56946, 56912, 56933, 56937, 56932, 56922, 56938, 56918, 56948, 56947, 56949, 56917, 56936, 56940, 56931, 56941, 56910, 56913, 56920, 56914, 56911, 56926, 56927, 56919, 56942, 56944, 56915, 56945, 56929, 56921, 56924, 56928, 56934, 56943, 56930, 56916, 56925, and 56935 and reopened. Date: Wed, 03 Aug 2022 12:35:03 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug No longer marked as fixed in versions 56923, 56939, 56946, 56912, 56933, 56937, 56932, 56922, 56938, 56918, 56948, 56947, 56949, 56917, 56936, 56940, 56931, 56941, 56910, 56913, 56920, 56914, 56911, 56926, 56927, 56919, 56942, 56944, 56915, 56945, 56929, 56921, 56924, 56928, 56934, 56943, 56930, 56916, 56925, and 56935 and reopened. thanks # This fakemail brought to you by your local debbugs # administrator From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 03 08:37:21 2022 Received: (at control) by debbugs.gnu.org; 3 Aug 2022 12:37:21 +0000 Received: from localhost ([127.0.0.1]:46794 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oJDcn-0006SZ-2U for submit@debbugs.gnu.org; Wed, 03 Aug 2022 08:37:21 -0400 Received: from knopi.disroot.org ([178.21.23.139]:37120) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oJDck-0006SQ-M5 for control@debbugs.gnu.org; Wed, 03 Aug 2022 08:37:20 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 0C69F40DB6 for ; Wed, 3 Aug 2022 14:37:18 +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 f4Cxr0JOu_e9 for ; Wed, 3 Aug 2022 14:37:17 +0200 (CEST) Mime-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1659530234; bh=eGbYskMuk5Buchxn8aaQHX4ISR9ZG45KEnnr65aS4CM=; h=Date:From:To:Subject; b=SCw5NuStwpacvbdTTcbwXBttikRqW0YIGFWAFioOgzVBm8uXEDi6dcZ24+nO2RDui HIbnWWr5ZEmVkuU43oercKcqRKtz2hcslLpkylW0PzFsufVcoN01eYftrrPO3irQ/+ PVExpi+KrN82jIhumKgprg3RaoE5VC5K03IQEcdVDaxz2BSyEj2gWVoTl/6tYNaSUX w/xTrTZm08/+MON+/N3Ph4IMo8k+Ya2/bogA8bXHahggHJ1z+IAjpBzD/DltMkY7Vu 5lOKI2yVzKJ0iP//9/8a2YElW4HeV/PkroWbhHnR2xn3fEk6nAlJ3OmKKhVBcc3xG+ 4p8YdJN5bBhIg== Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Wed, 03 Aug 2022 13:37:14 +0100 Message-Id: From: "(" To: Subject: X-Spam-Score: 2.0 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: unmerge 55903 thanks -- ( Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 2.0 BLANK_SUBJECT Subject is present but empty X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) unmerge 55903 thanks -- ( From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 03 08:37:48 2022 Received: (at control) by debbugs.gnu.org; 3 Aug 2022 12:37:48 +0000 Received: from localhost ([127.0.0.1]:46797 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oJDdE-0006Th-Aw for submit@debbugs.gnu.org; Wed, 03 Aug 2022 08:37:48 -0400 Received: from knopi.disroot.org ([178.21.23.139]:43224) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oJDdD-0006Ta-3S for control@debbugs.gnu.org; Wed, 03 Aug 2022 08:37:47 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 74FF840DC4 for ; Wed, 3 Aug 2022 14:37:46 +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 GU-_CAFJYqT3 for ; Wed, 3 Aug 2022 14:37:45 +0200 (CEST) Mime-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1659530265; bh=VPXzsnu7xHX/DJXk0Ame3rH2Frx2BImX8NbBTYPwhqk=; h=Date:Subject:From:To; b=jjzdDCFDu9kKY18wP4Fcrc5wQ+Z4miRsa9GbdRpj0vhJQh1VWysnknfCrvsRsuF8z vd3fvSUz3ift2vAwLpQtW3qKRmBp2WMJM/bXCLNtAQuELx4XicukTfFoDdViMxYKlQ 9FagXn69G4lbD4rrThWJuFW/Gizb1vn2HYw18d6ACr4arHZMaFx7bfA1fvx1QNGzzo x0z+mpHFecxdsCWUTvIB4ZVmaS47VMXZswub50udo6kHGccPBAD55QQlxuNx8B+XaM NhI/Or0e4YIcmVEY6+p6m1tY14XFAICsKKT7HPh0oM/uU8bWJ+ULZZr07yVPNDFwjC T1A3zTEV/J6xg== Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Wed, 03 Aug 2022 13:37:44 +0100 Message-Id: Subject: From: "(" To: X-Spam-Score: 2.0 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: close 56909 56914 56910 56911 56912 56913 56915 56916 56917 56918 56919 56920 56921 56922 56923 56924 56925 56926 56927 56928 56934 56930 56929 56931 56933 56936 56935 56932 56941 56938 56939 56937 56 [...] Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 2.0 BLANK_SUBJECT Subject is present but empty X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) close 56909 56914 56910 56911 56912 56913 56915 56916 56917 56918 56919 569= 20 56921 56922 56923 56924 56925 56926 56927 56928 56934 56930 56929 56931 = 56933 56936 56935 56932 56941 56938 56939 56937 56942 56940 56943 56944 569= 45 56946 56947 56948 56949 thanks -- ( From unknown Thu Jun 19 16:23:01 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 01 Sep 2022 11:24:07 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator