3494a961fb
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>
14 lines
391 B
Ruby
14 lines
391 B
Ruby
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
|