diff options
| -rw-r--r-- | gnu/packages/mail.scm | 24 |
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.") | |||
| 939 | format and headers.") | 939 | format 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 | ||
| 960 | submission of) electronic mail via a preconfigured Mail Transport Agent (MTA). | ||
| 961 | It may be used as part of a Mail User Agent (MUA) or other program that must | ||
| 962 | be able to post electronic mail where mail functionality may not be that | ||
| 963 | program's primary purpose.") | ||
| 964 | (license (list lgpl2.1+ gpl2+)))) | ||
| 965 | |||
| 942 | ;;; mail.scm ends here | 966 | ;;; mail.scm ends here |
