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

Adding idle and polling mechanism to imap #1196

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all 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
13 changes: 12 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -208,4 +208,15 @@ FANCY_LOGIN=false
#Windows CA certificates
#Get ON https://curl.se/ca/cacert.pem
#Depending on your PHP Directory, e.g. "c:\php\extras\ssl\cacert.pem"
WIN_CACERT_DIR=
WIN_CACERT_DIR=

AWS_KEY='your-aws-access-key'
AWS_SECRET='your-aws-secret-key'
AWS_REGION=us-east-1
AWS_SQS_QUEUE_URL='https://sqs.us-east-1.amazonaws.com/123456789012/your-queue-name'

REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_USERNAME=null
REDIS_PWD=null
REDIS_PREFIX=
13 changes: 13 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
],
"homepage": "https://cypht.org",
"license": "LGPL-2.1",
"autoload": {
"psr-4": {
"Services\\": "services/"
}
},
"authors": [
{
"name": "Jason Munro",
Expand All @@ -35,6 +40,7 @@
"docs": "https://cypht.org/documentation.html"
},
"require": {
"aws/aws-sdk-php": "*",
"bacon/bacon-qr-code": "^1.0.3 || ^2.0.0",
"christian-riesen/base32": "^1.3.2",
"composer": "^2.0.0",
Expand All @@ -49,7 +55,9 @@
"henrique-borba/php-sieve-manager": "^1.0",
"league/commonmark": "^2.4",
"paragonie/random_compat": "^2.0.18",
"php-di/php-di": "^7.0",
"php": ">=8.1",
"symfony/console": "^6.4",
"symfony/dotenv": "^4.3 || 5.4",
"symfony/yaml": "~6.4.3",
"thomaspark/bootswatch": "^5.3",
Expand All @@ -61,6 +69,11 @@
"require-dev": {
"phpunit/phpunit": "^10.5"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "packages/cli-service/tests/"
}
},
"suggest": {
"ext-pdo": "To use database features, this needs to be installed",
"ext-redis": "To use Redis for caching, this needs to be installed",
Expand Down
Loading