aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/putmail-queue.rb
diff options
context:
space:
mode:
authorTim Gray2011-04-26 11:32:14 -0400
committerAdam Vandenberg2011-11-20 15:32:17 -0800
commitb2c857fc0234a19f8429a6c5ab464de1b074052b (patch)
tree57076f81cf50793afb8d2ed6cbeae9c35b6d802c /Library/Formula/putmail-queue.rb
parent72fa2525eb4d3fdd28ec33d4e3ba71e337a4836f (diff)
downloadhomebrew-b2c857fc0234a19f8429a6c5ab464de1b074052b.tar.bz2
putmail-queue
Putmail.py is a very simple and lightweight smtp client. Like msmtp but written in Python. Supports queuing with the addition of the putmail-queue brew. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/putmail-queue.rb')
-rw-r--r--Library/Formula/putmail-queue.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/putmail-queue.rb b/Library/Formula/putmail-queue.rb
new file mode 100644
index 000000000..5c9c15647
--- /dev/null
+++ b/Library/Formula/putmail-queue.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class PutmailQueue < Formula
+ url 'http://downloads.sourceforge.net/project/putmail/putmail-queue/0.2/putmail-queue-0.2.tar.bz2'
+ homepage 'http://putmail.sourceforge.net/home.html'
+ md5 '8c9401e403bd6d0948e8cbcfc811f1db'
+
+ depends_on 'putmail'
+
+ def install
+ bin.install ['putmail_dequeue.py', 'putmail_enqueue.py']
+ man1.install Dir["man/man1/*.1"]
+ end
+end