1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-02 01:20:54 +00:00

Add rubygem-actionmailbox60 6.0.2.1

Action Mailbox routes incoming emails to controller-like mailboxes for
processing in Rails. It ships with ingresses for Mailgun, Mandrill, Postmark,
and SendGrid. You can also handle inbound mails directly via the built-in Exim,
Postfix, and Qmail ingresses.

The inbound emails are turned into InboundEmail records using Active Record and
feature lifecycle tracking, storage of the original email on cloud storage via
Active Storage, and responsible data handling with on-by-default incineration.

These inbound emails are routed asynchronously using Active Job to one or
several dedicated mailboxes, which are capable of interacting directly with the
rest of your domain model.

WWW: https://rubyonrails.org/
WWW: https://github.com/rails/rails/tree/master/actionmailbox
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2020-02-05 18:40:27 +00:00
parent 5c8c6a4536
commit c5d04f810c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=525320
4 changed files with 49 additions and 0 deletions

View File

@ -582,6 +582,7 @@
SUBDIR += rspamd
SUBDIR += rspamd-devel
SUBDIR += rss2email3
SUBDIR += rubygem-actionmailbox60
SUBDIR += rubygem-actionmailer4
SUBDIR += rubygem-actionmailer5
SUBDIR += rubygem-actionmailer50

View File

@ -0,0 +1,30 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
# $FreeBSD$
PORTNAME= actionmailbox
PORTVERSION= 6.0.2.1
CATEGORIES= mail rubygems
MASTER_SITES= RG
PKGNAMESUFFIX= 60
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Receive and process incoming emails in Rails applications
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/MIT-LICENSE
BROKEN_RUBY24= yes
RUN_DEPENDS= rubygem-actionpack60>=${PORTVERSION}:www/rubygem-actionpack60 \
rubygem-activejob60>=${PORTVERSION}:devel/rubygem-activejob60 \
rubygem-activerecord60>=${PORTVERSION}:databases/rubygem-activerecord60 \
rubygem-activestorage60>=${PORTVERSION}:net/rubygem-activestorage60 \
rubygem-activesupport60>=${PORTVERSION}:devel/rubygem-activesupport60 \
rubygem-mail>=2.7.1,2:mail/rubygem-mail
USES= gem
USE_RUBY= yes
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1577687170
SHA256 (rubygem/actionmailbox-6.0.2.1.gem) = 6132861d7706cefed207817d6a097e3e991e5656bdefd5b2c927e88465b957f7
SIZE (rubygem/actionmailbox-6.0.2.1.gem) = 20480

View File

@ -0,0 +1,15 @@
Action Mailbox routes incoming emails to controller-like mailboxes for
processing in Rails. It ships with ingresses for Mailgun, Mandrill, Postmark,
and SendGrid. You can also handle inbound mails directly via the built-in Exim,
Postfix, and Qmail ingresses.
The inbound emails are turned into InboundEmail records using Active Record and
feature lifecycle tracking, storage of the original email on cloud storage via
Active Storage, and responsible data handling with on-by-default incineration.
These inbound emails are routed asynchronously using Active Job to one or
several dedicated mailboxes, which are capable of interacting directly with the
rest of your domain model.
WWW: https://rubyonrails.org/
WWW: https://github.com/rails/rails/tree/master/actionmailbox