Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add EmailEngine app #676

Merged
merged 5 commits into from
Jul 7, 2022
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions public/v4/apps/emailengine.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
captainVersion: 4
services:
# EmailEngine
$$cap_appname:
depends_on:
- $$cap_appname-redis
image: andris9/emailengine:$$cap_emailengine_version
restart: always
environment:
WAIT_HOSTS: srv-captain--$$cap_appname-redis:6379
EENGINE_REDIS: redis://:@srv-captain--$$cap_appname-redis:6379
LWJerri marked this conversation as resolved.
Show resolved Hide resolved
caproverExtra:
containerHttpPort: "3000"
# Redis
$$cap_appname-redis:
image: redis:$$cap_redis_version
command: redis-server
volumes:
- $$cap_appname-db-data:/data/db
restart: always
caproverExtra:
notExposeAsWebApp: "true"
caproverOneClickApp:
variables:
- id: $$cap_emailengine_version
label: EmailEngine Version
defaultValue: "v2"
description: Check out their docker page for the valid tags https://hub.docker.com/r/andris9/emailengine/tags
validRegex: /^([^\s^\/])+$/
- id: $$cap_redis_version
label: Redis Version
defaultValue: "7.0.2"
description: Check out their docker page for the valid tags https://hub.docker.com/_/redis?tab=tags
validRegex: /^([^\s^\/])+$/
instructions:
start: >-
IMAP and SMTP are hard, so let EmailEngine handle these for you. Run REST API calls to interact with email servers and receive webhooks for changes on tracked email accounts. With EmailEngine, you can focus on building features that matter instead of spending time rolling custom IMAP and SMTP connectivity logic.
end: >-
You're done! 🤗
Your EmailEngine is available at http://$$cap_appname.$$cap_root_domain:3000
displayName: "EmailEngine"
isOfficial: true
description: Self-hosted application that opens a permanent IMAP connection against every registered email account to translate API requests to IMAP commands and monitor changes on these accounts.
documentation: Taken from https://hub.docker.com/r/andris9/emailengine
Binary file added public/v4/logos/emailengine.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.