diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-06-30 15:48:34 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-06-30 21:34:29 +0200 |
commit | f2a8b7e09c043aeb926e20301b8ae249ddfd652f (patch) | |
tree | bbe471d392116442df9fccdad4b5f17d855be1af /gnu/packages/mail.scm | |
parent | 4f77288569a072e2b276444364cfc7fbd3ac04ce (diff) | |
download | guix-f2a8b7e09c043aeb926e20301b8ae249ddfd652f.tar.gz |
gnu: libesmtp: Expand description.
* gnu/packages/mail.scm (libesmtp)[description]: Add more libESMTP facts.
Diffstat (limited to 'gnu/packages/mail.scm')
-rw-r--r-- | gnu/packages/mail.scm | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 84b1d19cbe..88858eeea7 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -2330,11 +2330,20 @@ format and headers.") `(("openssl" ,openssl))) (home-page "http://www.stafford.uklinux.net/libesmtp/") (synopsis "Library for sending mail via remote hosts using SMTP") - (description "libESMTP is an SMTP client which manages posting (or -submission of) electronic mail via a preconfigured Mail Transport Agent (MTA). -It may be used as part of a Mail User Agent (MUA) or other program that must -be able to post electronic mail where mail functionality may not be that -program's primary purpose.") + (description + "libESMTP is an @acronym{SMTP, Simple Mail Transfer Protocol} client that +manages posting (or submission of) electronic mail via a preconfigured +@acronym{MTA, Mail Transport Agent}. + +It may be used as part of a @acronym{MUA, Mail User Agent}, or other program +that must be able to post electronic mail where mail functionality may not be +that program's primary purpose. + +libESMTP's high-level API shields developers from the complexity of SMTP. It +transparently handles many SMTP extensions including authentication, +@acronym{TLS, Transport-Level Security}, and PIPELINING for performance. Even +without a pipelining server, libESMTP offers much better performance than would +be expected from a simple client.") (license (list license:lgpl2.1+ license:gpl2+)))) (define-public esmtp |