Compare commits

...

14 Commits

Author SHA1 Message Date
Raunak Bhagat
d43a512b8b Fix imap tests 2025-07-14 09:47:44 -07:00
Raunak Bhagat
48e32822fd Merge branch 'main' into feat/imap-fe 2025-07-14 09:47:03 -07:00
Raunak Bhagat
f4b29d54be Merge branch 'main' into feat/imap-fe 2025-07-14 09:41:49 -07:00
Raunak Bhagat
172dc056eb Simplify logic 2025-07-11 11:51:40 -07:00
Raunak Bhagat
1367731ec6 Add sender to external-access too; perform dedupe-ing of emails 2025-07-11 11:47:54 -07:00
Raunak Bhagat
0bf3641781 Make recipients optional and add sender to primary-owners 2025-07-11 11:16:21 -07:00
Raunak Bhagat
b72ebbcf8d Merge branch 'main' into feat/imap-fe 2025-07-11 08:50:44 -07:00
Raunak Bhagat
c146c142e6 Implement greptile suggestions 2025-07-11 08:50:12 -07:00
Raunak Bhagat
323350f43a Fix invalid mailbox selection error 2025-07-10 13:55:13 -07:00
Raunak Bhagat
13a9e3dd0b Edit helper name and add docs 2025-07-10 13:07:36 -07:00
Raunak Bhagat
494b9a1399 Edit logic on how mail_client is used
- imaplib.IMAP4_SSL is supposed to be treated as an ephemeral object
2025-07-10 13:02:03 -07:00
Raunak Bhagat
f53484abbd Fix up configurations workflow 2025-07-10 12:20:28 -07:00
Raunak Bhagat
c2b09456dd Update names of credentials-json keys 2025-07-10 12:07:45 -07:00
Raunak Bhagat
bfb67b4eb3 Add basic structure for frontend email connector 2025-07-09 17:18:53 -07:00

View File

@@ -51,12 +51,12 @@ def imap_connector() -> ImapConnector:
[
EmailDoc(
subject="Testing",
recipients=set(["admin@onyx-test.com"]),
recipients=set(["admin@onyx-test.com", "raunak@onyx.app"]),
body="Hello, testing.",
),
EmailDoc(
subject="Hello world",
recipients=set(["admin@onyx-test.com", "r@rabh.io"]),
recipients=set(["admin@onyx-test.com", "r@rabh.io", "raunak@onyx.app"]),
body='Hello world, this is an email that contains multiple "To" recipients.',
),
]