all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob 0cf01d40fbf9cc1825d09931d5b5144b5700fa34 1523 bytes (raw)
name: gnu/packages/msmtp.scm 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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+)))

debug log:

solving 0cf01d4 ...
found 0cf01d4 in https://yhetil.org/guix/1417913218-29144-1-git-send-email-sleep_walker@suse.cz/

applying [1/1] https://yhetil.org/guix/1417913218-29144-1-git-send-email-sleep_walker@suse.cz/
diff --git a/gnu/packages/msmtp.scm b/gnu/packages/msmtp.scm
new file mode 100644
index 0000000..0cf01d4

Checking patch gnu/packages/msmtp.scm...
Applied patch gnu/packages/msmtp.scm cleanly.

index at:
100644 0cf01d40fbf9cc1825d09931d5b5144b5700fa34	gnu/packages/msmtp.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.