amazon-emailer-0.4.0.0: amazon-emailer.cabal
name: amazon-emailer
version: 0.4.0.0
synopsis: A queue daemon for Amazon's SES with a PostgreSQL table as a queue.
description: This application checks every second for messages in a queue table,
if there exist some that haven't been sent, it grabs
a specified number out (based on what your current send rate is), sends them,
marks them as sent, and goes back to sleep.
homepage: https://github.com/dbp/amazon-emailer
license: BSD3
license-file: LICENSE
author: Daniel Patterson
maintainer: dbp@dbpmail.net
-- copyright:
category: Network
build-type: Simple
cabal-version: >=1.8
executable amazon-emailer
main-is: Mailer.hs
-- other-modules:
Build-depends:
base == 4.*,
resourcet == 1.*,
lifted-base == 0.2.*,
text == 0.11.*,
bytestring >= 0.9.1 && < 0.11,
postgresql-simple == 0.3.*,
http-conduit == 2.1.*,
mime-mail == 0.4.*,
mime-mail-ses == 0.2.*,
time >= 1.1 && < 1.5,
configurator == 0.2.*
executable amazon-emailer-queue-cleaner
main-is: Cleaner.hs
-- other-modules:
Build-depends:
base == 4.*,
lifted-base == 0.2.*,
postgresql-simple == 0.3.*,
configurator == 0.2.*