summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Wingo <wingo@igalia.com>2015-11-03 15:46:33 +0100
committerAndy Wingo <wingo@igalia.com>2015-11-03 21:08:31 +0100
commitf5dceecb0ce704491237bd6ad4a121088b0f47c1 (patch)
tree125e1cc90fd21a85704c9037eef914111c9d6899
parent6e82863463c641571e852291481e2b64401c2fe2 (diff)
gnu: Add libesmtp.
* gnu/packages/mail.scm (libesmtp): New public variable.
-rw-r--r--gnu/packages/mail.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 1e3ba8fd543..3ba956ef1b9 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -939,4 +939,28 @@ Email::Send library.")
939format and headers.") 939format and headers.")
940 (license (package-license perl)))) 940 (license (package-license perl))))
941 941
942(define-public libesmtp
943 (package
944 (name "libesmtp")
945 (version "1.0.6")
946 (source
947 (origin
948 (method url-fetch)
949 (uri (string-append "http://www.stafford.uklinux.net/libesmtp/libesmtp-"
950 version ".tar.bz2"))
951 (sha256
952 (base32
953 "02zbniyz7qys1jmx3ghx21kxmns1wc3hmv80gp7ag7yra9f1m9nh"))))
954 (build-system gnu-build-system)
955 (propagated-inputs
956 `(("openssl" ,openssl)))
957 (home-page "http://www.stafford.uklinux.net/libesmtp/")
958 (synopsis "Library for sending mail via remote hosts using SMTP")
959 (description "libESMTP is an SMTP client which manages posting (or
960submission of) electronic mail via a preconfigured Mail Transport Agent (MTA).
961It may be used as part of a Mail User Agent (MUA) or other program that must
962be able to post electronic mail where mail functionality may not be that
963program's primary purpose.")
964 (license (list lgpl2.1+ gpl2+))))
965
942;;; mail.scm ends here 966;;; mail.scm ends here