diff options
author | terramorpha <terramorpha@cock.li> | 2022-04-06 13:11:52 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-04-12 23:55:14 +0200 |
commit | 950f3e4f98add14f645dc4c9f8c512cac7b8a779 (patch) | |
tree | 5490e720b0ee1c8619a3adc32169726a8312a168 /gnu/packages/mail.scm | |
parent | 1885f8035a41b2f92cf904d11506ac105f90a8a9 (diff) | |
download | guix-950f3e4f98add14f645dc4c9f8c512cac7b8a779.tar.gz |
gnu: Add smtpmail.
* gnu/packages/mail.scm (smtpmail): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/mail.scm')
-rw-r--r-- | gnu/packages/mail.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 16569741a4..5dd7f3b33e 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -46,6 +46,7 @@ ;;; Copyright © 2021 Morgan Smith <Morgan.J.Smith@outlook.com> ;;; Copyright © 2021 Philip McGrath <philip@philipmcgrath.com> ;;; Copyright © 2022 Andrew Tropin <andrew@trop.in> +;;; Copyright © 2022 Justin Veilleux <terramorpha@cock.li> ;;; ;;; This file is part of GNU Guix. ;;; @@ -4597,3 +4598,23 @@ Guix's version of @command{sendgmail} has been patched for compatibility with all known forks, including support for non-@code{@@gmail.com} email addresses.") (license license:asl2.0)))) + +(define-public smtpmail + (package + (name "smtpmail") + (version "0.4.5") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://savannah/smtpmail/smtpmail-" + version ".tar.gz")) + (sha256 + (base32 "08ap2l2g2avkq2jx05jy993517vvapmypg7j5cwl8gvpq436gdh5")))) + (build-system gnu-build-system) + (home-page "https://www.nongnu.org/smtpmail/") + (synopsis "SMTP utility") + (description + "smtpmail is a little console-based tool for users who have no local +mailserver on their machine. It enables these users to send their mail over a +remote SMTP server.") + (license license:gpl2+))) |