-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.sample
More file actions
25 lines (23 loc) · 1023 Bytes
/
Copy path.env.sample
File metadata and controls
25 lines (23 loc) · 1023 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
EMAILS=email1@example.com,email2@example.com
# Optional search API configuration for "Add Subscription URL" -> "Search API"
SEARCH_API_URL=https://api.tavily.com/search
SEARCH_API_KEY=your-api-key
# HTTP method: GET (default) or POST (e.g. Tavily)
SEARCH_API_METHOD=GET
# For POST APIs: field name for the query in the JSON body
SEARCH_API_QUERY_PARAM=q
# For POST APIs: field name used to pass the API key in the JSON body (leave blank to use header instead)
SEARCH_API_KEY_BODY_FIELD=
SEARCH_API_KEY_HEADER=X-API-Key
SEARCH_API_RESULTS_PATH=results
SEARCH_API_URL_FIELD=url
# IMAP inbox verification (used in Verify Mode to confirm a confirmation email arrived)
# Leave blank to skip inbox verification and rely on form-submit success alone.
IMAP_HOST=imap.example.com
IMAP_PORT=993
IMAP_USER=email1@example.com
IMAP_PASS=your-imap-password
# Folder to watch (usually INBOX; Gmail users may need [Gmail]/All Mail)
IMAP_FOLDER=INBOX
# How long (seconds) to wait for a confirmation email before giving up
IMAP_TIMEOUT=60