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

feat: imap work and enhancement #1620

Merged
merged 22 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
63278a5
feat: imap work and enhancement
devansh-webkul Sep 19, 2024
db013ce
feat: console commands, scheduler and reposiotry enhanced
devansh-webkul Sep 20, 2024
e26c48f
fix: email processors classes
devansh-webkul Sep 20, 2024
b9bed8e
chore: example file updates
devansh-webkul Sep 20, 2024
d0569c1
chore: change the command name
devansh-webkul Sep 20, 2024
21c18aa
fix: fixed imap for all folders now just little handling left
devansh-webkul Sep 20, 2024
fae4631
fix: timezone issues and threads messages
devansh-webkul Sep 23, 2024
8a4dcc2
feat: configurations added
devansh-webkul Sep 23, 2024
5fb20c1
resolved: resolved conflicts.
suraj-webkul Dec 5, 2024
29d2095
fix: failed pint test cases.
suraj-webkul Dec 5, 2024
f220246
Merge branch 'master' into imap-work
devansh-webkul Dec 16, 2024
2049749
Merge branch 'master' into imap-work
devansh-webkul Dec 16, 2024
d4f2112
Merge branch 'master' into imap-work
devansh-webkul Jan 16, 2025
b3a3876
fix: fixed conflict
devansh-webkul Jan 16, 2025
31911e5
Merge branch 'master' into imap-work
devansh-webkul Jan 16, 2025
cb6a093
Merge branch 'master' into imap-work
devansh-webkul Jan 16, 2025
2414c81
chore: pint issue
devansh-webkul Jan 16, 2025
0030bcb
Merge branch 'master' into imap-work
devansh-webkul Jan 17, 2025
e39124c
fix: truncate email issue
devansh-webkul Jan 17, 2025
353aecf
Merge branch 'master' into imap-work
devansh-webkul Jan 17, 2025
92b2801
Merge branch 'master' into imap-work
devansh-webkul Jan 17, 2025
198d8d6
Merge branch 'master' into imap-work
devansh-webkul Jan 17, 2025
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
9 changes: 9 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,15 @@ [email protected]
MAIL_FROM_NAME="${APP_NAME}"
MAIL_DOMAIN=webkul.com

MAIL_RECEIVER_DRIVER=sendgrid

IMAP_HOST=imap.example.com
IMAP_PORT=993
IMAP_ENCRYPTION=ssl
IMAP_VALIDATE_CERT=true
IMAP_USERNAME=your_username
IMAP_PASSWORD=your_password

AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=us-east-1
Expand Down
4 changes: 1 addition & 3 deletions app/Console/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Kernel extends ConsoleKernel
*/
protected function schedule(Schedule $schedule): void
{
// $schedule->command('inspire')->hourly();
$schedule->command('inbound-emails:process')->everyFiveMinutes();
}

/**
Expand All @@ -22,8 +22,6 @@ protected function commands(): void
{
$this->load(__DIR__.'/Commands');

$this->load(__DIR__.'/../../packages/Webkul/Core/src/Console/Commands');

require base_path('routes/console.php');
}
}
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
"laravel/ui": "^4.5",
"maatwebsite/excel": "^3.1",
"mpdf/mpdf": "^8.2",
"prettus/l5-repository": "^2.7.9"
"prettus/l5-repository": "^2.7.9",
"webklex/laravel-imap": "^5.3"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.6",
Expand Down
160 changes: 159 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading