Skip to content
Merged
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
16 changes: 16 additions & 0 deletions sources/inbox/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,22 @@ the
add credentials for your chosen destination, ensuring proper routing of your data to the final
destination.

## GMail

GMail has a concurrency limit on access via IMAP, which at the time of writing is 15.
In order to not run into `[ALERT] Too many simultaneous connections`, you can reduce
the concurrency via:

```toml
[load]
# Prevent the IMAP error: "[ALERT] Too many simultaneous connections"
# by limiting the number of concurrent load jobs
workers=15
```

Bear in mind that IMAP connections are shared, so if you access a mailbox that is used elsewhere,
you may need to reduce the workers accordingly.

## Run the pipeline

1. Before running the pipeline, ensure that you have installed all the necessary dependencies by
Expand Down