diff options
-rw-r--r-- | mail/Makefile | 1 | ||||
-rw-r--r-- | mail/rubygem-mail_room/Makefile | 21 | ||||
-rw-r--r-- | mail/rubygem-mail_room/distinfo | 2 | ||||
-rw-r--r-- | mail/rubygem-mail_room/pkg-descr | 9 |
4 files changed, 33 insertions, 0 deletions
diff --git a/mail/Makefile b/mail/Makefile index 3240026d7fdf..c8e5680e82b0 100644 --- a/mail/Makefile +++ b/mail/Makefile @@ -584,6 +584,7 @@ SUBDIR += rubygem-exception_notification SUBDIR += rubygem-larch SUBDIR += rubygem-mail + SUBDIR += rubygem-mail_room SUBDIR += rubygem-mail25 SUBDIR += rubygem-mailfactory SUBDIR += rubygem-pony 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 |