├── .codeclimate.yml ├── .dockerignore ├── .editorconfig ├── .env.example ├── .eslintignore ├── .eslintrc.js ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── 1-bug-report.md │ └── config.yml ├── .gitignore ├── .gitlab-ci.yml ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── afterSignHook.ts ├── app ├── .testcafe-electron-rc ├── Store.js ├── app.global.css ├── composer_window │ ├── Composer.less │ ├── Composer.less.d.ts │ ├── Composer.tsx │ ├── components │ │ ├── Attachments │ │ │ ├── AttachmentPreview.tsx │ │ │ ├── Attachments.css │ │ │ └── Attachments.tsx │ │ ├── FromInput.tsx │ │ ├── TopBar │ │ │ ├── ComposerTopBar.css │ │ │ └── TopBar.tsx │ │ ├── editor │ │ │ ├── Editor.tsx │ │ │ ├── EditorIframe.tsx │ │ │ ├── editor.config.ts │ │ │ ├── editor.utils.ts │ │ │ ├── toolbar │ │ │ │ ├── ActionButtons.tsx │ │ │ │ ├── AddWebLinkButton.tsx │ │ │ │ ├── EditorToolbar.tsx │ │ │ │ ├── ListBoxButtons.tsx │ │ │ │ ├── StyleButtons.tsx │ │ │ │ └── utils │ │ │ │ │ ├── ButtonTooltip.tsx │ │ │ │ │ ├── PopoverButtonBar.tsx │ │ │ │ │ ├── createActionButton.tsx │ │ │ │ │ ├── createListBoxMenuButton.tsx │ │ │ │ │ └── createStyleButton.tsx │ │ │ └── types.ts │ │ ├── index.tsx │ │ ├── messageInputs │ │ │ └── MessageInputs.tsx │ │ └── recipientsInputs │ │ │ ├── RecipientsInput.less │ │ │ ├── RecipientsInput.less.d.ts │ │ │ └── RecipientsInput.tsx │ ├── index.html │ └── index.tsx ├── env_api.json ├── global_components │ ├── BreadCrumbs.js │ ├── Loader.tsx │ ├── Notification.tsx │ ├── WindowControls │ │ ├── WindowControls.css │ │ ├── WindowControls.tsx │ │ └── img │ │ │ ├── close-k-10.png │ │ │ ├── close-k-12.png │ │ │ ├── close-k-15.png │ │ │ ├── close-k-20.png │ │ │ ├── close-k-24.png │ │ │ ├── close-k-30.png │ │ │ ├── close-w-10.png │ │ │ ├── close-w-12.png │ │ │ ├── close-w-15.png │ │ │ ├── close-w-20.png │ │ │ ├── close-w-24.png │ │ │ ├── close-w-30.png │ │ │ ├── max-k-10.png │ │ │ ├── max-k-12.png │ │ │ ├── max-k-15.png │ │ │ ├── max-k-20.png │ │ │ ├── max-k-24.png │ │ │ ├── max-k-30.png │ │ │ ├── max-w-10.png │ │ │ ├── max-w-12.png │ │ │ ├── max-w-15.png │ │ │ ├── max-w-20.png │ │ │ ├── max-w-24.png │ │ │ ├── max-w-30.png │ │ │ ├── min-k-10.png │ │ │ ├── min-k-12.png │ │ │ ├── min-k-15.png │ │ │ ├── min-k-20.png │ │ │ ├── min-k-24.png │ │ │ ├── min-k-30.png │ │ │ ├── min-w-10.png │ │ │ ├── min-w-12.png │ │ │ ├── min-w-15.png │ │ │ ├── min-w-20.png │ │ │ ├── min-w-24.png │ │ │ ├── min-w-30.png │ │ │ ├── restore-k-10.png │ │ │ ├── restore-k-12.png │ │ │ ├── restore-k-15.png │ │ │ ├── restore-k-20.png │ │ │ ├── restore-k-24.png │ │ │ ├── restore-k-30.png │ │ │ ├── restore-w-10.png │ │ │ ├── restore-w-12.png │ │ │ ├── restore-w-15.png │ │ │ ├── restore-w-20.png │ │ │ ├── restore-w-24.png │ │ │ └── restore-w-30.png │ ├── button │ │ ├── BackButton.tsx │ │ ├── Close.tsx │ │ ├── NavButton.tsx │ │ ├── button.tsx │ │ └── index.js │ ├── checkboxes │ │ ├── checkbox.tsx │ │ └── index.js │ ├── dropdowns │ │ ├── Dropdown.tsx │ │ └── index.js │ ├── input-groups │ │ ├── Input.tsx │ │ ├── Password.tsx │ │ ├── ReadOnlyWithCopy.tsx │ │ └── index.js │ ├── layout │ │ ├── Divider.tsx │ │ └── index.js │ ├── logos │ │ └── Logo.tsx │ ├── status │ │ ├── VerificationStatus.tsx │ │ └── index.js │ └── textareas │ │ ├── Textareas.tsx │ │ └── index.js ├── i18n │ ├── i18n.js │ └── locales │ │ ├── de.json │ │ ├── en.json │ │ └── fr.json ├── img │ ├── contactCoverPhoto.jpeg │ ├── login-gradient.png │ └── telios_notify_icon.png ├── ipc │ ├── Account.ipc.js │ ├── Composer.ipc.js │ ├── Matomo.ipc.js │ ├── Notifier.ipc.js │ └── Window.ipc.js ├── login_window │ ├── images │ │ ├── NetworkGraph.svg │ │ └── TeliosLogoWhite.svg │ ├── index.html │ ├── index.tsx │ ├── routes │ │ ├── forgot_password │ │ │ ├── ForgotPassword.tsx │ │ │ ├── ForgotPasswordRoutes.tsx │ │ │ ├── ResetSuccess.tsx │ │ │ ├── SetNewPassword.tsx │ │ │ └── index.js │ │ ├── login │ │ │ ├── Login.tsx │ │ │ └── RememberMeModal.tsx │ │ ├── new_or_claim │ │ │ └── NewOrClaim.tsx │ │ ├── recovery │ │ │ ├── Recovery.tsx │ │ │ ├── RecoveryRoutes.tsx │ │ │ └── index.js │ │ ├── registration │ │ │ ├── Consent.tsx │ │ │ ├── EmailPick.tsx │ │ │ ├── RecoveryEmail.tsx │ │ │ ├── Registration.tsx │ │ │ ├── RegistrationRoutes.tsx │ │ │ ├── RegistrationSuccess.tsx │ │ │ ├── SetPassword.tsx │ │ │ ├── StepByStep.tsx │ │ │ └── index.js │ │ ├── root │ │ │ ├── LoginWindow.css │ │ │ ├── LoginWindow.tsx │ │ │ ├── NetworkCarousel.tsx │ │ │ └── SideLayout.tsx │ │ ├── sync │ │ │ ├── MasterPassword.tsx │ │ │ ├── Sync.tsx │ │ │ ├── SyncPending.tsx │ │ │ ├── SyncRoutes.tsx │ │ │ ├── SyncSuccess.tsx │ │ │ └── index.js │ │ └── sync_or_recovery │ │ │ └── SyncOrRecovery.tsx │ ├── temp │ │ └── animation.txt │ └── window_components │ │ ├── ErrorScreen.tsx │ │ ├── IntroHeader.tsx │ │ └── index.js ├── main.dev.ts ├── main.prod.js.LICENSE ├── main.prod.js.LICENSE.txt ├── main_window │ ├── Root.tsx │ ├── RoutesTable.tsx │ ├── actions │ │ ├── account │ │ │ └── account.ts │ │ ├── contacts │ │ │ └── contacts.ts │ │ ├── domains │ │ │ └── domains.ts │ │ ├── global.ts │ │ ├── mail.ts │ │ └── mailbox │ │ │ ├── aliases.ts │ │ │ ├── folders.ts │ │ │ └── messages.ts │ ├── app.html │ ├── app.icns │ ├── components │ │ ├── Contact │ │ │ ├── ContactDetails │ │ │ │ ├── AddressField.tsx │ │ │ │ ├── ContactDetails.tsx │ │ │ │ ├── ContactField.tsx │ │ │ │ ├── DeleteModal.tsx │ │ │ │ ├── NotesField.tsx │ │ │ │ └── PhoneField.tsx │ │ │ └── countries.json │ │ ├── Layout │ │ │ ├── Navigation │ │ │ │ ├── CustomSVG │ │ │ │ │ └── UserBubble.tsx │ │ │ │ ├── NavIcon.tsx │ │ │ │ └── NavStack.tsx │ │ │ └── TopBar │ │ │ │ ├── GlobalTopBar.css │ │ │ │ ├── GlobalTopBar.tsx │ │ │ │ ├── Search.css │ │ │ │ ├── Search.tsx │ │ │ │ └── UserMenu.tsx │ │ ├── Mail │ │ │ ├── Aliases │ │ │ │ ├── AliasesPage.tsx │ │ │ │ └── ModalRoutes │ │ │ │ │ ├── AliasDelete.tsx │ │ │ │ │ ├── AliasEdit.tsx │ │ │ │ │ ├── AliasManagement.tsx │ │ │ │ │ ├── AliasRegistration.tsx │ │ │ │ │ └── NamespaceRegistration.tsx │ │ │ ├── MessageDisplay │ │ │ │ ├── MessageDisplay.css │ │ │ │ ├── MessageDisplay.tsx │ │ │ │ ├── MessageDisplayRouter.tsx │ │ │ │ └── customSVGs │ │ │ │ │ ├── forward.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── reply.tsx │ │ │ │ │ └── replyall.tsx │ │ │ ├── MessageList │ │ │ │ ├── MessageList.less │ │ │ │ ├── MessageList.less.d.ts │ │ │ │ ├── MessageList.tsx │ │ │ │ ├── MessagePreview │ │ │ │ │ ├── AvatarLoader.tsx--D │ │ │ │ │ ├── CircleLoader.tsx--D │ │ │ │ │ ├── MessagePreview.css │ │ │ │ │ ├── MessagePreview.tsx │ │ │ │ │ └── PreviewIconBar.tsx │ │ │ │ └── SortIcon.tsx │ │ │ ├── MessageToolbar │ │ │ │ └── MessageToolbar.tsx │ │ │ ├── Navigation │ │ │ │ ├── Aliases │ │ │ │ │ ├── AliasSection.tsx │ │ │ │ │ └── NamespaceBlock.tsx │ │ │ │ ├── NavIcons.tsx │ │ │ │ ├── Navigation.css │ │ │ │ ├── Navigation.tsx │ │ │ │ ├── NewFolderModal.tsx │ │ │ │ ├── SyncNotification.css │ │ │ │ └── SyncNotification.tsx │ │ │ └── envelope.js │ │ ├── Settings │ │ │ ├── BillingPayments.css │ │ │ ├── BillingPayments.tsx │ │ │ ├── BillingPayments │ │ │ │ └── PlanComparison.tsx │ │ │ ├── CustomDomains.tsx │ │ │ ├── CustomDomains │ │ │ │ ├── DomainManagement.tsx │ │ │ │ └── ModalRoutes │ │ │ │ │ ├── DomainDelete.tsx │ │ │ │ │ ├── DomainRegistration.tsx │ │ │ │ │ ├── MailboxDelete.tsx │ │ │ │ │ ├── MailboxInfo.tsx │ │ │ │ │ └── MailboxRegistration.tsx │ │ │ ├── DevicesPanel.tsx │ │ │ ├── GeneralPanel.tsx │ │ │ ├── SecurityPanel.tsx │ │ │ ├── index.ts │ │ │ └── shared │ │ │ │ ├── InputField.tsx │ │ │ │ └── SettingsSection.tsx │ │ └── css.d.ts │ ├── constants │ │ └── routes.json │ ├── containers │ │ ├── App.tsx │ │ └── Layout │ │ │ ├── ContactPage │ │ │ └── ContactPage.tsx │ │ │ ├── MailPage │ │ │ └── MailPage.tsx │ │ │ ├── MainWindow.tsx │ │ │ └── SettingsPage │ │ │ └── SettingsPage.tsx │ ├── index.tsx │ ├── menu.ts │ ├── reducers │ │ ├── account.ts │ │ ├── contacts.ts │ │ ├── domains.ts │ │ ├── globalState.ts │ │ ├── index.ts │ │ ├── mail │ │ │ ├── aliases.ts │ │ │ ├── folders.ts │ │ │ ├── index.ts │ │ │ ├── mailboxes.ts │ │ │ ├── messages.ts │ │ │ └── namespaces.ts │ │ └── types.ts │ ├── selectors │ │ ├── account.ts │ │ ├── contacts.ts │ │ ├── domains.ts │ │ ├── global.ts │ │ └── mail.ts │ └── store │ │ ├── configureStore.dev.ts │ │ ├── configureStore.prod.ts │ │ └── configureStore.ts ├── package.json ├── services │ ├── account.service.js │ ├── composer.service.js │ ├── contact.service.js │ ├── domain.service.js │ ├── login.service.js │ ├── mail.service.js │ ├── main.channel.js │ ├── messageIngress.service.js │ └── notifier.service.js ├── sounds │ └── bubble.wav ├── tailwind.global.css ├── utils │ ├── Matomo.js │ ├── WindowManager.util.ts │ ├── attachment.util.js │ ├── avatar.util.js │ ├── contact.util.ts │ ├── draft.utils.ts │ ├── file.util.js │ ├── helpers │ │ ├── avatarRandomOptions.ts │ │ ├── css.ts │ │ ├── date.ts │ │ ├── dom.ts │ │ ├── function.ts │ │ ├── generators.ts │ │ ├── json.ts │ │ ├── regex.ts │ │ ├── security.ts │ │ ├── sort.ts │ │ └── url.ts │ ├── hooks │ │ ├── useAccountSync.ts │ │ ├── useCollectionListeners.ts │ │ ├── useForm.ts │ │ ├── useHandler.ts │ │ ├── useIsMounted.ts │ │ └── usePrevious.ts │ ├── reducer.util.js │ └── themes.util.js └── yarn.lock ├── azure-pipelines.yml ├── babel.config.js ├── configs ├── .eslintrc ├── webpack.config.base.js ├── webpack.config.eslint.js ├── webpack.config.main.prod.babel.js ├── webpack.config.renderer.dev.babel.js ├── webpack.config.renderer.dev.dll.babel.js └── webpack.config.renderer.prod.babel.js ├── custom.d.ts ├── entitlements.mac.inherit.plist ├── internals ├── mocks │ └── fileMock.js └── scripts │ ├── .eslintrc │ ├── BabelRegister.js │ ├── CheckBuildsExist.js │ ├── CheckNativeDep.js │ ├── CheckNodeEnv.js │ ├── CheckPortInUse.js │ ├── CheckYarn.js │ ├── DeleteSourceMaps.js │ └── ElectronRebuild.js ├── package.json ├── playbooks ├── site.yml └── tasks │ ├── debug │ └── main.yml │ ├── history │ └── main.yml │ ├── local │ └── main.yml │ └── transfer │ └── main.yml ├── postcss.config.js ├── public ├── download.png ├── index.html ├── mac │ └── index.html ├── nix │ ├── debian │ │ └── index.html │ └── rhel │ │ └── index.html └── win │ └── index.html ├── repo └── client_screenshot.png ├── resources ├── fonts │ ├── Montserrat │ │ ├── Montserrat-Black.ttf │ │ ├── Montserrat-BlackItalic.ttf │ │ ├── Montserrat-Bold.ttf │ │ ├── Montserrat-BoldItalic.ttf │ │ ├── Montserrat-ExtraBold.ttf │ │ ├── Montserrat-ExtraBoldItalic.ttf │ │ ├── Montserrat-ExtraLight.ttf │ │ ├── Montserrat-ExtraLightItalic.ttf │ │ ├── Montserrat-Italic.ttf │ │ ├── Montserrat-Light.ttf │ │ ├── Montserrat-LightItalic.ttf │ │ ├── Montserrat-Medium.ttf │ │ ├── Montserrat-MediumItalic.ttf │ │ ├── Montserrat-Regular.ttf │ │ ├── Montserrat-SemiBold.ttf │ │ ├── Montserrat-SemiBoldItalic.ttf │ │ ├── Montserrat-Thin.ttf │ │ ├── Montserrat-ThinItalic.ttf │ │ └── OFL.txt │ ├── OpenSans │ │ ├── OpenSans-Bold.ttf │ │ ├── OpenSans-BoldItalic.ttf │ │ ├── OpenSans-ExtraBold.ttf │ │ ├── OpenSans-ExtraBoldItalic.ttf │ │ ├── OpenSans-Italic.ttf │ │ ├── OpenSans-Light.ttf │ │ ├── OpenSans-LightItalic.ttf │ │ ├── OpenSans-Medium.ttf │ │ ├── OpenSans-MediumItalic.ttf │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-SemiBold.ttf │ │ └── OpenSans-SemiBoldItalic.ttf │ ├── open-sans-v18-latin-regular.woff │ └── open-sans-v18-latin-regular.woff2 ├── icon.icns ├── icon.ico ├── icon.png └── img │ ├── check.svg │ ├── forward-arrows-svgrepo-com.svg │ ├── infinityIcon.svg │ ├── isometric_login.svg │ ├── laptop_email.svg │ ├── logo.svg │ ├── next-arrows-svgrepo-com.svg │ ├── refresh-arrows-svgrepo-com.svg │ ├── reply-arrows-svgrepo-com.svg │ ├── telios_color_logo.svg │ ├── telios_logo.svg │ └── telios_title_logo.svg ├── sign.js ├── tailwind.config.js ├── test ├── .eslintrc.json ├── actions │ ├── __snapshots__ │ │ └── counter.spec.ts.snap │ └── counter.spec.ts ├── components │ ├── Counter.spec.tsx │ └── __snapshots__ │ │ └── Counter.spec.tsx.snap ├── containers │ └── CounterPage.spec.tsx ├── e2e │ ├── HomePage.e2e.ts │ ├── Registration.e2e.ts │ └── helpers.ts ├── example.js ├── reducers │ ├── __snapshots__ │ │ └── counter.spec.ts.snap │ └── counter.spec.ts └── seedData │ ├── client.json │ ├── fullState.json │ ├── globalState.json │ └── mail.json ├── tsconfig.json └── yarn.lock /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [Telios-org] 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/.github/ISSUE_TEMPLATE/1-bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/README.md -------------------------------------------------------------------------------- /afterSignHook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/afterSignHook.ts -------------------------------------------------------------------------------- /app/.testcafe-electron-rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/.testcafe-electron-rc -------------------------------------------------------------------------------- /app/Store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/Store.js -------------------------------------------------------------------------------- /app/app.global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/app.global.css -------------------------------------------------------------------------------- /app/composer_window/Composer.less: -------------------------------------------------------------------------------- 1 | .windowStyle { 2 | background-color: #f7f7fa; 3 | } 4 | -------------------------------------------------------------------------------- /app/composer_window/Composer.less.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/Composer.less.d.ts -------------------------------------------------------------------------------- /app/composer_window/Composer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/Composer.tsx -------------------------------------------------------------------------------- /app/composer_window/components/Attachments/AttachmentPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/Attachments/AttachmentPreview.tsx -------------------------------------------------------------------------------- /app/composer_window/components/Attachments/Attachments.css: -------------------------------------------------------------------------------- 1 | .remove > a { 2 | color: #f56565 !important; 3 | } 4 | -------------------------------------------------------------------------------- /app/composer_window/components/Attachments/Attachments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/Attachments/Attachments.tsx -------------------------------------------------------------------------------- /app/composer_window/components/FromInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/FromInput.tsx -------------------------------------------------------------------------------- /app/composer_window/components/TopBar/ComposerTopBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/TopBar/ComposerTopBar.css -------------------------------------------------------------------------------- /app/composer_window/components/TopBar/TopBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/TopBar/TopBar.tsx -------------------------------------------------------------------------------- /app/composer_window/components/editor/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/editor/Editor.tsx -------------------------------------------------------------------------------- /app/composer_window/components/editor/EditorIframe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/editor/EditorIframe.tsx -------------------------------------------------------------------------------- /app/composer_window/components/editor/editor.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/editor/editor.config.ts -------------------------------------------------------------------------------- /app/composer_window/components/editor/editor.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/editor/editor.utils.ts -------------------------------------------------------------------------------- /app/composer_window/components/editor/toolbar/ActionButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/editor/toolbar/ActionButtons.tsx -------------------------------------------------------------------------------- /app/composer_window/components/editor/toolbar/AddWebLinkButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/editor/toolbar/AddWebLinkButton.tsx -------------------------------------------------------------------------------- /app/composer_window/components/editor/toolbar/EditorToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/editor/toolbar/EditorToolbar.tsx -------------------------------------------------------------------------------- /app/composer_window/components/editor/toolbar/ListBoxButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/editor/toolbar/ListBoxButtons.tsx -------------------------------------------------------------------------------- /app/composer_window/components/editor/toolbar/StyleButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/editor/toolbar/StyleButtons.tsx -------------------------------------------------------------------------------- /app/composer_window/components/editor/toolbar/utils/ButtonTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/editor/toolbar/utils/ButtonTooltip.tsx -------------------------------------------------------------------------------- /app/composer_window/components/editor/toolbar/utils/PopoverButtonBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/editor/toolbar/utils/PopoverButtonBar.tsx -------------------------------------------------------------------------------- /app/composer_window/components/editor/toolbar/utils/createActionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/editor/toolbar/utils/createActionButton.tsx -------------------------------------------------------------------------------- /app/composer_window/components/editor/toolbar/utils/createListBoxMenuButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/editor/toolbar/utils/createListBoxMenuButton.tsx -------------------------------------------------------------------------------- /app/composer_window/components/editor/toolbar/utils/createStyleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/editor/toolbar/utils/createStyleButton.tsx -------------------------------------------------------------------------------- /app/composer_window/components/editor/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/editor/types.ts -------------------------------------------------------------------------------- /app/composer_window/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/index.tsx -------------------------------------------------------------------------------- /app/composer_window/components/messageInputs/MessageInputs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/messageInputs/MessageInputs.tsx -------------------------------------------------------------------------------- /app/composer_window/components/recipientsInputs/RecipientsInput.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/recipientsInputs/RecipientsInput.less -------------------------------------------------------------------------------- /app/composer_window/components/recipientsInputs/RecipientsInput.less.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/recipientsInputs/RecipientsInput.less.d.ts -------------------------------------------------------------------------------- /app/composer_window/components/recipientsInputs/RecipientsInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/components/recipientsInputs/RecipientsInput.tsx -------------------------------------------------------------------------------- /app/composer_window/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/index.html -------------------------------------------------------------------------------- /app/composer_window/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/composer_window/index.tsx -------------------------------------------------------------------------------- /app/env_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/env_api.json -------------------------------------------------------------------------------- /app/global_components/BreadCrumbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/BreadCrumbs.js -------------------------------------------------------------------------------- /app/global_components/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/Loader.tsx -------------------------------------------------------------------------------- /app/global_components/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/Notification.tsx -------------------------------------------------------------------------------- /app/global_components/WindowControls/WindowControls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/WindowControls.css -------------------------------------------------------------------------------- /app/global_components/WindowControls/WindowControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/WindowControls.tsx -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/close-k-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/close-k-10.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/close-k-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/close-k-12.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/close-k-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/close-k-15.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/close-k-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/close-k-20.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/close-k-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/close-k-24.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/close-k-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/close-k-30.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/close-w-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/close-w-10.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/close-w-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/close-w-12.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/close-w-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/close-w-15.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/close-w-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/close-w-20.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/close-w-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/close-w-24.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/close-w-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/close-w-30.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/max-k-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/max-k-10.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/max-k-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/max-k-12.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/max-k-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/max-k-15.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/max-k-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/max-k-20.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/max-k-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/max-k-24.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/max-k-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/max-k-30.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/max-w-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/max-w-10.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/max-w-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/max-w-12.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/max-w-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/max-w-15.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/max-w-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/max-w-20.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/max-w-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/max-w-24.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/max-w-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/max-w-30.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/min-k-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/min-k-10.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/min-k-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/min-k-12.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/min-k-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/min-k-15.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/min-k-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/min-k-20.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/min-k-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/min-k-24.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/min-k-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/min-k-30.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/min-w-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/min-w-10.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/min-w-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/min-w-12.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/min-w-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/min-w-15.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/min-w-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/min-w-20.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/min-w-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/min-w-24.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/min-w-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/min-w-30.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/restore-k-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/restore-k-10.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/restore-k-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/restore-k-12.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/restore-k-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/restore-k-15.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/restore-k-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/restore-k-20.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/restore-k-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/restore-k-24.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/restore-k-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/restore-k-30.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/restore-w-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/restore-w-10.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/restore-w-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/restore-w-12.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/restore-w-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/restore-w-15.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/restore-w-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/restore-w-20.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/restore-w-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/restore-w-24.png -------------------------------------------------------------------------------- /app/global_components/WindowControls/img/restore-w-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/WindowControls/img/restore-w-30.png -------------------------------------------------------------------------------- /app/global_components/button/BackButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/button/BackButton.tsx -------------------------------------------------------------------------------- /app/global_components/button/Close.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/button/Close.tsx -------------------------------------------------------------------------------- /app/global_components/button/NavButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/button/NavButton.tsx -------------------------------------------------------------------------------- /app/global_components/button/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/button/button.tsx -------------------------------------------------------------------------------- /app/global_components/button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/button/index.js -------------------------------------------------------------------------------- /app/global_components/checkboxes/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/checkboxes/checkbox.tsx -------------------------------------------------------------------------------- /app/global_components/checkboxes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/checkboxes/index.js -------------------------------------------------------------------------------- /app/global_components/dropdowns/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/dropdowns/Dropdown.tsx -------------------------------------------------------------------------------- /app/global_components/dropdowns/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/dropdowns/index.js -------------------------------------------------------------------------------- /app/global_components/input-groups/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/input-groups/Input.tsx -------------------------------------------------------------------------------- /app/global_components/input-groups/Password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/input-groups/Password.tsx -------------------------------------------------------------------------------- /app/global_components/input-groups/ReadOnlyWithCopy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/input-groups/ReadOnlyWithCopy.tsx -------------------------------------------------------------------------------- /app/global_components/input-groups/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/input-groups/index.js -------------------------------------------------------------------------------- /app/global_components/layout/Divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/layout/Divider.tsx -------------------------------------------------------------------------------- /app/global_components/layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/layout/index.js -------------------------------------------------------------------------------- /app/global_components/logos/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/logos/Logo.tsx -------------------------------------------------------------------------------- /app/global_components/status/VerificationStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/status/VerificationStatus.tsx -------------------------------------------------------------------------------- /app/global_components/status/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/status/index.js -------------------------------------------------------------------------------- /app/global_components/textareas/Textareas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/textareas/Textareas.tsx -------------------------------------------------------------------------------- /app/global_components/textareas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/global_components/textareas/index.js -------------------------------------------------------------------------------- /app/i18n/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/i18n/i18n.js -------------------------------------------------------------------------------- /app/i18n/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/i18n/locales/de.json -------------------------------------------------------------------------------- /app/i18n/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/i18n/locales/en.json -------------------------------------------------------------------------------- /app/i18n/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/i18n/locales/fr.json -------------------------------------------------------------------------------- /app/img/contactCoverPhoto.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/img/contactCoverPhoto.jpeg -------------------------------------------------------------------------------- /app/img/login-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/img/login-gradient.png -------------------------------------------------------------------------------- /app/img/telios_notify_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/img/telios_notify_icon.png -------------------------------------------------------------------------------- /app/ipc/Account.ipc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/ipc/Account.ipc.js -------------------------------------------------------------------------------- /app/ipc/Composer.ipc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/ipc/Composer.ipc.js -------------------------------------------------------------------------------- /app/ipc/Matomo.ipc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/ipc/Matomo.ipc.js -------------------------------------------------------------------------------- /app/ipc/Notifier.ipc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/ipc/Notifier.ipc.js -------------------------------------------------------------------------------- /app/ipc/Window.ipc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/ipc/Window.ipc.js -------------------------------------------------------------------------------- /app/login_window/images/NetworkGraph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/images/NetworkGraph.svg -------------------------------------------------------------------------------- /app/login_window/images/TeliosLogoWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/images/TeliosLogoWhite.svg -------------------------------------------------------------------------------- /app/login_window/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/index.html -------------------------------------------------------------------------------- /app/login_window/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/index.tsx -------------------------------------------------------------------------------- /app/login_window/routes/forgot_password/ForgotPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/forgot_password/ForgotPassword.tsx -------------------------------------------------------------------------------- /app/login_window/routes/forgot_password/ForgotPasswordRoutes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/forgot_password/ForgotPasswordRoutes.tsx -------------------------------------------------------------------------------- /app/login_window/routes/forgot_password/ResetSuccess.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/forgot_password/ResetSuccess.tsx -------------------------------------------------------------------------------- /app/login_window/routes/forgot_password/SetNewPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/forgot_password/SetNewPassword.tsx -------------------------------------------------------------------------------- /app/login_window/routes/forgot_password/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/forgot_password/index.js -------------------------------------------------------------------------------- /app/login_window/routes/login/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/login/Login.tsx -------------------------------------------------------------------------------- /app/login_window/routes/login/RememberMeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/login/RememberMeModal.tsx -------------------------------------------------------------------------------- /app/login_window/routes/new_or_claim/NewOrClaim.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/new_or_claim/NewOrClaim.tsx -------------------------------------------------------------------------------- /app/login_window/routes/recovery/Recovery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/recovery/Recovery.tsx -------------------------------------------------------------------------------- /app/login_window/routes/recovery/RecoveryRoutes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/recovery/RecoveryRoutes.tsx -------------------------------------------------------------------------------- /app/login_window/routes/recovery/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/recovery/index.js -------------------------------------------------------------------------------- /app/login_window/routes/registration/Consent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/registration/Consent.tsx -------------------------------------------------------------------------------- /app/login_window/routes/registration/EmailPick.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/registration/EmailPick.tsx -------------------------------------------------------------------------------- /app/login_window/routes/registration/RecoveryEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/registration/RecoveryEmail.tsx -------------------------------------------------------------------------------- /app/login_window/routes/registration/Registration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/registration/Registration.tsx -------------------------------------------------------------------------------- /app/login_window/routes/registration/RegistrationRoutes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/registration/RegistrationRoutes.tsx -------------------------------------------------------------------------------- /app/login_window/routes/registration/RegistrationSuccess.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/registration/RegistrationSuccess.tsx -------------------------------------------------------------------------------- /app/login_window/routes/registration/SetPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/registration/SetPassword.tsx -------------------------------------------------------------------------------- /app/login_window/routes/registration/StepByStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/registration/StepByStep.tsx -------------------------------------------------------------------------------- /app/login_window/routes/registration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/registration/index.js -------------------------------------------------------------------------------- /app/login_window/routes/root/LoginWindow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/root/LoginWindow.css -------------------------------------------------------------------------------- /app/login_window/routes/root/LoginWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/root/LoginWindow.tsx -------------------------------------------------------------------------------- /app/login_window/routes/root/NetworkCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/root/NetworkCarousel.tsx -------------------------------------------------------------------------------- /app/login_window/routes/root/SideLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/root/SideLayout.tsx -------------------------------------------------------------------------------- /app/login_window/routes/sync/MasterPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/sync/MasterPassword.tsx -------------------------------------------------------------------------------- /app/login_window/routes/sync/Sync.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/sync/Sync.tsx -------------------------------------------------------------------------------- /app/login_window/routes/sync/SyncPending.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/sync/SyncPending.tsx -------------------------------------------------------------------------------- /app/login_window/routes/sync/SyncRoutes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/sync/SyncRoutes.tsx -------------------------------------------------------------------------------- /app/login_window/routes/sync/SyncSuccess.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/sync/SyncSuccess.tsx -------------------------------------------------------------------------------- /app/login_window/routes/sync/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/sync/index.js -------------------------------------------------------------------------------- /app/login_window/routes/sync_or_recovery/SyncOrRecovery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/routes/sync_or_recovery/SyncOrRecovery.tsx -------------------------------------------------------------------------------- /app/login_window/temp/animation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/temp/animation.txt -------------------------------------------------------------------------------- /app/login_window/window_components/ErrorScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/window_components/ErrorScreen.tsx -------------------------------------------------------------------------------- /app/login_window/window_components/IntroHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/window_components/IntroHeader.tsx -------------------------------------------------------------------------------- /app/login_window/window_components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/login_window/window_components/index.js -------------------------------------------------------------------------------- /app/main.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main.dev.ts -------------------------------------------------------------------------------- /app/main.prod.js.LICENSE: -------------------------------------------------------------------------------- 1 | /*! http://mths.be/fromcodepoint v0.1.0 by @mathias */ 2 | -------------------------------------------------------------------------------- /app/main.prod.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main.prod.js.LICENSE.txt -------------------------------------------------------------------------------- /app/main_window/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/Root.tsx -------------------------------------------------------------------------------- /app/main_window/RoutesTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/RoutesTable.tsx -------------------------------------------------------------------------------- /app/main_window/actions/account/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/actions/account/account.ts -------------------------------------------------------------------------------- /app/main_window/actions/contacts/contacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/actions/contacts/contacts.ts -------------------------------------------------------------------------------- /app/main_window/actions/domains/domains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/actions/domains/domains.ts -------------------------------------------------------------------------------- /app/main_window/actions/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/actions/global.ts -------------------------------------------------------------------------------- /app/main_window/actions/mail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/actions/mail.ts -------------------------------------------------------------------------------- /app/main_window/actions/mailbox/aliases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/actions/mailbox/aliases.ts -------------------------------------------------------------------------------- /app/main_window/actions/mailbox/folders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/actions/mailbox/folders.ts -------------------------------------------------------------------------------- /app/main_window/actions/mailbox/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/actions/mailbox/messages.ts -------------------------------------------------------------------------------- /app/main_window/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/app.html -------------------------------------------------------------------------------- /app/main_window/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/app.icns -------------------------------------------------------------------------------- /app/main_window/components/Contact/ContactDetails/AddressField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Contact/ContactDetails/AddressField.tsx -------------------------------------------------------------------------------- /app/main_window/components/Contact/ContactDetails/ContactDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Contact/ContactDetails/ContactDetails.tsx -------------------------------------------------------------------------------- /app/main_window/components/Contact/ContactDetails/ContactField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Contact/ContactDetails/ContactField.tsx -------------------------------------------------------------------------------- /app/main_window/components/Contact/ContactDetails/DeleteModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Contact/ContactDetails/DeleteModal.tsx -------------------------------------------------------------------------------- /app/main_window/components/Contact/ContactDetails/NotesField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Contact/ContactDetails/NotesField.tsx -------------------------------------------------------------------------------- /app/main_window/components/Contact/ContactDetails/PhoneField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Contact/ContactDetails/PhoneField.tsx -------------------------------------------------------------------------------- /app/main_window/components/Contact/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Contact/countries.json -------------------------------------------------------------------------------- /app/main_window/components/Layout/Navigation/CustomSVG/UserBubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Layout/Navigation/CustomSVG/UserBubble.tsx -------------------------------------------------------------------------------- /app/main_window/components/Layout/Navigation/NavIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Layout/Navigation/NavIcon.tsx -------------------------------------------------------------------------------- /app/main_window/components/Layout/Navigation/NavStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Layout/Navigation/NavStack.tsx -------------------------------------------------------------------------------- /app/main_window/components/Layout/TopBar/GlobalTopBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Layout/TopBar/GlobalTopBar.css -------------------------------------------------------------------------------- /app/main_window/components/Layout/TopBar/GlobalTopBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Layout/TopBar/GlobalTopBar.tsx -------------------------------------------------------------------------------- /app/main_window/components/Layout/TopBar/Search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Layout/TopBar/Search.css -------------------------------------------------------------------------------- /app/main_window/components/Layout/TopBar/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Layout/TopBar/Search.tsx -------------------------------------------------------------------------------- /app/main_window/components/Layout/TopBar/UserMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Layout/TopBar/UserMenu.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/Aliases/AliasesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/Aliases/AliasesPage.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/Aliases/ModalRoutes/AliasDelete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/Aliases/ModalRoutes/AliasDelete.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/Aliases/ModalRoutes/AliasEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/Aliases/ModalRoutes/AliasEdit.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/Aliases/ModalRoutes/AliasManagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/Aliases/ModalRoutes/AliasManagement.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/Aliases/ModalRoutes/AliasRegistration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/Aliases/ModalRoutes/AliasRegistration.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/Aliases/ModalRoutes/NamespaceRegistration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/Aliases/ModalRoutes/NamespaceRegistration.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/MessageDisplay/MessageDisplay.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/main_window/components/Mail/MessageDisplay/MessageDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/MessageDisplay/MessageDisplay.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/MessageDisplay/MessageDisplayRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/MessageDisplay/MessageDisplayRouter.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/MessageDisplay/customSVGs/forward.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/MessageDisplay/customSVGs/forward.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/MessageDisplay/customSVGs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/MessageDisplay/customSVGs/index.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/MessageDisplay/customSVGs/reply.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/MessageDisplay/customSVGs/reply.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/MessageDisplay/customSVGs/replyall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/MessageDisplay/customSVGs/replyall.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/MessageList/MessageList.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/MessageList/MessageList.less -------------------------------------------------------------------------------- /app/main_window/components/Mail/MessageList/MessageList.less.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/MessageList/MessageList.less.d.ts -------------------------------------------------------------------------------- /app/main_window/components/Mail/MessageList/MessageList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/MessageList/MessageList.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/MessageList/MessagePreview/AvatarLoader.tsx--D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/MessageList/MessagePreview/AvatarLoader.tsx--D -------------------------------------------------------------------------------- /app/main_window/components/Mail/MessageList/MessagePreview/CircleLoader.tsx--D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/MessageList/MessagePreview/CircleLoader.tsx--D -------------------------------------------------------------------------------- /app/main_window/components/Mail/MessageList/MessagePreview/MessagePreview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/MessageList/MessagePreview/MessagePreview.css -------------------------------------------------------------------------------- /app/main_window/components/Mail/MessageList/MessagePreview/MessagePreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/MessageList/MessagePreview/MessagePreview.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/MessageList/MessagePreview/PreviewIconBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/MessageList/MessagePreview/PreviewIconBar.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/MessageList/SortIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/MessageList/SortIcon.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/MessageToolbar/MessageToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/MessageToolbar/MessageToolbar.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/Navigation/Aliases/AliasSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/Navigation/Aliases/AliasSection.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/Navigation/Aliases/NamespaceBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/Navigation/Aliases/NamespaceBlock.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/Navigation/NavIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/Navigation/NavIcons.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/Navigation/Navigation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/Navigation/Navigation.css -------------------------------------------------------------------------------- /app/main_window/components/Mail/Navigation/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/Navigation/Navigation.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/Navigation/NewFolderModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/Navigation/NewFolderModal.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/Navigation/SyncNotification.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/Navigation/SyncNotification.css -------------------------------------------------------------------------------- /app/main_window/components/Mail/Navigation/SyncNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/Navigation/SyncNotification.tsx -------------------------------------------------------------------------------- /app/main_window/components/Mail/envelope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Mail/envelope.js -------------------------------------------------------------------------------- /app/main_window/components/Settings/BillingPayments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Settings/BillingPayments.css -------------------------------------------------------------------------------- /app/main_window/components/Settings/BillingPayments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Settings/BillingPayments.tsx -------------------------------------------------------------------------------- /app/main_window/components/Settings/BillingPayments/PlanComparison.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Settings/BillingPayments/PlanComparison.tsx -------------------------------------------------------------------------------- /app/main_window/components/Settings/CustomDomains.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Settings/CustomDomains.tsx -------------------------------------------------------------------------------- /app/main_window/components/Settings/CustomDomains/DomainManagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Settings/CustomDomains/DomainManagement.tsx -------------------------------------------------------------------------------- /app/main_window/components/Settings/CustomDomains/ModalRoutes/DomainDelete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Settings/CustomDomains/ModalRoutes/DomainDelete.tsx -------------------------------------------------------------------------------- /app/main_window/components/Settings/CustomDomains/ModalRoutes/DomainRegistration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Settings/CustomDomains/ModalRoutes/DomainRegistration.tsx -------------------------------------------------------------------------------- /app/main_window/components/Settings/CustomDomains/ModalRoutes/MailboxDelete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Settings/CustomDomains/ModalRoutes/MailboxDelete.tsx -------------------------------------------------------------------------------- /app/main_window/components/Settings/CustomDomains/ModalRoutes/MailboxInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Settings/CustomDomains/ModalRoutes/MailboxInfo.tsx -------------------------------------------------------------------------------- /app/main_window/components/Settings/CustomDomains/ModalRoutes/MailboxRegistration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Settings/CustomDomains/ModalRoutes/MailboxRegistration.tsx -------------------------------------------------------------------------------- /app/main_window/components/Settings/DevicesPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Settings/DevicesPanel.tsx -------------------------------------------------------------------------------- /app/main_window/components/Settings/GeneralPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Settings/GeneralPanel.tsx -------------------------------------------------------------------------------- /app/main_window/components/Settings/SecurityPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Settings/SecurityPanel.tsx -------------------------------------------------------------------------------- /app/main_window/components/Settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Settings/index.ts -------------------------------------------------------------------------------- /app/main_window/components/Settings/shared/InputField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Settings/shared/InputField.tsx -------------------------------------------------------------------------------- /app/main_window/components/Settings/shared/SettingsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/Settings/shared/SettingsSection.tsx -------------------------------------------------------------------------------- /app/main_window/components/css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/components/css.d.ts -------------------------------------------------------------------------------- /app/main_window/constants/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/constants/routes.json -------------------------------------------------------------------------------- /app/main_window/containers/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/containers/App.tsx -------------------------------------------------------------------------------- /app/main_window/containers/Layout/ContactPage/ContactPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/containers/Layout/ContactPage/ContactPage.tsx -------------------------------------------------------------------------------- /app/main_window/containers/Layout/MailPage/MailPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/containers/Layout/MailPage/MailPage.tsx -------------------------------------------------------------------------------- /app/main_window/containers/Layout/MainWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/containers/Layout/MainWindow.tsx -------------------------------------------------------------------------------- /app/main_window/containers/Layout/SettingsPage/SettingsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/containers/Layout/SettingsPage/SettingsPage.tsx -------------------------------------------------------------------------------- /app/main_window/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/index.tsx -------------------------------------------------------------------------------- /app/main_window/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/menu.ts -------------------------------------------------------------------------------- /app/main_window/reducers/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/reducers/account.ts -------------------------------------------------------------------------------- /app/main_window/reducers/contacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/reducers/contacts.ts -------------------------------------------------------------------------------- /app/main_window/reducers/domains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/reducers/domains.ts -------------------------------------------------------------------------------- /app/main_window/reducers/globalState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/reducers/globalState.ts -------------------------------------------------------------------------------- /app/main_window/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/reducers/index.ts -------------------------------------------------------------------------------- /app/main_window/reducers/mail/aliases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/reducers/mail/aliases.ts -------------------------------------------------------------------------------- /app/main_window/reducers/mail/folders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/reducers/mail/folders.ts -------------------------------------------------------------------------------- /app/main_window/reducers/mail/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/reducers/mail/index.ts -------------------------------------------------------------------------------- /app/main_window/reducers/mail/mailboxes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/reducers/mail/mailboxes.ts -------------------------------------------------------------------------------- /app/main_window/reducers/mail/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/reducers/mail/messages.ts -------------------------------------------------------------------------------- /app/main_window/reducers/mail/namespaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/reducers/mail/namespaces.ts -------------------------------------------------------------------------------- /app/main_window/reducers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/reducers/types.ts -------------------------------------------------------------------------------- /app/main_window/selectors/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/selectors/account.ts -------------------------------------------------------------------------------- /app/main_window/selectors/contacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/selectors/contacts.ts -------------------------------------------------------------------------------- /app/main_window/selectors/domains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/selectors/domains.ts -------------------------------------------------------------------------------- /app/main_window/selectors/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/selectors/global.ts -------------------------------------------------------------------------------- /app/main_window/selectors/mail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/selectors/mail.ts -------------------------------------------------------------------------------- /app/main_window/store/configureStore.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/store/configureStore.dev.ts -------------------------------------------------------------------------------- /app/main_window/store/configureStore.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/store/configureStore.prod.ts -------------------------------------------------------------------------------- /app/main_window/store/configureStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/main_window/store/configureStore.ts -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/package.json -------------------------------------------------------------------------------- /app/services/account.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/services/account.service.js -------------------------------------------------------------------------------- /app/services/composer.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/services/composer.service.js -------------------------------------------------------------------------------- /app/services/contact.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/services/contact.service.js -------------------------------------------------------------------------------- /app/services/domain.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/services/domain.service.js -------------------------------------------------------------------------------- /app/services/login.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/services/login.service.js -------------------------------------------------------------------------------- /app/services/mail.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/services/mail.service.js -------------------------------------------------------------------------------- /app/services/main.channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/services/main.channel.js -------------------------------------------------------------------------------- /app/services/messageIngress.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/services/messageIngress.service.js -------------------------------------------------------------------------------- /app/services/notifier.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/services/notifier.service.js -------------------------------------------------------------------------------- /app/sounds/bubble.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/sounds/bubble.wav -------------------------------------------------------------------------------- /app/tailwind.global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/tailwind.global.css -------------------------------------------------------------------------------- /app/utils/Matomo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/Matomo.js -------------------------------------------------------------------------------- /app/utils/WindowManager.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/WindowManager.util.ts -------------------------------------------------------------------------------- /app/utils/attachment.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/attachment.util.js -------------------------------------------------------------------------------- /app/utils/avatar.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/avatar.util.js -------------------------------------------------------------------------------- /app/utils/contact.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/contact.util.ts -------------------------------------------------------------------------------- /app/utils/draft.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/draft.utils.ts -------------------------------------------------------------------------------- /app/utils/file.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/file.util.js -------------------------------------------------------------------------------- /app/utils/helpers/avatarRandomOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/helpers/avatarRandomOptions.ts -------------------------------------------------------------------------------- /app/utils/helpers/css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/helpers/css.ts -------------------------------------------------------------------------------- /app/utils/helpers/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/helpers/date.ts -------------------------------------------------------------------------------- /app/utils/helpers/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/helpers/dom.ts -------------------------------------------------------------------------------- /app/utils/helpers/function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/helpers/function.ts -------------------------------------------------------------------------------- /app/utils/helpers/generators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/helpers/generators.ts -------------------------------------------------------------------------------- /app/utils/helpers/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/helpers/json.ts -------------------------------------------------------------------------------- /app/utils/helpers/regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/helpers/regex.ts -------------------------------------------------------------------------------- /app/utils/helpers/security.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/helpers/security.ts -------------------------------------------------------------------------------- /app/utils/helpers/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/helpers/sort.ts -------------------------------------------------------------------------------- /app/utils/helpers/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/helpers/url.ts -------------------------------------------------------------------------------- /app/utils/hooks/useAccountSync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/hooks/useAccountSync.ts -------------------------------------------------------------------------------- /app/utils/hooks/useCollectionListeners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/hooks/useCollectionListeners.ts -------------------------------------------------------------------------------- /app/utils/hooks/useForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/hooks/useForm.ts -------------------------------------------------------------------------------- /app/utils/hooks/useHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/hooks/useHandler.ts -------------------------------------------------------------------------------- /app/utils/hooks/useIsMounted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/hooks/useIsMounted.ts -------------------------------------------------------------------------------- /app/utils/hooks/usePrevious.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/hooks/usePrevious.ts -------------------------------------------------------------------------------- /app/utils/reducer.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/reducer.util.js -------------------------------------------------------------------------------- /app/utils/themes.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/utils/themes.util.js -------------------------------------------------------------------------------- /app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/app/yarn.lock -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/babel.config.js -------------------------------------------------------------------------------- /configs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/configs/.eslintrc -------------------------------------------------------------------------------- /configs/webpack.config.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/configs/webpack.config.base.js -------------------------------------------------------------------------------- /configs/webpack.config.eslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/configs/webpack.config.eslint.js -------------------------------------------------------------------------------- /configs/webpack.config.main.prod.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/configs/webpack.config.main.prod.babel.js -------------------------------------------------------------------------------- /configs/webpack.config.renderer.dev.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/configs/webpack.config.renderer.dev.babel.js -------------------------------------------------------------------------------- /configs/webpack.config.renderer.dev.dll.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/configs/webpack.config.renderer.dev.dll.babel.js -------------------------------------------------------------------------------- /configs/webpack.config.renderer.prod.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/configs/webpack.config.renderer.prod.babel.js -------------------------------------------------------------------------------- /custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/custom.d.ts -------------------------------------------------------------------------------- /entitlements.mac.inherit.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/entitlements.mac.inherit.plist -------------------------------------------------------------------------------- /internals/mocks/fileMock.js: -------------------------------------------------------------------------------- 1 | export default 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /internals/scripts/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/internals/scripts/.eslintrc -------------------------------------------------------------------------------- /internals/scripts/BabelRegister.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/internals/scripts/BabelRegister.js -------------------------------------------------------------------------------- /internals/scripts/CheckBuildsExist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/internals/scripts/CheckBuildsExist.js -------------------------------------------------------------------------------- /internals/scripts/CheckNativeDep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/internals/scripts/CheckNativeDep.js -------------------------------------------------------------------------------- /internals/scripts/CheckNodeEnv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/internals/scripts/CheckNodeEnv.js -------------------------------------------------------------------------------- /internals/scripts/CheckPortInUse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/internals/scripts/CheckPortInUse.js -------------------------------------------------------------------------------- /internals/scripts/CheckYarn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/internals/scripts/CheckYarn.js -------------------------------------------------------------------------------- /internals/scripts/DeleteSourceMaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/internals/scripts/DeleteSourceMaps.js -------------------------------------------------------------------------------- /internals/scripts/ElectronRebuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/internals/scripts/ElectronRebuild.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/package.json -------------------------------------------------------------------------------- /playbooks/site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/playbooks/site.yml -------------------------------------------------------------------------------- /playbooks/tasks/debug/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/playbooks/tasks/debug/main.yml -------------------------------------------------------------------------------- /playbooks/tasks/history/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/playbooks/tasks/history/main.yml -------------------------------------------------------------------------------- /playbooks/tasks/local/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/playbooks/tasks/local/main.yml -------------------------------------------------------------------------------- /playbooks/tasks/transfer/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/playbooks/tasks/transfer/main.yml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/public/download.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/public/index.html -------------------------------------------------------------------------------- /public/mac/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/public/mac/index.html -------------------------------------------------------------------------------- /public/nix/debian/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/public/nix/debian/index.html -------------------------------------------------------------------------------- /public/nix/rhel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/public/nix/rhel/index.html -------------------------------------------------------------------------------- /public/win/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/public/win/index.html -------------------------------------------------------------------------------- /repo/client_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/repo/client_screenshot.png -------------------------------------------------------------------------------- /resources/fonts/Montserrat/Montserrat-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/Montserrat/Montserrat-Black.ttf -------------------------------------------------------------------------------- /resources/fonts/Montserrat/Montserrat-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/Montserrat/Montserrat-BlackItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Montserrat/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/Montserrat/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /resources/fonts/Montserrat/Montserrat-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/Montserrat/Montserrat-BoldItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Montserrat/Montserrat-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/Montserrat/Montserrat-ExtraBold.ttf -------------------------------------------------------------------------------- /resources/fonts/Montserrat/Montserrat-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/Montserrat/Montserrat-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Montserrat/Montserrat-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/Montserrat/Montserrat-ExtraLight.ttf -------------------------------------------------------------------------------- /resources/fonts/Montserrat/Montserrat-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/Montserrat/Montserrat-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Montserrat/Montserrat-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/Montserrat/Montserrat-Italic.ttf -------------------------------------------------------------------------------- /resources/fonts/Montserrat/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/Montserrat/Montserrat-Light.ttf -------------------------------------------------------------------------------- /resources/fonts/Montserrat/Montserrat-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/Montserrat/Montserrat-LightItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Montserrat/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/Montserrat/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /resources/fonts/Montserrat/Montserrat-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/Montserrat/Montserrat-MediumItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Montserrat/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/Montserrat/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /resources/fonts/Montserrat/Montserrat-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/Montserrat/Montserrat-SemiBold.ttf -------------------------------------------------------------------------------- /resources/fonts/Montserrat/Montserrat-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/Montserrat/Montserrat-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Montserrat/Montserrat-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/Montserrat/Montserrat-Thin.ttf -------------------------------------------------------------------------------- /resources/fonts/Montserrat/Montserrat-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/Montserrat/Montserrat-ThinItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Montserrat/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/Montserrat/OFL.txt -------------------------------------------------------------------------------- /resources/fonts/OpenSans/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/OpenSans/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /resources/fonts/OpenSans/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/OpenSans/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/OpenSans/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/OpenSans/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /resources/fonts/OpenSans/OpenSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/OpenSans/OpenSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/OpenSans/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/OpenSans/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /resources/fonts/OpenSans/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/OpenSans/OpenSans-Light.ttf -------------------------------------------------------------------------------- /resources/fonts/OpenSans/OpenSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/OpenSans/OpenSans-LightItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/OpenSans/OpenSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/OpenSans/OpenSans-Medium.ttf -------------------------------------------------------------------------------- /resources/fonts/OpenSans/OpenSans-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/OpenSans/OpenSans-MediumItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/OpenSans/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/OpenSans/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /resources/fonts/OpenSans/OpenSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/OpenSans/OpenSans-SemiBold.ttf -------------------------------------------------------------------------------- /resources/fonts/OpenSans/OpenSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/OpenSans/OpenSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/open-sans-v18-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/open-sans-v18-latin-regular.woff -------------------------------------------------------------------------------- /resources/fonts/open-sans-v18-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/fonts/open-sans-v18-latin-regular.woff2 -------------------------------------------------------------------------------- /resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/icon.icns -------------------------------------------------------------------------------- /resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/icon.ico -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/img/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/img/check.svg -------------------------------------------------------------------------------- /resources/img/forward-arrows-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/img/forward-arrows-svgrepo-com.svg -------------------------------------------------------------------------------- /resources/img/infinityIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/img/infinityIcon.svg -------------------------------------------------------------------------------- /resources/img/isometric_login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/img/isometric_login.svg -------------------------------------------------------------------------------- /resources/img/laptop_email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/img/laptop_email.svg -------------------------------------------------------------------------------- /resources/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/img/logo.svg -------------------------------------------------------------------------------- /resources/img/next-arrows-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/img/next-arrows-svgrepo-com.svg -------------------------------------------------------------------------------- /resources/img/refresh-arrows-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/img/refresh-arrows-svgrepo-com.svg -------------------------------------------------------------------------------- /resources/img/reply-arrows-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/img/reply-arrows-svgrepo-com.svg -------------------------------------------------------------------------------- /resources/img/telios_color_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/img/telios_color_logo.svg -------------------------------------------------------------------------------- /resources/img/telios_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/img/telios_logo.svg -------------------------------------------------------------------------------- /resources/img/telios_title_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/resources/img/telios_title_logo.svg -------------------------------------------------------------------------------- /sign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/sign.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/test/.eslintrc.json -------------------------------------------------------------------------------- /test/actions/__snapshots__/counter.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/test/actions/__snapshots__/counter.spec.ts.snap -------------------------------------------------------------------------------- /test/actions/counter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/test/actions/counter.spec.ts -------------------------------------------------------------------------------- /test/components/Counter.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/test/components/Counter.spec.tsx -------------------------------------------------------------------------------- /test/components/__snapshots__/Counter.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/test/components/__snapshots__/Counter.spec.tsx.snap -------------------------------------------------------------------------------- /test/containers/CounterPage.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/test/containers/CounterPage.spec.tsx -------------------------------------------------------------------------------- /test/e2e/HomePage.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/test/e2e/HomePage.e2e.ts -------------------------------------------------------------------------------- /test/e2e/Registration.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/test/e2e/Registration.e2e.ts -------------------------------------------------------------------------------- /test/e2e/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/test/e2e/helpers.ts -------------------------------------------------------------------------------- /test/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/test/example.js -------------------------------------------------------------------------------- /test/reducers/__snapshots__/counter.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/test/reducers/__snapshots__/counter.spec.ts.snap -------------------------------------------------------------------------------- /test/reducers/counter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/test/reducers/counter.spec.ts -------------------------------------------------------------------------------- /test/seedData/client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/test/seedData/client.json -------------------------------------------------------------------------------- /test/seedData/fullState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/test/seedData/fullState.json -------------------------------------------------------------------------------- /test/seedData/globalState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/test/seedData/globalState.json -------------------------------------------------------------------------------- /test/seedData/mail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/test/seedData/mail.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telios-org/email-client-desktop/HEAD/yarn.lock --------------------------------------------------------------------------------