2013-01-13 15:37:32 +01:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2015-01-07 09:44:10 +01:00
|
|
|
|
;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
2015-02-27 17:53:06 +01:00
|
|
|
|
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
|
2014-10-19 04:03:42 +02:00
|
|
|
|
;;; Copyright © 2014 Ian Denhardt <ian@zenhack.net>
|
2014-11-23 06:07:42 +01:00
|
|
|
|
;;; Copyright © 2014 Sou Bunnbu <iyzsong@gmail.com>
|
2014-11-22 10:34:07 +01:00
|
|
|
|
;;; Copyright © 2014 Julien Lepiller <julien@lepiller.eu>
|
2015-02-09 23:17:36 +01:00
|
|
|
|
;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
|
2015-02-28 14:28:00 +01:00
|
|
|
|
;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org>
|
2015-04-06 19:03:11 +02:00
|
|
|
|
;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org>
|
2015-05-23 16:43:18 +02:00
|
|
|
|
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
2016-01-23 19:13:31 +01:00
|
|
|
|
;;; Copyright © 2015, 2016 Efraim Flashner <efraim@flashner.co.il>
|
2016-01-18 20:25:16 +01:00
|
|
|
|
;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
|
2013-01-13 15:37:32 +01:00
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
2013-09-22 21:01:40 +02:00
|
|
|
|
(define-module (gnu packages mail)
|
2013-01-18 01:06:47 +01:00
|
|
|
|
#:use-module (gnu packages)
|
2013-09-22 21:56:36 +02:00
|
|
|
|
#:use-module (gnu packages autotools)
|
2014-05-20 16:00:59 +02:00
|
|
|
|
#:use-module (gnu packages base)
|
2014-11-23 01:48:53 +01:00
|
|
|
|
#:use-module (gnu packages backup)
|
2015-04-23 12:04:36 +02:00
|
|
|
|
#:use-module (gnu packages bash)
|
2015-11-03 15:46:44 +01:00
|
|
|
|
#:use-module (gnu packages bison)
|
2014-11-22 10:34:07 +01:00
|
|
|
|
#:use-module (gnu packages curl)
|
2013-09-23 12:50:59 +02:00
|
|
|
|
#:use-module (gnu packages cyrus-sasl)
|
2015-03-11 12:42:56 +01:00
|
|
|
|
#:use-module (gnu packages databases)
|
2013-09-22 21:56:36 +02:00
|
|
|
|
#:use-module (gnu packages dejagnu)
|
2014-05-20 16:00:59 +02:00
|
|
|
|
#:use-module (gnu packages emacs)
|
2014-11-23 01:48:53 +01:00
|
|
|
|
#:use-module (gnu packages enchant)
|
|
|
|
|
#:use-module (gnu packages ghostscript)
|
2014-05-20 16:00:59 +02:00
|
|
|
|
#:use-module (gnu packages glib)
|
2014-11-23 01:48:53 +01:00
|
|
|
|
#:use-module (gnu packages gnome)
|
2013-10-06 13:31:02 +02:00
|
|
|
|
#:use-module (gnu packages gnupg)
|
2014-12-07 10:12:33 +01:00
|
|
|
|
#:use-module (gnu packages gsasl)
|
2014-11-23 01:48:53 +01:00
|
|
|
|
#:use-module (gnu packages gtk)
|
2013-01-18 01:06:24 +01:00
|
|
|
|
#:use-module (gnu packages guile)
|
2015-11-03 15:46:44 +01:00
|
|
|
|
#:use-module (gnu packages flex)
|
2014-11-23 01:48:53 +01:00
|
|
|
|
#:use-module (gnu packages libcanberra)
|
2014-12-07 10:12:33 +01:00
|
|
|
|
#:use-module (gnu packages libidn)
|
2013-09-22 21:56:36 +02:00
|
|
|
|
#:use-module (gnu packages linux)
|
|
|
|
|
#:use-module (gnu packages m4)
|
2013-01-18 01:06:24 +01:00
|
|
|
|
#:use-module (gnu packages ncurses)
|
2015-02-09 23:17:36 +01:00
|
|
|
|
#:use-module (gnu packages pcre)
|
2013-09-22 22:30:18 +02:00
|
|
|
|
#:use-module (gnu packages perl)
|
2014-05-20 16:00:04 +02:00
|
|
|
|
#:use-module (gnu packages python)
|
2013-01-18 01:06:24 +01:00
|
|
|
|
#:use-module (gnu packages readline)
|
2014-05-20 16:00:59 +02:00
|
|
|
|
#:use-module (gnu packages search)
|
2013-01-18 01:06:24 +01:00
|
|
|
|
#:use-module (gnu packages texinfo)
|
2014-02-19 05:08:04 +01:00
|
|
|
|
#:use-module (gnu packages compression)
|
|
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
|
#:use-module (gnu packages pkg-config)
|
2014-04-01 22:21:18 +02:00
|
|
|
|
#:use-module (gnu packages flex)
|
2014-06-15 02:52:09 +02:00
|
|
|
|
#:use-module (gnu packages gdb)
|
|
|
|
|
#:use-module (gnu packages samba)
|
gnu: Rename module gnutls to tls.
* gnu/packages/gnutls.scm: Rename to...
* gnu/packages/tls.scm: ... this. Change module name accordingly.
* gnu/packages/{admin.scm, cups.scm, curl.scm, dc.scm, dns.scm, emacs.scm,
ftp.scm, gnome.scm, gnunet.scm, gnupg.scm, gsasl.scm, lynx.scm,
mail.scm, messaging.scm, package-management.scm, shishi.scm,
task-management.scm, version-control.scm, video.scm, vpn.scm,
webkit.scm, weechat.scm, wget.scm, wine.scm, xml.scm}: Adapt module
import to new name.
* gnu-system.am (GNU_SYSTEM_MODULES): Rename gnutls module to tls.
2015-07-03 21:41:22 +02:00
|
|
|
|
#:use-module (gnu packages tls)
|
2014-11-22 10:34:07 +01:00
|
|
|
|
#:use-module (gnu packages xml)
|
2014-11-23 01:48:53 +01:00
|
|
|
|
#:use-module (gnu packages xorg)
|
2013-09-22 21:56:36 +02:00
|
|
|
|
#:use-module ((guix licenses)
|
2015-04-23 10:58:58 +02:00
|
|
|
|
#:select (gpl2 gpl2+ gpl3+ lgpl2.1 lgpl2.1+ lgpl3+ non-copyleft
|
|
|
|
|
(expat . license:expat)))
|
2013-01-13 15:37:32 +01:00
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix download)
|
2015-11-03 15:46:44 +01:00
|
|
|
|
#:use-module (guix git-download)
|
2014-10-19 04:03:42 +02:00
|
|
|
|
#:use-module (guix utils)
|
2014-02-19 05:08:04 +01:00
|
|
|
|
#:use-module (guix build-system gnu)
|
2015-04-06 19:03:11 +02:00
|
|
|
|
#:use-module (guix build-system perl)
|
2014-10-19 04:03:42 +02:00
|
|
|
|
#:use-module (guix build-system python))
|
2013-01-13 15:37:32 +01:00
|
|
|
|
|
|
|
|
|
(define-public mailutils
|
|
|
|
|
(package
|
|
|
|
|
(name "mailutils")
|
|
|
|
|
(version "2.2")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://gnu/mailutils/mailutils-"
|
|
|
|
|
version ".tar.bz2"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
gnu: Use the 'patches' field of <origin>.
* gnu/packages/apr.scm,
gnu/packages/autotools.scm,
gnu/packages/avahi.scm,
gnu/packages/cdrom.scm,
gnu/packages/cmake.scm,
gnu/packages/cpio.scm,
gnu/packages/cross-base.scm,
gnu/packages/emacs.scm,
gnu/packages/flex.scm,
gnu/packages/fontutils.scm,
gnu/packages/glib.scm,
gnu/packages/grub.scm,
gnu/packages/guile.scm,
gnu/packages/idutils.scm,
gnu/packages/libevent.scm,
gnu/packages/linux.scm,
gnu/packages/mail.scm,
gnu/packages/make-bootstrap.scm,
gnu/packages/mp3.scm,
gnu/packages/oggvorbis.scm,
gnu/packages/pdf.scm,
gnu/packages/plotutils.scm,
gnu/packages/qemu.scm,
gnu/packages/recutils.scm,
gnu/packages/rush.scm,
gnu/packages/scheme.scm,
gnu/packages/system.scm,
gnu/packages/tcsh.scm,
gnu/packages/valgrind.scm,
gnu/packages/vpn.scm,
gnu/packages/w3m: Use the 'patches' field of <origin> instead of
adding a patch as input plus using #:patches.
2013-10-09 00:09:04 +02:00
|
|
|
|
"0szbqa12zqzldqyw97lxqax3ja2adis83i7brdfsxmrfw68iaf65"))
|
|
|
|
|
(patches (list (search-patch "m4-gets-undeclared.patch")))))
|
2013-01-13 15:37:32 +01:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(;; TODO: Add `--with-sql'.
|
|
|
|
|
#:phases (alist-cons-before
|
|
|
|
|
'build 'pre-build
|
|
|
|
|
(lambda _
|
|
|
|
|
;; Use Guile 2.0's public API.
|
|
|
|
|
(substitute* "libmu_scm/mu_message.c"
|
|
|
|
|
(("scm_i_string_length")
|
|
|
|
|
"scm_c_string_length"))
|
|
|
|
|
|
|
|
|
|
;; This file should be generated to use the right
|
|
|
|
|
;; value of $(libdir) et al.
|
|
|
|
|
(delete-file "libmu_scm/mailutils.scm")
|
|
|
|
|
|
|
|
|
|
;; Use the right file name for `cat'.
|
|
|
|
|
(substitute* "testsuite/lib/mailutils.exp"
|
|
|
|
|
(("/bin/cat")
|
|
|
|
|
(which "cat"))))
|
|
|
|
|
%standard-phases)
|
|
|
|
|
#:parallel-tests? #f))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("dejagnu" ,dejagnu)
|
|
|
|
|
("m4" ,m4)
|
|
|
|
|
("texinfo" ,texinfo)
|
|
|
|
|
("guile" ,guile-2.0)
|
|
|
|
|
("gnutls" ,gnutls)
|
|
|
|
|
("ncurses" ,ncurses)
|
2014-04-06 06:15:49 +02:00
|
|
|
|
|
|
|
|
|
;; With Readline 6.3, examples/pop3client.c fails to build because it
|
|
|
|
|
;; uses the now undefined 'CPPFunction' type.
|
|
|
|
|
("readline" ,readline-6.2)
|
|
|
|
|
|
2013-01-13 15:37:32 +01:00
|
|
|
|
("linux-pam" ,linux-pam)
|
2015-01-07 09:44:10 +01:00
|
|
|
|
("libltdl" ,libltdl)
|
gnu: Use the 'patches' field of <origin>.
* gnu/packages/apr.scm,
gnu/packages/autotools.scm,
gnu/packages/avahi.scm,
gnu/packages/cdrom.scm,
gnu/packages/cmake.scm,
gnu/packages/cpio.scm,
gnu/packages/cross-base.scm,
gnu/packages/emacs.scm,
gnu/packages/flex.scm,
gnu/packages/fontutils.scm,
gnu/packages/glib.scm,
gnu/packages/grub.scm,
gnu/packages/guile.scm,
gnu/packages/idutils.scm,
gnu/packages/libevent.scm,
gnu/packages/linux.scm,
gnu/packages/mail.scm,
gnu/packages/make-bootstrap.scm,
gnu/packages/mp3.scm,
gnu/packages/oggvorbis.scm,
gnu/packages/pdf.scm,
gnu/packages/plotutils.scm,
gnu/packages/qemu.scm,
gnu/packages/recutils.scm,
gnu/packages/rush.scm,
gnu/packages/scheme.scm,
gnu/packages/system.scm,
gnu/packages/tcsh.scm,
gnu/packages/valgrind.scm,
gnu/packages/vpn.scm,
gnu/packages/w3m: Use the 'patches' field of <origin> instead of
adding a patch as input plus using #:patches.
2013-10-09 00:09:04 +02:00
|
|
|
|
("gdbm" ,gdbm)))
|
2013-01-13 15:37:32 +01:00
|
|
|
|
(home-page "http://www.gnu.org/software/mailutils/")
|
gnu: Use synopses from the Womb.
* gnu/packages/algebra.scm,
gnu/packages/aspell.scm,
gnu/packages/autotools.scm,
gnu/packages/base.scm,
gnu/packages/bash.scm,
gnu/packages/bison.scm,
gnu/packages/cdrom.scm,
gnu/packages/cflow.scm,
gnu/packages/compression.scm,
gnu/packages/cpio.scm,
gnu/packages/cppi.scm,
gnu/packages/ddrescue.scm,
gnu/packages/dejagnu.scm,
gnu/packages/ed.scm,
gnu/packages/emacs.scm,
gnu/packages/fdisk.scm,
gnu/packages/gawk.scm,
gnu/packages/gcc.scm,
packages/gcc.scm, b/gnu/packages/gcc.scm,
4b982 100644
s/gcc.scm,
s/gcc.scm,
@@
%standard-phases)))))
`((gcc-libc . ,(assoc-ref inputs "libc"))))
The GNU Compiler Collection")
GNU Compiler Collection")
n
ompiler Collection includes compiler front ends for C, C++,
tran, OpenMP for C/C++/Fortran, Java, and Ada, as well as
gnu/packages/gdb.scm,
gnu/packages/gettext.scm,
gnu/packages/ghostscript.scm,
gnu/packages/glib.scm,
gnu/packages/global.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnutls.scm,
gnu/packages/gperf.scm,
gnu/packages/gprolog.scm,
gnu/packages/groff.scm,
gnu/packages/grub.scm,
gnu/packages/gsasl.scm,
gnu/packages/guile.scm,
gnu/packages/help2man.scm,
gnu/packages/idutils.scm,
gnu/packages/indent.scm,
gnu/packages/less.scm,
gnu/packages/libidn.scm,
gnu/packages/libsigsegv.scm,
gnu/packages/libunistring.scm,
gnu/packages/linux.scm,
gnu/packages/lsh.scm,
gnu/packages/m4.scm,
gnu/packages/mailutils.scm,
gnu/packages/multiprecision.scm,
gnu/packages/nano.scm,
gnu/packages/ncurses.scm,
gnu/packages/nettle.scm,
gnu/packages/oggvorbis.scm,
gnu/packages/parted.scm,
gnu/packages/pth.scm,
gnu/packages/readline.scm,
gnu/packages/recutils.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/shishi.scm,
gnu/packages/smalltalk.scm,
gnu/packages/system.scm,
gnu/packages/texinfo.scm,
gnu/packages/time.scm,
gnu/packages/wdiff.scm,
gnu/packages/wget.scm,
gnu/packages/which.scm: Use synopses from the Womb.
2013-04-17 18:04:25 +02:00
|
|
|
|
(synopsis "Utilities and library for reading and serving mail")
|
2013-01-13 15:37:32 +01:00
|
|
|
|
(description
|
2013-12-01 22:33:23 +01:00
|
|
|
|
"GNU Mailutils is a collection of programs for managing, viewing and
|
|
|
|
|
processing electronic mail. It contains both utilities and server daemons
|
|
|
|
|
and all operate in a protocol-agnostic way. The underlying libraries are
|
|
|
|
|
also available, simplifying the addition of mail capabilities to new
|
|
|
|
|
software.")
|
2013-01-13 15:37:32 +01:00
|
|
|
|
(license
|
|
|
|
|
;; Libraries are under LGPLv3+, and programs under GPLv3+.
|
|
|
|
|
(list gpl3+ lgpl3+))))
|
2013-09-22 21:56:36 +02:00
|
|
|
|
|
|
|
|
|
(define-public fetchmail
|
|
|
|
|
(package
|
|
|
|
|
(name "fetchmail")
|
|
|
|
|
(version "6.3.26")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://sourceforge/fetchmail/branch_6.3/fetchmail-"
|
|
|
|
|
version ".tar.xz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0l78ayvi9dm8hd190gl139cs2xqsrf7r9ncilslw20mgvd6cbd3r"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
|
|
|
|
`(("openssl" ,openssl)))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags (list (string-append "--with-ssl="
|
|
|
|
|
(assoc-ref %build-inputs "openssl")))))
|
2014-12-28 17:57:16 +01:00
|
|
|
|
(home-page "http://www.fetchmail.info/")
|
2014-08-15 08:10:26 +02:00
|
|
|
|
(synopsis "Remote-mail retrieval and forwarding utility")
|
2013-09-22 21:56:36 +02:00
|
|
|
|
(description
|
|
|
|
|
"Fetchmail is a full-featured, robust, well-documented remote-mail
|
|
|
|
|
retrieval and forwarding utility intended to be used over on-demand
|
|
|
|
|
TCP/IP links (such as SLIP or PPP connections). It supports every
|
|
|
|
|
remote-mail protocol now in use on the Internet: POP2, POP3, RPOP, APOP,
|
|
|
|
|
KPOP, all flavors of IMAP, ETRN, and ODMR. It can even support IPv6
|
|
|
|
|
and IPSEC.
|
|
|
|
|
|
|
|
|
|
Fetchmail retrieves mail from remote mail servers and forwards it via SMTP,
|
|
|
|
|
so it can then be read by normal mail user agents such as mutt, elm
|
|
|
|
|
or BSD Mail. It allows all your system MTA's filtering, forwarding, and
|
|
|
|
|
aliasing facilities to work just as they would on normal mail.")
|
|
|
|
|
(license gpl2+))) ; most files are actually public domain or x11
|
2013-09-22 22:30:18 +02:00
|
|
|
|
|
|
|
|
|
(define-public mutt
|
|
|
|
|
(package
|
|
|
|
|
(name "mutt")
|
2015-10-16 22:56:39 +02:00
|
|
|
|
(version "1.5.24")
|
2013-09-22 22:30:18 +02:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2015-10-16 22:56:39 +02:00
|
|
|
|
(uri (string-append "ftp://ftp.mutt.org/pub/mutt/mutt-"
|
|
|
|
|
version ".tar.gz"))
|
2013-09-22 22:30:18 +02:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2015-10-16 22:56:39 +02:00
|
|
|
|
"0012njrgxf1barjksqkx7ccid2l0xyikhna9mjs9vcfpbrvcm4m2"))
|
|
|
|
|
(patches (list (search-patch "mutt-store-references.patch")))))
|
2013-09-22 22:30:18 +02:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
2013-09-23 12:50:59 +02:00
|
|
|
|
`(("cyrus-sasl" ,cyrus-sasl)
|
2013-10-06 13:31:02 +02:00
|
|
|
|
("gpgme" ,gpgme)
|
2013-09-23 12:50:59 +02:00
|
|
|
|
("ncurses" ,ncurses)
|
2013-09-22 22:30:18 +02:00
|
|
|
|
("openssl" ,openssl)
|
|
|
|
|
("perl" ,perl)))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags '("--enable-smtp"
|
|
|
|
|
"--enable-imap"
|
|
|
|
|
"--enable-pop"
|
2013-10-06 13:31:02 +02:00
|
|
|
|
"--enable-gpgme"
|
2013-09-22 22:30:18 +02:00
|
|
|
|
"--with-ssl"
|
2013-09-23 12:50:59 +02:00
|
|
|
|
"--with-sasl"
|
2013-09-22 22:30:18 +02:00
|
|
|
|
;; so that mutt does not check whether the path
|
|
|
|
|
;; exists, which it does not in the chroot
|
|
|
|
|
"--with-mailpath=/var/mail")))
|
|
|
|
|
(home-page "http://www.mutt.org/")
|
|
|
|
|
(synopsis "Mail client")
|
|
|
|
|
(description
|
|
|
|
|
"Mutt is a small but very powerful text-based mail client for Unix
|
|
|
|
|
operating systems.")
|
|
|
|
|
(license gpl2+)))
|
2014-02-19 05:08:04 +01:00
|
|
|
|
|
|
|
|
|
(define-public gmime
|
|
|
|
|
(package
|
|
|
|
|
(name "gmime")
|
2015-12-09 14:21:34 +01:00
|
|
|
|
(version "2.6.20")
|
2014-02-19 05:08:04 +01:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2014-02-21 12:04:48 +01:00
|
|
|
|
(uri (string-append "mirror://gnome/sources/gmime/"
|
2014-10-19 04:03:42 +02:00
|
|
|
|
(version-major+minor version)
|
2014-02-19 05:08:04 +01:00
|
|
|
|
"/gmime-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2015-12-09 14:21:34 +01:00
|
|
|
|
"0rfzbgsh8ira5p76kdghygl5i3fvmmx4wbw5rp7f8ajc4vxp18g0"))))
|
2014-02-19 05:08:04 +01:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
|
("gnupg" ,gnupg))) ; for tests only
|
|
|
|
|
(inputs `(("glib" ,glib)
|
|
|
|
|
("gpgme" ,gpgme)
|
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
2015-12-09 14:21:34 +01:00
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after
|
|
|
|
|
'unpack 'patch-paths-in-tests
|
|
|
|
|
(lambda _
|
|
|
|
|
;; The test programs run several programs using 'system' with
|
|
|
|
|
;; hard-coded paths. Here we patch them all. We also change "gpg"
|
|
|
|
|
;; to "gpg2". We use ISO-8859-1 here because test-iconv.c contains
|
|
|
|
|
;; raw byte sequences in several different encodings.
|
|
|
|
|
(with-fluids ((%default-port-encoding #f))
|
|
|
|
|
(substitute* (find-files "tests" "\\.c$")
|
|
|
|
|
(("(system *\\(\")(/[^ ]*)" all pre prog-path)
|
|
|
|
|
(let* ((base (basename prog-path))
|
|
|
|
|
(prog (which (if (string=? base "gpg") "gpg2" base))))
|
|
|
|
|
(string-append pre
|
|
|
|
|
(or prog (error "not found: " base))))))))))))
|
2014-02-19 05:08:04 +01:00
|
|
|
|
(home-page "http://spruce.sourceforge.net/gmime/")
|
|
|
|
|
(synopsis "MIME message parser and creator library")
|
|
|
|
|
(description
|
|
|
|
|
"GMime provides a core library and set of utilities which may be used for
|
|
|
|
|
the creation and parsing of messages using the Multipurpose Internet Mail
|
|
|
|
|
Extension (MIME).")
|
|
|
|
|
(license (list lgpl2.1+ gpl2+ gpl3+))))
|
|
|
|
|
|
2014-04-01 22:21:18 +02:00
|
|
|
|
(define-public bogofilter
|
|
|
|
|
(package
|
|
|
|
|
(name "bogofilter")
|
|
|
|
|
(version "1.2.4")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://sourceforge/bogofilter/bogofilter-"
|
|
|
|
|
version "/bogofilter-"
|
|
|
|
|
version ".tar.bz2"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1d56n2m9inm8gnzm88aa27xl2a7sp7aff3484vmflpqkinjqf0p1"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:phases (alist-cons-before
|
|
|
|
|
'check 'pre-check
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "src/tests/t.frame"
|
|
|
|
|
(("GREP=/bin/grep")
|
|
|
|
|
(string-append "GREP=" (which "grep") "\n"))))
|
|
|
|
|
%standard-phases)))
|
|
|
|
|
(native-inputs `(("flex" ,flex)))
|
|
|
|
|
(inputs `(("bdb" ,bdb)))
|
|
|
|
|
(home-page "http://bogofilter.sourceforge.net/")
|
|
|
|
|
(synopsis "Mail classifier based on a Bayesian filter")
|
|
|
|
|
(description
|
|
|
|
|
"Bogofilter is a mail filter that classifies mail as spam or ham
|
|
|
|
|
(non-spam) by a statistical analysis of the message's header and
|
|
|
|
|
content (body). The program is able to learn from the user's classifications
|
|
|
|
|
and corrections. It is based on a Bayesian filter.")
|
|
|
|
|
(license gpl2)))
|
|
|
|
|
|
2014-05-20 16:00:04 +02:00
|
|
|
|
(define-public offlineimap
|
|
|
|
|
(package
|
|
|
|
|
(name "offlineimap")
|
2015-12-30 09:49:32 +01:00
|
|
|
|
(version "6.6.1")
|
2014-05-20 16:00:04 +02:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://github.com/OfflineIMAP/offlineimap/"
|
|
|
|
|
"archive/v" version ".tar.gz"))
|
gnu: Add 'file-name' fields for github source tarballs without a name.
* gnu/packages/aarddict.scm (aarddict), gnu/packages/algebra.scm (arb),
gnu/packages/audio.scm (jack-2, lvtk),
gnu/packages/bioinformatics.scm (bedops, bedtools, bowtie),
gnu/packages/game-development.scm (tiled),
gnu/packages/games.scm (minetest-data, minetest, retroarch),
gnu/packages/jrnl.scm (jrnl), gnu/packages/kde.scm (qjson),
gnu/packages/libevent.scm (libuv), gnu/packages/linux.scm (pflask),
gnu/packages/mail.scm (offlineimap, libetpan),
gnu/packages/maths.scm (arpack-ng), gnu/packages/ninja.scm (ninja),
gnu/packages/nutrition.scm (gourmet),
gnu/packages/python.scm (python-cairocffi), gnu/packages/rdf.scm (lrdf),
gnu/packages/ruby.scm (ruby-i18n), gnu/packages/sxiv.scm (sxiv): Add
'file-name' field to origin.
2015-02-27 18:23:27 +01:00
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
2014-05-20 16:00:04 +02:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2015-12-30 09:49:32 +01:00
|
|
|
|
"1c2b03856a78ripkpl9jjzj6yzyfb3rlrdnjx300s647l1xx8gxg"))))
|
2014-05-20 16:00:04 +02:00
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(native-inputs `(("python" ,python-2)))
|
|
|
|
|
(arguments
|
|
|
|
|
;; The setup.py script expects python-2.
|
|
|
|
|
`(#:python ,python-2
|
|
|
|
|
;; Tests require a modifiable IMAP account.
|
|
|
|
|
#:tests? #f))
|
|
|
|
|
(home-page "http://www.offlineimap.org")
|
2015-12-30 09:49:32 +01:00
|
|
|
|
(synopsis "Sync emails between two repositories")
|
2014-05-20 16:00:04 +02:00
|
|
|
|
(description
|
|
|
|
|
"OfflineImap synchronizes emails between two repositories, so that you
|
|
|
|
|
can read the same mailbox from multiple computers. It supports IMAP as REMOTE
|
|
|
|
|
repository and Maildir/IMAP as LOCAL repository.")
|
2014-05-20 16:50:58 +02:00
|
|
|
|
(license gpl2+)))
|
2014-05-20 16:00:04 +02:00
|
|
|
|
|
2015-10-27 10:19:46 +01:00
|
|
|
|
(define %mu-gtester-patch
|
|
|
|
|
;; Ensure tests have unique names, to placate GLib 2.6's gtester.
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri "https://github.com/djcb/mu/commit/b44039ed.patch")
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"165hryqqhx3wah8a4f5jaq465azx1pm9r4jid7880pys9gd88qlv"))))
|
|
|
|
|
|
2014-05-20 16:00:59 +02:00
|
|
|
|
(define-public mu
|
|
|
|
|
(package
|
|
|
|
|
(name "mu")
|
2015-09-26 21:11:30 +02:00
|
|
|
|
(version "0.9.13")
|
2014-05-20 16:00:59 +02:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2015-02-27 01:23:48 +01:00
|
|
|
|
(uri (string-append "https://github.com/djcb/mu/archive/v"
|
2014-05-20 16:00:59 +02:00
|
|
|
|
version ".tar.gz"))
|
2015-02-27 01:23:48 +01:00
|
|
|
|
(file-name (string-append "mu-" version ".tar.gz"))
|
2014-05-20 16:00:59 +02:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2015-10-27 10:19:46 +01:00
|
|
|
|
"0wj33pma8xgjvn2akk7khzbycwn4c9sshxvzdph9dnpy7gyqxj51"))
|
|
|
|
|
(patches (list %mu-gtester-patch))))
|
2014-05-20 16:00:59 +02:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)
|
2014-07-24 00:26:03 +02:00
|
|
|
|
("glib" ,glib "bin") ; for gtester
|
2015-02-27 01:23:48 +01:00
|
|
|
|
("autoconf" ,autoconf)
|
|
|
|
|
("automake" ,automake)
|
|
|
|
|
("libtool" ,libtool)
|
2014-05-20 16:00:59 +02:00
|
|
|
|
("texinfo" ,texinfo)))
|
|
|
|
|
;; TODO: Add webkit and gtk to build the mug GUI.
|
|
|
|
|
(inputs
|
|
|
|
|
`(("xapian" ,xapian)
|
2015-03-19 23:08:46 +01:00
|
|
|
|
("emacs" ,emacs-no-x)
|
2014-05-20 16:00:59 +02:00
|
|
|
|
("guile" ,guile-2.0)
|
|
|
|
|
("glib" ,glib)
|
|
|
|
|
("gmime" ,gmime)
|
|
|
|
|
("tzdata" ,tzdata))) ;for mu/test/test-mu-query.c
|
|
|
|
|
(arguments
|
2015-02-27 01:23:48 +01:00
|
|
|
|
'(#:phases (alist-cons-after
|
|
|
|
|
'unpack 'autoreconf
|
|
|
|
|
(lambda _
|
|
|
|
|
(zero? (system* "autoreconf" "-vi")))
|
|
|
|
|
(alist-cons-before
|
|
|
|
|
'check 'check-tz-setup
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
;; For mu/test/test-mu-query.c
|
|
|
|
|
(setenv "TZDIR"
|
|
|
|
|
(string-append (assoc-ref inputs "tzdata")
|
|
|
|
|
"/share/zoneinfo")))
|
|
|
|
|
%standard-phases))))
|
2014-05-20 16:00:59 +02:00
|
|
|
|
(home-page "http://www.djcbsoftware.nl/code/mu/")
|
|
|
|
|
(synopsis "Quickly find emails")
|
|
|
|
|
(description
|
|
|
|
|
"Mu is a tool for dealing with e-mail messages stored in the
|
|
|
|
|
Maildir-format. Mu's purpose in life is to help you to quickly find the
|
|
|
|
|
messages you need; in addition, it allows you to view messages, extract
|
|
|
|
|
attachments, create new maildirs, and so on.")
|
|
|
|
|
(license gpl3+)))
|
|
|
|
|
|
2014-06-15 02:52:09 +02:00
|
|
|
|
(define-public notmuch
|
|
|
|
|
(package
|
|
|
|
|
(name "notmuch")
|
2015-12-30 10:26:15 +01:00
|
|
|
|
(version "0.21")
|
2014-06-15 02:52:09 +02:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2015-12-30 10:26:15 +01:00
|
|
|
|
(uri (string-append "https://notmuchmail.org/releases/notmuch-"
|
2014-06-15 02:52:09 +02:00
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2015-12-30 10:26:15 +01:00
|
|
|
|
"1cr53rbpkcy3pvrmhbg2gq7sjpwb0c8xd7a4zhzxbiv8s7z8yvyh"))))
|
2014-06-15 02:52:09 +02:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
2015-12-30 10:26:15 +01:00
|
|
|
|
'(#:tests? #f ;; FIXME: 662 tests; 168 fail and 99 are skipped
|
|
|
|
|
;; with perl input: 50 fail and 99 are skipped
|
2015-08-16 04:23:59 +02:00
|
|
|
|
#:phases (modify-phases %standard-phases
|
|
|
|
|
(replace 'configure
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(setenv "CC" "gcc")
|
|
|
|
|
(setenv "CONFIG_SHELL" (which "sh"))
|
2015-04-23 12:04:36 +02:00
|
|
|
|
|
2015-08-16 04:23:59 +02:00
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
|
(zero? (system* "./configure"
|
|
|
|
|
(string-append "--prefix=" out)))))))))
|
2014-06-15 02:52:09 +02:00
|
|
|
|
(native-inputs
|
2015-04-23 12:04:36 +02:00
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
|
("python" ,python-2)
|
2015-08-16 04:23:59 +02:00
|
|
|
|
("python-docutils" ,python2-docutils)
|
|
|
|
|
("python-sphinx" ,python2-sphinx)
|
2015-04-23 12:04:36 +02:00
|
|
|
|
("bash-completion" ,bash-completion)))
|
2014-06-15 02:52:09 +02:00
|
|
|
|
(inputs
|
|
|
|
|
`(("emacs" ,emacs)
|
|
|
|
|
("glib" ,glib)
|
|
|
|
|
("gmime" ,gmime)
|
|
|
|
|
("talloc" ,talloc)
|
|
|
|
|
("xapian" ,xapian)
|
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
|
(home-page "http://notmuchmail.org/")
|
|
|
|
|
(synopsis "Thread-based email index, search, and tagging")
|
|
|
|
|
(description
|
|
|
|
|
"Notmuch is a command-line based program for indexing, searching, read-
|
|
|
|
|
ing, and tagging large collections of email messages.")
|
|
|
|
|
(license gpl3+)))
|
|
|
|
|
|
2015-09-04 17:45:03 +02:00
|
|
|
|
(define-public python2-notmuch
|
|
|
|
|
(package
|
|
|
|
|
(name "python2-notmuch")
|
|
|
|
|
(version "0.15.2")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"https://pypi.python.org/packages/source/n/notmuch/notmuch-"
|
|
|
|
|
version
|
|
|
|
|
".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"18g8701ibr153ngsz258kgcd42wqnbf9ifpqig1bijy6b0zx9xn5"))))
|
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(inputs `(("notmuch" ,notmuch)))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:python ,python-2
|
|
|
|
|
#:phases (modify-phases %standard-phases
|
|
|
|
|
(add-before
|
|
|
|
|
'build 'set-libnotmuch-file-name
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(let ((notmuch (assoc-ref inputs "notmuch")))
|
|
|
|
|
(substitute* "notmuch/globals.py"
|
|
|
|
|
(("libnotmuch\\.so\\.[0-9]")
|
|
|
|
|
(string-append notmuch "/lib/libnotmuch.so.4")))
|
|
|
|
|
#t))))
|
|
|
|
|
#:tests? #f)) ;no "test" target
|
|
|
|
|
(home-page "http://notmuchmail.org/")
|
|
|
|
|
(synopsis "Python bindings of the Notmuch mail indexing library")
|
|
|
|
|
(description
|
|
|
|
|
"This package provides Python bindings to use the Notmuch mail indexing
|
|
|
|
|
and search library.")
|
|
|
|
|
(license gpl3+)))
|
|
|
|
|
|
2014-11-23 06:07:42 +01:00
|
|
|
|
(define-public getmail
|
|
|
|
|
(package
|
|
|
|
|
(name "getmail")
|
2015-12-30 10:31:11 +01:00
|
|
|
|
(version "4.48.0")
|
2014-11-23 06:07:42 +01:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://pyropus.ca/software/getmail/old-versions/"
|
|
|
|
|
name "-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2015-12-30 10:31:11 +01:00
|
|
|
|
"0k5rm5kag14izng2ajcagvli9sns5mzvkyfa65ri4xymxs91wi29"))))
|
2014-11-23 06:07:42 +01:00
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f ; no tests
|
|
|
|
|
#:python ,python-2))
|
|
|
|
|
(home-page "http://pyropus.ca/software/getmail/")
|
|
|
|
|
(synopsis "Mail retriever")
|
|
|
|
|
(description
|
|
|
|
|
"A flexible, extensible mail retrieval system with support for
|
|
|
|
|
POP3, IMAP4, SSL variants of both, maildirs, mboxrd files, external MDAs,
|
|
|
|
|
arbitrary message filtering, single-user and domain-mailboxes, and many other
|
|
|
|
|
useful features.")
|
|
|
|
|
|
|
|
|
|
;; License is specified in file '__init__.py'.
|
|
|
|
|
(license gpl2)))
|
|
|
|
|
|
2014-11-22 10:34:07 +01:00
|
|
|
|
(define-public libetpan
|
|
|
|
|
(package
|
|
|
|
|
(name "libetpan")
|
|
|
|
|
(version "1.6")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://github.com/dinhviethoa/" name
|
|
|
|
|
"/archive/" version ".tar.gz"))
|
gnu: Add 'file-name' fields for github source tarballs without a name.
* gnu/packages/aarddict.scm (aarddict), gnu/packages/algebra.scm (arb),
gnu/packages/audio.scm (jack-2, lvtk),
gnu/packages/bioinformatics.scm (bedops, bedtools, bowtie),
gnu/packages/game-development.scm (tiled),
gnu/packages/games.scm (minetest-data, minetest, retroarch),
gnu/packages/jrnl.scm (jrnl), gnu/packages/kde.scm (qjson),
gnu/packages/libevent.scm (libuv), gnu/packages/linux.scm (pflask),
gnu/packages/mail.scm (offlineimap, libetpan),
gnu/packages/maths.scm (arpack-ng), gnu/packages/ninja.scm (ninja),
gnu/packages/nutrition.scm (gourmet),
gnu/packages/python.scm (python-cairocffi), gnu/packages/rdf.scm (lrdf),
gnu/packages/ruby.scm (ruby-i18n), gnu/packages/sxiv.scm (sxiv): Add
'file-name' field to origin.
2015-02-27 18:23:27 +01:00
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
2014-11-22 10:34:07 +01:00
|
|
|
|
(sha256
|
|
|
|
|
(base32 "05qyqx2c1ppb1jnrs3m52i60f9xlxfxdmb9dnwg4vqjv8kwv2qkr"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs `(("autoconf" ,(autoconf-wrapper))
|
|
|
|
|
("automake" ,automake)
|
2015-01-07 09:44:10 +01:00
|
|
|
|
("libtool" ,libtool)
|
2014-11-22 10:34:07 +01:00
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
;; 'libetpan-config --libs' returns '-lssl -lcrypto -lsasl2', so these
|
|
|
|
|
;; libraries need to be propagated.
|
|
|
|
|
`(("cyrus-sasl" ,cyrus-sasl)
|
|
|
|
|
("openssl" ,openssl)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("curl" ,curl)
|
|
|
|
|
("expat" ,expat)))
|
|
|
|
|
(arguments
|
2015-02-27 17:53:06 +01:00
|
|
|
|
'(#:phases (alist-cons-after
|
|
|
|
|
'unpack 'autogen
|
2014-11-22 10:34:07 +01:00
|
|
|
|
(lambda _
|
2015-02-27 17:53:06 +01:00
|
|
|
|
(setenv "NOCONFIGURE" "true")
|
|
|
|
|
(zero? (system* "sh" "autogen.sh")))
|
2014-11-22 10:34:07 +01:00
|
|
|
|
%standard-phases)
|
|
|
|
|
#:configure-flags
|
|
|
|
|
'("--disable-static" "--disable-db")))
|
|
|
|
|
(home-page "http://www.etpan.org/libetpan.html")
|
|
|
|
|
(synopsis "Portable middleware for email access")
|
|
|
|
|
(description
|
|
|
|
|
"The purpose of this mail library is to provide a portable, efficient
|
|
|
|
|
framework for different kinds of mail access: IMAP, SMTP, POP and NNTP. It
|
|
|
|
|
provides an API for C language. It's the low-level API used by MailCore and
|
|
|
|
|
MailCore 2.")
|
gnu: Update packages to use 'non-copyleft' instead of 'bsd-style'.
* gnu/packages/avr.scm, gnu/packages/compression.scm,
gnu/packages/curl.scm, gnu/packages/cyrus-sasl.scm,
gnu/packages/databases.scm, gnu/packages/firmware.scm,
gnu/packages/flex.scm, gnu/packages/fontutils.scm,
gnu/packages/gd.scm, gnu/packages/ghostscript.scm,
gnu/packages/gnunet.scm, gnu/packages/graphics.scm,
gnu/packages/hugs.scm, gnu/packages/image.scm,
gnu/packages/linux.scm, gnu/packages/mail.scm,
gnu/packages/maths.scm, gnu/packages/mit-krb5.scm,
gnu/packages/python.scm, gnu/packages/rdf.scm,
gnu/packages/ssh.scm, gnu/packages/tcl.scm,
gnu/packages/xdisorg.scm, gnu/packages/xiph.scm,
gnu/packages/yasm.scm, gnu/packages/zip.scm: Use 'non-copyleft'
instead of 'bsd-style'.
2015-03-14 19:26:34 +01:00
|
|
|
|
(license (non-copyleft "file://COPYING"))))
|
2014-11-22 10:34:07 +01:00
|
|
|
|
|
2014-11-23 01:48:53 +01:00
|
|
|
|
(define-public claws-mail
|
|
|
|
|
(package
|
|
|
|
|
(name "claws-mail")
|
2016-01-23 19:13:31 +01:00
|
|
|
|
(version "3.13.2")
|
2014-11-23 01:48:53 +01:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
2015-11-02 12:29:51 +01:00
|
|
|
|
"http://www.claws-mail.org/releases/" name "-" version
|
2015-03-18 11:38:20 +01:00
|
|
|
|
".tar.xz"))
|
2014-11-23 01:48:53 +01:00
|
|
|
|
(sha256
|
2015-12-21 08:17:47 +01:00
|
|
|
|
(base32
|
2016-01-23 19:13:31 +01:00
|
|
|
|
"1l8ankx0qpq1ix1an8viphcf11ksh53jsrm1xjmq8cjbh5910wva"))))
|
2014-11-23 01:48:53 +01:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
|
|
|
|
(inputs `(("bogofilter" ,bogofilter)
|
|
|
|
|
("curl" ,curl)
|
|
|
|
|
("dbus-glib" ,dbus-glib)
|
|
|
|
|
("enchant" ,enchant)
|
|
|
|
|
("expat" ,expat)
|
|
|
|
|
("ghostscript" ,ghostscript)
|
|
|
|
|
("hicolor-icon-theme" ,hicolor-icon-theme)
|
|
|
|
|
("gnupg" ,gnupg)
|
|
|
|
|
("gnutls" ,gnutls)
|
|
|
|
|
("gpgme" ,gpgme)
|
|
|
|
|
("gtk" ,gtk+-2)
|
|
|
|
|
("libarchive" ,libarchive)
|
|
|
|
|
("libcanberra" ,libcanberra)
|
|
|
|
|
("libetpan" ,libetpan)
|
|
|
|
|
("libnotify" ,libnotify)
|
|
|
|
|
("libsm" ,libsm)
|
|
|
|
|
("libxml2" ,libxml2)
|
|
|
|
|
("perl" ,perl)
|
|
|
|
|
("python-2" ,python-2)))
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:configure-flags
|
|
|
|
|
'("--enable-gnutls" "--enable-pgpmime-plugin" "--enable-enchant")))
|
|
|
|
|
(synopsis "GTK-based Email client")
|
|
|
|
|
(description
|
|
|
|
|
"Claws-Mail is an email client (and news reader) based on GTK+. The
|
|
|
|
|
appearance and interface are designed to be familiar to new users coming from
|
|
|
|
|
other popular email clients, as well as experienced users. Almost all commands
|
|
|
|
|
are accessible with the keyboard. Plus, Claws-Mail is extensible via addons
|
|
|
|
|
which can add many functionalities to the base client.")
|
|
|
|
|
(home-page "http://www.claws-mail.org/")
|
|
|
|
|
(license gpl3+))) ; most files are actually public domain or x11
|
|
|
|
|
|
2014-12-07 10:12:33 +01:00
|
|
|
|
(define-public msmtp
|
|
|
|
|
(package
|
|
|
|
|
(name "msmtp")
|
2015-12-21 08:36:15 +01:00
|
|
|
|
(version "1.6.3")
|
2014-12-07 10:12:33 +01:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
2015-11-05 17:47:57 +01:00
|
|
|
|
"mirror://sourceforge/msmtp/msmtp-" version ".tar.xz"))
|
2014-12-07 10:12:33 +01:00
|
|
|
|
(sha256 (base32
|
2015-12-21 08:36:15 +01:00
|
|
|
|
"0mbkflxv2swjz4185inis83v6pxcblpmapwjhgpc6wh7kh3bx0pr"))))
|
2014-12-07 10:12:33 +01:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
|
|
|
|
`(("libidn" ,libidn)
|
2015-12-21 08:36:15 +01:00
|
|
|
|
("libsecret" ,libsecret)
|
2014-12-07 10:12:33 +01:00
|
|
|
|
("gnutls" ,gnutls)
|
|
|
|
|
("zlib" ,zlib)
|
|
|
|
|
("gsasl" ,gsasl)))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
|
(home-page "http://msmtp.sourceforge.net/")
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags (list "--with-libgsasl"
|
|
|
|
|
"--with-libidn"
|
2015-11-05 17:47:57 +01:00
|
|
|
|
"--with-tls=gnutls")))
|
2014-12-07 10:12:33 +01:00
|
|
|
|
(synopsis
|
|
|
|
|
"Simple and easy to use SMTP client with decent sendmail compatibility")
|
|
|
|
|
(description
|
|
|
|
|
"msmtp is an SMTP client. In the default mode, it transmits a mail to
|
|
|
|
|
an SMTP server (for example at a free mail provider) which takes care of further
|
|
|
|
|
delivery.")
|
|
|
|
|
(license gpl3+)))
|
|
|
|
|
|
2015-02-09 23:17:36 +01:00
|
|
|
|
(define-public exim
|
|
|
|
|
(package
|
|
|
|
|
(name "exim")
|
2015-12-24 07:56:54 +01:00
|
|
|
|
(version "4.86")
|
2015-02-09 23:17:36 +01:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2015-12-24 07:55:50 +01:00
|
|
|
|
(uri (list (string-append "ftp://ftp.exim.org/pub/exim/exim4/exim-"
|
|
|
|
|
version ".tar.bz2")
|
|
|
|
|
(string-append "ftp://ftp.exim.org/pub/exim/exim4/old/exim-"
|
|
|
|
|
version ".tar.bz2")))
|
2015-02-09 23:17:36 +01:00
|
|
|
|
(sha256
|
2015-12-24 07:56:54 +01:00
|
|
|
|
(base32
|
|
|
|
|
"0mn4bxih9slrmll5262ayhf41ji43pjf1rv0y6xpy6x55v7g5k7i"))))
|
2015-02-09 23:17:36 +01:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
|
|
|
|
`(("bdb" ,bdb)
|
|
|
|
|
("gnutls" ,gnutls)
|
|
|
|
|
("gzip" ,gzip)
|
|
|
|
|
("bzip2" ,bzip2)
|
|
|
|
|
("xz" ,xz)
|
|
|
|
|
("pcre" ,pcre)
|
|
|
|
|
("perl" ,perl)
|
|
|
|
|
("libxt" ,libxt)
|
|
|
|
|
("libxaw" ,libxaw)))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("perl" ,perl)))
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:phases
|
|
|
|
|
(alist-replace
|
|
|
|
|
'configure
|
|
|
|
|
;; We'd use #:make-flags but the top-level Makefile calls others
|
|
|
|
|
;; recursively, so just set all variables this way.
|
|
|
|
|
(lambda* (#:key outputs inputs #:allow-other-keys)
|
|
|
|
|
(substitute* '("Makefile" "OS/Makefile-Default")
|
|
|
|
|
(("(RM_COMMAND=).*" all var)
|
|
|
|
|
(string-append var "rm\n")))
|
|
|
|
|
(copy-file "src/EDITME" "Local/Makefile")
|
|
|
|
|
(copy-file "exim_monitor/EDITME" "Local/eximon.conf")
|
|
|
|
|
(let ((out (assoc-ref outputs "out"))
|
|
|
|
|
(gzip (assoc-ref inputs "gzip"))
|
|
|
|
|
(bzip2 (assoc-ref inputs "bzip2"))
|
|
|
|
|
(xz (assoc-ref inputs "xz")))
|
|
|
|
|
(substitute* '("Local/Makefile")
|
|
|
|
|
(("(BIN_DIRECTORY=).*" all var)
|
|
|
|
|
(string-append var out "/bin\n"))
|
|
|
|
|
(("(CONFIGURE_FILE=).*" all var)
|
|
|
|
|
(string-append var out "/etc/exim.conf\n"))
|
|
|
|
|
(("(EXIM_USER=).*" all var)
|
|
|
|
|
(string-append var "nobody\n"))
|
|
|
|
|
(("(FIXED_NEVER_USERS=).*" all var)
|
|
|
|
|
(string-append var "\n")) ;XXX no root in build environment
|
|
|
|
|
(("(COMPRESS_COMMAND=).*" all var)
|
|
|
|
|
(string-append var gzip "/bin/gzip\n"))
|
|
|
|
|
(("(ZCAT_COMMAND=).*" all var)
|
|
|
|
|
(string-append var gzip "/bin/zcat\n")))
|
|
|
|
|
;; This file has hardcoded names for tools despite the zcat
|
|
|
|
|
;; configuration above.
|
|
|
|
|
(substitute* '("src/exigrep.src")
|
|
|
|
|
(("'zcat'") (string-append "'" gzip "/bin/zcat'"))
|
|
|
|
|
(("'bzcat'") (string-append "'" bzip2 "/bin/bzcat'"))
|
|
|
|
|
(("'xzcat'") (string-append "'" xz "/bin/xzcat'"))
|
|
|
|
|
(("'lzma'") (string-append "'" xz "/bin/lzma'")))))
|
|
|
|
|
(alist-cons-before
|
|
|
|
|
'build 'fix-sh-paths
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(substitute* '("scripts/lookups-Makefile" "scripts/reversion")
|
|
|
|
|
(("SHELL=/bin/sh") "SHELL=sh"))
|
|
|
|
|
(substitute* '("scripts/Configure-config.h")
|
|
|
|
|
(("\\| /bin/sh") "| sh"))
|
|
|
|
|
(let ((bash (assoc-ref inputs "bash")))
|
|
|
|
|
(substitute* '("scripts/Configure-eximon")
|
|
|
|
|
(("#!/bin/sh") (string-append "#!" bash "/bin/sh")))))
|
|
|
|
|
%standard-phases))
|
|
|
|
|
#:make-flags '("INSTALL_ARG=-no_chown")
|
|
|
|
|
;; No 'check' target.
|
|
|
|
|
#:tests? #f))
|
|
|
|
|
(home-page "http://www.exim.org/")
|
|
|
|
|
(synopsis
|
|
|
|
|
"Message Transfer Agent (MTA) developed at the University of Cambridge")
|
|
|
|
|
(description
|
|
|
|
|
"Exim is a message transfer agent (MTA) developed at the University of
|
|
|
|
|
Cambridge for use on Unix systems connected to the Internet. In style it is
|
|
|
|
|
similar to Smail 3, but its facilities are more general. There is a great
|
|
|
|
|
deal of flexibility in the way mail can be routed, and there are extensive
|
|
|
|
|
facilities for checking incoming mail.")
|
|
|
|
|
(license gpl2+)))
|
|
|
|
|
|
2015-04-23 10:58:58 +02:00
|
|
|
|
(define-public dovecot
|
|
|
|
|
(package
|
|
|
|
|
(name "dovecot")
|
2015-11-16 19:37:01 +01:00
|
|
|
|
(version "2.2.19")
|
2015-04-23 10:58:58 +02:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://www.dovecot.org/releases/"
|
|
|
|
|
(version-major+minor version) "/"
|
|
|
|
|
name "-" version ".tar.gz"))
|
|
|
|
|
(sha256 (base32
|
2015-11-16 19:37:01 +01:00
|
|
|
|
"17sf5aancad4pg1vx1606k99389wg76blpqzmnmxlz4hklzix7km"))))
|
2015-04-23 10:58:58 +02:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("openssl" ,openssl)
|
|
|
|
|
("zlib" ,zlib)
|
|
|
|
|
("bzip2" ,bzip2)
|
2015-12-14 14:10:07 +01:00
|
|
|
|
("sqlite" ,sqlite)
|
|
|
|
|
("linux-pam" ,linux-pam)))
|
2015-04-23 10:58:58 +02:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags '("--sysconfdir=/etc"
|
|
|
|
|
"--localstatedir=/var")
|
|
|
|
|
#:phases (modify-phases %standard-phases
|
|
|
|
|
(add-before
|
|
|
|
|
'configure 'pre-configure
|
|
|
|
|
(lambda _
|
|
|
|
|
;; Simple hack to avoid installing in /etc
|
|
|
|
|
(substitute* '("doc/Makefile.in"
|
|
|
|
|
"doc/example-config/Makefile.in")
|
|
|
|
|
(("pkgsysconfdir = .*")
|
|
|
|
|
"pkgsysconfdir = /tmp/etc"))
|
|
|
|
|
#t)))))
|
|
|
|
|
(home-page "http://www.dovecot.org")
|
|
|
|
|
(synopsis "Secure POP3/IMAP server")
|
|
|
|
|
(description
|
|
|
|
|
"Dovecot is a mail server whose major goals are security and reliability.
|
|
|
|
|
It supports mbox/Maildir and its own dbox/mdbox formats.")
|
|
|
|
|
;; Most source files are covered by either lgpl2.1 or expat. The SHA code
|
|
|
|
|
;; is covered by a variant of BSD-3, and UnicodeData.txt is covered by the
|
|
|
|
|
;; Unicode, Inc. License Agreement for Data Files and Software.
|
|
|
|
|
(license (list lgpl2.1 license:expat (non-copyleft "file://COPYING")))))
|
|
|
|
|
|
2015-03-11 12:42:56 +01:00
|
|
|
|
(define-public isync
|
|
|
|
|
(package
|
|
|
|
|
(name "isync")
|
2015-12-30 10:45:48 +01:00
|
|
|
|
(version "1.2.1")
|
2015-03-11 12:42:56 +01:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://sourceforge/isync/isync/"
|
|
|
|
|
version "/isync-" version ".tar.gz"))
|
|
|
|
|
(sha256 (base32
|
2015-12-30 10:45:48 +01:00
|
|
|
|
"1bij6nm06ghkg98n2pdyacam2fyg5y8f7ajw0d5653m0r4ldw5p7"))))
|
2015-03-11 12:42:56 +01:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
|
|
|
|
`(("bdb" ,bdb)
|
|
|
|
|
("openssl" ,openssl)))
|
|
|
|
|
(home-page "http://isync.sourceforge.net/")
|
|
|
|
|
(synopsis "Mailbox synchronization program")
|
|
|
|
|
(description
|
|
|
|
|
"isync/mbsync is command line tool for two-way synchronization of
|
|
|
|
|
mailboxes. Currently Maildir and IMAP are supported types.")
|
|
|
|
|
(license gpl2+)))
|
|
|
|
|
|
2015-04-06 19:22:20 +02:00
|
|
|
|
(define-public perl-email-abstract
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-email-abstract")
|
|
|
|
|
(version "3.008")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
|
|
|
|
|
"Email-Abstract-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0h42rhvp769wb421cpbbg6v6xjp8iv86mvz70pqgfgf4nsn6jwgw"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("perl-email-simple" ,perl-email-simple)
|
|
|
|
|
("perl-mro-compat" ,perl-mro-compat)))
|
|
|
|
|
(home-page "http://search.cpan.org/dist/Email-Abstract")
|
|
|
|
|
(synopsis "Interface to mail representations")
|
|
|
|
|
(description "Email::Abstract provides module writers with the ability to
|
|
|
|
|
write simple, representation-independent mail handling code.")
|
|
|
|
|
(license (package-license perl))))
|
|
|
|
|
|
2015-04-06 19:03:11 +02:00
|
|
|
|
(define-public perl-email-address
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-email-address")
|
|
|
|
|
(version "1.907")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
|
|
|
|
|
"Email-Address-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1ai4r149pzjv9dc2vddir8zylj0z1pii93rm4g591lx7avim71hx"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(home-page "http://search.cpan.org/dist/Email-Address")
|
|
|
|
|
(synopsis "Email address parsing and creation")
|
|
|
|
|
(description "Email::Address implements a regex-based RFC 2822 parser that
|
|
|
|
|
locates email addresses in strings and returns a list of Email::Address
|
|
|
|
|
objects found. Alternatively you may construct objects manually.")
|
|
|
|
|
(license (package-license perl))))
|
|
|
|
|
|
2015-04-06 19:05:32 +02:00
|
|
|
|
(define-public perl-email-date-format
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-email-date-format")
|
|
|
|
|
(version "1.005")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
|
|
|
|
|
"Email-Date-Format-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"012ivfwpnbl3wr50f9c6f4azhdlxnm31pdn72528g79v61z6372p"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(home-page "http://search.cpan.org/dist/Email-Date-Format")
|
|
|
|
|
(synopsis "Produce RFC 2822 date strings")
|
|
|
|
|
(description "Email::Date::Format provides a means for generating an RFC
|
|
|
|
|
2822 compliant datetime string.")
|
|
|
|
|
(license (package-license perl))))
|
|
|
|
|
|
2015-04-06 19:03:55 +02:00
|
|
|
|
(define-public perl-email-messageid
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-email-messageid")
|
|
|
|
|
(version "1.405")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
|
|
|
|
|
"Email-MessageID-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"09216naz21x99ff33wdm3j3zq1zhdbxhrsmx8bvavjrw3gjsvrq3"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(home-page "http://search.cpan.org/dist/Email-MessageID")
|
|
|
|
|
(synopsis "Generate world unique message-ids")
|
|
|
|
|
(description "Email::MessageID generates recommended message-ids to
|
|
|
|
|
identify a message uniquely.")
|
|
|
|
|
(license (package-license perl))))
|
|
|
|
|
|
2015-04-06 19:06:45 +02:00
|
|
|
|
(define-public perl-email-mime
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-email-mime")
|
|
|
|
|
(version "1.929")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
|
|
|
|
|
"Email-MIME-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1sf7dldg4dvicyw6dl1vx6s1gjq3fcppi0103ikl0vi6v5xjdjdh"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("perl-email-address" ,perl-email-address)
|
|
|
|
|
("perl-email-messageid" ,perl-email-messageid)
|
|
|
|
|
("perl-email-mime-contenttype" ,perl-email-mime-contenttype)
|
|
|
|
|
("perl-email-mime-encodings" ,perl-email-mime-encodings)
|
|
|
|
|
("perl-email-simple" ,perl-email-simple)
|
|
|
|
|
("perl-mime-types" ,perl-mime-types)))
|
|
|
|
|
(home-page "http://search.cpan.org/dist/Email-MIME")
|
|
|
|
|
(synopsis "MIME message handling")
|
|
|
|
|
(description "Email::MIME is an extension of the Email::Simple module, to
|
|
|
|
|
handle MIME encoded messages. It takes a message as a string, splits it up
|
|
|
|
|
into its constituent parts, and allows you access to various parts of the
|
|
|
|
|
message. Headers are decoded from MIME encoding.")
|
|
|
|
|
(license (package-license perl))))
|
|
|
|
|
|
2015-04-06 19:04:24 +02:00
|
|
|
|
(define-public perl-email-mime-contenttype
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-email-mime-contenttype")
|
|
|
|
|
(version "1.017")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
|
|
|
|
|
"Email-MIME-ContentType-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1cl1l97lg690dh7i704hqi7yhxalq1chy7ylld5yc5v38jqa6gcn"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("perl-capture-tiny" ,perl-capture-tiny)))
|
|
|
|
|
(home-page "http://search.cpan.org/dist/Email-MIME-ContentType")
|
|
|
|
|
(synopsis "Parse MIME Content-Type headers")
|
|
|
|
|
(description "Email::MIME::ContentType parses a MIME Content-Type
|
|
|
|
|
header.")
|
|
|
|
|
(license (package-license perl))))
|
|
|
|
|
|
2015-04-06 19:04:57 +02:00
|
|
|
|
(define-public perl-email-mime-encodings
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-email-mime-encodings")
|
|
|
|
|
(version "1.315")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
|
|
|
|
|
"Email-MIME-Encodings-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0p5b8g9gh35m8fqrpx60g4bp98rvwd02n5b0vm9wh7mk0xah8wac"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("perl-capture-tiny" ,perl-capture-tiny)))
|
|
|
|
|
(home-page "http://search.cpan.org/dist/Email-MIME-Encodings")
|
|
|
|
|
(synopsis "Unified interface to MIME encoding and decoding")
|
|
|
|
|
(description "This module wraps MIME::Base64 and MIME::QuotedPrint.")
|
|
|
|
|
(license (package-license perl))))
|
|
|
|
|
|
2015-04-06 19:24:21 +02:00
|
|
|
|
(define-public perl-email-sender
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-email-sender")
|
|
|
|
|
(version "1.300016")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
|
|
|
|
|
"Email-Sender-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"18x26fjh399q3s2g8dajb9r10633c46jrnbvycpnpclgnzhjs100"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("perl-capture-tiny" ,perl-capture-tiny)))
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("perl-email-abstract" ,perl-email-abstract)
|
|
|
|
|
("perl-email-address" ,perl-email-address)
|
|
|
|
|
("perl-email-simple" ,perl-email-simple)
|
|
|
|
|
("perl-list-moreutils" ,perl-list-moreutils)
|
|
|
|
|
("perl-module-runtime" ,perl-module-runtime)
|
|
|
|
|
("perl-moo" ,perl-moo)
|
|
|
|
|
("perl-moox-types-mooselike" ,perl-moox-types-mooselike)
|
|
|
|
|
("perl-sub-exporter" ,perl-sub-exporter)
|
|
|
|
|
("perl-throwable" ,perl-throwable)
|
|
|
|
|
("perl-try-tiny" ,perl-try-tiny)))
|
|
|
|
|
(home-page "http://search.cpan.org/dist/Email-Sender")
|
|
|
|
|
(synopsis "Perl library for sending email")
|
|
|
|
|
(description "Email::Sender replaces the old and sometimes problematic
|
|
|
|
|
Email::Send library.")
|
|
|
|
|
(license (package-license perl))))
|
|
|
|
|
|
2015-04-06 19:06:23 +02:00
|
|
|
|
(define-public perl-email-simple
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-email-simple")
|
|
|
|
|
(version "2.206")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
|
|
|
|
|
"Email-Simple-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"19dpy3j5na2k9qw1jcpc8ia25038068r9j1bn34f9yyrisz7s522"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("perl-email-date-format" ,perl-email-date-format)))
|
|
|
|
|
(home-page "http://search.cpan.org/dist/Email-Simple")
|
|
|
|
|
(synopsis "Parsing of RFC 2822 messages")
|
|
|
|
|
(description "Email::Simple provides simple parsing of RFC 2822 message
|
|
|
|
|
format and headers.")
|
|
|
|
|
(license (package-license perl))))
|
|
|
|
|
|
2015-11-03 15:46:33 +01:00
|
|
|
|
(define-public libesmtp
|
|
|
|
|
(package
|
|
|
|
|
(name "libesmtp")
|
|
|
|
|
(version "1.0.6")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://www.stafford.uklinux.net/libesmtp/libesmtp-"
|
|
|
|
|
version ".tar.bz2"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"02zbniyz7qys1jmx3ghx21kxmns1wc3hmv80gp7ag7yra9f1m9nh"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("openssl" ,openssl)))
|
|
|
|
|
(home-page "http://www.stafford.uklinux.net/libesmtp/")
|
|
|
|
|
(synopsis "Library for sending mail via remote hosts using SMTP")
|
|
|
|
|
(description "libESMTP is an SMTP client which manages posting (or
|
|
|
|
|
submission of) electronic mail via a preconfigured Mail Transport Agent (MTA).
|
|
|
|
|
It may be used as part of a Mail User Agent (MUA) or other program that must
|
|
|
|
|
be able to post electronic mail where mail functionality may not be that
|
|
|
|
|
program's primary purpose.")
|
|
|
|
|
(license (list lgpl2.1+ gpl2+))))
|
|
|
|
|
|
2015-11-03 15:46:44 +01:00
|
|
|
|
(define-public esmtp
|
|
|
|
|
(package
|
|
|
|
|
(name "esmtp")
|
|
|
|
|
(version "1.2")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/andywingo/esmtp.git")
|
|
|
|
|
(commit "01bf9fc")))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1ay282rrl92h0m0m8z5zzjnwiiagi7c78aq2qvhia5mw7prwfyw2"))
|
|
|
|
|
(file-name (string-append name "-" version "-checkout"))))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases (modify-phases %standard-phases
|
|
|
|
|
(add-before
|
|
|
|
|
'configure 'autoconf
|
|
|
|
|
(lambda _ (zero? (system* "autoreconf" "-vfi")))))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("bison" ,bison)
|
|
|
|
|
("flex" ,flex)
|
|
|
|
|
("autoconf" ,autoconf)
|
|
|
|
|
("automake" ,automake)
|
|
|
|
|
("libtool" ,libtool)))
|
|
|
|
|
(inputs
|
2015-11-04 01:01:38 +01:00
|
|
|
|
`(("libesmtp" ,libesmtp)))
|
2015-11-03 15:46:44 +01:00
|
|
|
|
(home-page "http://sourceforge.net/projects/esmtp/")
|
|
|
|
|
(synopsis "Relay-only mail transfer agent (MTA)")
|
|
|
|
|
(description "Esmtp is a simple relay-only mail transfer agent built using
|
|
|
|
|
libESMTP. It sends e-mail via a remote SMTP server using credentials from the
|
|
|
|
|
user's @file{$HOME/.esmtprc} configuration file; see the @command{esmtprc} man
|
|
|
|
|
page for more on configuration. This package also provides minimal
|
|
|
|
|
compatibility shims for the @command{sendmail}, @command{mailq}, and
|
|
|
|
|
@command{newaliases} commands.")
|
|
|
|
|
(license gpl2+)))
|
|
|
|
|
|
2016-01-18 20:25:16 +01:00
|
|
|
|
(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.
|
2016-01-19 16:54:18 +01:00
|
|
|
|
(non-copyleft "https://github.com/nicm/fdm/blob/master/command.c"))))
|
2016-01-18 20:25:16 +01:00
|
|
|
|
|
2014-02-19 05:08:04 +01:00
|
|
|
|
;;; mail.scm ends here
|