gnu: neomutt: Fix home page.
[jackhill/guix/guix.git] / gnu / packages / mail.scm
CommitLineData
a661e420 1;;; GNU Guix --- Functional package management for GNU
91f55717 2;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
ee2b2d2f 3;;; Copyright © 2014, 2015, 2017 Mark H Weaver <mhw@netris.org>
29a7c98a 4;;; Copyright © 2014 Ian Denhardt <ian@zenhack.net>
98e9e22f 5;;; Copyright © 2014 Sou Bunnbu <iyzsong@gmail.com>
f115d817 6;;; Copyright © 2014, 2019 Julien Lepiller <julien@lepiller.eu>
66cc3ab2 7;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
17dd4329 8;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org>
829785c1 9;;; Copyright © 2015, 2016, 2018 Eric Bavier <bavier@member.fsf.org>
2e88d113 10;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
91b36318 11;;; Copyright © 2015, 2016, 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
34dd26af 12;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
8a75c589 13;;; Copyright © 2016 Al McElrath <hello@yrns.org>
823e2ed4 14;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
e90819c4 15;;; Copyright © 2016 Lukas Gradl <lgradl@openmailbox.org>
99404fff 16;;; Copyright © 2016 Alex Kost <alezost@gmail.com>
3f81ca32 17;;; Copyright © 2016, 2017 Troy Sankey <sankeytms@gmail.com>
47956fa0 18;;; Copyright © 2016, 2017, 2018 ng0 <ng0@n0.is>
24262239 19;;; Copyright © 2016 Clément Lassieur <clement@lassieur.org>
f4f8c23b 20;;; Copyright © 2016, 2017, 2018, 2019 Arun Isaac <arunisaac@systemreboot.net>
5d87088c 21;;; Copyright © 2016 John Darrington <jmd@gnu.org>
8e020519 22;;; Copyright © 2016, 2018 Marius Bakke <mbakke@fastmail.com>
3e9750c3 23;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
6800c797 24;;; Copyright © 2017 Kyle Meyer <kyle@kyleam.com>
cda8250b 25;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
e9201659 26;;; Copyright © 2017, 2018 Rene Saavedra <pacoon@protonmail.com>
857fabcd 27;;; Copyright © 2018, 2019 Pierre Langlois <pierre.langlois@gmx.com>
c115a1c8 28;;; Copyright © 2018 Alex Vong <alexvong1995@gmail.com>
c315d370 29;;; Copyright © 2018 Gábor Boskovits <boskovits@gmail.com>
40864d79 30;;; Copyright © 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
82680f80 31;;; Copyright © 2019 Tanguy Le Carrour <tanguy@bioneland.org>
a661e420
LC
32;;;
33;;; This file is part of GNU Guix.
34;;;
35;;; GNU Guix is free software; you can redistribute it and/or modify it
36;;; under the terms of the GNU General Public License as published by
37;;; the Free Software Foundation; either version 3 of the License, or (at
38;;; your option) any later version.
39;;;
40;;; GNU Guix is distributed in the hope that it will be useful, but
41;;; WITHOUT ANY WARRANTY; without even the implied warranty of
42;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
43;;; GNU General Public License for more details.
44;;;
45;;; You should have received a copy of the GNU General Public License
46;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
47
1fdd3ee2 48(define-module (gnu packages mail)
59a43334 49 #:use-module (gnu packages)
1e1142d8 50 #:use-module (gnu packages admin)
b0eb2af2 51 #:use-module (gnu packages aspell)
d983a14f 52 #:use-module (gnu packages autotools)
e8435c4d 53 #:use-module (gnu packages backup)
938078a3 54 #:use-module (gnu packages base)
ee886454 55 #:use-module (gnu packages bash)
f8ae32a2 56 #:use-module (gnu packages bison)
fc9a93cb 57 #:use-module (gnu packages calendar)
ac257f12 58 #:use-module (gnu packages check)
938078a3 59 #:use-module (gnu packages compression)
944a5cdd 60 #:use-module (gnu packages crypto)
f58f767b 61 #:use-module (gnu packages curl)
4fd6bf53 62 #:use-module (gnu packages cyrus-sasl)
81ce19f4 63 #:use-module (gnu packages databases)
255d1bbe 64 #:use-module (gnu packages dbm)
d983a14f 65 #:use-module (gnu packages dejagnu)
8a3741e6 66 #:use-module (gnu packages django)
8b53366c 67 #:use-module (gnu packages dns)
938078a3 68 #:use-module (gnu packages docbook)
7a6213cb 69 #:use-module (gnu packages documentation)
d2938d59 70 #:use-module (gnu packages emacs)
e8435c4d 71 #:use-module (gnu packages enchant)
938078a3 72 #:use-module (gnu packages gdb)
aa20b004 73 #:use-module (gnu packages gettext)
938078a3 74 #:use-module (gnu packages ghostscript)
d2938d59 75 #:use-module (gnu packages glib)
e8435c4d 76 #:use-module (gnu packages gnome)
524e1df6 77 #:use-module (gnu packages gnupg)
152ffe7c 78 #:use-module (gnu packages groff)
d6e941bc 79 #:use-module (gnu packages gsasl)
e8435c4d 80 #:use-module (gnu packages gtk)
1ffa7090 81 #:use-module (gnu packages guile)
0791437f 82 #:use-module (gnu packages guile-xyz)
f8ae32a2 83 #:use-module (gnu packages flex)
b0eb2af2 84 #:use-module (gnu packages kerberos)
e8435c4d 85 #:use-module (gnu packages libcanberra)
8b53366c 86 #:use-module (gnu packages libevent)
d6e941bc 87 #:use-module (gnu packages libidn)
aef4c482 88 #:use-module (gnu packages libunistring)
d983a14f 89 #:use-module (gnu packages linux)
152ffe7c 90 #:use-module (gnu packages lua)
d983a14f 91 #:use-module (gnu packages m4)
938078a3 92 #:use-module (gnu packages man)
1ffa7090 93 #:use-module (gnu packages ncurses)
938078a3 94 #:use-module (gnu packages networking)
b0eb2af2 95 #:use-module (gnu packages openldap)
c315d370 96 #:use-module (gnu packages onc-rpc)
66cc3ab2 97 #:use-module (gnu packages pcre)
13f04f48 98 #:use-module (gnu packages perl)
f115d817 99 #:use-module (gnu packages perl-check)
eff3a9b2 100 #:use-module (gnu packages perl-web)
938078a3 101 #:use-module (gnu packages pkg-config)
3919a31a 102 #:use-module (gnu packages python)
1b2f753d 103 #:use-module (gnu packages python-web)
44d10b1f 104 #:use-module (gnu packages python-xyz)
1ffa7090 105 #:use-module (gnu packages readline)
938078a3 106 #:use-module (gnu packages ruby)
d2938d59 107 #:use-module (gnu packages search)
224b1c83 108 #:use-module (gnu packages serialization)
1bd3f849 109 #:use-module (gnu packages samba)
6cf27c89 110 #:use-module (gnu packages screen)
9d0c291e 111 #:use-module (gnu packages sphinx)
cd0322a3 112 #:use-module (gnu packages sqlite)
b0eb2af2 113 #:use-module (gnu packages tcl)
938078a3 114 #:use-module (gnu packages texinfo)
33dc54b0 115 #:use-module (gnu packages time)
a7fd7b68 116 #:use-module (gnu packages tls)
eff3a9b2 117 #:use-module (gnu packages version-control)
938078a3 118 #:use-module (gnu packages w3m)
be0c5733 119 #:use-module (gnu packages web)
7c16151a 120 #:use-module (gnu packages webkit)
3d88855d 121 #:use-module (gnu packages xdisorg)
e8435c4d 122 #:use-module (gnu packages xorg)
938078a3 123 #:use-module (gnu packages xml)
d983a14f 124 #:use-module ((guix licenses)
74c903ed
RW
125 #:select (fdl1.1+
126 agpl3+
127 gpl2 gpl2+ gpl3 gpl3+ lgpl2.1 lgpl2.1+ lgpl3+
24262239 128 non-copyleft (expat . license:expat) bsd-3
8b53366c 129 public-domain bsd-4 isc (openssl . license:openssl)
2f3108ad 130 bsd-2 x11-style agpl3 asl2.0 perl-license))
a661e420
LC
131 #:use-module (guix packages)
132 #:use-module (guix download)
f8ae32a2 133 #:use-module (guix git-download)
29a7c98a 134 #:use-module (guix utils)
681a6588 135 #:use-module (guix build-system gnu)
e3a47031 136 #:use-module (guix build-system guile)
ebda902f 137 #:use-module (guix build-system perl)
24262239
CL
138 #:use-module (guix build-system python)
139 #:use-module (guix build-system trivial))
a661e420
LC
140
141(define-public mailutils
142 (package
143 (name "mailutils")
c6a99354 144 (version "3.7")
a661e420
LC
145 (source (origin
146 (method url-fetch)
147 (uri (string-append "mirror://gnu/mailutils/mailutils-"
20a3df0f 148 version ".tar.xz"))
a661e420
LC
149 (sha256
150 (base32
c6a99354 151 "1gwajsl39f1dkzrjld0dm9px8hrj7l7rwzazz00h5rwghk9mhwhq"))))
a661e420
LC
152 (build-system gnu-build-system)
153 (arguments
de75f0b1
EF
154 '(#:phases
155 (modify-phases %standard-phases
baa6790b 156 (add-before 'check 'prepare-test-suite
de75f0b1
EF
157 (lambda _
158 ;; Use the right file name for `cat'.
159 (substitute* "testsuite/lib/mailutils.exp"
160 (("/bin/cat")
161 (which "cat")))
14253017 162
de75f0b1
EF
163 ;; Tests try to invoke 'maidag' such that it looks up the
164 ;; 'root' user, which does not exist in the build
165 ;; environment.
166 (substitute* "maidag/tests/testsuite"
167 (("root <") "nobody <")
168 (("spool/root") "spool/nobody")
169 (("root@localhost") "nobody@localhost"))
14253017 170
de75f0b1
EF
171 ;; The 'pipeact.at' tests generate a shell script; make
172 ;; sure it uses the right shell.
173 (substitute* '("sieve/tests/testsuite"
174 "mh/tests/testsuite")
175 (("#! /bin/sh")
176 (string-append "#!" (which "sh"))))
14253017 177
de75f0b1
EF
178 (substitute* "mh/tests/testsuite"
179 (("moreproc: /bin/cat")
180 (string-append "moreproc: " (which "cat"))))
14253017 181
de75f0b1
EF
182 ;; XXX: The comsatd tests rely on being able to open
183 ;; /dev/tty, but that gives ENODEV in the build
184 ;; environment. Thus, ignore test failures here.
185 (substitute* "comsat/tests/Makefile.in"
186 (("\\$\\(SHELL\\) \\$\\(TESTSUITE\\)" all)
187 (string-append "-" all)))
14253017 188
baa6790b
LC
189 ;; 'frm' tests expect write access to $HOME.
190 (setenv "HOME" (getcwd))
191
192 ;; Avoid the message "I'm going to create the standard MH path
193 ;; for you", which would lead to one test failure (when diffing
194 ;; stdout of 'fmtcheck'.)
195 (call-with-output-file ".mh_profile"
196 (lambda (port)
197 (format port "Path: ~a/Mail-for-tests~%"
198 (getcwd))))
199
de75f0b1
EF
200 #t)))
201 ;; TODO: Add `--with-sql'.
ac3b4b12
LC
202 #:configure-flags (list "--sysconfdir=/etc"
203
204 ;; Add "/2.2" to the installation directory.
205 (string-append "--with-guile-site-dir="
206 (assoc-ref %outputs "out")
207 "/share/guile/site/2.2"))
208
a661e420 209 #:parallel-tests? #f))
3f3c0ab4 210 (native-inputs
20a3df0f 211 `(("perl" ,perl))) ;for 'gylwrap'
a661e420
LC
212 (inputs
213 `(("dejagnu" ,dejagnu)
214 ("m4" ,m4)
215 ("texinfo" ,texinfo)
20a3df0f 216 ("guile" ,guile-2.2)
1f889cac 217 ("gsasl" ,gsasl)
a661e420
LC
218 ("gnutls" ,gnutls)
219 ("ncurses" ,ncurses)
abe5d2dc 220 ("readline" ,readline)
a661e420 221 ("linux-pam" ,linux-pam)
3246cc91 222 ("libltdl" ,libltdl)
aef4c482
TGR
223 ("gdbm" ,gdbm)
224
225 ;; Required for SEARCH CHARSET.
226 ("libiconv" ,libiconv)
227 ("libunistring" ,libunistring)))
6fd52309 228 (home-page "https://mailutils.org")
f50d2669 229 (synopsis "Utilities and library for reading and serving mail")
a661e420 230 (description
79c311b8
LC
231 "GNU Mailutils is a collection of programs for managing, viewing and
232processing electronic mail. It contains both utilities and server daemons
233and all operate in a protocol-agnostic way. The underlying libraries are
234also available, simplifying the addition of mail capabilities to new
235software.")
a661e420
LC
236 (license
237 ;; Libraries are under LGPLv3+, and programs under GPLv3+.
238 (list gpl3+ lgpl3+))))
d983a14f 239
1e1142d8
TGR
240(define-public nullmailer
241 (package
242 (name "nullmailer")
243 (version "2.2")
244 (source
245 (origin
246 (method url-fetch)
247 (uri (list
248 (string-append "https://untroubled.org/nullmailer/"
249 "nullmailer-" version ".tar.gz")
250 ;; Previous releases are moved to this subdirectory.
251 (string-append "https://untroubled.org/nullmailer/archive/"
252 "nullmailer-" version ".tar.gz")))
253 (sha256
254 (base32 "0md8cf90fl2yf3zh9njjy42a673v4j4ygyq95xg7fzkygdigm1lq"))))
255 (build-system gnu-build-system)
256 (arguments
257 `(#:configure-flags
258 (list "--enable-tls"
259 "--localstatedir=/var"
260 "--sysconfdir=/etc")
261 #:phases
262 (modify-phases %standard-phases
263 (add-before 'check 'patch-test-FHS-file-names
264 (lambda _
265 (with-directory-excursion "test"
266 (substitute* (list "functions.in"
267 "tests/send")
268 ;; Fix some shebangs later generated on the fly.
269 (("/bin/sh") (which "bash"))))
270 #t))
271 (add-before 'check 'pass-PATH-to-tests
272 ;; ‘runtest’ launches each test through ‘env -’, clearing $PATH. The
273 ;; tests then source ‘functions’, which first demands a working $PATH
274 ;; only to clobber it later. Pass our $PATH to the test environment
275 ;; and don't touch it after that.
276 (lambda _
277 (with-directory-excursion "test"
278 (substitute* "runtests"
279 (("env - bash")
280 (string-append "env - PATH=\"" (getenv "PATH") "\" bash")))
281 (substitute* "functions.in"
282 (("export PATH=.*") "")))
283 #t))
284 (add-before 'check 'delete-failing-tests
285 (lambda _
286 (with-directory-excursion "test/tests"
287 (for-each delete-file
288 (list
289 ;; XXX ‘nullmailer-inject: nullmailer-queue failed: 15’
290 "inject/queue"
291 ;; XXX These require the not-yet-packaged tcpserver.
292 "protocols" "smtp-auth")))
293 #t))
294 (add-before 'install 'skip-install-data-local
295 ;; Don't attempt to install run-time files outside of the store.
296 (lambda _
297 (substitute* "Makefile"
298 ((" install-data-local") ""))
299 #t)))))
300 (native-inputs
301 ;; For tests.
302 `(("daemontools" ,daemontools))) ; for svc
303 (inputs
304 `(("gnutls" ,gnutls)))
305 (home-page "https://untroubled.org/nullmailer/")
306 (synopsis "Simple relay-only mail transfer agent")
307 (description
308 "Nullmailer is a simple replacement @acronym{MTA, Mail Transfer Agent} for
309hosts that receive no local mail and only relay mail to a fixed set of smart
310relays. It's useful for systems such as Web servers that must be able to send
311email notifications, without having to run a full-blown MTA such as sendmail
312or qmail.
313
314Nullmailer is designed to be simple to configure, easy to extend, and secure.
315It requires little ongoing administration. The included @command{sendmail}
316emulator front-end should allow most (if not all) sendmail-compatible programs
317to run without any changes.")
318 (license (list lgpl2.1+ ; lib/cli++/ (but some files lack headers)
319 gpl2+)))) ; everything else
320
d983a14f
AE
321(define-public fetchmail
322 (package
323 (name "fetchmail")
271b3c9d
TGR
324 (version "6.4.1")
325 (source
326 (origin
327 (method url-fetch)
328 (uri (string-append "mirror://sourceforge/fetchmail/branch_"
329 (version-major+minor version) "/"
330 "fetchmail-" version ".tar.xz"))
331 (sha256
332 (base32 "1859wvfc9fq72mwp4njdiy0x89hnddlfr3nix71qqglcs0fz2crz"))))
d983a14f
AE
333 (build-system gnu-build-system)
334 (inputs
335 `(("openssl" ,openssl)))
336 (arguments
271b3c9d
TGR
337 `(#:configure-flags
338 (list (string-append "--with-ssl="
339 (assoc-ref %build-inputs "openssl")))
340 #:phases
341 (modify-phases %standard-phases
342 (add-before 'check 'create-test-environment
343 (lambda _
344 ;; Fix ‘Cannot find absolute path for user's home directory’.
345 (setenv "HOME" "/tmp")
346 #t)))))
447b61d4 347 (home-page "https://www.fetchmail.info/")
ae2189a9 348 (synopsis "Remote-mail retrieval and forwarding utility")
d983a14f
AE
349 (description
350 "Fetchmail is a full-featured, robust, well-documented remote-mail
351retrieval and forwarding utility intended to be used over on-demand
352TCP/IP links (such as SLIP or PPP connections). It supports every
353remote-mail protocol now in use on the Internet: POP2, POP3, RPOP, APOP,
354KPOP, all flavors of IMAP, ETRN, and ODMR. It can even support IPv6
355and IPSEC.
356
357Fetchmail retrieves mail from remote mail servers and forwards it via SMTP,
358so it can then be read by normal mail user agents such as mutt, elm
359or BSD Mail. It allows all your system MTA's filtering, forwarding, and
360aliasing facilities to work just as they would on normal mail.")
361 (license gpl2+))) ; most files are actually public domain or x11
13f04f48
AE
362
363(define-public mutt
364 (package
365 (name "mutt")
9dd5249e 366 (version "1.13.2")
13f04f48
AE
367 (source (origin
368 (method url-fetch)
a101b15b
EF
369 (uri (list
370 (string-append "ftp://ftp.mutt.org/pub/mutt/mutt-"
371 version ".tar.gz")
372 (string-append "https://bitbucket.org/mutt/mutt/downloads/"
373 "mutt-" version ".tar.gz")))
13f04f48
AE
374 (sha256
375 (base32
9dd5249e 376 "0x4yfvk8415p80h9an242n6q3b43mw6mnnczh95zd3j0zwdr6wrg"))
fc1adab1 377 (patches (search-patches "mutt-store-references.patch"))))
13f04f48
AE
378 (build-system gnu-build-system)
379 (inputs
4fd6bf53 380 `(("cyrus-sasl" ,cyrus-sasl)
b0bb0136 381 ("gdbm" ,gdbm)
524e1df6 382 ("gpgme" ,gpgme)
4fd6bf53 383 ("ncurses" ,ncurses)
13f04f48
AE
384 ("openssl" ,openssl)
385 ("perl" ,perl)))
386 (arguments
387 `(#:configure-flags '("--enable-smtp"
388 "--enable-imap"
389 "--enable-pop"
524e1df6 390 "--enable-gpgme"
b0bb0136 391 "--enable-hcache" ; for header caching
0323fe80 392 "--enable-sidebar"
13f04f48 393 "--with-ssl"
4fd6bf53 394 "--with-sasl"
13f04f48
AE
395 ;; so that mutt does not check whether the path
396 ;; exists, which it does not in the chroot
397 "--with-mailpath=/var/mail")))
398 (home-page "http://www.mutt.org/")
399 (synopsis "Mail client")
400 (description
401 "Mutt is a small but very powerful text-based mail client for Unix
402operating systems.")
403 (license gpl2+)))
681a6588 404
7596ddf3 405(define-public neomutt
d54a759d
TGR
406 (package
407 (name "neomutt")
d7df48fa 408 (version "20191207")
d54a759d
TGR
409 (source
410 (origin
411 (method git-fetch)
412 (uri (git-reference
413 (url "https://github.com/neomutt/neomutt.git")
414 (commit version)))
415 (file-name (git-file-name name version))
416 (sha256
d7df48fa 417 (base32 "147yjpqnsbfy01fhsflxlixk0985r91a6bjmqq3cwmf7gka3sihm"))))
d54a759d
TGR
418 (build-system gnu-build-system)
419 (inputs
420 `(("cyrus-sasl" ,cyrus-sasl)
421 ("gdbm" ,gdbm)
422 ("gpgme" ,gpgme)
423 ("ncurses" ,ncurses)
424 ("gnutls" ,gnutls)
425 ("openssl" ,openssl) ; for S/MIME
426 ("perl" ,perl)
427 ("kyotocabinet" ,kyotocabinet)
428 ("libxslt" ,libxslt)
429 ("libidn2" ,libidn2)
430 ("libxml2" ,libxml2)
431 ("lmdb" ,lmdb)
432 ("notmuch" ,notmuch)))
433 (native-inputs
434 `(("automake" ,automake)
435 ("gettext-minimal" ,gettext-minimal)
436 ("pkg-config" ,pkg-config)
437 ("docbook-xsl" ,docbook-xsl)
438 ("docbook-xml" ,docbook-xml-4.2)
439 ("w3m" ,w3m)
440 ("tcl" ,tcl)))
441 (arguments
442 `(#:test-target "test"
443 #:configure-flags
444 (list "--gpgme"
7596ddf3 445
d54a759d
TGR
446 ;; Database, implies header caching.
447 "--disable-tokyocabinet"
448 "--disable-qdbm"
449 "--disable-bdb"
450 "--lmdb"
451 "--kyotocabinet"
54a402dd 452
d54a759d 453 "--gdbm"
54a402dd 454
d54a759d
TGR
455 "--gnutls"
456 "--disable-ssl"
457 "--sasl"
458 (string-append "--with-sasl="
459 (assoc-ref %build-inputs "cyrus-sasl"))
7596ddf3 460
7596ddf3 461
d54a759d
TGR
462 "--smime"
463 "--notmuch"
464 "--disable-idn"
465 "--idn2"
7596ddf3 466
d54a759d
TGR
467 ;; If we do not set this, neomutt wants to check
468 ;; whether the path exists, which it does not
469 ;; in the chroot.
470 "--with-mailpath=/var/mail"
7596ddf3 471
d54a759d
TGR
472 "--with-ui=ncurses"
473 (string-append "--with-ncurses="
474 (assoc-ref %build-inputs "ncurses"))
475 (string-append "--prefix="
476 (assoc-ref %outputs "out"))
477 "--debug")
478 #:phases
479 (modify-phases %standard-phases
480 ;; TODO: autosetup is meant to be included in the source,
481 ;; but we should package autosetup and use our own version of it.
482 (replace 'configure
483 (lambda* (#:key outputs inputs configure-flags #:allow-other-keys)
484 (let* ((out (assoc-ref outputs "out"))
485 (flags `(,@configure-flags))
486 (bash (which "bash")))
487 (setenv "SHELL" bash)
488 (setenv "CONFIG_SHELL" bash)
489 (apply invoke bash
490 (string-append (getcwd) "/configure")
491 flags)))))))
c3c56a4e 492 (home-page "https://neomutt.org/")
d54a759d
TGR
493 (synopsis "Command-line mail reader based on Mutt")
494 (description
495 "NeoMutt is a command-line mail reader which is based on mutt.
32fc1ec3 496It adds a large amount of new and improved features to mutt.")
d54a759d 497 (license gpl2+)))
7596ddf3 498
681a6588
MW
499(define-public gmime
500 (package
501 (name "gmime")
d98438e6 502 (version "3.2.5")
681a6588
MW
503 (source (origin
504 (method url-fetch)
75630043 505 (uri (string-append "mirror://gnome/sources/gmime/"
29a7c98a 506 (version-major+minor version)
681a6588
MW
507 "/gmime-" version ".tar.xz"))
508 (sha256
509 (base32
d98438e6 510 "0ndsg1z1kq4w4caascydvialpyn4rfbjdn7xclzbzhw53x85cxgv"))))
681a6588
MW
511 (build-system gnu-build-system)
512 (native-inputs
513 `(("pkg-config" ,pkg-config)
514 ("gnupg" ,gnupg))) ; for tests only
515 (inputs `(("glib" ,glib)
516 ("gpgme" ,gpgme)
517 ("zlib" ,zlib)))
518 (arguments
519 `(#:phases
cc955356
EF
520 (modify-phases %standard-phases
521 (add-after
522 'unpack 'patch-paths-in-tests
523 (lambda _
524 ;; The test programs run several programs using 'system' with
ae83dcf6 525 ;; hard-coded paths. Here we patch them all.
526 ;; We use ISO-8859-1 here because test-iconv.c contains
cc955356
EF
527 ;; raw byte sequences in several different encodings.
528 (with-fluids ((%default-port-encoding #f))
529 (substitute* (find-files "tests" "\\.c$")
530 (("(system *\\(\")(/[^ ]*)" all pre prog-path)
531 (let* ((base (basename prog-path))
ae83dcf6 532 (prog (which base)))
cc955356 533 (string-append pre
8e020519
MB
534 (or prog (error "not found: " base)))))))
535 #t)))))
681a6588
MW
536 (home-page "http://spruce.sourceforge.net/gmime/")
537 (synopsis "MIME message parser and creator library")
538 (description
539 "GMime provides a core library and set of utilities which may be used for
540the creation and parsing of messages using the Multipurpose Internet Mail
541Extension (MIME).")
542 (license (list lgpl2.1+ gpl2+ gpl3+))))
543
8e020519
MB
544;; Some packages are not ready for GMime 3 yet.
545(define-public gmime-2.6
546 (package
547 (inherit gmime)
548 (version "2.6.23")
549 (source (origin
550 (method url-fetch)
551 (uri (string-append "mirror://gnome/sources/gmime/"
552 (version-major+minor version)
553 "/gmime-" version ".tar.xz"))
554 (sha256
555 (base32
556 "0slzlzcr3h8jikpz5a5amqd0csqh2m40gdk910ws2hnaf5m6hjbi"))))))
557
a7e59c50
LC
558(define-public bogofilter
559 (package
560 (name "bogofilter")
2665ff41
TGR
561 (version "1.2.5")
562 (source
563 (origin
564 (method url-fetch)
565 (uri (string-append "mirror://sourceforge/bogofilter/bogofilter-stable/"
566 "bogofilter-" version ".tar.xz"))
567 (sha256
568 (base32 "1sl9xrnnlk2sn8gmibhn8li09vnansjbxb9l1182qmgz7cvs2j1j"))))
a7e59c50
LC
569 (build-system gnu-build-system)
570 (arguments
c55fa42b
EF
571 '(#:phases
572 (modify-phases %standard-phases
573 (add-before 'check 'pre-check
574 (lambda _
575 (substitute* "src/tests/t.frame"
576 (("GREP=/bin/grep")
577 (string-append "GREP=" (which "grep") "\n")))
578 #t)))))
a7e59c50
LC
579 (native-inputs `(("flex" ,flex)))
580 (inputs `(("bdb" ,bdb)))
0ba57558 581 (home-page "https://bogofilter.sourceforge.io/")
a7e59c50
LC
582 (synopsis "Mail classifier based on a Bayesian filter")
583 (description
584 "Bogofilter is a mail filter that classifies mail as spam or ham
585 (non-spam) by a statistical analysis of the message's header and
586content (body). The program is able to learn from the user's classifications
587and corrections. It is based on a Bayesian filter.")
2665ff41 588 (license gpl3+)))
a7e59c50 589
3919a31a
EB
590(define-public offlineimap
591 (package
592 (name "offlineimap")
6c98d9c7 593 (version "7.2.4")
3919a31a 594 (source (origin
bc7c9f77
MB
595 (method git-fetch)
596 (uri (git-reference
597 (url "https://github.com/OfflineIMAP/offlineimap")
598 (commit (string-append "v" version))))
599 (file-name (git-file-name name version))
3919a31a
EB
600 (sha256
601 (base32
6c98d9c7 602 "0h5q5nk2p2vx86w6rrbs7v70h81dpqqr68x6l3klzl3m0yj9agb1"))))
3919a31a 603 (build-system python-build-system)
7a6213cb 604 (native-inputs
4b0e6367 605 `(("asciidoc" ,asciidoc)))
a4ea25d3
EF
606 (inputs `(("python2-pysqlite" ,python2-pysqlite)
607 ("python2-six" ,python2-six)))
3919a31a
EB
608 (arguments
609 ;; The setup.py script expects python-2.
610 `(#:python ,python-2
611 ;; Tests require a modifiable IMAP account.
42aa73b3
EF
612 #:tests? #f
613 #:phases
614 (modify-phases %standard-phases
7a6213cb
MB
615 (add-after 'build 'build-documentation
616 (lambda _
617 (substitute* "docs/Makefile"
618 ;; Prevent xmllint and xsltproc from downloading a DTD file.
619 (("a2x -v") "a2x --no-xmllint --xsltproc-opts=--nonet -v"))
7232c3f5 620 (invoke "make" "-C" "docs" "man")))
7a6213cb
MB
621 (add-after 'install 'install-documentation
622 (lambda* (#:key outputs #:allow-other-keys)
623 (let* ((out (assoc-ref outputs "out"))
624 (man (string-append out "/share/man")))
625 (install-file "docs/offlineimap.1" (string-append man "/man1"))
626 (install-file "docs/offlineimapui.7" (string-append man "/man7"))
42aa73b3 627 #t))))))
684633e2 628 (home-page "https://www.offlineimap.org")
31e98ca6 629 (synopsis "Sync emails between two repositories")
3919a31a
EB
630 (description
631 "OfflineImap synchronizes emails between two repositories, so that you
632can read the same mailbox from multiple computers. It supports IMAP as REMOTE
633repository and Maildir/IMAP as LOCAL repository.")
7886e23b 634 (license gpl2+)))
3919a31a 635
3e9750c3
TD
636(define-public emacs-mew
637 (package
638 (name "emacs-mew")
611a6980 639 (version "6.8")
3e9750c3
TD
640 (source (origin
641 (method url-fetch)
8502ff7a 642 (uri (string-append "https://mew.org/Release/mew-"
3e9750c3
TD
643 version ".tar.gz"))
644 (sha256
645 (base32
611a6980 646 "0ixzyq33l6j34410kqav3lwn2wx171zvqd3irvns2jvhrbww8i6g"))))
3e9750c3
TD
647 (native-inputs
648 `(("emacs" ,emacs)))
649 (propagated-inputs
650 `(("ruby-sqlite3" ,ruby-sqlite3) ; optional for the database of messages
651 ("ruby" ,ruby))) ; to set GEM_PATH so ruby-sqlite3 is found at runtime
652 (build-system gnu-build-system)
653 (arguments
654 (let ((elisp-dir "/share/emacs/site-lisp/guix.d/mew")
655 (icon-dir "/share/mew"))
656 `(#:modules ((guix build gnu-build-system)
657 (guix build utils)
658 (guix build emacs-utils))
659 #:imported-modules (,@%gnu-build-system-modules
660 (guix build emacs-utils))
661 #:configure-flags
662 (list (string-append "--with-elispdir=" %output ,elisp-dir)
663 (string-append "--with-etcdir=" %output ,icon-dir))
664 #:phases
665 (modify-phases %standard-phases
666 (add-after 'configure 'patch-mew-icon-directory
667 (lambda* (#:key outputs #:allow-other-keys)
668 (emacs-substitute-sexps "mew-key.el"
669 ("(def.* mew-icon-directory"
670 `(progn
671 (add-to-list 'image-load-path 'mew-icon-directory)
672 ,(string-append (assoc-ref outputs "out") ,icon-dir))))
673 #t))
674 (add-after 'install 'generate-autoloads
675 (lambda* (#:key outputs #:allow-other-keys)
676 (emacs-generate-autoloads
677 "mew" (string-append (assoc-ref outputs "out") ,elisp-dir))
678 #t)))
679 #:tests? #f)))
8502ff7a 680 (home-page "https://mew.org")
3e9750c3
TD
681 (synopsis "Emacs e-mail client")
682 (description "Mew (Messaging in the Emacs World) is a user interface
683for text messages, multimedia messages (MIME), news articles and
684security functionality including PGP, S/MIME, SSH, and SSL.")
685 (license bsd-3)))
686
d2938d59
EB
687(define-public mu
688 (package
689 (name "mu")
857fabcd 690 (version "1.2.0")
d2938d59
EB
691 (source (origin
692 (method url-fetch)
e7b9da24 693 (uri (string-append "https://github.com/djcb/mu/releases/"
857fabcd
PL
694 "download/" (version-major+minor version) "/"
695 "mu-" version ".tar.xz"))
d2938d59
EB
696 (sha256
697 (base32
857fabcd 698 "0fh5bxvhjqv1p9z783lym8y1k3p4jcc3wg6wf7zl8s6w8krcfd7n"))))
d2938d59
EB
699 (build-system gnu-build-system)
700 (native-inputs
701 `(("pkg-config" ,pkg-config)
9fd571a2 702 ("glib" ,glib "bin") ; for gtester
63298f14 703 ("emacs" ,emacs-minimal)
857fabcd 704 ("tzdata" ,tzdata-for-tests))) ; for mu/test/test-mu-query.c
d2938d59
EB
705 ;; TODO: Add webkit and gtk to build the mug GUI.
706 (inputs
707 `(("xapian" ,xapian)
d59ec129 708 ("guile" ,guile-2.2)
d2938d59 709 ("glib" ,glib)
857fabcd 710 ("gmime" ,gmime)))
d2938d59 711 (arguments
704f2196
AK
712 `(#:modules ((guix build gnu-build-system)
713 (guix build utils)
714 (guix build emacs-utils))
715 #:imported-modules (,@%gnu-build-system-modules
716 (guix build emacs-utils))
717 #:phases
99404fff 718 (modify-phases %standard-phases
e62e975b 719 (add-after 'unpack 'patch-configure
789bda83
AK
720 ;; By default, elisp code goes to "share/emacs/site-lisp/mu4e",
721 ;; so our Emacs package can't find it. Setting "--with-lispdir"
722 ;; configure flag doesn't help because "mu4e" will be added to
723 ;; the lispdir anyway, so we have to modify "configure.ac".
724 (lambda _
e62e975b 725 (substitute* "configure"
d59ec129
RW
726 (("^ +lispdir=\"\\$\\{lispdir\\}/mu4e/\".*") "")
727 ;; Use latest Guile
728 (("guile-2.0") "guile-2.2"))
729 (substitute* '("guile/Makefile.in"
730 "guile/mu/Makefile.in")
731 (("share/guile/site/2.0/") "share/guile/site/2.2/"))
789bda83 732 #t))
3481c714
MC
733 (add-after 'patch-configure 'fix-date-tests
734 ;; Loosen test tolerances to prevent failures caused by daylight
735 ;; saving time (DST). See: https://github.com/djcb/mu/issues/1214.
736 (lambda _
737 (substitute* "lib/parser/test-utils.cc"
738 (("\\* 60 \\* 60, 1 },")
739 "* 60 * 60, 3600 + 1 },"))
740 #t))
c9dc4577
RW
741 (add-before 'install 'fix-ffi
742 (lambda* (#:key outputs #:allow-other-keys)
743 (substitute* "guile/mu.scm"
744 (("\"libguile-mu\"")
745 (format #f "\"~a/lib/libguile-mu\""
746 (assoc-ref outputs "out"))))
747 #t))
99404fff
AK
748 (add-before 'check 'check-tz-setup
749 (lambda* (#:key inputs #:allow-other-keys)
750 ;; For mu/test/test-mu-query.c
751 (setenv "TZDIR"
752 (string-append (assoc-ref inputs "tzdata")
753 "/share/zoneinfo"))
704f2196
AK
754 #t))
755 (add-after 'install 'install-emacs-autoloads
756 (lambda* (#:key outputs #:allow-other-keys)
757 (emacs-generate-autoloads
758 "mu4e"
759 (string-append (assoc-ref outputs "out")
760 "/share/emacs/site-lisp"))
99404fff 761 #t)))))
d2938d59
EB
762 (home-page "http://www.djcbsoftware.nl/code/mu/")
763 (synopsis "Quickly find emails")
764 (description
765 "Mu is a tool for dealing with e-mail messages stored in the
766Maildir-format. Mu's purpose in life is to help you to quickly find the
767messages you need; in addition, it allows you to view messages, extract
768attachments, create new maildirs, and so on.")
769 (license gpl3+)))
770
c7b2b539
LC
771(define mumimu
772 ;; This is a fork of mu for use in Mumi that stores message bug IDs in its
773 ;; database. It also renames the library to "mumimu" to avoid confusion.
774 (let ((commit "ad30b5e9c85f0465aeeeac461d8c32d95775d450")
775 (revision "1"))
776 (package
777 (inherit mu)
778 (name "mumimu")
03460d2b
CB
779 ;; TODO The version here used to be (package-version guile-email), but
780 ;; that code caused problems
781 (version (git-version "0.2.2" revision commit))
c7b2b539
LC
782 (source (origin
783 (method git-fetch)
784 (uri (git-reference
785 (url "https://git.elephly.net/software/mumimu.git")
786 (commit commit)))
787 (file-name (git-file-name name version))
788 (sha256
789 (base32
790 "1y8r8csvkyxncgpi469dir4n4sga4z9xdzc18qh5s8bk29qj689n"))))
791 (arguments
792 (substitute-keyword-arguments (package-arguments mu)
793 ((#:tests? anything '())
794 #f)
795 ((#:phases phases)
796 `(modify-phases ,phases
797 (replace 'patch-configure
798 (lambda _
799 (delete-file "autogen.sh")
800 (substitute* "configure.ac"
801 ;; Use latest Guile
802 (("guile-2.0") "guile-2.2"))
803 (substitute* '("guile/Makefile.am"
804 "guile/mu/Makefile.am")
805 (("share/guile/site/2.0/") "share/guile/site/2.2/"))
806 #t))
807 (replace 'fix-ffi
808 (lambda* (#:key outputs #:allow-other-keys)
809 (substitute* "guile/mumimu.scm"
810 (("\"libguile-mu\"")
811 (format #f "\"~a/lib/libguile-mumimu\""
812 (assoc-ref outputs "out"))))
813 #t))
814 (delete 'install-emacs-autoloads)))
815 ((#:configure-flags flags)
816 '("--disable-gtk"
817 "--disable-webkit"
818 "--disable-mu4e"))))
819 (native-inputs
820 `(("pkg-config" ,pkg-config)
821 ("autoconf" ,autoconf)
822 ("automake" ,automake)
823 ("libtool" ,libtool)
824 ("glib" ,glib "bin")
825 ("tzdata" ,tzdata-for-tests)
826 ("texinfo" ,texinfo))))))
827
a2cb16b0
TS
828(define-public alot
829 (package
830 (name "alot")
3f81ca32 831 (version "0.5.1")
a2cb16b0
TS
832 (source (origin
833 (method url-fetch)
1b94f182
TS
834 ;; package author intends on distributing via github rather
835 ;; than pypi:
836 ;; https://github.com/pazz/alot/issues/877#issuecomment-230173331
a2cb16b0
TS
837 (uri (string-append "https://github.com/pazz/alot/archive/"
838 version ".tar.gz"))
839 (file-name (string-append "alot-" version ".tar.gz"))
840 (sha256
841 (base32
3f81ca32 842 "0wax30hjzmkqfml7hig1dqw1v1y63yc0cgbzl96x58b9h2ggqx3a"))))
a2cb16b0
TS
843 (build-system python-build-system)
844 (arguments
3f81ca32 845 `(;; python 3 is currently unsupported, more info:
fe3b8862 846 ;; https://github.com/pazz/alot/blob/master/docs/source/faq.rst
a2cb16b0 847 #:python ,python-2))
3f81ca32
TS
848 (native-inputs
849 `(("python2-mock" ,python2-mock)))
a2cb16b0
TS
850 (inputs
851 `(("python2-magic" ,python2-magic)
852 ("python2-configobj" ,python2-configobj)
853 ("python2-twisted" ,python2-twisted)
854 ("python2-urwid" ,python2-urwid)
855 ("python2-urwidtrees" ,python2-urwidtrees)
856 ("python2-pygpgme" ,python2-pygpgme)
857 ("python2-notmuch" ,python2-notmuch)))
858 (home-page "https://github.com/pazz/alot")
cfcfc6ab 859 (synopsis "Command-line MUA using @code{notmuch}")
a2cb16b0 860 (description
cfcfc6ab 861 "Alot is an experimental terminal mail user agent (@dfn{MUA}) based on
a2cb16b0
TS
862@code{notmuch} mail. It is written in Python using the @code{urwid} toolkit.")
863 (license gpl3+)))
864
0350a8bb
HG
865(define-public notifymuch
866 (let
867 ((commit "9d4aaf54599282ce80643b38195ff501120807f0")
868 (revision "1"))
869 (package
870 (name "notifymuch")
871 (version (string-append "0.1-" revision "." (string-take commit 7)))
872 (source
873 (origin
874 (method git-fetch)
875 (uri (git-reference
876 (url "https://github.com/kspi/notifymuch.git")
877 (commit commit)))
878 (sha256
879 (base32
880 "1lssr7iv43mp5v6nzrfbqlfzx8jcc7m636wlfyhhnd8ydd39n6k4"))
881 (file-name (string-append name "-" version "-checkout"))))
882 (build-system python-build-system)
883 (inputs
884 `(("python-notmuch" ,python-notmuch)
885 ("python-pygobject" ,python-pygobject)
886 ("gobject-introspection" ,gobject-introspection)
887 ("libnotify" ,libnotify)
888 ("gtk+" ,gtk+)))
889 (arguments
890 `(#:phases
891 (modify-phases %standard-phases
892 (add-after 'install 'wrap-binary
893 (lambda* (#:key outputs #:allow-other-keys)
894 (let* ((out (assoc-ref outputs "out"))
895 (bin (string-append out "/bin/notifymuch")))
896 (wrap-program bin
897 `("PYTHONPATH" ":" prefix (,(getenv "PYTHONPATH")))
898 `("GI_TYPELIB_PATH" ":" prefix
899 (,(getenv "GI_TYPELIB_PATH")
900 ,(string-append out "/lib/girepository-1.0")))))
901 #t)))))
902 (home-page "https://github.com/kspi/notifymuch")
903 (synopsis "Displays notifications for changes in the notmuch email database")
904 (description "notifymuch displays desktop notifications for messages in
905the notmuch database. The notifications are sent using libnotify to a
906notification daemon. The query to find messages to send a notification about
907is configurable, and a notification for the same message will not be send
908within a configurable period (defaults to 48 hours). To use notifymuch, run
909@command{notifymuch} after new mail is indexed, this can be automated by
910invoking @command{notifymuch} from the post-new hook.")
911 (license gpl3))))
912
1bd3f849
DT
913(define-public notmuch
914 (package
915 (name "notmuch")
60392114 916 (version "0.29.3")
1bd3f849
DT
917 (source (origin
918 (method url-fetch)
866fade9 919 (uri (string-append "https://notmuchmail.org/releases/notmuch-"
80fa745c 920 version ".tar.xz"))
1bd3f849
DT
921 (sha256
922 (base32
60392114 923 "0dfwa38vgnxk9cvvpza66szjgp8lir6iz6yy0cry9593lywh9xym"))))
1bd3f849
DT
924 (build-system gnu-build-system)
925 (arguments
d738f134
AI
926 `(#:modules ((guix build gnu-build-system)
927 ((guix build emacs-build-system) #:prefix emacs:)
928 (guix build utils))
929 #:imported-modules (,@%gnu-build-system-modules
930 (guix build emacs-build-system)
931 (guix build emacs-utils))
76472ed9 932 #:make-flags (list "V=1") ; verbose test output
eb537f57 933 #:phases (modify-phases %standard-phases
6cf27c89
MB
934 (add-after 'unpack 'patch-notmuch-lib.el
935 (lambda _
936 (substitute* "emacs/notmuch-lib.el"
937 (("/bin/sh") (which "sh")))
938 #t))
eb537f57
DT
939 (replace 'configure
940 (lambda* (#:key outputs #:allow-other-keys)
941 (setenv "CC" "gcc")
942 (setenv "CONFIG_SHELL" (which "sh"))
ee886454 943
d738f134
AI
944 (let* ((out (assoc-ref outputs "out"))
945 (elisp
1cd91499 946 (string-append out "/share/emacs/site-lisp/")))
82d2dfa0
TGR
947 (invoke "./configure"
948 (string-append "--prefix=" out)
949 (string-append "--emacslispdir=" elisp)
950 (string-append "--emacsetcdir=" elisp)))))
6cf27c89
MB
951 (add-before 'check 'prepare-test-environment
952 (lambda _
953 (setenv "TEST_CC" "gcc")
954 ;; Patch various inline shell invocations.
955 (substitute* (find-files "test" "\\.sh$")
956 (("/bin/sh") (which "sh")))
d738f134
AI
957 #t))
958 (add-after 'install 'make-autoloads
959 (assoc-ref emacs:%standard-phases 'make-autoloads)))))
1bd3f849 960 (native-inputs
2c5b91dc 961 `(("bash-completion" ,bash-completion)
76472ed9 962 ("emacs" ,emacs-no-x) ; -minimal lacks libxml, needed for some tests
2c5b91dc 963 ("pkg-config" ,pkg-config)
3d3c07f3
MB
964 ("python" ,python)
965 ("python-docutils" ,python-docutils)
556530c9 966 ("sphinx" ,python-sphinx)
6cf27c89
MB
967
968 ;; The following are required for tests only.
969 ("which" ,which)
970 ("dtach" ,dtach)
971 ("gnupg" ,gnupg)
972 ("man" ,man-db)
973 ("perl" ,perl)))
1bd3f849 974 (inputs
2c5b91dc 975 `(("glib" ,glib)
1bd3f849
DT
976 ("gmime" ,gmime)
977 ("talloc" ,talloc)
978 ("xapian" ,xapian)
979 ("zlib" ,zlib)))
540d6cc7 980 (home-page "https://notmuchmail.org/")
1bd3f849
DT
981 (synopsis "Thread-based email index, search, and tagging")
982 (description
983 "Notmuch is a command-line based program for indexing, searching, read-
984ing, and tagging large collections of email messages.")
985 (license gpl3+)))
986
8a75c589 987(define-public notmuch-addrlookup-c
9694b44e
AI
988 (package
989 (name "notmuch-addrlookup-c")
990 (version (string-append "9"))
991 (source (origin
992 (method git-fetch)
993 (uri (git-reference
994 (url "https://github.com/aperezdc/notmuch-addrlookup-c.git")
995 (commit (string-append "v" version))))
996 (file-name (string-append name "-" version "-checkout"))
997 (sha256
998 (base32
999 "1j3zdx161i1x4w0nic14ix5i8hd501rb31daf8api0k8855sx4rc"))))
1000 (build-system gnu-build-system)
1001 (arguments
1002 '(#:tests? #f ; no tests
1003 #:make-flags (list "CC=gcc")
1004 #:phases (modify-phases %standard-phases
1005 (delete 'configure)
1006 ;; Remove vim code completion config, it's not needed to
1007 ;; build (or be patched).
1008 (add-before 'patch-source-shebangs 'delete-ycm-file
1009 (lambda _ (delete-file ".ycm_extra_conf.py")))
1010 (replace 'install
1011 (lambda* (#:key outputs #:allow-other-keys)
1012 (let ((bin (string-append
1013 (assoc-ref outputs "out") "/bin")))
1014 (install-file "notmuch-addrlookup" bin)))))))
1015 (native-inputs
1016 `(("pkg-config" ,pkg-config)))
1017 (inputs
1018 `(("glib" ,glib)
1019 ("notmuch" ,notmuch)))
1020 (home-page "https://github.com/aperezdc/notmuch-addrlookup-c")
1021 (synopsis "Address lookup tool for Notmuch")
1022 (description "This is an address lookup tool using a Notmuch database,
8a75c589 1023useful for email address completion.")
9694b44e 1024 (license license:expat)))
8a75c589 1025
4b6909bc
TS
1026(define-public python-notmuch
1027 (package
1028 (name "python-notmuch")
540d6cc7 1029 (version (package-version notmuch))
4b6909bc
TS
1030 ;; Notmuch python bindings are now unavailable on pypi. The
1031 ;; bindings are distributed via the notmuch release tarball.
1032 (source (package-source notmuch))
1033 (build-system python-build-system)
1034 (inputs `(("notmuch" ,notmuch)))
1035 (arguments
1036 `(#:tests? #f ; no "test" target
1037 #:phases
1038 (modify-phases %standard-phases
1039 ;; This python package lives in a subdirectory of the notmuch source
1040 ;; tree, so chdir into it before building.
1041 (add-after 'unpack 'enter-python-dir
1042 (lambda _ (chdir "bindings/python") #t))
1043 ;; Make sure the correct notmuch shared library gets loaded.
1044 (add-before 'build 'set-libnotmuch-file-name
1045 (lambda* (#:key inputs #:allow-other-keys)
1046 (let ((notmuch (assoc-ref inputs "notmuch")))
1047 (substitute* "notmuch/globals.py"
1048 (("libnotmuch\\.so\\.")
1049 (string-append notmuch "/lib/libnotmuch.so.")))
1050 #t))))))
540d6cc7 1051 (home-page (package-home-page notmuch))
4b6909bc
TS
1052 (synopsis "Python bindings of the Notmuch mail indexing library")
1053 (description
1054 "This package provides Python bindings to use the Notmuch mail indexing
1055and search library.")
1056 (license gpl3+)))
1057
1c74da21 1058(define-public python2-notmuch
caa6fc89 1059 (package-with-python2 python-notmuch))
1c74da21 1060
98e9e22f
SB
1061(define-public getmail
1062 (package
1063 (name "getmail")
88e903a5 1064 (version "5.14")
98e9e22f
SB
1065 (source
1066 (origin
1067 (method url-fetch)
1068 (uri (string-append "http://pyropus.ca/software/getmail/old-versions/"
7e14ed93 1069 "getmail-" version ".tar.gz"))
98e9e22f 1070 (sha256
88e903a5 1071 (base32 "1hcrd9h4g12f5gvl1djsbchcjry02ghq4icdr897s8v48pkrzagk"))))
98e9e22f
SB
1072 (build-system python-build-system)
1073 (arguments
88e903a5 1074 `(#:tests? #f ; no tests
98e9e22f
SB
1075 #:python ,python-2))
1076 (home-page "http://pyropus.ca/software/getmail/")
1077 (synopsis "Mail retriever")
1078 (description
1079 "A flexible, extensible mail retrieval system with support for
1080POP3, IMAP4, SSL variants of both, maildirs, mboxrd files, external MDAs,
1081arbitrary message filtering, single-user and domain-mailboxes, and many other
1082useful features.")
1083
1084 ;; License is specified in file '__init__.py'.
1085 (license gpl2)))
1086
f58f767b
JL
1087(define-public libetpan
1088 (package
1089 (name "libetpan")
0aa20371 1090 (version "1.9.3")
f58f767b 1091 (source (origin
aae96f8f
TGR
1092 (method git-fetch)
1093 (uri (git-reference
1094 (url "https://github.com/dinhviethoa/libetpan.git")
1095 (commit version)))
1096 (file-name (git-file-name name version))
f58f767b 1097 (sha256
0aa20371 1098 (base32 "19g4qskg71jv7sxfxsdkjmrxk9mk5kf9b6fhw06g6wvm3205n95f"))))
f58f767b 1099 (build-system gnu-build-system)
464f5447 1100 (native-inputs `(("autoconf" ,autoconf-wrapper)
f58f767b 1101 ("automake" ,automake)
3246cc91 1102 ("libtool" ,libtool)
f58f767b
JL
1103 ("pkg-config" ,pkg-config)))
1104 (propagated-inputs
1105 ;; 'libetpan-config --libs' returns '-lssl -lcrypto -lsasl2', so these
1106 ;; libraries need to be propagated.
1107 `(("cyrus-sasl" ,cyrus-sasl)
1108 ("openssl" ,openssl)))
1109 (inputs
1110 `(("curl" ,curl)
c1748912
EF
1111 ("expat" ,expat)
1112 ("zlib" ,zlib)))
f58f767b 1113 (arguments
602460ea
EF
1114 '(#:phases
1115 (modify-phases %standard-phases
02abfcca 1116 (replace 'bootstrap
602460ea
EF
1117 (lambda _
1118 (setenv "NOCONFIGURE" "true")
df22b95c 1119 (invoke "sh" "autogen.sh"))))
f58f767b
JL
1120 #:configure-flags
1121 '("--disable-static" "--disable-db")))
81fb037f 1122 (home-page "https://www.etpan.org/libetpan.html")
f58f767b
JL
1123 (synopsis "Portable middleware for email access")
1124 (description
1125 "The purpose of this mail library is to provide a portable, efficient
1126framework for different kinds of mail access: IMAP, SMTP, POP and NNTP. It
1127provides an API for C language. It's the low-level API used by MailCore and
1128MailCore 2.")
a979eea9 1129 (license bsd-3)))
f58f767b 1130
ee6e780b
DM
1131(define-public compface
1132 (package
1133 (name "compface")
1134 (version "1.5.2")
1135 (source (origin
1136 (method url-fetch)
1137 (uri (string-append "https://ftp.heanet.ie/mirrors/"
1138 "ftp.xemacs.org/aux/"
1139 name "-" version ".tar.gz"))
1140 (sha256
1141 (base32
1142 "09b89wg63hg502hsz592cd2h87wdprb1dq1k1y07n89hym2q56d6"))))
1143 (build-system gnu-build-system)
1144 (arguments
1145 `(#:tests? #f))
1146 (synopsis "Portrait image compressor")
586ddde5 1147 (description "This package takes your 48x48x1 portrait image and
ee6e780b
DM
1148compresses it.")
1149 (home-page "http://www.cs.indiana.edu/pub/faces/")
1150 (license (x11-style "file://README"))))
1151
e8435c4d
JL
1152(define-public claws-mail
1153 (package
1154 (name "claws-mail")
01a0b141 1155 (version "3.17.4")
e8435c4d
JL
1156 (source (origin
1157 (method url-fetch)
1158 (uri (string-append
ca6f5ab8 1159 "https://www.claws-mail.org/releases/claws-mail-" version
6ea4b094 1160 ".tar.xz"))
e8435c4d 1161 (sha256
ec92806a 1162 (base32
01a0b141 1163 "00mfhaac16sv67rwiq98hr4nl5zmd1h2afswwwksdcsi3q9x23jr"))))
e8435c4d
JL
1164 (build-system gnu-build-system)
1165 (native-inputs `(("pkg-config" ,pkg-config)))
1166 (inputs `(("bogofilter" ,bogofilter)
1167 ("curl" ,curl)
1168 ("dbus-glib" ,dbus-glib)
e8435c4d
JL
1169 ("enchant" ,enchant)
1170 ("expat" ,expat)
1171 ("ghostscript" ,ghostscript)
1172 ("hicolor-icon-theme" ,hicolor-icon-theme)
1173 ("gnupg" ,gnupg)
1174 ("gnutls" ,gnutls)
1175 ("gpgme" ,gpgme)
1176 ("gtk" ,gtk+-2)
1177 ("libarchive" ,libarchive)
1178 ("libcanberra" ,libcanberra)
1179 ("libetpan" ,libetpan)
fc9a93cb 1180 ("libical" ,libical)
e8435c4d
JL
1181 ("libnotify" ,libnotify)
1182 ("libsm" ,libsm)
1183 ("libxml2" ,libxml2)
1184 ("perl" ,perl)
f6292baf 1185 ("python-2" ,python-2)
3d88855d
DM
1186 ("mime-info" ,shared-mime-info)
1187 ("startup-notification" ,startup-notification)))
e8435c4d
JL
1188 (arguments
1189 '(#:configure-flags
9716f621
MH
1190 '("--enable-gnutls" "--enable-pgpmime-plugin" "--enable-enchant"
1191 "--enable-ldap")
ff4192ff
DM
1192 #:make-flags
1193 ;; Disable updating icon cache since it's done by the profile hook.
1194 ;; Conflict with other packages in the profile would be inevitable
1195 ;; otherwise.
1196 '("gtk_update_icon_cache=true")
f6292baf
EB
1197 #:phases (modify-phases %standard-phases
1198 (add-before 'build 'patch-mime
1199 (lambda* (#:key inputs #:allow-other-keys)
1200 (substitute* "src/procmime.c"
1201 (("/usr/share/mime/globs")
1202 (string-append (assoc-ref inputs "mime-info")
1203 "/share/mime/globs"))))))))
e8435c4d
JL
1204 (synopsis "GTK-based Email client")
1205 (description
1206 "Claws-Mail is an email client (and news reader) based on GTK+. The
1207appearance and interface are designed to be familiar to new users coming from
1208other popular email clients, as well as experienced users. Almost all commands
1209are accessible with the keyboard. Plus, Claws-Mail is extensible via addons
1210which can add many functionalities to the base client.")
ba5c926c 1211 (home-page "https://www.claws-mail.org/")
e8435c4d
JL
1212 (license gpl3+))) ; most files are actually public domain or x11
1213
d6e941bc
1214(define-public msmtp
1215 (package
1216 (name "msmtp")
a4fd9423 1217 (version "1.8.7")
d6e941bc
1218 (source
1219 (origin
1220 (method url-fetch)
1a80f1a9 1221 (uri (string-append "https://marlam.de/msmtp/releases/"
d23d1ddf
LF
1222 "/msmtp-" version ".tar.xz"))
1223 (sha256
a4fd9423 1224 (base32 "1waiiksa57byb7gvx1zmh6srvl6r8rvwqklk0slb3iaf4kfbqlws"))))
d6e941bc
1225 (build-system gnu-build-system)
1226 (inputs
91b3a6d4 1227 `(("libsecret" ,libsecret)
d6e941bc
1228 ("gnutls" ,gnutls)
1229 ("zlib" ,zlib)
1230 ("gsasl" ,gsasl)))
1231 (native-inputs
1232 `(("pkg-config" ,pkg-config)))
1a80f1a9 1233 (home-page "https://marlam.de/msmtp/")
d6e941bc
1234 (arguments
1235 `(#:configure-flags (list "--with-libgsasl"
1236 "--with-libidn"
823e2ed4
LF
1237 "--with-tls=gnutls")
1238 #:phases
1239 (modify-phases %standard-phases
34e549d8 1240 (add-after 'install 'install-additional-files
823e2ed4
LF
1241 (lambda* (#:key outputs #:allow-other-keys)
1242 (let* ((out (assoc-ref outputs "out"))
1243 (bin (string-append out "/bin"))
1244 (doc (string-append out "/share/doc/msmtp"))
34e549d8
EF
1245 (msmtpq "scripts/msmtpq")
1246 (vimfiles (string-append out "/share/vim/vimfiles/plugin")))
823e2ed4
LF
1247 (install-file (string-append msmtpq "/msmtpq") bin)
1248 (install-file (string-append msmtpq "/msmtp-queue") bin)
1249 (install-file (string-append msmtpq "/README.msmtpq") doc)
34e549d8 1250 (install-file "scripts/vim/msmtp.vim" vimfiles)
823e2ed4 1251 #t))))))
d6e941bc
1252 (synopsis
1253 "Simple and easy to use SMTP client with decent sendmail compatibility")
1254 (description
1255 "msmtp is an SMTP client. In the default mode, it transmits a mail to
1256an SMTP server (for example at a free mail provider) which takes care of further
1257delivery.")
1258 (license gpl3+)))
1259
66cc3ab2
TUBK
1260(define-public exim
1261 (package
1262 (name "exim")
cda8250b 1263 (version "4.93.0.4")
66cc3ab2
TUBK
1264 (source
1265 (origin
1266 (method url-fetch)
c9b99e88
TGR
1267 (uri (let ((file-name (string-append "exim-" version ".tar.xz")))
1268 (list (string-append "https://ftp.exim.org/pub/exim/exim4/"
1269 file-name)
1270 ;; ‘Fix’ releases (exim-x.y.z.f) are kept separately.
1271 (string-append "https://ftp.exim.org/pub/exim/exim4/fixes/"
1272 file-name)
1273 ;; After a new non-fix release, the old one is moved here.
1274 (string-append "https://ftp.exim.org/pub/exim/exim4/old/"
1275 file-name))))
66cc3ab2 1276 (sha256
c9b99e88 1277 (base32 "01g4sfycv13glnmfrapwhjbdw6z1z7w5bwjldxjmglwfw5p3czak"))))
66cc3ab2
TUBK
1278 (build-system gnu-build-system)
1279 (inputs
15871b52 1280 `(("bdb" ,bdb-5.3) ; ‘#error Version 6 and later BDB API is not supported’
cda8250b 1281 ("gnutls" ,gnutls/dane)
66cc3ab2
TUBK
1282 ("gzip" ,gzip)
1283 ("bzip2" ,bzip2)
1284 ("xz" ,xz)
66cc3ab2 1285 ("perl" ,perl)
c315d370 1286 ("libnsl" ,libnsl)
66cc3ab2
TUBK
1287 ("libxt" ,libxt)
1288 ("libxaw" ,libxaw)))
1289 (native-inputs
42773138 1290 `(("pcre" ,pcre "bin")
cda8250b
TGR
1291 ("perl" ,perl)
1292 ("pkg-config" ,pkg-config)))
66cc3ab2
TUBK
1293 (arguments
1294 '(#:phases
dc1d3cde
KK
1295 (modify-phases %standard-phases
1296 (replace 'configure
1297 ;; We'd use #:make-flags but the top-level Makefile calls others
1298 ;; recursively, so just set all variables this way.
1299 (lambda* (#:key outputs inputs #:allow-other-keys)
1300 (substitute* '("Makefile" "OS/Makefile-Default")
1301 (("(RM_COMMAND=).*" all var)
1302 (string-append var "rm\n")))
1303 (copy-file "src/EDITME" "Local/Makefile")
1304 (copy-file "exim_monitor/EDITME" "Local/eximon.conf")
1305 (let ((out (assoc-ref outputs "out"))
1306 (gzip (assoc-ref inputs "gzip"))
1307 (bzip2 (assoc-ref inputs "bzip2"))
1308 (xz (assoc-ref inputs "xz")))
1309 (substitute* '("Local/Makefile")
1310 (("(BIN_DIRECTORY=).*" all var)
1311 (string-append var out "/bin\n"))
1312 (("(CONFIGURE_FILE=).*" all var)
1313 (string-append var out "/etc/exim.conf\n"))
1314 (("(EXIM_USER=).*" all var)
1315 (string-append var "nobody\n"))
1316 (("(FIXED_NEVER_USERS=).*" all var)
15871b52 1317 (string-append var "\n")) ; XXX no root in build environment
dc1d3cde
KK
1318 (("(COMPRESS_COMMAND=).*" all var)
1319 (string-append var gzip "/bin/gzip\n"))
1320 (("(ZCAT_COMMAND=).*" all var)
cda8250b
TGR
1321 (string-append var gzip "/bin/zcat\n"))
1322 (("# (USE_GNUTLS(|_PC)=.*)" all line)
1323 (string-append line "\n")))
1324 ;; This file has hard-coded relative file names for tools despite
1325 ;; the zcat configuration above.
dc1d3cde
KK
1326 (substitute* '("src/exigrep.src")
1327 (("'zcat'") (string-append "'" gzip "/bin/zcat'"))
1328 (("'bzcat'") (string-append "'" bzip2 "/bin/bzcat'"))
1329 (("'xzcat'") (string-append "'" xz "/bin/xzcat'"))
1330 (("'lzma'") (string-append "'" xz "/bin/lzma'"))))
1331 #t))
1332 (add-before 'build 'fix-sh-paths
1333 (lambda* (#:key inputs #:allow-other-keys)
1334 (substitute* '("scripts/lookups-Makefile" "scripts/reversion")
1335 (("SHELL=/bin/sh") "SHELL=sh"))
1336 (substitute* '("scripts/Configure-config.h")
1337 (("\\| /bin/sh") "| sh"))
1338 (let ((bash (assoc-ref inputs "bash")))
1339 (substitute* '("scripts/Configure-eximon")
1340 (("#!/bin/sh") (string-append "#!" bash "/bin/sh"))))
bb335e84
TGR
1341 #t))
1342 (add-before 'build 'build-reproducibly
1343 (lambda _
1344 ;; The ‘compilation number’ is incremented for every build from the
1345 ;; same source tree. It appears to vary over different (parallel?)
1346 ;; builds. Make it a ‘constant number’ instead.
1347 (substitute* "src/version.c"
1348 (("#include \"cnumber.h\"") "1")))))
cda8250b
TGR
1349 #:make-flags
1350 (list "CC=gcc"
1351 "INSTALL_ARG=-no_chown")
1352 ;; No 'check' target. There is a test suite in test/, which assumes that
1353 ;; certain build options were (not) used and that it can freely ‘sudo’.
66cc3ab2 1354 #:tests? #f))
85a9ffcb 1355 (home-page "https://www.exim.org/")
66cc3ab2
TUBK
1356 (synopsis
1357 "Message Transfer Agent (MTA) developed at the University of Cambridge")
1358 (description
1359 "Exim is a message transfer agent (MTA) developed at the University of
1360Cambridge for use on Unix systems connected to the Internet. In style it is
1361similar to Smail 3, but its facilities are more general. There is a great
1362deal of flexibility in the way mail can be routed, and there are extensive
1363facilities for checking incoming mail.")
1364 (license gpl2+)))
1365
7d2b784b
MW
1366(define-public dovecot
1367 (package
1368 (name "dovecot")
48947e6b 1369 (version "2.3.9.2")
7d2b784b
MW
1370 (source
1371 (origin
1372 (method url-fetch)
c8608faf 1373 (uri (string-append "https://www.dovecot.org/releases/"
7d2b784b 1374 (version-major+minor version) "/"
2fa1a3a8 1375 "dovecot-" version ".tar.gz"))
c03b355f 1376 (sha256
48947e6b 1377 (base32 "1yc6hi4hqg4hcc4495sf4m5f1lnargphi6dawj43if21vncgp127"))))
7d2b784b
MW
1378 (build-system gnu-build-system)
1379 (native-inputs
1380 `(("pkg-config" ,pkg-config)))
1381 (inputs
1382 `(("openssl" ,openssl)
1383 ("zlib" ,zlib)
1384 ("bzip2" ,bzip2)
fd5c70f8
AW
1385 ("sqlite" ,sqlite)
1386 ("linux-pam" ,linux-pam)))
7d2b784b
MW
1387 (arguments
1388 `(#:configure-flags '("--sysconfdir=/etc"
1389 "--localstatedir=/var")
f762e49f
TGR
1390 #:phases
1391 (modify-phases %standard-phases
f762e49f
TGR
1392 (add-after 'unpack 'patch-file-names
1393 (lambda _
1394 (substitute* "src/lib-program-client/test-program-client-local.c"
1395 (("(/bin/| )cat") (which "cat"))
1396 (("/bin/echo") (which "echo"))
1397 (("/bin/false") (which "false"))
1398 (("/bin/sh") (which "bash"))
1399 (("head") (which "head"))
1400 (("sleep") (which "sleep")))
1401 (substitute* (list "src/lib-smtp/test-bin/sendmail-exit-1.sh"
1402 "src/lib-smtp/test-bin/sendmail-success.sh")
1403 (("cat") (which "cat")))
37fc44ea
TGR
1404 #t))
1405 (replace 'install
1406 (lambda* (#:key make-flags #:allow-other-keys)
1407 ;; Simple hack to avoid installing a trivial README in /etc.
1408 (apply invoke "make" "install" "sysconfdir=/tmp/bogus"
1409 make-flags))))))
c8608faf 1410 (home-page "https://www.dovecot.org")
7d2b784b
MW
1411 (synopsis "Secure POP3/IMAP server")
1412 (description
1413 "Dovecot is a mail server whose major goals are security and reliability.
1414It supports mbox/Maildir and its own dbox/mdbox formats.")
1415 ;; Most source files are covered by either lgpl2.1 or expat. The SHA code
1416 ;; is covered by a variant of BSD-3, and UnicodeData.txt is covered by the
1417 ;; Unicode, Inc. License Agreement for Data Files and Software.
1418 (license (list lgpl2.1 license:expat (non-copyleft "file://COPYING")))))
1419
944a5cdd 1420(define-public dovecot-trees
cf47a8a5 1421 (package
1422 (name "dovecot-trees")
1423 (version "2.1.0")
1424 (source
1425 (origin
1426 (method url-fetch)
1427 (uri (string-append "https://0xacab.org/riseuplabs/trees/repository/"
1428 "archive.tar.gz?ref=v" version))
1429 (file-name (string-append name "-" version ".tar.gz"))
1430 (sha256
1431 (base32
0e66f4a1
TGR
1432 "0rkk10b1bsjz979sc864vpgcdchy7yxwmyv4ik50lar1h6awdnrf"))
1433 (patches
1434 (search-patches "dovecot-trees-support-dovecot-2.3.patch"))))
cf47a8a5 1435 (build-system gnu-build-system)
1436 (native-inputs
1437 `(("automake" ,automake)
1438 ("autoconf" ,autoconf)
1439 ("libtool" ,libtool)
1440 ("dovecot" ,dovecot)
1441 ("pkg-config" ,pkg-config)))
1442 (inputs
1443 `(("libsodium" ,libsodium)))
1444 (arguments
1445 `(#:tests? #f ;No tests exist.
1446 #:configure-flags (list (string-append "--with-dovecot="
1447 (assoc-ref %build-inputs "dovecot")
7b0efd4c 1448 "/lib/dovecot"))))
cf47a8a5 1449 (home-page "https://0xacab.org/riseuplabs/trees")
1450 (synopsis "NaCL-based Dovecot email storage encryption plugin")
1451 (description
1452 "Technology for Resting Email Encrypted Storage (TREES) is a NaCL-based
944a5cdd 1453Dovecot encryption plugin. This plugin adds individually encrypted mail
1454storage to the Dovecot IMAP server. It is inspired by Posteo's scrambler
1455which uses OpenSSL and RSA keypairs. TREES works in a similar way, but uses
1456the Sodium crypto library (based on NaCL).
1457
1458How it works:
1459@enumerate
1460@item On IMAP log in, the user's cleartext password is passed to the plugin.
1461@item The plugin creates an argon2 digest from the password.
1462@item This password digest is used as a symmetric secret to decrypt a libsodium secretbox.
1463@item Inside the secretbox is stored a Curve25519 private key.
1464@item The Curve25519 private key is used to decrypt each individual message,
b3a47662 1465using libsodium sealed boxes.
944a5cdd 1466@item New mail is encrypted as it arrives using the Curve25519 public key.
1467@end enumerate\n")
cf47a8a5 1468 (license agpl3)))
944a5cdd 1469
a4651f64 1470(define-public dovecot-libsodium-plugin
1471 (let ((commit "044de73c01c35385df0105f6b387bec5d5317ce7")
1472 (revision "1"))
1473 (package
1474 (name "dovecot-libsodium-plugin")
1475 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
1476 (source
1477 (origin
1478 (method git-fetch)
1479 (uri (git-reference
1480 (url "https://github.com/LuckyFellow/dovecot-libsodium-plugin")
1481 (commit commit)))
1482 (file-name (string-append name "-" version "-checkout"))
1483 (sha256
1484 (base32
1485 "13h07l7xy713zchnj2p9fhvq7fdl4zy1ai94li3ygkqjjj8hrgas"))))
1486 (build-system gnu-build-system)
1487 (native-inputs
1488 `(("automake" ,automake)
1489 ("autoconf" ,autoconf)
1490 ("libtool" ,libtool)
1491 ("dovecot" ,dovecot)
1492 ("pkg-config" ,pkg-config)))
1493 (inputs
1494 `(("libsodium" ,libsodium)))
1495 (arguments
1496 `(#:tests? #f ;No tests exist.
1497 #:configure-flags (list (string-append "--with-dovecot="
1498 (assoc-ref %build-inputs "dovecot")
1f53fdae 1499 "/lib/dovecot"))))
a4651f64 1500 (home-page "https://github.com/LuckyFellow/dovecot-libsodium-plugin")
1501 (synopsis "Libsodium password hashing schemes plugin for Dovecot")
1502 (description
1503 "@code{dovecot-libsodium-plugin} provides libsodium password
1504hashing schemes plugin for @code{Dovecot}.")
1505 (license gpl3+))))
1506
81ce19f4
1507(define-public isync
1508 (package
1509 (name "isync")
a5d8a2b2 1510 (version "1.3.1")
81ce19f4
1511 (source
1512 (origin
1513 (method url-fetch)
1514 (uri (string-append "mirror://sourceforge/isync/isync/"
1515 version "/isync-" version ".tar.gz"))
1516 (sha256 (base32
a5d8a2b2 1517 "1sphd30jplii58y2zmw365bckm6pszmapcy905zhjll1sm1ldjv8"))))
81ce19f4 1518 (build-system gnu-build-system)
49490231
LF
1519 (native-inputs
1520 `(("perl" ,perl)))
81ce19f4
1521 (inputs
1522 `(("bdb" ,bdb)
a052d5ab 1523 ("cyrus-sasl" ,cyrus-sasl)
1fdab9d3 1524 ("openssl" ,openssl-1.0)
a66fb3a1 1525 ("zlib" ,zlib)))
81ce19f4
1526 (home-page "http://isync.sourceforge.net/")
1527 (synopsis "Mailbox synchronization program")
1528 (description
f6cd8586 1529 "isync/mbsync is a command-line tool for two-way synchronization of
81ce19f4
1530mailboxes. Currently Maildir and IMAP are supported types.")
1531 (license gpl2+)))
1532
26b8de19
EB
1533(define-public perl-email-abstract
1534 (package
1535 (name "perl-email-abstract")
1536 (version "3.008")
1537 (source
1538 (origin
1539 (method url-fetch)
1540 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
1541 "Email-Abstract-" version ".tar.gz"))
1542 (sha256
1543 (base32
1544 "0h42rhvp769wb421cpbbg6v6xjp8iv86mvz70pqgfgf4nsn6jwgw"))))
1545 (build-system perl-build-system)
1546 (propagated-inputs
1547 `(("perl-email-simple" ,perl-email-simple)
a2190ccc 1548 ("perl-module-pluggable" ,perl-module-pluggable)
26b8de19 1549 ("perl-mro-compat" ,perl-mro-compat)))
9aba9b12 1550 (home-page "https://metacpan.org/release/Email-Abstract")
26b8de19
EB
1551 (synopsis "Interface to mail representations")
1552 (description "Email::Abstract provides module writers with the ability to
1553write simple, representation-independent mail handling code.")
2f3108ad 1554 (license perl-license)))
26b8de19 1555
ebda902f
EB
1556(define-public perl-email-address
1557 (package
1558 (name "perl-email-address")
b6c7df92 1559 (version "1.912")
ebda902f
EB
1560 (source
1561 (origin
1562 (method url-fetch)
1563 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
1564 "Email-Address-" version ".tar.gz"))
1565 (sha256
b6c7df92 1566 (base32 "1vzr0vx4zsw4zbc9xdffc31wnkc1raqmyfiyws06fbyck197i8qg"))))
ebda902f 1567 (build-system perl-build-system)
9aba9b12 1568 (home-page "https://metacpan.org/release/Email-Address")
ebda902f
EB
1569 (synopsis "Email address parsing and creation")
1570 (description "Email::Address implements a regex-based RFC 2822 parser that
1571locates email addresses in strings and returns a list of Email::Address
1572objects found. Alternatively you may construct objects manually.")
2f3108ad 1573 (license perl-license)))
ebda902f 1574
944d3b4b
SB
1575(define-public perl-email-address-xs
1576 (package
1577 (name "perl-email-address-xs")
1578 (version "1.04")
1579 (source
1580 (origin
1581 (method url-fetch)
1582 (uri (string-append "mirror://cpan/authors/id/P/PA/PALI/"
1583 "Email-Address-XS-" version ".tar.gz"))
1584 (sha256
1585 (base32
1586 "0gjrrl81z3sfwavgx5kwjd87gj44mlnbbqsm3dgdv1xllw26spwr"))))
1587 (build-system perl-build-system)
1588 (home-page "https://metacpan.org/release/Email-Address-XS")
1589 (synopsis "Parse and format RFC 5322 email addresses and groups")
1590 (description
1591 "Email::Address::XS implements RFC 5322 parser and formatter of email
1592addresses and groups. Unlike Email::Address, this module does not use regular
1593expressions for parsing but instead is implemented in XS and uses shared code
1594from Dovecot IMAP server.")
1595 (license perl-license)))
1596
aa86a3be
EB
1597(define-public perl-email-date-format
1598 (package
1599 (name "perl-email-date-format")
1600 (version "1.005")
1601 (source
1602 (origin
1603 (method url-fetch)
1604 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
1605 "Email-Date-Format-" version ".tar.gz"))
1606 (sha256
1607 (base32
1608 "012ivfwpnbl3wr50f9c6f4azhdlxnm31pdn72528g79v61z6372p"))))
1609 (build-system perl-build-system)
9aba9b12 1610 (home-page "https://metacpan.org/release/Email-Date-Format")
aa86a3be
EB
1611 (synopsis "Produce RFC 2822 date strings")
1612 (description "Email::Date::Format provides a means for generating an RFC
16132822 compliant datetime string.")
2f3108ad 1614 (license perl-license)))
aa86a3be 1615
08bf7095
EB
1616(define-public perl-email-messageid
1617 (package
1618 (name "perl-email-messageid")
1fb37ef0 1619 (version "1.406")
08bf7095
EB
1620 (source
1621 (origin
1622 (method url-fetch)
1623 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
1624 "Email-MessageID-" version ".tar.gz"))
1625 (sha256
1626 (base32
1fb37ef0 1627 "1f22sdnfq169qw1l0lg7y74pmiam7j9v95bggjnf3q4mygdmshpc"))))
08bf7095 1628 (build-system perl-build-system)
9aba9b12 1629 (home-page "https://metacpan.org/release/Email-MessageID")
08bf7095
EB
1630 (synopsis "Generate world unique message-ids")
1631 (description "Email::MessageID generates recommended message-ids to
1632identify a message uniquely.")
2f3108ad 1633 (license perl-license)))
08bf7095 1634
0a4c49f6
EB
1635(define-public perl-email-mime
1636 (package
1637 (name "perl-email-mime")
4f50fd75 1638 (version "1.946")
0a4c49f6
EB
1639 (source
1640 (origin
1641 (method url-fetch)
1642 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
1643 "Email-MIME-" version ".tar.gz"))
1644 (sha256
1645 (base32
4f50fd75 1646 "0z1k3i0lzp2k421gc8f3wq0jbqflkbw2xqd2k7n7pmv56417kvk8"))))
0a4c49f6
EB
1647 (build-system perl-build-system)
1648 (propagated-inputs
1649 `(("perl-email-address" ,perl-email-address)
1650 ("perl-email-messageid" ,perl-email-messageid)
1651 ("perl-email-mime-contenttype" ,perl-email-mime-contenttype)
1652 ("perl-email-mime-encodings" ,perl-email-mime-encodings)
1653 ("perl-email-simple" ,perl-email-simple)
4f50fd75
TGR
1654 ("perl-mime-types" ,perl-mime-types)
1655 ("perl-module-runtime" ,perl-module-runtime)))
9aba9b12 1656 (home-page "https://metacpan.org/release/Email-MIME")
0a4c49f6
EB
1657 (synopsis "MIME message handling")
1658 (description "Email::MIME is an extension of the Email::Simple module, to
1659handle MIME encoded messages. It takes a message as a string, splits it up
1660into its constituent parts, and allows you access to various parts of the
1661message. Headers are decoded from MIME encoding.")
2f3108ad 1662 (license perl-license)))
0a4c49f6 1663
55025bb5
EB
1664(define-public perl-email-mime-contenttype
1665 (package
1666 (name "perl-email-mime-contenttype")
9b5fc20c 1667 (version "1.022")
55025bb5
EB
1668 (source
1669 (origin
1670 (method url-fetch)
1671 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
1672 "Email-MIME-ContentType-" version ".tar.gz"))
1673 (sha256
1674 (base32
9b5fc20c 1675 "042kxhs3bp1ab9z0mbr1wy21ld4lxd6v2a2mmrashqnsn2075fws"))))
55025bb5
EB
1676 (build-system perl-build-system)
1677 (native-inputs
1678 `(("perl-capture-tiny" ,perl-capture-tiny)))
9aba9b12 1679 (home-page "https://metacpan.org/release/Email-MIME-ContentType")
55025bb5
EB
1680 (synopsis "Parse MIME Content-Type headers")
1681 (description "Email::MIME::ContentType parses a MIME Content-Type
1682header.")
2f3108ad 1683 (license perl-license)))
55025bb5 1684
02e29936
EB
1685(define-public perl-email-mime-encodings
1686 (package
1687 (name "perl-email-mime-encodings")
1688 (version "1.315")
1689 (source
1690 (origin
1691 (method url-fetch)
1692 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
1693 "Email-MIME-Encodings-" version ".tar.gz"))
1694 (sha256
1695 (base32
1696 "0p5b8g9gh35m8fqrpx60g4bp98rvwd02n5b0vm9wh7mk0xah8wac"))))
1697 (build-system perl-build-system)
1698 (native-inputs
1699 `(("perl-capture-tiny" ,perl-capture-tiny)))
9aba9b12 1700 (home-page "https://metacpan.org/release/Email-MIME-Encodings")
02e29936
EB
1701 (synopsis "Unified interface to MIME encoding and decoding")
1702 (description "This module wraps MIME::Base64 and MIME::QuotedPrint.")
2f3108ad 1703 (license perl-license)))
02e29936 1704
a24c5420
EB
1705(define-public perl-email-sender
1706 (package
1707 (name "perl-email-sender")
0fd6f28d 1708 (version "1.300034")
a24c5420
EB
1709 (source
1710 (origin
1711 (method url-fetch)
1712 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
1713 "Email-Sender-" version ".tar.gz"))
1714 (sha256
0fd6f28d 1715 (base32 "14aj9kqa9dr2bdhzn2qvjj2mffj8wjb5397z8qw7qg057fk3ib05"))))
a24c5420
EB
1716 (build-system perl-build-system)
1717 (native-inputs
1718 `(("perl-capture-tiny" ,perl-capture-tiny)))
1719 (propagated-inputs
1720 `(("perl-email-abstract" ,perl-email-abstract)
1721 ("perl-email-address" ,perl-email-address)
1722 ("perl-email-simple" ,perl-email-simple)
1723 ("perl-list-moreutils" ,perl-list-moreutils)
1724 ("perl-module-runtime" ,perl-module-runtime)
1725 ("perl-moo" ,perl-moo)
1726 ("perl-moox-types-mooselike" ,perl-moox-types-mooselike)
1727 ("perl-sub-exporter" ,perl-sub-exporter)
1728 ("perl-throwable" ,perl-throwable)
1729 ("perl-try-tiny" ,perl-try-tiny)))
9aba9b12 1730 (home-page "https://metacpan.org/release/Email-Sender")
a24c5420
EB
1731 (synopsis "Perl library for sending email")
1732 (description "Email::Sender replaces the old and sometimes problematic
1733Email::Send library.")
2f3108ad 1734 (license perl-license)))
a24c5420 1735
151ef3ed
EB
1736(define-public perl-email-simple
1737 (package
1738 (name "perl-email-simple")
3a2f1d93 1739 (version "2.216")
151ef3ed
EB
1740 (source
1741 (origin
1742 (method url-fetch)
1743 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
1744 "Email-Simple-" version ".tar.gz"))
1745 (sha256
1746 (base32
3a2f1d93 1747 "1m4brbjvalyp5kjqslqv4155dzwg977shxin208i7lc8236n6pyq"))))
151ef3ed
EB
1748 (build-system perl-build-system)
1749 (propagated-inputs
1750 `(("perl-email-date-format" ,perl-email-date-format)))
9aba9b12 1751 (home-page "https://metacpan.org/release/Email-Simple")
151ef3ed
EB
1752 (synopsis "Parsing of RFC 2822 messages")
1753 (description "Email::Simple provides simple parsing of RFC 2822 message
1754format and headers.")
2f3108ad 1755 (license perl-license)))
151ef3ed 1756
f5dceecb
AW
1757(define-public libesmtp
1758 (package
1759 (name "libesmtp")
1760 (version "1.0.6")
1761 (source
1762 (origin
1763 (method url-fetch)
049e02ea
LF
1764 (uri (list (string-append "https://pkgs.fedoraproject.org/repo/pkgs/"
1765 "libesmtp/libesmtp-" version ".tar.bz2/"
1766 "bf3915e627fd8f35524a8fdfeed979c8/libesmtp-"
1767 version ".tar.bz2")
1768 ;; XXX This site is offline, so we fetch Fedora's cached copy
1769 ;; of the source tarball.
1770 (string-append "http://www.stafford.uklinux.net/libesmtp/libesmtp-"
1771 version ".tar.bz2")))
f5dceecb
AW
1772 (sha256
1773 (base32
1774 "02zbniyz7qys1jmx3ghx21kxmns1wc3hmv80gp7ag7yra9f1m9nh"))))
1775 (build-system gnu-build-system)
1776 (propagated-inputs
1777 `(("openssl" ,openssl)))
1778 (home-page "http://www.stafford.uklinux.net/libesmtp/")
1779 (synopsis "Library for sending mail via remote hosts using SMTP")
1780 (description "libESMTP is an SMTP client which manages posting (or
1781submission of) electronic mail via a preconfigured Mail Transport Agent (MTA).
1782It may be used as part of a Mail User Agent (MUA) or other program that must
1783be able to post electronic mail where mail functionality may not be that
1784program's primary purpose.")
1785 (license (list lgpl2.1+ gpl2+))))
1786
f8ae32a2
AW
1787(define-public esmtp
1788 (package
1789 (name "esmtp")
1790 (version "1.2")
1791 (source
1792 (origin
1793 (method git-fetch)
1794 (uri (git-reference
1795 (url "https://github.com/andywingo/esmtp.git")
1796 (commit "01bf9fc")))
1797 (sha256
1798 (base32
1799 "1ay282rrl92h0m0m8z5zzjnwiiagi7c78aq2qvhia5mw7prwfyw2"))
1800 (file-name (string-append name "-" version "-checkout"))))
1801 (arguments
1802 `(#:phases (modify-phases %standard-phases
73c0e477
EF
1803 (replace 'bootstrap
1804 (lambda _ (invoke "autoreconf" "-vfi"))))))
f8ae32a2
AW
1805 (build-system gnu-build-system)
1806 (native-inputs
1807 `(("bison" ,bison)
1808 ("flex" ,flex)
1809 ("autoconf" ,autoconf)
1810 ("automake" ,automake)
1811 ("libtool" ,libtool)))
1812 (inputs
718c5dd6 1813 `(("libesmtp" ,libesmtp)))
3b3b60d0 1814 (home-page "https://sourceforge.net/projects/esmtp/")
f8ae32a2
AW
1815 (synopsis "Relay-only mail transfer agent (MTA)")
1816 (description "Esmtp is a simple relay-only mail transfer agent built using
1817libESMTP. It sends e-mail via a remote SMTP server using credentials from the
1818user's @file{$HOME/.esmtprc} configuration file; see the @command{esmtprc} man
1819page for more on configuration. This package also provides minimal
1820compatibility shims for the @command{sendmail}, @command{mailq}, and
1821@command{newaliases} commands.")
1822 (license gpl2+)))
1823
34dd26af
CAW
1824(define-public fdm
1825 (package
1826 (name "fdm")
9a0681d1 1827 (version "2.0")
34dd26af
CAW
1828 (source (origin
1829 (method url-fetch)
1830 (uri (string-append "https://github.com/nicm/fdm/releases/download/"
9a0681d1 1831 version "/fdm-" version ".tar.gz"))
34dd26af 1832 (sha256
9a0681d1 1833 (base32 "196fs1z8y7p12wmqn1bylzz94szl58yv2aby3p30nmwjnyv8rch6"))))
34dd26af
CAW
1834 (build-system gnu-build-system)
1835 (inputs
1836 `(("tdb" ,tdb)
1837 ("openssl" ,openssl)
1838 ("zlib" ,zlib)))
1839 (home-page "https://github.com/nicm/fdm")
1840 (synopsis "Mail Retrieval Agent (MRA) and Mail Delivery Agent (MDA)")
1841 (description "fdm is a program designed to fetch mail from POP3
1842or IMAP servers, or receive local mail from stdin, and
1843deliver it in various ways.")
1844 (license
1845 ;; Why point to a source file? Well, all the individual files have a
1846 ;; copy of this license in their headers, but there's no seprate file
1847 ;; with that information.
16966d5b 1848 (non-copyleft "https://github.com/nicm/fdm/blob/master/command.c"))))
34dd26af 1849
e90819c4
LG
1850
1851(define-public procmail
1852 (package
1853 (name "procmail")
1854 (version "3.22")
1855 (source
1856 (origin
1857 (method url-fetch)
1858 (uri (string-append
1859 "ftp://ftp.fu-berlin.de/pub/unix/mail/procmail/procmail-"
1860 version
1861 ".tar.gz"))
1862 (sha256
1863 (base32
1864 "05z1c803n5cppkcq99vkyd5myff904lf9sdgynfqngfk9nrpaz08"))
1865 ;; The following patch fixes an ambiguous definition of
1866 ;; getline() in formail.c. The patch is provided by Debian as
1867 ;; patch 24.
1d982d78 1868 (patches (search-patches "procmail-ambiguous-getline-debian.patch"
c297e965
LF
1869 "procmail-CVE-2014-3618.patch"
1870 "procmail-CVE-2017-16844.patch"))))
e90819c4
LG
1871 (arguments
1872 `(#:phases (modify-phases %standard-phases
1873 (replace 'configure
1874 (lambda _
1875 (substitute* "Makefile"
1876 (("/bin/sh")
1877 (which "sh"))
1878 (("/usr")
1879 (assoc-ref %outputs "out"))
1880 (("/bin/rm")
1881 (which "rm")))
1882 #t)))
1883 #:tests? #f)) ;; There are no tests indicating a successful
1884 ;; build. Some tests of basic locking mechanisms provided by the
8f65585b 1885 ;; file system are performed during 'make install'. However, these
e90819c4
LG
1886 ;; are performed before the actual build process.
1887 (build-system gnu-build-system)
05aa576b 1888 (inputs `(("exim" ,exim)))
e90819c4
LG
1889 (home-page "http://www.procmail.org/")
1890 (synopsis "Versatile mail delivery agent (MDA)")
1891 (description "Procmail is a mail delivery agent (MDA) featuring support
1892for a variety of mailbox formats such as mbox, mh and maildir. Incoming mail
1893can be sorted into separate files/directories and arbitrary commands can be
1894executed on mail arrival. Procmail is considered stable, but is no longer
1895maintained.")
1896 (license gpl2+))) ;; procmail allows to choose the
1897 ;; nonfree Artistic License 1.0
1898 ;; as alternative to the GPL2+.
1899 ;; This option is not listed here.
e90819c4 1900
61c30e9d
LF
1901(define-public khard
1902 (package
1903 (name "khard")
82680f80 1904 (version "0.15.1")
61c30e9d
LF
1905 (source (origin
1906 (method url-fetch)
1907 (uri (pypi-uri name version))
1908 (sha256
1909 (base32
82680f80 1910 "18ba2xgfq8sw0bg6xmlfjpizid1hkzgswcfcc54gl21y2dwfda2w"))))
61c30e9d
LF
1911 (build-system python-build-system)
1912 (arguments
2385012b
EF
1913 `(#:phases
1914 (modify-phases %standard-phases
1915 (add-after 'install 'install-doc
1916 (lambda* (#:key outputs #:allow-other-keys)
1917 (let* ((out (assoc-ref outputs "out"))
1918 (doc (string-append out "/share/doc/khard")))
1919 (copy-recursively "misc/khard" doc)
1920 #t))))))
82680f80
TLC
1921 (native-inputs
1922 `(("python-setuptools-scm" ,python-setuptools-scm)))
61c30e9d 1923 (propagated-inputs
224b1c83
EF
1924 `(("python-atomicwrites" ,python-atomicwrites)
1925 ("python-configobj" ,python-configobj)
a57495e2 1926 ("python-pyyaml" ,python-pyyaml)
224b1c83
EF
1927 ("python-ruamel.yaml" ,python-ruamel.yaml)
1928 ("python-unidecode" ,python-unidecode)
1929 ("python-vobject" ,python-vobject)))
61c30e9d
LF
1930 (synopsis "Console address book using CardDAV")
1931 (description "Khard is an address book for the console. It creates, reads,
1932modifies and removes CardDAV address book entries at your local machine. For
1933synchronizing with a remote address book, @command{vdirsyncer} is recommended.
1934Khard can also be used from within the email client @command{mutt}.")
1935 (home-page "https://github.com/scheibler/khard")
1936 (license gpl3+)))
be0c5733
DM
1937
1938(define-public perl-mail-spf
27f172a9
TGR
1939 (package
1940 (name "perl-mail-spf")
1941 (version "2.9.0")
1942 (source
1943 (origin
1944 (method url-fetch)
1945 (uri (string-append
1946 "mirror://cpan/authors/id/J/JM/JMEHNLE/mail-spf/Mail-SPF-v"
be0c5733
DM
1947 version
1948 ".tar.gz"))
27f172a9
TGR
1949 (sha256
1950 (base32 "0qk1rfgfm5drj4iyniiabrasrpqv570vzhgz66lwgb67y4amkjv1"))))
1951 (build-system perl-build-system)
1952 (native-inputs
1953 `(("perl-module-build" ,perl-module-build)
1954 ("perl-net-dns-resolver-programmable"
1955 ,perl-net-dns-resolver-programmable)))
1956 (arguments
1957 `(#:phases
1958 (modify-phases %standard-phases
1959 (add-before 'configure 'modify-Build.PL
1960 (lambda* (#:key outputs #:allow-other-keys)
1961 (substitute* "Build.PL"
1962 (("'/usr/sbin'") (string-append "'"
1963 (assoc-ref outputs "out")
1964 "/sbin'")))
be0c5733 1965 #t)))))
27f172a9
TGR
1966 (inputs
1967 `(("perl-error" ,perl-error)
1968 ("perl-net-dns" ,perl-net-dns)
1969 ("perl-netaddr-ip" ,perl-netaddr-ip)
1970 ("perl-uri" ,perl-uri)))
1971 (home-page "https://metacpan.org/release/Mail-SPF")
1972 (synopsis "Perl implementation of Sender Policy Framework")
1973 (description "Mail::SPF is the Sender Policy Framework implemented
be0c5733 1974in Perl.")
27f172a9 1975 (license bsd-3)))
24262239 1976
f115d817
JL
1977(define-public perl-mail-authenticationresults
1978 (package
1979 (name "perl-mail-authenticationresults")
1980 (version "1.20180923")
1981 (source (origin
1982 (method url-fetch)
1983 (uri (string-append
1984 "mirror://cpan/authors/id/M/MB/MBRADSHAW/"
1985 "Mail-AuthenticationResults-" version ".tar.gz"))
1986 (sha256
1987 (base32
1988 "1g1wym9vcbhldwvi4w5pl0fhd4jh2icj975awf4wr5xmkli9mxbz"))))
1989 (build-system perl-build-system)
1990 (native-inputs
1991 `(("perl-test-exception" ,perl-test-exception)))
1992 (home-page "https://metacpan.org/release/Mail-AuthenticationResults")
1993 (synopsis "Object Oriented Authentication-Results Headers")
1994 (description "Mail::AuthenticationResults parses the message header field
1995that indicates the message authentication status as per RFC7601. This module
1996is not fully compliant with the RFC but it tries to implement most styles of
1997Authentication-Results header seen in the wild.")
1998 (license perl-license)))
1999
930c52ae
JL
2000(define-public perl-mail-dkim
2001 (package
2002 (name "perl-mail-dkim")
3b27ffec 2003 (version "0.58")
930c52ae
JL
2004 (source (origin
2005 (method url-fetch)
2006 (uri (string-append
2007 "mirror://cpan/authors/id/M/MB/MBRADSHAW/Mail-DKIM-"
2008 version
2009 ".tar.gz"))
2010 (sha256
2011 (base32
3b27ffec 2012 "0cgkal65qqcy57b21lgij90ba36wl66byw9i76g5yhwaa8ms8hqa"))))
930c52ae
JL
2013 (build-system perl-build-system)
2014 (propagated-inputs
2015 `(("perl-crypt-openssl-rsa" ,perl-crypt-openssl-rsa)
2016 ("perl-mail-authenticationresults" ,perl-mail-authenticationresults)
2017 ("perl-mailtools" ,perl-mailtools)
2018 ("perl-net-dns" ,perl-net-dns)))
2019 (native-inputs
2020 `(("perl-net-dns-resolver-mock" ,perl-net-dns-resolver-mock)
2021 ("perl-test-requiresinternet" ,perl-test-requiresinternet)
2022 ("perl-yaml-libyaml" ,perl-yaml-libyaml)))
2023 (home-page "https://metacpan.org/release/Mail-DKIM")
2024 (synopsis "Signs/verifies Internet mail with DKIM/DomainKey signatures")
2025 (description "Mail::DKIM is a Perl module that implements the new Domain
2026Keys Identified Mail (DKIM) standard, and the older Yahoo! DomainKeys standard,
2027both of which sign and verify emails using digital signatures and DNS records.
2028Mail-DKIM can be used by any Perl program that wants to provide support for
2029DKIM and/or DomainKeys.")
2030 (license gpl3+)))
2031
8582202c
JL
2032(define-public dkimproxy
2033 (package
2034 (name "dkimproxy")
2035 (version "1.4.1")
2036 (source (origin
2037 (method url-fetch)
2038 (uri (string-append
2039 "mirror://sourceforge/dkimproxy/dkimproxy/"
2040 version "/dkimproxy-" version ".tar.gz"))
2041 (sha256
2042 (base32
66e39000
TGR
2043 "1gc5c7lg2qrlck7b0lvjfqr824ch6jkrzkpsn0gjvlzg7hfmld75"))
2044 (patches
2045 (search-patches "dkimproxy-add-ipv6-support.patch"))))
8582202c
JL
2046 (build-system gnu-build-system)
2047 (arguments
2048 `(#:phases
2049 (modify-phases %standard-phases
2050 (add-after 'install 'make-wrapper
2051 (lambda* (#:key inputs outputs #:allow-other-keys)
8c07824c
TGR
2052 (let* ((out (assoc-ref outputs "out"))
2053 (wrap.pl (lambda (scripts keys)
2054 (for-each
2055 (lambda (script)
2056 (wrap-program (string-append out script)
2057 `("PERL5LIB" ":" prefix
2058 ,(map (λ (input)
2059 (string-append
2060 (assoc-ref inputs input)
2061 "/lib/perl5/site_perl"))
2062 keys))))
2063 scripts))))
2064 (wrap.pl (list "/bin/dkimproxy.in"
2065 "/bin/dkimproxy.out")
2066 (list "perl-crypt-openssl-rsa"
2067 "perl-io-socket-inet6"
2068 "perl-mailtools"
2069 "perl-mail-authenticationresults"
2070 "perl-mail-dkim"
2071 "perl-net-dns"
2072 "perl-net-server"
2073 "perl-socket6"))
28e4c3bb
TGR
2074 (wrap.pl (list "/bin/dkim_responder.pl")
2075 (list "perl-crypt-openssl-rsa"
2076 "perl-mail-dkim"
2077 "perl-mailtools"
2078 "perl-mime-tools"
2079 "perl-net-dns"
2080 "perl-timedate"))
8c07824c 2081 #t))))))
8582202c
JL
2082 (inputs
2083 `(("perl" ,perl)
2084 ("perl-crypt-openssl-rsa" ,perl-crypt-openssl-rsa)
66e39000 2085 ("perl-io-socket-inet6" ,perl-io-socket-inet6)
8582202c
JL
2086 ("perl-mailtools" ,perl-mailtools)
2087 ("perl-mail-authenticationresults" ,perl-mail-authenticationresults)
2088 ("perl-mail-dkim" ,perl-mail-dkim)
28e4c3bb 2089 ("perl-mime-tools" ,perl-mime-tools)
8582202c 2090 ("perl-net-dns" ,perl-net-dns)
66e39000 2091 ("perl-net-server" ,perl-net-server)
28e4c3bb
TGR
2092 ("perl-socket6" ,perl-socket6)
2093 ("perl-timedate" ,perl-timedate)))
8582202c 2094 (home-page "http://dkimproxy.sourceforge.net/")
d045dce1
TGR
2095 (synopsis "SMTP proxy to sign and verify Internet mail with DKIM headers")
2096 (description
2097 "DKIMproxy is an SMTP proxy that signs and verifies Internet mail using the
2098@code{Mail::DKIM} Perl module. It comprises two separate proxies: an outbound
8582202c 2099proxy for signing outgoing email, and an inbound proxy for verifying signatures
d045dce1
TGR
2100of incoming messages.
2101
2102It was designed for Postfix, but can be used to add DKIM support to nearly any
2103existing mail server. With Postfix, the proxies can operate as either
8582202c 2104@code{Before-Queue} or @code{After-Queue} content filters.")
2b456dd8 2105 (license gpl2+)))
8582202c 2106
24262239
CL
2107(define-public mb2md
2108 (package
2109 (name "mb2md")
2110 (version "3.20")
2111 (source (origin
2112 (method url-fetch)
2113 (uri (string-append
2114 "http://batleth.sapienti-sat.org/projects/mb2md/mb2md-"
2115 version ".pl.gz"))
2116 (sha256
2117 (base32
2118 "0bvkky3c90738h3skd2f1b2yy5xzhl25cbh9w2dy97rs86ssjidg"))))
2119 (build-system trivial-build-system)
2120 (arguments
2121 '(#:modules ((guix build utils))
2122 #:builder
2123 (begin
2124 (use-modules (guix build utils))
2125 (let* ((source (assoc-ref %build-inputs "source"))
2126 (out (assoc-ref %outputs "out"))
2127 (bin (string-append out "/bin"))
2128 (perl (assoc-ref %build-inputs "perl"))
2129 (gzip (assoc-ref %build-inputs "gzip"))
2130 (perl-timedate (assoc-ref %build-inputs "perl-timedate"))
2131 (perl5lib (string-append perl-timedate "/lib/perl5/site_perl")))
2132 (mkdir-p bin)
2133 (with-directory-excursion bin
2134 (copy-file source "mb2md.gz")
e3cfef22 2135 (invoke (string-append gzip "/bin/gzip") "-d" "mb2md.gz")
24262239
CL
2136 (substitute* "mb2md"
2137 (("#!/usr/bin/perl")
2138 (string-append "#!/usr/bin/perl -I " perl5lib)))
2139 (patch-shebang "mb2md" (list (string-append perl "/bin")))
2140 (chmod "mb2md" #o555))
2141 #t))))
c695fb76 2142 (native-inputs `(("gzip" ,gzip)))
24262239
CL
2143 (inputs `(("perl" ,perl)
2144 ("perl-timedate" ,perl-timedate)))
2145 (home-page "http://batleth.sapienti-sat.org/projects/mb2md/")
2146 (synopsis "Mbox to maildir converter")
2147 (description
2148 "Mb2md is a Perl script that takes one or more mbox format files and
2149converts them to maildir format directories.")
2150 (license public-domain)))
e0d7b421
AI
2151
2152(define-public mpop
2153 (package
2154 (name "mpop")
4a30c51e 2155 (version "1.4.7")
e0d7b421
AI
2156 (source
2157 (origin
2158 (method url-fetch)
1497b95c 2159 (uri (string-append "https://marlam.de/mpop/releases/"
822c8501 2160 "mpop-" version ".tar.xz"))
e0d7b421 2161 (sha256
4a30c51e 2162 (base32 "0c6n5afn9pr4p7gxkv462lysrw52w9fhvavzm99c78dcp9dj5xnk"))))
e0d7b421
AI
2163 (build-system gnu-build-system)
2164 (inputs
fb5ecdec 2165 `(("gnutls" ,gnutls)))
e0d7b421
AI
2166 (native-inputs
2167 `(("pkg-config" ,pkg-config)))
1497b95c 2168 (home-page "https://marlam.de/mpop/")
e0d7b421
AI
2169 (synopsis "POP3 mail client")
2170 (description "mpop is a small and fast POP3 client suitable as a
2171fetchmail replacement.
2172
2173mpop supports multiple accounts, header based mail filtering, delivery
40b1cee6
TGR
2174to mbox files, maildir folders or an @acronym{MDA, Mail Delivery Agent},
2175TLS/SSL, several authentication methods, @acronym{IDN, Internationalized Domain
2176Names} and SOCKS proxies.")
e0d7b421 2177 (license gpl3+)))
74c0282c 2178
2179(define-public mhonarc
2180 (package
2181 (name "mhonarc")
2182 (version "2.6.19")
2183 (source
2184 (origin
2185 (method url-fetch)
2186 (uri (string-append "mirror://cpan/authors/id/E/EH/EHOOD/MHonArc-"
2187 version ".tar.gz"))
2188 (sha256
2189 (base32
2190 "0ll3v93yji334zqp6xfzfxc0127pmjcznmai1l5q6dzawrs2igzq"))))
2191 (build-system perl-build-system)
2192 (home-page "https://www.mhonarc.org/")
2193 (synopsis "Create HTML archives of mail/news messages")
2194 (description
2195 "MHonArc is a Perl mail-to-HTML converter. MHonArc
2196provides HTML mail archiving with index, mail thread linking,
2197etc; plus other capabilities including support for MIME and
2198powerful user customization features.")
2199 (license gpl2+)))
5d87088c
JD
2200
2201
2202(define-public sendmail
2203 (package
2204 (name "sendmail")
2205 (version "8.15.2")
2206 (source
2207 (origin
2208 (method url-fetch)
2209 (uri (string-append
2210 "ftp://ftp.sendmail.org/pub/sendmail/sendmail."
2211 version ".tar.gz"))
2212 (sha256
2213 (base32
2214 "0fdl9ndmspqspdlmghzxlaqk56j3yajk52d7jxcg21b7sxglpy94"))))
2215 (build-system gnu-build-system)
2216 (arguments
2217 `(#:phases
2218 (modify-phases %standard-phases
2219 (add-before 'build 'replace-/bin/sh
2220 (lambda _
2221 (substitute*
2222 (append
2223 (list "smrsh/smrsh.c" "sendmail/conf.c" "contrib/mailprio"
2224 "contrib/mmuegel" "devtools/bin/configure.sh")
2225 (find-files "." ".*\\.m4")
2226 (find-files "." ".*\\.cf"))
19527952 2227 (("/bin/sh") (which "sh")))
5d87088c
JD
2228
2229 (substitute* "devtools/bin/Build"
19527952 2230 (("SHELL=/bin/sh") (string-append "SHELL=" (which "sh"))))
5d87088c
JD
2231 #t))
2232 (replace 'configure
2233 (lambda _
2234
2235 ;; Render harmless any attempts to chown or chgrp
2236 (substitute* "devtools/bin/install.sh"
2237 (("owner=\\$2") "owner=''")
2238 (("group=\\$2") "group=''"))
2239
2240 (with-output-to-file "devtools/Site/site.config.m4"
2241 (lambda ()
2242 (format #t "
2243define(`confCC', `gcc')
2244define(`confOPTIMIZE', `-g -O2')
2245define(`confLIBS', `-lresolv')
2246define(`confINSTALL', `~a/devtools/bin/install.sh')
2247define(`confDEPEND_TYPE', `CC-M')
2248define(`confINST_DEP', `')
55492129
TGR
2249" (getcwd))))
2250 #t))
5d87088c
JD
2251 (replace 'build
2252 (lambda _
55492129
TGR
2253 (invoke "sh" "Build")
2254 (with-directory-excursion "cf/cf"
2255 (copy-file "generic-linux.mc" "sendmail.mc")
2256 (invoke "sh" "Build" "sendmail.cf"))
2257 #t))
5d87088c
JD
2258 (add-before 'install 'pre-install
2259 (lambda _
2260 (let ((out (assoc-ref %outputs "out")))
2261 (mkdir-p (string-append out "/usr/bin"))
2262 (mkdir-p (string-append out "/usr/sbin"))
2263 (mkdir-p (string-append out "/etc/mail"))
2264 (setenv "DESTDIR" out)
2265 (with-directory-excursion "cf/cf"
55492129
TGR
2266 (invoke "sh" "Build" "install-cf"))
2267 #t))))
5d87088c
JD
2268 ;; There is no make check. There are some post installation tests, but those
2269 ;; require root privileges
2270 #:tests? #f))
2271 (inputs
2272 `(("m4" ,m4)
2273 ("perl" ,perl)))
2274 (home-page "http://sendmail.org")
2275 (synopsis
2276 "Highly configurable Mail Transfer Agent (MTA)")
2277 (description
2278 "Sendmail is a mail transfer agent (MTA) originally developed by Eric
2279Allman. It is highly configurable and supports many delivery methods and many
2280transfer protocols.")
2281 (license (non-copyleft "file://LICENSE"
2282 "See LICENSE in the distribution."))))
2283
8b53366c 2284(define-public opensmtpd
2285 (package
2286 (name "opensmtpd")
2f2ce920 2287 (version "6.0.3p1")
8b53366c 2288 (source (origin
2289 (method url-fetch)
2290 (uri (string-append "https://www.opensmtpd.org/archives/"
2291 name "-" version ".tar.gz"))
2292 (sha256
2293 (base32
d6dd64af
AZ
2294 "10bsfsnlg9d9i6l2izdnxp05s3ri8fvwzqxvx1jmarc852382619"))
2295 ;; Fixed upstream: <github.com/OpenSMTPD/OpenSMTPD/pull/835>.
2296 (patches (search-patches "opensmtpd-fix-crash.patch"))))
8b53366c 2297 (build-system gnu-build-system)
2298 (inputs
2299 `(("bdb" ,bdb)
2300 ("libressl" ,libressl)
2301 ("libevent" ,libevent)
2302 ("libasr" ,libasr)
2303 ("linux-pam" ,linux-pam)
2304 ("zlib" ,zlib)))
2305 (native-inputs
d7da7604
SB
2306 `(("bison" ,bison)
2307 ("groff" ,groff)))
8b53366c 2308 (arguments
ae1e2133 2309 `(#:configure-flags
a1b517f9 2310 (list "--with-table-db" "--with-auth-pam" "--localstatedir=/var"
ae1e2133
SB
2311 "--with-user-smtpd=smtpd" "--with-user-queue=smtpq"
2312 "--with-group-queue=smtpq"
2f2ce920 2313 "--with-path-socket=/var/run" ; not default (./configure lies)
ae1e2133 2314 "--with-path-CAfile=/etc/ssl/certs/ca-certificates.crt")
8b53366c 2315 #:phases
2316 (modify-phases %standard-phases
19fed049
TGR
2317 ;; Fix some incorrectly hard-coded external tool file names.
2318 (add-after 'unpack 'patch-FHS-file-names
23e3094b 2319 (lambda _
19fed049
TGR
2320 (substitute* "smtpd/smtpctl.c"
2321 (("/bin/cat") (which "cat"))
2322 (("/bin/sh") (which "sh")))
2323 #t))
8b53366c 2324 ;; OpenSMTPD provides a single utility smtpctl to control the daemon and
2325 ;; the local submission subsystem. To accomodate systems that require
2326 ;; historical interfaces such as sendmail, newaliases or makemap, the
2327 ;; smtpctl utility can operate in compatibility mode if called with the
2328 ;; historical name.
a1eabab1
TGR
2329 (add-after 'install 'install-compability-links
2330 (lambda* (#:key outputs #:allow-other-keys)
2331 (let* ((out (assoc-ref outputs "out"))
8b53366c 2332 (sbin (string-append out "/sbin/")))
a1eabab1
TGR
2333 (for-each (lambda (command)
2334 (symlink "smtpctl" (string-append sbin command)))
8b53366c 2335 '("makemap" "sendmail" "send-mail"
2336 "newaliases" "mailq")))
2337 #t)))))
2338 (synopsis "Lightweight SMTP daemon")
2339 (description
2340 "OpenSMTPD is an implementation of the server-side SMTP protocol, with
2341some additional standard extensions. It allows ordinary machines to exchange
2342e-mails with other systems speaking the SMTP protocol.")
2343 (home-page "https://www.opensmtpd.org")
2344 (license (list bsd-2 bsd-3 bsd-4 (non-copyleft "file://COPYING")
19262a71 2345 public-domain isc license:openssl))))
152ffe7c 2346
4eb57ca8
TGR
2347;; OpenSMTPd 6.4 introduced a new and incompatible configuration file format.
2348;; Use a different name, for now, to avoid auto-upgrades and broken mail boxes.
2349;; OPENSMTP-CONFIGURATION in (gnu services mail) will also need an overhaul.
2350(define-public opensmtpd-next
2351 (package
2352 (name "opensmtpd-next")
9dfe49e4 2353 (version "6.6.1p1")
4eb57ca8
TGR
2354 (source
2355 (origin
2356 (method url-fetch)
2357 (uri (string-append "https://www.opensmtpd.org/archives/"
2358 "opensmtpd-" version ".tar.gz"))
2359 (sha256
9dfe49e4 2360 (base32 "1ngil8j13m2rq07g94j4yjr6zmaimzy8wbfr17shi7rxnazys6zb"))))
4eb57ca8
TGR
2361 (build-system gnu-build-system)
2362 (inputs
2363 `(("bdb" ,bdb)
2364 ("libasr" ,libasr)
2365 ("libevent" ,libevent)
996aca28
TGR
2366 ;; XXX Upstream recommends LibreSSL, which doesn't support TLS 1.3 yet,
2367 ;; and requires a development release (3.0.2). Use OpenSSL instead.
2368 ("openssl" ,openssl)
4eb57ca8
TGR
2369 ("linux-pam" ,linux-pam)
2370 ("zlib" ,zlib)))
2371 (native-inputs
2372 `(("bison" ,bison)
2373 ("groff" ,groff))) ; for man pages
2374 (arguments
2375 `(#:configure-flags
2376 (list "--localstatedir=/var"
2377 ;; This is the default only if it exists at build time—it doesn't.
2378 "--with-path-socket=/var/run"
2379 "--with-path-CAfile=/etc/ssl/certs/ca-certificates.crt"
2380 "--with-user-smtpd=smtpd"
2381 "--with-user-queue=smtpq" "--with-group-queue=smtpq"
2382 "--with-auth-pam"
2383 "--with-table-db")
2384 #:phases
2385 (modify-phases %standard-phases
2386 ;; Fix some incorrectly hard-coded external tool file names.
2387 (add-after 'unpack 'patch-FHS-file-names
2388 (lambda _
2389 (substitute* "smtpd/smtpctl.c"
2390 ;; ‘gzcat’ is auto-detected at compile time, but ‘cat’ isn't.
2391 (("/bin/cat") (which "cat")))
2392 (substitute* "smtpd/mda_unpriv.c"
2393 (("/bin/sh") (which "sh")))
2394 #t))
2395 ;; OpenSMTPD provides a single smtpctl utility to control both the
2396 ;; daemon and the local submission subsystem. To accomodate systems
2397 ;; that require historical interfaces such as sendmail, newaliases or
2398 ;; makemap, smtpctl operates in compatibility mode if called with the
2399 ;; historical name.
2400 (add-after 'install 'install-compability-links
2401 (lambda* (#:key outputs #:allow-other-keys)
2402 (let* ((out (assoc-ref outputs "out"))
2403 (sbin (string-append out "/sbin/")))
2404 (for-each (lambda (command)
2405 (symlink "smtpctl" (string-append sbin command)))
2406 (list "mailq" "makemap" "newaliases"
2407 "send-mail" "sendmail")))
2408 #t)))))
2409 (synopsis "Lightweight SMTP daemon")
2410 (description
2411 "OpenSMTPD is an implementation of server-side @acronym{SMTP, Simple Mail
2412Transfer Protocol}, with some additional standard extensions. It allows
2413ordinary machines to exchange e-mails with other systems speaking the SMTP
2414protocol, or to deliver them to local users.
2415
2416In order to simplify the use of SMTP, OpenSMTPD implements a smaller set of
2417functionality than those available in other SMTP daemons. The objective is to
2418provide enough features to satisfy typical usage at the risk of unsuitability
2419to esoteric or niche requirements.")
2420 (home-page "https://www.opensmtpd.org")
2421 (license (list bsd-2 bsd-3 bsd-4 (non-copyleft "file://COPYING")
2422 public-domain isc license:openssl))))
2423
152ffe7c 2424(define-public opensmtpd-extras
2425 (package
2426 (name "opensmtpd-extras")
2427 (version "5.7.1")
2428 (source (origin
2429 (method url-fetch)
2430 (uri (string-append "https://www.opensmtpd.org/archives/"
2431 name "-" version ".tar.gz"))
2432 (sha256
2433 (base32
2434 "1kld4hxgz792s0cb2gl7m2n618ikzqkj88w5dhaxdrxg4x2c4vdm"))))
2435 (build-system gnu-build-system)
2436 (inputs
2437 `(("libressl" ,libressl)
2438 ("libevent" ,libevent)
2439 ("libasr" ,libasr)
2440 ("python-2" ,python-2)
2441 ("opensmtpd" ,opensmtpd)
2442 ("perl" ,perl)
2443 ("lua" ,lua)
2444 ("postgresql" ,postgresql)
2445 ("sqlite" ,sqlite)
2446 ("linux-pam" ,linux-pam)))
2447 (native-inputs
2448 `(("bison" ,bison)
2449 ("pkg-config" ,pkg-config)
2450 ("groff" ,groff)
2451 ("automake" ,automake)
2452 ("autoconf" ,autoconf)))
2453 (arguments
2454 `(;; We have to configure it like this because the default checks for for example
2455 ;; python in /usr/local/bin, /usr/bin and fails otherwise.
2456 #:configure-flags (list
2457 "--with-filter-clamav" "--with-filter-dkim-signer"
2458 "--with-filter-dnsbl" "--with-filter-lua"
2459 "--with-filter-monkey" "--with-filter-pause"
2460 "--with-filter-perl" "--with-filter-python"
2461 "--with-filter-regex" "--with-filter-spamassassin"
2462 "--with-filter-stub" "--with-filter-trace"
2463 "--with-filter-void"
2464
2465 "--with-queue-null" "--with-queue-python"
2466 "--with-queue-ram" "--with-queue-stub"
2467
2468 "--with-scheduler-python" "--with-scheduler-ram"
2469 "--with-scheduler-stub"
2470
2471 "--with-table-ldap" ; "--with-table-mysql"
2472 "--with-table-passwd" "--with-table-postgres"
2473 "--with-table-python" "--with-table-socketmap"
2474 "--with-table-sqlite" "--with-table-stub"
2475 ;;"--with-table-redis" ; TODO: package hiredis
2476
2477 "--with-user=smtpd" "--with-privsep-user=smtpd"
2478 "--localstatedir=/var" "--sysconfdir=/etc"
2479 "--with-lua-type=lua" ; can use lua or luajit
2480
2481 (string-append "--with-python="
2482 (assoc-ref %build-inputs "python-2"))
2483 (string-append "--with-lua="
2484 (assoc-ref %build-inputs "lua")))))
19262a71
LC
2485 (license (list bsd-2 bsd-3 bsd-4
2486 public-domain isc license:openssl))
152ffe7c 2487 (synopsis "Extra tables, filters, and various other addons for OpenSMTPD")
2488 (description
2489 "This package provides extra tables, filters, and various other addons
2490for OpenSMTPD to extend its functionality.")
2491 (home-page "https://www.opensmtpd.org")))
6d3dda4f 2492
2493(define-public python-mailmanclient
2494 (package
2495 (name "python-mailmanclient")
c115a1c8 2496 (version "3.1.1")
6d3dda4f 2497 (source
2498 (origin
2499 (method url-fetch)
2500 (uri (pypi-uri "mailmanclient" version))
2501 (sha256
2502 (base32
c115a1c8 2503 "0fdfs5g3pf30v2i7w18pdkv9xnfxmfcv66mzv56dck0a1igq07m3"))))
6d3dda4f 2504 (build-system python-build-system)
2505 (arguments
2506 `(#:tests? #f)) ; Requires mailman running
f22efa01 2507 (propagated-inputs
6d3dda4f 2508 `(("python-six" ,python-six)
2509 ("python-httplib2" ,python-httplib2)))
2510 (home-page "https://launchpad.net/mailman.client")
2511 (synopsis "Python bindings for the Mailman 3 REST API")
2512 (description
2513 "The mailmanclient library provides official Python bindings for
2514the GNU Mailman 3 REST API.")
6d3dda4f 2515 (license lgpl3+)))
2516
2517(define-public python2-mailmanclient
5c31f4aa 2518 (package-with-python2 python-mailmanclient))
3163a289 2519
2520(define-public mlmmj
2521 (package
2522 (name "mlmmj")
28b48c87 2523 (version "1.3.0")
3163a289 2524 (source
2525 (origin
2526 (method url-fetch)
2527 (uri (string-append "http://mlmmj.org/releases/mlmmj-"
2528 version ".tar.bz2"))
2529 (sha256
2530 (base32
28b48c87 2531 "0hpj10qad821ci11si8xc2qnmkzfn90y13s43fm4fca38f0qjp8w"))))
3163a289 2532 (build-system gnu-build-system)
2533 (inputs
2534 `(("perl" ,perl))) ; For "contrib/web/"
2535 (native-inputs
2536 `(("pkg-config" ,pkg-config)))
2537 (arguments
2538 `(#:configure-flags
2539 ;; mlmmj-receive-strip is a replacement for mlmmj-receive
2540 ;; It opens the files control/mimedeny and control/mimestrip to get a list
2541 ;; of mimetypes for parts of multipart/mime messages that should be denied
2542 ;; or stripped. The parts then get stripped directly when the mail is
2543 ;; received. mlmmj-receive-strip also appends an extra header
2544 ;; X-ThisMailContainsUnwantedMimeParts: Y when the mail contains unwanted
2545 ;; mime parts
2546 (list "--enable-receive-strip")
2547 #:phases
2548 (modify-phases %standard-phases
2549 (add-before 'install 'install-contrib
2550 (lambda* (#:key outputs #:allow-other-keys)
2551 (let* ((out (assoc-ref outputs "out"))
2552 (share (string-append out "/share/mlmmj"))
2553 (contrib (string-append share "/contrib/web"))
2554 (texts (string-append share "/listtexts")))
2555 (copy-recursively "contrib/web/" contrib)
2556 (copy-recursively "listtexts" texts)
2557 (rename-file texts (string-append share "/texts"))
2558 #t))))))
2559 (home-page "http://mlmmj.org")
2560 (synopsis "Mailing list managing made joyful")
2561 (description
2562 "Mlmmj is a simple and slim mailing list manager (MLM) inspired by ezmlm.
2563It works with many different Mail Transport Agents (MTAs) and is simple for a
d1e4ad1b 2564system administrator to install, configure and integrate with other software.
3163a289 2565As it uses very few resources, and requires no daemons, it is ideal for
2566installation on systems where resources are limited. Its features include:
2567@enumerate
2568@item Archive, Custom headers / footer,
2569@item Fully automated bounce handling (similar to ezmlm),
2570@item Complete requeueing functionality, Moderation functionality, Subject prefix,
2571@item Subscribers only posting, Regular expression access control,
2572@item Functionality to retrieve old posts, Web interface, Digests,
2573@item No-mail subscription, VERP support,
2574@item Delivery Status Notification (RFC1891) support,
2575@item Rich and customisable texts for automated operations.
2576@end enumerate\n")
2577 (license license:expat)))
3a263368 2578
ea3b9f7b 2579(define-public python2-django-mailman3
8a3741e6 2580 (package
ea3b9f7b 2581 (name "python2-django-mailman3")
bdf0c644 2582 (version "1.1.0")
8a3741e6 2583 (source
2584 (origin
2585 (method url-fetch)
2586 (uri (pypi-uri "django-mailman3" version))
2587 (sha256
2588 (base32
bdf0c644 2589 "1xjdkgfjwhgyrp5nxw65dcpcsr98ygj6856sp0bwkrmyxpd1xxk2"))))
8a3741e6 2590 (build-system python-build-system)
ea3b9f7b
CB
2591 (arguments
2592 `(#:phases
2593 (modify-phases %standard-phases
2594 (replace 'check
2595 (lambda _
dcfdaa15
TGR
2596 (invoke "django-admin"
2597 "test"
2598 "--settings=django_mailman3.tests.settings_test"
2599 "django_mailman3"))))
ea3b9f7b 2600 #:python ,python-2))
8a3741e6 2601 (inputs
ea3b9f7b 2602 `(("python2-django" ,python2-django)))
8a3741e6 2603 (propagated-inputs
ea3b9f7b
CB
2604 `(("python2-requests" ,python2-requests)
2605 ("python2-requests-oauthlib" ,python2-requests-oauthlib)
2606 ("python2-openid" ,python2-openid)
2607 ("python2-mailmanclient" ,python2-mailmanclient)
2608 ("python2-django-allauth" ,python2-django-allauth)
2609 ("python2-django-gravatar2" ,python2-django-gravatar2)
2610 ("python2-pytz" ,python2-pytz)))
8a3741e6 2611 (home-page "https://gitlab.com/mailman/django-mailman3")
2612 (synopsis "Django library for Mailman UIs")
2613 (description
2614 "Libraries and templates for Django-based interfaces
2615interacting with Mailman.")
2616 (license gpl3+)))
2617
d99a2add 2618(define-public postorius
2619 (package
2620 (name "postorius")
2621 (version "1.0.3")
2622 (source
2623 (origin
2624 (method url-fetch)
2625 (uri (pypi-uri "postorius" version "+post2.tar.gz"))
2626 (file-name (string-append name "-" version ".tar.gz"))
2627 (sha256
2628 (base32
2629 "1wymcpv2icjjy8h1ni52p6dr7wwxf71ivqgbqhzx4i82yqphcaq5"))))
2630 (build-system python-build-system)
2631 (arguments
2632 `(; One test dependency relies on Persona, which was shut down in
2633 ;; November 2016.
2634 #:tests? #f
2635 ;; The part of the frontend of Mailman is still python 2.7.
2636 #:python ,python-2))
2637 (inputs
2638 `(("python2-django" ,python2-django)
2639 ("python2-django-mailman3" ,python2-django-mailman3)
2640 ("python2-mailmanclient" ,python2-mailmanclient)))
2641 (home-page "https://gitlab.com/mailman/postorius")
2642 (synopsis "Web user interface for GNU Mailman")
2643 (description
2644 "Postorius is a Django app which provides a web user interface
2645to access GNU Mailman.")
2646 (license (list gpl3+ lgpl3+))))
2647
3a263368 2648(define-public blists
2649 (package
2650 (name "blists")
18b1589b 2651 (version "2.0")
3a263368 2652 (source
2653 (origin
2654 (method url-fetch)
2655 (uri (string-append "http://download.openwall.net/pub/projects/"
2656 "blists/blists-" version ".tar.gz"))
2657 (sha256
2658 (base32
18b1589b 2659 "1xll5wn7py3bbncbwrj172f56nz75c9gwfsa80rwd96ss9gfmp3c"))))
3a263368 2660 (build-system gnu-build-system)
2661 (arguments
2662 `(#:tests? #f ; No tests
2663 #:phases
2664 (modify-phases %standard-phases
2665 (delete 'configure)
2666 (replace 'install
2667 (lambda* (#:key outputs #:allow-other-keys)
2668 (let* ((out (assoc-ref outputs "out"))
2669 (bin (string-append out "/bin")))
2670 (install-file "bindex" bin)
2671 (install-file "bit" bin)
2672 #t))))))
2673 (home-page "http://www.openwall.com/blists/")
2674 (synopsis "Web interface to mailing list archives")
2675 (description
2676 "Blists is a web interface to mailing list archives that works off
2677indexed mbox files. There are two programs: @code{bindex} and @code{bit}.
2678@code{bindex} generates or updates the index file (incremental updates
2679are supported). @code{bit} is a CGI/SSI program that generates web pages
2680on the fly. Both programs are written in C and are very fast.")
2681 (license license:expat)))
ed428a58
AI
2682
2683(define-public swaks
2684 (package
2685 (name "swaks")
4745f8d7 2686 (version "20181104.0")
ed428a58
AI
2687 (source
2688 (origin
2689 (method url-fetch)
2690 (uri (string-append
d72f59a4 2691 "https://jetmore.org/john/code/swaks/files/swaks-"
ed428a58
AI
2692 version ".tar.gz"))
2693 (sha256
2694 (base32
4745f8d7 2695 "0n1yd27xcyb1ylp5gln3yv5gzi9r377hjy1j32367kgb3247ygq2"))))
ed428a58
AI
2696 (build-system perl-build-system)
2697 (inputs
2698 `(("perl-net-dns" ,perl-net-dns)
2699 ("perl-net-ssleay" ,perl-net-ssleay)))
2700 (arguments
2701 `(#:tests? #f ; No tests
2702 #:phases
2703 (modify-phases %standard-phases
2704 (delete 'configure)
2705 (replace 'build
2706 (lambda _
d72f59a4 2707 (invoke "pod2man" "doc/ref.pod" "swaks.1")))
ed428a58
AI
2708 (replace 'install
2709 (lambda* (#:key outputs #:allow-other-keys)
2710 (let ((out (assoc-ref outputs "out")))
2711 (install-file "swaks" (string-append out "/bin"))
2712 (install-file "swaks.1" (string-append out "/share/man/man1")))
2713 #t))
2714 (add-after 'install 'wrap-program
2715 (lambda* (#:key outputs #:allow-other-keys)
2716 (wrap-program (string-append (assoc-ref outputs "out")
2717 "/bin/swaks")
2718 `("PERL5LIB" ":" = (,(getenv "PERL5LIB"))))
2719 #t)))))
d72f59a4 2720 (home-page "https://jetmore.org/john/code/swaks/")
ed428a58
AI
2721 (synopsis "Featureful SMTP test tool")
2722 (description "Swaks is a flexible, scriptable, transaction-oriented SMTP
2723test tool. It handles SMTP features and extensions such as TLS,
2724authentication, and pipelining; multiple versions of the SMTP protocol
2725including SMTP, ESMTP, and LMTP; and multiple transport methods including
2726unix-domain sockets, internet-domain sockets, and pipes to spawned processes.
2727Options can be specified in environment variables, configuration files, and
2728the command line allowing maximum configurability and ease of use for
2729operators and scripters.")
2730 (license gpl2+)))
b0eb2af2 2731
2732(define-public alpine
2733 (package
2734 (name "alpine")
0ca25073
TGR
2735 ;; Upstream doesn't use git tags, but does ‘tag’ their releases in the
2736 ;; commit message. Hence the lack of GIT-VERSIONing despite using a commit
2737 ;; ID below. Don't forget to update it…
54278e22 2738 (version "2.21.99999")
b0eb2af2 2739 (source
2740 (origin
0ca25073 2741 (method git-fetch)
b0eb2af2 2742 ;; There are two versions: the plain continuation of Alpine without extra
2743 ;; patches and the version which adds extra fixes. Every distro uses
2744 ;; the patched version, and so do we to not break expectations.
32f9cc33 2745 ;; http://alpine.freeiz.com/alpine/readme/README.patches
0ca25073
TGR
2746 (uri (git-reference
2747 (url "http://repo.or.cz/alpine.git")
2748 (commit "abeb2c25935ef8c75f1e5deef0f81276754dc975")))
2749 (file-name (git-file-name name version))
b0eb2af2 2750 (sha256
0ca25073 2751 (base32 "0rqgbw08a5lj41dkp82aq480lqkc4bnxagna7wpqffi821n8gkwz"))))
b0eb2af2 2752 (build-system gnu-build-system)
2753 (arguments
2754 `(#:make-flags (list "CC=gcc")
2755 #:configure-flags (list (string-append "--with-ssl-include-dir="
2756 (assoc-ref %build-inputs "openssl")
2757 "/include/openssl")
2758 (string-append "--with-ssl-dir="
2759 (assoc-ref %build-inputs "openssl"))
2760 (string-append "--with-ssl-certs-dir="
2761 "/etc/ssl/certs/")
2762 (string-append "--with-ssl-lib-dir="
2763 (assoc-ref %build-inputs "openssl")
2764 "/lib")
2765 (string-append "--with-interactive-spellcheck="
2766 (assoc-ref %build-inputs "aspell")
03b6c474
TGR
2767 "/bin/aspell")
2768 "--with-date-stamp=Thu 1 Jan 01:00:01 CET 1970")
b0eb2af2 2769 #:phases
2770 (modify-phases %standard-phases
2771 (add-after 'unpack 'make-reproducible
2772 (lambda _
2773 ;; This removes time-dependent code to make alpine reproducible.
2774 (substitute* "pico/blddate.c"
2775 (("%02d-%s-%d") "1970-01-01"))
b0eb2af2 2776 #t)))))
2777 (inputs
2778 `(("ncurses" ,ncurses)
2779 ("openssl" ,openssl)
2780 ("gnutls" ,gnutls)
2781 ("openldap" ,openldap)
2782 ("cyrus-sasl" ,cyrus-sasl)
2783 ("mit-krb5" ,mit-krb5)
2784 ("aspell" ,aspell)
2785 ("tcl" ,tcl)
2786 ("linux-pam" ,linux-pam)))
da83224d 2787 (home-page "https://repo.or.cz/alpine.git")
b0eb2af2 2788 (synopsis "Alternatively Licensed Program for Internet News and Email")
2789 (description
2790 "Alpine is a text-based mail and news client. Alpine includes several
2791tools and applications:
2792@enumerate
2793@item alpine, the Alpine mailer
2794@item pico, the standalone text editor, GNU nano's predecessor
2795@item pilot, the standalone file system navigator
2796@end enumerate\n")
2797 (license asl2.0)))
7c16151a
RS
2798
2799(define-public balsa
2800 (package
2801 (name "balsa")
f58b10cb 2802 (version "2.5.7")
7c16151a
RS
2803 (source
2804 (origin
2805 (method url-fetch)
e9201659
R
2806 (uri (string-append "https://pawsa.fedorapeople.org/balsa/"
2807 name "-" version ".tar.bz2"))
7c16151a 2808 (sha256
f58b10cb 2809 (base32 "0yfqhfpwm1qnwmbpr6dfn2f5w8a8xxq51pn8ypgg0fw973l1c1nx"))))
7c16151a
RS
2810 (build-system gnu-build-system)
2811 (arguments
2812 `(#:configure-flags
2813 '(;; Balsa tries to install additional MIME icons
2814 ;; under gtk+ directory.
2815 "--enable-extra-mimeicons=no"
2816 "--with-gtksourceview"
2817 "--with-canberra"
2818 "--with-spell-checker=gtkspell"
2819 "--with-gpgme"
2820 "--with-sqlite"
2821 "--with-compface"
2822 "--with-ldap")))
2823 (inputs
2824 `(("cyrus-sasl" ,cyrus-sasl)
2825 ("enchant" ,enchant)
2826 ("gdk-pixbuf" ,gdk-pixbuf)
8e020519 2827 ("gmime" ,gmime-2.6)
7c16151a
RS
2828 ("gnutls" ,gnutls)
2829 ("gpgme" ,gpgme)
2830 ("gtk+" ,gtk+)
f58b10cb 2831 ("gtksourceview" ,gtksourceview-3)
7c16151a
RS
2832 ("gtkspell3" ,gtkspell3)
2833 ("libcanberra" ,libcanberra)
2834 ("libesmtp" ,libesmtp)
2835 ("libnotify" ,libnotify)
2836 ("openldap" ,openldap)
2837 ("sqlite" ,sqlite)
2838 ("webkitgtk" ,webkitgtk)))
2839 (native-inputs
2840 `(("compface" ,compface)
2841 ("glib" ,glib "bin")
2842 ("intltool" ,intltool)
2843 ("pkg-config" ,pkg-config)
2844 ("yelp-tools" ,yelp-tools)))
2845 (home-page "https://pawsa.fedorapeople.org/balsa")
2846 (synopsis "E-mail client for GNOME")
2847 (description "Balsa is a highly configurable and robust mail client for
2848the GNOME desktop. It supports both POP3 and IMAP servers as well as the
2849mbox, maildir and mh local mailbox formats. Balsa also supports SMTP and/or
b95d5f62 2850the use of a local MTA such as Sendmail.")
7c16151a 2851 (license gpl3+)))
1e52fd83
AI
2852
2853(define-public afew
2854 (package
2855 (name "afew")
2856 (version "1.2.0")
2857 (source
2858 (origin
2859 (method url-fetch)
2860 (uri (pypi-uri "afew" version))
2861 (sha256
2862 (base32
2863 "121w7bd53xyibllxxbfykjj76n81kn1vgjqd22izyh67y8qyyk5r"))))
2864 (build-system python-build-system)
2865 (inputs
2866 `(("python-chardet" ,python-chardet)
2867 ("python-notmuch" ,python-notmuch)))
2868 (native-inputs
2869 `(("python-setuptools-scm" ,python-setuptools-scm)))
2870 (home-page "https://github.com/afewmail/afew")
2871 (synopsis "Initial tagging script for notmuch mail")
2872 (description "afew is an initial tagging script for notmuch mail. It
2873provides automatic tagging each time new mail is registered with notmuch. It
2874can add tags based on email headers or Maildir folders and can handle spam and
2875killed threads.")
2876 (license isc)))
1679923a
DM
2877
2878(define-public pan
2879 (package
2880 (name "pan")
de227459 2881 (version "0.146")
1679923a
DM
2882 (source
2883 (origin
2884 (method url-fetch)
2885 (uri (string-append "http://pan.rebelbase.com/download/releases/"
2886 version "/source/" name "-" version ".tar.bz2"))
2887 (sha256
de227459 2888 (base32 "17agd27sn4a7nahvkpg0w39kv74njgdrrygs74bbvpaj8rk2hb55"))))
1679923a
DM
2889 (arguments
2890 `(#:configure-flags '("--with-gtk3" "--with-gtkspell" "--with-gnutls"
2891 "--enable-libnotify" "--enable-manual"
2892 "--enable-gkr")
2893 #:phases
2894 (modify-phases %standard-phases
2895 (add-before 'configure 'patch-gpg2
2896 (lambda* (#:key inputs #:allow-other-keys)
2897 (substitute* "pan/usenet-utils/gpg.cc"
2898 (("\"gpg2\"") (string-append "\""
2899 (assoc-ref inputs "gnupg")
2900 "/bin/gpg\"")))
2901 #t)))))
2902 (inputs
8e020519 2903 `(("gmime" ,gmime-2.6)
1679923a
DM
2904 ("gnupg" ,gnupg)
2905 ("gnutls" ,gnutls)
2906 ("gtk+" ,gtk+)
2907 ("gtkspell3" ,gtkspell3)
2908 ("libnotify" ,libnotify)
2909 ("libsecret" ,libsecret)
2910 ("libxml2" ,libxml2)
2911 ("zlib" ,zlib)))
2912 (native-inputs
2913 `(("gettext-minimal" ,gettext-minimal)
2914 ("itstool" ,itstool)
2915 ("pkg-config" ,pkg-config)))
2916 (build-system gnu-build-system)
2917 (home-page "http://pan.rebelbase.com/")
2918 (synopsis "Pan newsreader")
2919 (description "@code{pan} is a Usenet newsreader that's good at both text
2920and binaries. It supports offline reading, scoring and killfiles, yEnc, NZB,
2921PGP handling, multiple servers, and secure connections.")
2922 ;; License of the docs: fdl-1.1; Others: gpl2.
2923 (license (list fdl1.1+ gpl2))))
ae7c1c37
JL
2924
2925(define-public imapfilter
2926 (package
2927 (name "imapfilter")
29a87ed1 2928 (version "2.6.16")
ae7c1c37
JL
2929 (source
2930 (origin
b1d30f46
TGR
2931 (method git-fetch)
2932 (uri (git-reference
2933 (url "https://github.com/lefcha/imapfilter.git")
2934 (commit (string-append "v" version))))
2935 (file-name (git-file-name name version))
ae7c1c37 2936 (sha256
29a87ed1 2937 (base32 "0f65sg6hhv6778fxwsz4hvarbm97dsb8jj0mg7a9qs273r35pqck"))))
ae7c1c37
JL
2938 (build-system gnu-build-system)
2939 (arguments
2940 `(#:tests? #f
2941 #:make-flags
2942 (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
2943 "CC=gcc")
2944 #:phases
2945 (modify-phases %standard-phases
29a87ed1 2946 (delete 'configure)))) ; no configure script
ae7c1c37
JL
2947 (native-inputs
2948 `(("lua" ,lua)
2949 ("pcre" ,pcre)
2950 ("openssl" ,openssl)))
2951 (home-page "https://github.com/lefcha/imapfilter")
2952 (synopsis "IMAP mail filtering utility")
2953 (description "IMAPFilter is a mail filtering utility. It connects
2954to remote mail servers using IMAP, sends searching queries to the server and
2955processes mailboxes based on the results. It can be used to delete, copy,
2956move, flag, etc. messages residing in mailboxes at the same or different mail
2957servers. The 4rev1 and 4 versions of IMAP are supported.")
2958 (license license:expat)))
dc8675af
EF
2959
2960(define-public urlscan
2961 (package
2962 (name "urlscan")
803f0584 2963 (version "0.9.4")
dc8675af
EF
2964 (source
2965 (origin
2966 (method url-fetch)
2967 (uri (pypi-uri "urlscan" version))
2968 (sha256
803f0584 2969 (base32 "1q0vxv9haap01vz1cbkzss62cgwb9365lv5vnkg2gbpx4g5y7a9l"))))
dc8675af
EF
2970 (build-system python-build-system)
2971 (propagated-inputs
2972 `(("python-urwid" ,python-urwid)))
2973 (home-page "https://github.com/firecat53/urlscan")
2974 (synopsis "View/select the URLs in an email message or file")
2975 (description
2976 "Urlscan is a small program that is designed to integrate with the
2977@code{mutt} mailreader to allow you to easily launch a Web browser for URLs
2978contained in email messages. It parses an email message or file and scans it
2979for URLs and email addresses. It then displays the URLs and their context
2980within the message, and allows you to choose one or more URLs to send to your
2981Web browser. Alternatively, it send a list of all URLs to stdout. It is a
2982replacement for the @code{urlview} program.")
2983 (license gpl2)))
829785c1
EB
2984
2985(define-public tnef
2986 (package
2987 (name "tnef")
fe147c97 2988 (version "1.4.18")
829785c1
EB
2989 (source
2990 (origin
2991 (method git-fetch)
2992 (uri (git-reference
2993 (url "https://github.com/verdammelt/tnef.git")
2994 (commit version)))
2995 (sha256
fe147c97 2996 (base32 "104g48mcm00bgiyzas2vf86331w7bnw7h3bc11ib4lp7rz6zqfck"))
829785c1
EB
2997 (file-name (git-file-name name version))))
2998 (build-system gnu-build-system)
2999 (native-inputs
3000 `(("autoconf" ,autoconf)
3001 ("automake" ,automake)))
3002 (arguments `(#:parallel-tests? #f)) ;tests are side-effect'y
3003 (home-page "https://github.com/verdammelt/tnef")
3004 (synopsis "Unpack @code{application/ms-tnef} attachments")
3005 (description
3006 "TNEF is a tar-like program that unpacks MIME attachments of type
3007@code{application/ms-tnef}.")
3008 (license gpl2+)))
e3a47031
RW
3009
3010(define-public mumi
b7f1a1aa
RW
3011 (let ((commit "8a57c87797ffb07baa88697130204184db643521")
3012 (revision "5"))
e3a47031
RW
3013 (package
3014 (name "mumi")
3015 (version (git-version "0.0.0" revision commit))
3016 (source (origin
3017 (method git-fetch)
3018 (uri (git-reference
3019 (url "https://git.elephly.net/software/mumi.git")
3020 (commit commit)))
3021 (file-name (git-file-name name version))
3022 (sha256
3023 (base32
18e4d11b
LC
3024 "1575gn5p086sjxz5hvg6iyskq6cxf6vf50s9nsc4xgrbcqa3pv2c"))
3025 (modules '((guix build utils)))
3026 (snippet
3027 '(begin
18e4d11b 3028 (substitute* "Makefile.am"
ec73e50b
LC
3029 ;; Install .go files to $prefix/lib instead of
3030 ;; $prefix/share.
18e4d11b
LC
3031 (("^godir[[:space:]]*=.*")
3032 "godir = \
ec73e50b
LC
3033$(libdir)/guile/@GUILE_EFFECTIVE_VERSION@/site-ccache\n")
3034
3035 ;; Install assets.
3036 (("^assetsdir.*" _)
3037 "\
3038assetsdir = $(pkgdatadir)/assets
3039assetscssdir = $(assetsdir)/css
3040assetsimgdir = $(assetsdir)/img
3041assetsjsdir = $(assetsdir)/js
3042
3043assetscss_DATA = $(wildcard assets/css/*)
3044assetsimg_DATA = $(wildcard assets/img/*)
3045assetsjs_DATA = $(wildcard assets/js/*)\n"))
18e4d11b 3046 #t))))
e3a47031
RW
3047 (build-system gnu-build-system)
3048 (arguments
1214684b
LC
3049 `(#:modules ((guix build gnu-build-system)
3050 ((guix build guile-build-system)
3051 #:select (target-guile-effective-version))
3052 (guix build utils))
3053 #:imported-modules ((guix build guile-build-system)
3054 ,@%gnu-build-system-modules)
3055
8ff573d3
LC
3056 #:configure-flags '("--localstatedir=/var")
3057
1214684b 3058 #:phases
e3a47031
RW
3059 (modify-phases %standard-phases
3060 (add-after 'install 'wrap-executable
3061 (lambda* (#:key outputs #:allow-other-keys)
3062 (let* ((out (assoc-ref outputs "out"))
3063 (bin (string-append out "/bin"))
1214684b
LC
3064 (version (target-guile-effective-version))
3065 (scm (string-append out "/share/guile/site/" version))
3066 (go (string-append out "/lib/guile/" version
3067 "/site-ccache")))
e3a47031
RW
3068 (wrap-program (string-append bin "/mumi")
3069 `("GUILE_LOAD_PATH" ":" prefix
3070 (,scm ,(getenv "GUILE_LOAD_PATH")))
3071 `("GUILE_LOAD_COMPILED_PATH" ":" prefix
3072 (,go ,(getenv "GUILE_LOAD_COMPILED_PATH"))))
3073 #t))))))
3074 (inputs
3075 `(("guile-debbugs" ,guile-debbugs-next)
3076 ("guile-email" ,guile-email)
3077 ("guile-fibers" ,guile-fibers)
91f55717 3078 ("guile-json" ,guile-json-1)
e3a47031 3079 ("guile-syntax-highlight" ,guile-syntax-highlight)
c48c6152 3080 ("gnutls" ,gnutls) ;needed to talk to https://debbugs.gnu.org
c7b2b539
LC
3081 ("guile" ,guile-2.2)
3082 ("mumimu" ,mumimu))) ;'mumimu' executable recorded in (mumi config)
e3a47031
RW
3083 (native-inputs
3084 `(("autoconf" ,autoconf)
3085 ("automake" ,automake)
3086 ("pkg-config" ,pkg-config)))
3087 (home-page "https://git.elephly.net/software/mumi.git")
3088 (synopsis "Debbugs web interface")
3089 (description "Mumi is a Debbugs web interface.")
3090 (license agpl3+))))
e1c58440
RW
3091
3092(define-public ytnef
3093 (package
3094 (name "ytnef")
3095 (version "1.9.3")
3096 (source (origin
3097 (method git-fetch)
3098 (uri (git-reference
3099 (url "https://github.com/Yeraze/ytnef.git")
3100 (commit (string-append "v" version))))
3101 (file-name (git-file-name name version))
3102 (sha256
3103 (base32
3104 "07h48s5qf08503pp9kafqbwipdqghiif22ghki7z8j67gyp04l6l"))))
3105 (build-system gnu-build-system)
3106 (native-inputs
3107 `(("autoconf" ,autoconf)
3108 ("automake" ,automake)
3109 ("libtool" ,libtool)))
3110 (home-page "https://github.com/Yeraze/ytnef/")
3111 (synopsis "TNEF stream reader for winmail.dat files")
3112 (description "This package provides a TNEF stream reader library and
3113related tools to process winmail.dat files.")
3114 (license gpl2+)))
eff3a9b2
SB
3115
3116(define-public public-inbox
3117 (let ((commit "3cf66514aea9e958999973b9f104473b6d800fbe")
3118 (revision "0"))
3119 (package
3120 (name "public-inbox")
3121 (version (git-version "1.0.0" revision commit))
3122 (source
3123 (origin (method git-fetch)
3124 (uri (git-reference
3125 (url "https://public-inbox.org")
3126 (commit commit)))
3127 (sha256
3128 (base32
3129 "1sxycwlm2n6p544gn9f0vf3xs6gz8vdswdhs2ha6fka8mgabvmdh"))
3130 (file-name (git-file-name name version))))
3131 (build-system perl-build-system)
3132 (arguments
3133 '(#:phases
3134 (modify-phases %standard-phases
3135 (add-before 'configure 'qualify-paths
3136 (lambda _
3137 ;; Use absolute paths for 'xapian-compact'.
3138 (let ((xapian-compact (which "xapian-compact")))
3139 (substitute* "script/public-inbox-compact"
3140 (("xapian-compact") xapian-compact)))
3141 #t))
3142 (add-before 'check 'pre-check
3143 (lambda _
3144 (substitute* "t/spawn.t"
3145 (("\\['env'\\]") (string-append "['" (which "env") "']")))
3146 #t))
3147 (add-after 'install 'wrap-programs
3148 (lambda* (#:key inputs outputs #:allow-other-keys)
3149 (let ((out (assoc-ref outputs "out")))
3150 (for-each
3151 (lambda (prog)
3152 (wrap-program prog
3153 ;; Let those scripts find their perl modules.
3154 `("PERL5LIB" ":" prefix
3155 (,(string-append out "/lib/perl5/site_perl")
3156 ,(getenv "PERL5LIB")))
3157 ;; 'git' is invoked in various files of the PublicInbox
3158 ;; perl module.
3159 `("PATH" ":" prefix
3160 (,(string-append (assoc-ref inputs "git") "/bin")))))
3161 (find-files (string-append out "/bin"))))
3162 #t)))))
3163 (native-inputs
3164 `(("git" ,git)
3165 ("xapian" ,xapian)))
3166 (inputs
3167 `(("perl-danga-socket" ,perl-danga-socket)
3168 ("perl-dbd-sqlite" ,perl-dbd-sqlite)
3169 ("perl-dbi" ,perl-dbi)
3170 ("perl-email-address-xs" ,perl-email-address-xs)
3171 ("perl-email-mime-contenttype" ,perl-email-mime-contenttype)
3172 ("perl-email-mime" ,perl-email-mime)
3173 ("perl-email-simple" ,perl-email-simple)
3174 ("perl-filesys-notify-simple" ,perl-filesys-notify-simple)
3175 ("perl-plack-middleware-deflater" ,perl-plack-middleware-deflater)
3176 ("perl-plack-middleware-reverseproxy" ,perl-plack-middleware-reverseproxy)
3177 ("perl-plack" ,perl-plack)
3178 ("perl-search-xapian" ,perl-search-xapian)
3179 ("perl-timedate" ,perl-timedate)
3180 ("perl-uri-escape" ,perl-uri-escape)
3181 ;; For testing.
3182 ("perl-ipc-run" ,perl-ipc-run)
3183 ("perl-xml-feed" ,perl-xml-feed)))
3184 (home-page "https://public-inbox.org/README.html")
3185 (synopsis "Archive mailing lists in git repositories")
3186 (description
3187 "public-inbox implements the sharing of an email inbox via git to
3188complement or replace traditional mailing lists. Readers may read via NNTP,
3189Atom feeds or HTML archives.")
3190 (license agpl3+))))