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