diff --git a/README.md b/README.md index d06994d..a57864e 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # Open Archiver - - - + + + **A secure, sovereign, and affordable open-source platform for email archiving and eDiscovery.** @@ -10,13 +10,13 @@ Open Archiver provides a robust, self-hosted solution for archiving, storing, in ## Screenshots - + _Dashboard_ - + _Archived emails_ - + _Full-text search across all your emails and attachments_ ## Key Features @@ -87,7 +87,7 @@ After deploying the application, you will need to configure one or more ingestio Join our growing community on Discord to ask questions, share your projects, and connect with other developers. -[](https://discord.gg/Qpv4BmHp) +[](https://discord.gg/Qpv4BmHp) ## Contributing diff --git a/assets/screenshots/archived-emails-1.png b/assets/screenshots/archived-emails.png similarity index 100% rename from assets/screenshots/archived-emails-1.png rename to assets/screenshots/archived-emails.png diff --git a/assets/screenshots/dashboard-1.png b/assets/screenshots/dashboard.png similarity index 100% rename from assets/screenshots/dashboard-1.png rename to assets/screenshots/dashboard.png diff --git a/assets/screenshots/search-1.png b/assets/screenshots/search.png similarity index 100% rename from assets/screenshots/search-1.png rename to assets/screenshots/search.png diff --git a/packages/frontend/src/lib/components/custom/IngestionSourceForm.svelte b/packages/frontend/src/lib/components/custom/IngestionSourceForm.svelte index 593d491..3132de9 100644 --- a/packages/frontend/src/lib/components/custom/IngestionSourceForm.svelte +++ b/packages/frontend/src/lib/components/custom/IngestionSourceForm.svelte @@ -2,6 +2,7 @@ import type { IngestionSource, CreateIngestionSourceDto } from '@open-archiver/types'; import { Button } from '$lib/components/ui/button'; import * as Dialog from '$lib/components/ui/dialog'; + import { Checkbox } from '$lib/components/ui/checkbox'; import { Input } from '$lib/components/ui/input'; import { Label } from '$lib/components/ui/label'; import * as Select from '$lib/components/ui/select'; @@ -25,7 +26,8 @@ name: source?.name ?? '', provider: source?.provider ?? 'google_workspace', providerConfig: source?.credentials ?? { - type: source?.provider ?? 'google_workspace' + type: source?.provider ?? 'google_workspace', + secure: true } }); @@ -129,6 +131,10 @@ class="col-span-3" /> +