This package provides some high-level datatypes for declaring MIME email

messages, functions for automatically composing these into bytestrings,
and the ability to send bytestrings via the sendmail executable.  You
can also use any other library you wish to send via different methods,
eg directly to SMTP.

WWW:	http://github.com/snoyberg/mime-mail

Obtained from:	FreeBSD Haskell
This commit is contained in:
Gabor Pali 2012-02-18 17:15:46 +00:00
parent f2ec06ecbd
commit b41bcdb179
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=291712
5 changed files with 31 additions and 0 deletions

View File

@ -165,6 +165,7 @@ math-functions_port= math/hs-math-functions
MaybeT_port= devel/hs-MaybeT
MemoTrie_port= devel/hs-MemoTrie
mime_port= mail/hs-mime
mime-mail_port= mail/hs-mime-mail
MissingH_port= devel/hs-MissingH
mmap_port= devel/hs-mmap
monad-control_port= devel/hs-monad-control

View File

@ -196,6 +196,7 @@
SUBDIR += hotwayd
SUBDIR += hs-email-validate
SUBDIR += hs-mime
SUBDIR += hs-mime-mail
SUBDIR += ifile
SUBDIR += ilohamail
SUBDIR += ilohamail-devel

View File

@ -0,0 +1,20 @@
# New ports collection makefile for: hs-mime-mail
# Date created: December 26, 2011
# Whom: haskell@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= mime-mail
PORTVERSION= 0.4.1.1
CATEGORIES= mail haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= Compose MIME email messages
LICENSE= BSD
USE_CABAL= base64-bytestring>=0.1 blaze-builder>=0.2.1 text>=0.7
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (cabal/mime-mail-0.4.1.1.tar.gz) = c41b2e8a5893f1e3ff49d357ec427d9c82692822291444615a6a4aed0d83ba05
SIZE (cabal/mime-mail-0.4.1.1.tar.gz) = 5959

View File

@ -0,0 +1,7 @@
This package provides some high-level datatypes for declaring MIME email
messages, functions for automatically composing these into bytestrings,
and the ability to send bytestrings via the sendmail executable. You
can also use any other library you wish to send via different methods,
eg directly to SMTP.
WWW: http://github.com/snoyberg/mime-mail