A digital life memoir of your life
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# Email Capturer
|
|
|
|
|
|
|
|
The Email capturer keeps listening to an IMAP and produces one entry for each
|
|
|
|
new email.
|
|
|
|
|
|
|
|
This can be used for creating random notes over the day.
|
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
|
|
|
The Capturer will require:
|
|
|
|
|
|
|
|
- IMAP address
|
|
|
|
- Username
|
|
|
|
- Password
|
|
|
|
|
|
|
|
... besides the IP and PORT of the Store.
|
|
|
|
|
|
|
|
**Note**: We may need to support IMAPS.
|
|
|
|
|
|
|
|
## Internals
|
|
|
|
|
|
|
|
Keep a list of email IDs in the database. Once we reach an ID that is already
|
|
|
|
there, we stop producing entries.
|
|
|
|
|
|
|
|
## Output
|
|
|
|
|
|
|
|
```
|
|
|
|
{{ email.content }}
|
|
|
|
```
|
|
|
|
|
|
|
|
Title is the email Subject field.
|