├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE-3rdparty.csv ├── NOTICE ├── README.md ├── add_user.py ├── assets ├── screenshot.png ├── wordmark.png └── wordmarkpreferdark.png ├── database.py ├── set_user.html ├── setup.py ├── start.py ├── test_setup.py └── web-app ├── .gitignore ├── api ├── agent.py ├── api.py ├── config_reader.py ├── credentials.py.sample ├── gmail.py ├── inbox.py └── requirements.txt ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public └── favicon.ico ├── src ├── App.css ├── App.jsx ├── AwaitingHumanModal.jsx ├── EmailDraftModal.jsx ├── EmailModals.css ├── EmailReadingModal.css ├── EmailReadingModal.jsx ├── Onboarding.jsx ├── ProcessedEmailModal.jsx ├── ProcessingModal.jsx ├── SenderResearchModal.jsx ├── ThinDraftingSettingsModal.css ├── ThinDraftingSettingsModal.jsx ├── ThinWhitelistModal.css ├── ThinWhitelistModal.jsx ├── UserProfileDropdown.css ├── UserProfileDropdown.jsx ├── UserSelector.jsx ├── assets │ └── react.svg ├── index.css └── main.jsx ├── tailwind.config.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-3rdparty.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/LICENSE-3rdparty.csv -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/README.md -------------------------------------------------------------------------------- /add_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/add_user.py -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /assets/wordmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/assets/wordmark.png -------------------------------------------------------------------------------- /assets/wordmarkpreferdark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/assets/wordmarkpreferdark.png -------------------------------------------------------------------------------- /database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/database.py -------------------------------------------------------------------------------- /set_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/set_user.html -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/setup.py -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/start.py -------------------------------------------------------------------------------- /test_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/test_setup.py -------------------------------------------------------------------------------- /web-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/.gitignore -------------------------------------------------------------------------------- /web-app/api/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/api/agent.py -------------------------------------------------------------------------------- /web-app/api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/api/api.py -------------------------------------------------------------------------------- /web-app/api/config_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/api/config_reader.py -------------------------------------------------------------------------------- /web-app/api/credentials.py.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/api/credentials.py.sample -------------------------------------------------------------------------------- /web-app/api/gmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/api/gmail.py -------------------------------------------------------------------------------- /web-app/api/inbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/api/inbox.py -------------------------------------------------------------------------------- /web-app/api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/api/requirements.txt -------------------------------------------------------------------------------- /web-app/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/eslint.config.js -------------------------------------------------------------------------------- /web-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/index.html -------------------------------------------------------------------------------- /web-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/package-lock.json -------------------------------------------------------------------------------- /web-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/package.json -------------------------------------------------------------------------------- /web-app/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/postcss.config.js -------------------------------------------------------------------------------- /web-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/public/favicon.ico -------------------------------------------------------------------------------- /web-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/src/App.css -------------------------------------------------------------------------------- /web-app/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/src/App.jsx -------------------------------------------------------------------------------- /web-app/src/AwaitingHumanModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/src/AwaitingHumanModal.jsx -------------------------------------------------------------------------------- /web-app/src/EmailDraftModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/src/EmailDraftModal.jsx -------------------------------------------------------------------------------- /web-app/src/EmailModals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/src/EmailModals.css -------------------------------------------------------------------------------- /web-app/src/EmailReadingModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/src/EmailReadingModal.css -------------------------------------------------------------------------------- /web-app/src/EmailReadingModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/src/EmailReadingModal.jsx -------------------------------------------------------------------------------- /web-app/src/Onboarding.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/src/Onboarding.jsx -------------------------------------------------------------------------------- /web-app/src/ProcessedEmailModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/src/ProcessedEmailModal.jsx -------------------------------------------------------------------------------- /web-app/src/ProcessingModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/src/ProcessingModal.jsx -------------------------------------------------------------------------------- /web-app/src/SenderResearchModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/src/SenderResearchModal.jsx -------------------------------------------------------------------------------- /web-app/src/ThinDraftingSettingsModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/src/ThinDraftingSettingsModal.css -------------------------------------------------------------------------------- /web-app/src/ThinDraftingSettingsModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/src/ThinDraftingSettingsModal.jsx -------------------------------------------------------------------------------- /web-app/src/ThinWhitelistModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/src/ThinWhitelistModal.css -------------------------------------------------------------------------------- /web-app/src/ThinWhitelistModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/src/ThinWhitelistModal.jsx -------------------------------------------------------------------------------- /web-app/src/UserProfileDropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/src/UserProfileDropdown.css -------------------------------------------------------------------------------- /web-app/src/UserProfileDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/src/UserProfileDropdown.jsx -------------------------------------------------------------------------------- /web-app/src/UserSelector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/src/UserSelector.jsx -------------------------------------------------------------------------------- /web-app/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/src/assets/react.svg -------------------------------------------------------------------------------- /web-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/src/index.css -------------------------------------------------------------------------------- /web-app/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/src/main.jsx -------------------------------------------------------------------------------- /web-app/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/tailwind.config.js -------------------------------------------------------------------------------- /web-app/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbish/DispatchMail/HEAD/web-app/vite.config.js --------------------------------------------------------------------------------