@n24q02m/better-email-mcp 1.29.0 → 1.30.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -190,9 +190,20 @@ EMAIL_CREDENTIALS=user1@gmail.com:pass1,user2@outlook.com:pass2,user3@yahoo.com:
190
190
  ### Custom IMAP Host
191
191
 
192
192
  ```bash
193
+ # Custom hostname (default port 993, implicit TLS)
193
194
  EMAIL_CREDENTIALS=user@custom.com:password:imap.custom.com
195
+
196
+ # Custom hostname with a custom port
197
+ EMAIL_CREDENTIALS=user@custom.com:password:imap.custom.com:1993
198
+
199
+ # Local IMAP proxy -- "localhost" is accepted as a host, even without a dot
200
+ EMAIL_CREDENTIALS=user@custom.com:password:localhost:1993
194
201
  ```
195
202
 
203
+ Each account can use its own host and port. A non-993 port is treated as
204
+ plaintext/STARTTLS -- the usual shape for a local IMAP proxy (for example
205
+ [email-oauth2-proxy](https://github.com/simonrob/email-oauth2-proxy)).
206
+
196
207
  ### Search Query Language
197
208
 
198
209
  | Query | Description |