From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20=C4=8Cech?= Subject: [PATCH] gnu: add msmtp Date: Sun, 7 Dec 2014 01:46:58 +0100 Message-ID: <1417913218-29144-1-git-send-email-sleep_walker@suse.cz> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55791) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XxQ05-0003fg-5L for guix-devel@gnu.org; Sat, 06 Dec 2014 19:47:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XxPzx-0005wu-LQ for guix-devel@gnu.org; Sat, 06 Dec 2014 19:47:01 -0500 Received: from cantor2.suse.de ([195.135.220.15]:59097 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XxPzx-0005wk-FA for guix-devel@gnu.org; Sat, 06 Dec 2014 19:46:53 -0500 Received: from relay1.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 3529DAB43 for ; Sun, 7 Dec 2014 00:46:52 +0000 (UTC) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/packages/msmtp.scm: New file. --- gnu/packages/msmtp.scm | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 gnu/packages/msmtp.scm diff --git a/gnu/packages/msmtp.scm b/gnu/packages/msmtp.scm new file mode 100644 index 0000000..0cf01d4 --- /dev/null +++ b/gnu/packages/msmtp.scm @@ -0,0 +1,46 @@ +(define-module (gnu packages msmtp) + #:use-module (gnu packages) + #:use-module (gnu packages compression) + #:use-module (gnu packages libidn) + #:use-module (gnu packages gnutls) + #:use-module (gnu packages gsasl) + #:use-module (gnu packages pkg-config) + #:use-module (guix packages) + #:use-module (guix download) + #:use-module (guix build-system gnu) + #:use-module ((guix licenses) #:prefix license:) + ) + +(define-public msmtp + (package + (name "msmtp") + (version "1.4.32") + (source + (origin + (method url-fetch) + (uri (string-append "http://downloads.sourceforge.net/project/msmtp/msmtp/" + version "/msmtp-" version ".tar.bz2")) + (sha256 (base32 + "122z38pv4q03w3mbnhrhg4w85a51258sfdg2ips0b6cgwz3wbw1b")))) + (build-system gnu-build-system) + (inputs + `(("libidn" ,libidn) + ("gnutls" ,gnutls) + ("zlib" ,zlib) + ("gsasl" ,gsasl))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "http://msmtp.sourceforge.net/") + (arguments + `(#:configure-flags (list "--with-libgsasl" + "--with-libidn" + "--with-ssl=gnutls"))) + (synopsis + "SMTP client") + (description + "msmtp is an SMTP client. In the default mode, it transmits a mail to +an SMTP server (for example at a free mail provider) which takes care of further +delivery. To use this program with your mail user agent (MUA), create +a configuration file with your mail account(s) and tell your MUA to call +msmtp instead of /usr/sbin/sendmail.") + (license license:gpl3+))) -- 2.1.2