Skip to content

Commit

Permalink
mail/rubygem-actionmailbox71: Add rubygem-actionmailbox71 7.1.1
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
sunpoet committed Nov 1, 2023
1 parent 5486ece commit d1887c1
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 0 deletions.
1 change: 1 addition & 0 deletions mail/Makefile
Expand Up @@ -587,6 +587,7 @@
SUBDIR += rubygem-actionmailbox60
SUBDIR += rubygem-actionmailbox61
SUBDIR += rubygem-actionmailbox70
SUBDIR += rubygem-actionmailbox71
SUBDIR += rubygem-actionmailer4
SUBDIR += rubygem-actionmailer5
SUBDIR += rubygem-actionmailer50
Expand Down
31 changes: 31 additions & 0 deletions mail/rubygem-actionmailbox71/Makefile
@@ -0,0 +1,31 @@
PORTNAME= actionmailbox
PORTVERSION= 7.1.1
CATEGORIES= mail rubygems
MASTER_SITES= RG
PKGNAMESUFFIX= 71

MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Receive and process incoming emails in Rails applications
WWW= https://github.com/rails/rails/tree/main/actionmailbox \
https://rubyonrails.org/

LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/MIT-LICENSE

RUN_DEPENDS= rubygem-actionpack71>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack71 \
rubygem-activejob71>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activejob71 \
rubygem-activerecord71>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-activerecord71 \
rubygem-activestorage71>=${PORTVERSION}<${PORTVERSION}_99:net/rubygem-activestorage71 \
rubygem-activesupport71>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport71 \
rubygem-mail>=2.7.1,2:mail/rubygem-mail \
rubygem-net-imap>=0:mail/rubygem-net-imap \
rubygem-net-pop>=0:mail/rubygem-net-pop \
rubygem-net-smtp>=0:mail/rubygem-net-smtp

USES= gem

NO_ARCH= yes

PORTSCOUT= limit:^7\.1\.

.include <bsd.port.mk>
3 changes: 3 additions & 0 deletions mail/rubygem-actionmailbox71/distinfo
@@ -0,0 +1,3 @@
TIMESTAMP = 1697330178
SHA256 (rubygem/actionmailbox-7.1.1.gem) = e1e9e9d9072953edad32bddbfab855c4ddfab7f34140bdb5b8c26375d109c78e
SIZE (rubygem/actionmailbox-7.1.1.gem) = 22528
12 changes: 12 additions & 0 deletions mail/rubygem-actionmailbox71/pkg-descr
@@ -0,0 +1,12 @@
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.

0 comments on commit d1887c1

Please sign in to comment.