From 34dd26af491f49949b606377dcb540af15f2125a Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Mon, 18 Jan 2016 11:25:16 -0800 Subject: gnu: Add fdm. * gnu/packages/mail.scm (fdm): New variable. --- gnu/packages/mail.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'gnu/packages/mail.scm') diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index f765728ae4..efe886d2f8 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -9,6 +9,7 @@ ;;; Copyright © 2015 Eric Bavier ;;; Copyright © 2015 Andreas Enge ;;; Copyright © 2015 Efraim Flashner +;;; Copyright © 2016 Christopher Allan Webber ;;; ;;; This file is part of GNU Guix. ;;; @@ -1013,4 +1014,32 @@ compatibility shims for the @command{sendmail}, @command{mailq}, and @command{newaliases} commands.") (license gpl2+))) +(define-public fdm + (package + (name "fdm") + (version "1.9") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/nicm/fdm/releases/download/" + version "/fdm-" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "054rscijahiza5f9qha79rg3siji3bk5mk10f8c2vqx7m4w6qh8n")))) + (build-system gnu-build-system) + (inputs + `(("tdb" ,tdb) + ("openssl" ,openssl) + ("zlib" ,zlib))) + (home-page "https://github.com/nicm/fdm") + (synopsis "Mail Retrieval Agent (MRA) and Mail Delivery Agent (MDA)") + (description "fdm is a program designed to fetch mail from POP3 +or IMAP servers, or receive local mail from stdin, and +deliver it in various ways.") + (license + ;; Why point to a source file? Well, all the individual files have a + ;; copy of this license in their headers, but there's no seprate file + ;; with that information. + (non-copyleft "file://command.c")))) + ;;; mail.scm ends here -- cgit v1.2.3 From 16966d5b4d96f2f5dc02b9ae295ef34c8a1e93ab Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Tue, 19 Jan 2016 07:54:18 -0800 Subject: gnu: fdm: Adjust license link to point to web-accessible copy of command.c * gnu/packages/mail.scm (fdm): Adjusted license field --- gnu/packages/mail.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu/packages/mail.scm') diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index efe886d2f8..07e6bc999f 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -1040,6 +1040,6 @@ deliver it in various ways.") ;; Why point to a source file? Well, all the individual files have a ;; copy of this license in their headers, but there's no seprate file ;; with that information. - (non-copyleft "file://command.c")))) + (non-copyleft "https://github.com/nicm/fdm/blob/master/command.c")))) ;;; mail.scm ends here -- cgit v1.2.3 From 21565719e5cfb54f7930374f80a5b515930174f2 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sat, 23 Jan 2016 20:13:31 +0200 Subject: gnu: claws-mail: Update to 3.13.2. * gnu/packages/mail.scm (claws-mail): Update to 3.13.2. --- gnu/packages/mail.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/packages/mail.scm') diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 07e6bc999f..4dc9bdc6e7 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -8,7 +8,7 @@ ;;; Copyright © 2015 Paul van der Walt ;;; Copyright © 2015 Eric Bavier ;;; Copyright © 2015 Andreas Enge -;;; Copyright © 2015 Efraim Flashner +;;; Copyright © 2015, 2016 Efraim Flashner ;;; Copyright © 2016 Christopher Allan Webber ;;; ;;; This file is part of GNU Guix. @@ -520,7 +520,7 @@ MailCore 2.") (define-public claws-mail (package (name "claws-mail") - (version "3.13.1") + (version "3.13.2") (source (origin (method url-fetch) (uri (string-append @@ -528,7 +528,7 @@ MailCore 2.") ".tar.xz")) (sha256 (base32 - "049av7r0xhjjjm1p93l2ns3xisvn125v3ncqar23cqjzgcichg5d")))) + "1l8ankx0qpq1ix1an8viphcf11ksh53jsrm1xjmq8cjbh5910wva")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) (inputs `(("bogofilter" ,bogofilter) -- cgit v1.2.3