aboutsummaryrefslogtreecommitdiff
path: root/mail/rubygem-mail_room
diff options
context:
space:
mode:
authorSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2015-11-23 18:32:58 +0000
committerSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2015-11-23 18:32:58 +0000
commit2c18e90c9cfdc74eb75e8a7d765db3af817612da (patch)
tree2207d3b2948bfc3df43dd4861142a968b29d00ab /mail/rubygem-mail_room
parenta9693e7e3a764eba559834cf63d190f1fa33672f (diff)
downloadports-2c18e90c9cfdc74eb75e8a7d765db3af817612da.tar.gz
ports-2c18e90c9cfdc74eb75e8a7d765db3af817612da.zip
- Add rubygem-mail_room 0.5.2
- While I'm here: - Add LICENSE_FILE - Add NO_ARCH - Fix PLIST_FILES mail_room is a configuration based process that will idle on IMAP connections and execute a delivery method when a new message is received. Examples of delivery methods include: POST to a delivery URL (Postback) Queue a job to Sidekiq or Que for later processing (Sidekiq or Que) Log the message or open with LetterOpener (Logger or LetterOpener) WWW: https://github.com/tpitale/mail_room PR: 203583 Submitted by: Michael Fausten <ports@michael-fausten.de>
Notes
Notes: svn path=/head/; revision=402309
Diffstat (limited to 'mail/rubygem-mail_room')
-rw-r--r--mail/rubygem-mail_room/Makefile21
-rw-r--r--mail/rubygem-mail_room/distinfo2
-rw-r--r--mail/rubygem-mail_room/pkg-descr9
3 files changed, 32 insertions, 0 deletions
diff --git a/mail/rubygem-mail_room/Makefile b/mail/rubygem-mail_room/Makefile
new file mode 100644
index 000000000000..f84728c82f0a
--- /dev/null
+++ b/mail/rubygem-mail_room/Makefile
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME= mail_room
+PORTVERSION= 0.5.2
+CATEGORIES= mail rubygems
+MASTER_SITES= RG
+
+MAINTAINER= ports@michael-fausten.de
+COMMENT= This mail_room will proxy email (gmail) from IMAP to a delivery method
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/LICENSE.txt
+
+NO_ARCH= yes
+USE_RUBY= yes
+USE_RUBYGEMS= yes
+RUBYGEM_AUTOPLIST= yes
+
+PLIST_FILES= bin/mail_room
+
+.include <bsd.port.mk>
diff --git a/mail/rubygem-mail_room/distinfo b/mail/rubygem-mail_room/distinfo
new file mode 100644
index 000000000000..1c5252e92d6a
--- /dev/null
+++ b/mail/rubygem-mail_room/distinfo
@@ -0,0 +1,2 @@
+SHA256 (rubygem/mail_room-0.5.2.gem) = 03724ce8d0fe1849815c8293edbaf30feaea4beb6708104fb363c788b96316d1
+SIZE (rubygem/mail_room-0.5.2.gem) = 18944
diff --git a/mail/rubygem-mail_room/pkg-descr b/mail/rubygem-mail_room/pkg-descr
new file mode 100644
index 000000000000..2a4b1df3a500
--- /dev/null
+++ b/mail/rubygem-mail_room/pkg-descr
@@ -0,0 +1,9 @@
+mail_room is a configuration based process that will idle on IMAP connections
+and execute a delivery method when a new message is received.
+Examples of delivery methods include:
+
+POST to a delivery URL (Postback)
+Queue a job to Sidekiq or Que for later processing (Sidekiq or Que)
+Log the message or open with LetterOpener (Logger or LetterOpener)
+
+WWW: https://github.com/tpitale/mail_room