From 4664e193ee1ccc399393ecb4165b113fd1f6ed6f Mon Sep 17 00:00:00 2001 From: "dobby-yivi-agent[bot]" <275734547+dobby-yivi-agent[bot]@users.noreply.github.com> Date: Sat, 9 May 2026 13:45:29 +0000 Subject: [PATCH 1/4] docs: clarify Outlook add-in is under the Apps menu Closes #173 Outlook now lists custom add-ins under the "Apps" menu in the ribbon rather than as a dedicated ribbon button. Update the install instructions on the addons page (en + nl) so users know to open the add-in via Apps -> PostGuard Add-in for both sending and decrypting. --- src/lib/locales/en.json | 2 +- src/lib/locales/nl.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/locales/en.json b/src/lib/locales/en.json index 9df5709..d3cbe4f 100644 --- a/src/lib/locales/en.json +++ b/src/lib/locales/en.json @@ -81,7 +81,7 @@ "title": "Add PostGuard to your mail client", "par": "Using the PostGuard addon for Thunderbird or Outlook, you can send encrypted emails in a breeze!", "Thunderbird": "
  1. Download and save the file postguard-tb-addon.xpi somewhere on your computer, where you can find it again easily.
  2. Within Thunderbird:

  3. Now, when you compose a new mail message, a new header is shown with a button to switch PostGuard on or off. When on, it will encrypt the message for all recipients. Each recipient needs to use the Yivi app to prove that (s)he really posesses the email address that you used.
", - "Outlook": "
  1. Adding the add-on:

  2. Now, when you compose a new mail message, a new group is visible in the Message menu titled PostGuard Add-in. It contains only one button, called Send encrypted Email. When clicking, it will encrypt and send the message to all recipients. Each recipient needs to use the Yivi app to prove that (s)he really possesses the email address that you used. Also, a copy of the sent mail is stored in the folder PostGuard Sent Items as a draft email (currently, Microsoft only allows to create messages as a draft).
  3. After receiving a PostGuard encrypted email, the email can be decrypted by clicking on the Decrypt Email button within the PostGuard Add-in group under the Home menu.
", + "Outlook": "
  1. Adding the add-on:

  2. Now, when you compose a new mail message, the PostGuard add-in is available from the Apps menu in the Outlook ribbon. Note: Outlook currently lists custom add-ins under the Apps menu rather than as a dedicated ribbon button — click Apps in the ribbon, then select PostGuard Add-in to open it. The add-in contains a button called Send encrypted Email. When clicking, it will encrypt and send the message to all recipients. Each recipient needs to use the Yivi app to prove that (s)he really possesses the email address that you used. Also, a copy of the sent mail is stored in the folder PostGuard Sent Items as a draft email (currently, Microsoft only allows to create messages as a draft).
  3. After receiving a PostGuard encrypted email, the email can be decrypted by opening the message, clicking Apps in the Outlook ribbon, selecting PostGuard Add-in, and then clicking the Decrypt Email button.
", "instruction.header": "Install instructions", "instruction.download": "Download for:" }, diff --git a/src/lib/locales/nl.json b/src/lib/locales/nl.json index 4787cfa..50409d5 100644 --- a/src/lib/locales/nl.json +++ b/src/lib/locales/nl.json @@ -81,7 +81,7 @@ "title": "Voeg PostGuard toe aan uw e-mailclient", "par": "Met de PostGuard add-on voor Thunderbird of Outlook kunt je in een handomdraai versleutelde e-mails verzenden!", "Thunderbird": "
  1. Download en bewaar het bestand postguard-tb-addon.xpi ergens op uw computer, waar je het gemakkelijk terug kunt vinden.
  2. Binnen Thunderbird:

  3. Als je nu een nieuw mailbericht opstelt, wordt er een nieuwe balk getoond met een knop om PostGuard aan of uit te zetten. Indien ingeschakeld, wordt het bericht voor alle ontvangers versleuteld. Elke ontvanger moet de Yivi-app gebruiken om te bewijzen dat hij/zij echt in het bezit is van het e-mailadres dat je hebt gebruikt.
", - "Outlook": "
  1. De add-on toevoegen:

  2. Als je nu een nieuw e-mailbericht opstelt, is er een nieuwe groep zichtbaar in het menu Message met de naam PostGuard Add- in. Het bevat slechts één knop, genaamd Gecodeerde e-mail verzenden. Wanneer je erop klikt, wordt het bericht gecodeerd en naar alle ontvangers verzonden. Elke ontvanger moet de Yivi-app gebruiken om te bewijzen dat hij/zij echt over het door je gebruikte e-mailadres beschikt. Ook wordt een kopie van de verzonden e-mail opgeslagen in de map PostGuard Sent Items als concept-e-mail (momenteel staat Microsoft alleen toe om berichten als concept te maken).
  3. Na ontvangst van een met PostGuard versleutelde e-mail, kan de e-mail worden ontsleuteld door te klikken op de knop E-mail ontsleutelen in de groep PostGuard-Addon onder de Start-menu.
", + "Outlook": "
  1. De add-on toevoegen:

  2. Als je nu een nieuw e-mailbericht opstelt, is de PostGuard-add-in beschikbaar via het menu Apps in het Outlook-lint. Let op: Outlook plaatst aangepaste add-ins momenteel onder het Apps-menu in plaats van als aparte knop in het lint — klik op Apps in het lint en selecteer vervolgens PostGuard Add-in om de add-in te openen. De add-in bevat een knop met de naam Gecodeerde e-mail verzenden. Wanneer je erop klikt, wordt het bericht gecodeerd en naar alle ontvangers verzonden. Elke ontvanger moet de Yivi-app gebruiken om te bewijzen dat hij/zij echt over het door je gebruikte e-mailadres beschikt. Ook wordt een kopie van de verzonden e-mail opgeslagen in de map PostGuard Sent Items als concept-e-mail (momenteel staat Microsoft alleen toe om berichten als concept te maken).
  3. Na ontvangst van een met PostGuard versleutelde e-mail kan de e-mail worden ontsleuteld door het bericht te openen, op Apps in het Outlook-lint te klikken, PostGuard Add-in te selecteren en vervolgens op de knop E-mail ontsleutelen te klikken.
", "instruction.header": "Installatie instructies", "instruction.download": "Downloaden voor:" }, From 61b929518c62b40c7141ad752c9794e3a96c0862 Mon Sep 17 00:00:00 2001 From: "dobby-yivi-agent[bot]" <275734547+dobby-yivi-agent[bot]@users.noreply.github.com> Date: Sat, 9 May 2026 13:47:50 +0000 Subject: [PATCH 2/4] fix: make Thunderbird/Outlook addon tabs look clickable Closes #170 --- src/lib/components/Tabs.svelte | 124 +++++++++++++++------------------ 1 file changed, 55 insertions(+), 69 deletions(-) diff --git a/src/lib/components/Tabs.svelte b/src/lib/components/Tabs.svelte index af61e47..6e4652d 100644 --- a/src/lib/components/Tabs.svelte +++ b/src/lib/components/Tabs.svelte @@ -7,84 +7,70 @@ let { tabItems, activeItem } = $props() -
- +
+ {#each tabItems as { item, logo } (item)} + + {/each}
From 28cfc8a7214a581dd401b4feb6cdf0c62a3755d7 Mon Sep 17 00:00:00 2001 From: "dobby-yivi-agent[bot]" <275734547+dobby-yivi-agent[bot]@users.noreply.github.com> Date: Sat, 9 May 2026 13:57:41 +0000 Subject: [PATCH 3/4] fix(i18n): clarify Thunderbird add-on install step references cog icon The English instruction said "click on the sign, after Manage Your Extensions" which is unclear. Replace with "click on the cog icon next to Manage Your Extensions" and align the Dutch translation. Closes #168 Co-Authored-By: Claude Opus 4.7 --- src/lib/locales/en.json | 2 +- src/lib/locales/nl.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/locales/en.json b/src/lib/locales/en.json index 9df5709..8de9faa 100644 --- a/src/lib/locales/en.json +++ b/src/lib/locales/en.json @@ -80,7 +80,7 @@ "addons": { "title": "Add PostGuard to your mail client", "par": "Using the PostGuard addon for Thunderbird or Outlook, you can send encrypted emails in a breeze!", - "Thunderbird": "
  1. Download and save the file postguard-tb-addon.xpi somewhere on your computer, where you can find it again easily.
  2. Within Thunderbird:

    • under the menu Tools, go to Add-ons and Themes,
    • click on the sign, after Manage Your Extensions and select Install Add-on From File ...,
    • a file selection window opens; go to the folder where you stored the file postguard-tb-addon.xpi and select it,
    • Thunderbird tells you what an add-on can do; when you wish to continue, click the Add button.
  3. Now, when you compose a new mail message, a new header is shown with a button to switch PostGuard on or off. When on, it will encrypt the message for all recipients. Each recipient needs to use the Yivi app to prove that (s)he really posesses the email address that you used.
", + "Thunderbird": "
  1. Download and save the file postguard-tb-addon.xpi somewhere on your computer, where you can find it again easily.
  2. Within Thunderbird:

    • under the menu Tools, go to Add-ons and Themes,
    • click on the cog icon next to Manage Your Extensions and select Install Add-on From File ...,
    • a file selection window opens; go to the folder where you stored the file postguard-tb-addon.xpi and select it,
    • Thunderbird tells you what an add-on can do; when you wish to continue, click the Add button.
  3. Now, when you compose a new mail message, a new header is shown with a button to switch PostGuard on or off. When on, it will encrypt the message for all recipients. Each recipient needs to use the Yivi app to prove that (s)he really posesses the email address that you used.
", "Outlook": "
  1. Adding the add-on:

    • Note: PostGuard for Outlook only works in New Outlook and Outlook on the web. Classic Outlook is not supported.
    • Download the manifest.xml file and save it somewhere you can find it again.
    • Open aka.ms/olksideload in your browser.
    • Click My add-ins.
    • Under Custom Add-ins, click Add a custom add-in, then Add from file.... If you do not see this option, your organization probably does not allow custom add-ins to be installed. Please contact your administrator.
    • Select the manifest.xml file you just downloaded and confirm to install.
  2. Now, when you compose a new mail message, a new group is visible in the Message menu titled PostGuard Add-in. It contains only one button, called Send encrypted Email. When clicking, it will encrypt and send the message to all recipients. Each recipient needs to use the Yivi app to prove that (s)he really possesses the email address that you used. Also, a copy of the sent mail is stored in the folder PostGuard Sent Items as a draft email (currently, Microsoft only allows to create messages as a draft).
  3. After receiving a PostGuard encrypted email, the email can be decrypted by clicking on the Decrypt Email button within the PostGuard Add-in group under the Home menu.
", "instruction.header": "Install instructions", "instruction.download": "Download for:" diff --git a/src/lib/locales/nl.json b/src/lib/locales/nl.json index 4787cfa..32211fa 100644 --- a/src/lib/locales/nl.json +++ b/src/lib/locales/nl.json @@ -80,7 +80,7 @@ "addons": { "title": "Voeg PostGuard toe aan uw e-mailclient", "par": "Met de PostGuard add-on voor Thunderbird of Outlook kunt je in een handomdraai versleutelde e-mails verzenden!", - "Thunderbird": "
  1. Download en bewaar het bestand postguard-tb-addon.xpi ergens op uw computer, waar je het gemakkelijk terug kunt vinden.
  2. Binnen Thunderbird:

    • ga onder het menu Tools naar Add-ons en thema's,
    • klik op Uw extensies beheren en selecteer Add-on installeren vanuit bestand...,
    • een venster voor bestandsselectie wordt geopend; ga naar de map waar je het bestand postguard-tb-addon.xpi hebt opgeslagen en selecteer het,
    • Thunderbird vertelt je wat een add-on kan doen; als je wilt doorgaan, klikt je op de knop Toevoegen.
  3. Als je nu een nieuw mailbericht opstelt, wordt er een nieuwe balk getoond met een knop om PostGuard aan of uit te zetten. Indien ingeschakeld, wordt het bericht voor alle ontvangers versleuteld. Elke ontvanger moet de Yivi-app gebruiken om te bewijzen dat hij/zij echt in het bezit is van het e-mailadres dat je hebt gebruikt.
", + "Thunderbird": "
  1. Download en bewaar het bestand postguard-tb-addon.xpi ergens op uw computer, waar je het gemakkelijk terug kunt vinden.
  2. Binnen Thunderbird:

    • ga onder het menu Tools naar Add-ons en thema's,
    • klik op het tandwielpictogram naast Uw extensies beheren en selecteer Add-on installeren vanuit bestand...,
    • een venster voor bestandsselectie wordt geopend; ga naar de map waar je het bestand postguard-tb-addon.xpi hebt opgeslagen en selecteer het,
    • Thunderbird vertelt je wat een add-on kan doen; als je wilt doorgaan, klikt je op de knop Toevoegen.
  3. Als je nu een nieuw mailbericht opstelt, wordt er een nieuwe balk getoond met een knop om PostGuard aan of uit te zetten. Indien ingeschakeld, wordt het bericht voor alle ontvangers versleuteld. Elke ontvanger moet de Yivi-app gebruiken om te bewijzen dat hij/zij echt in het bezit is van het e-mailadres dat je hebt gebruikt.
", "Outlook": "
  1. De add-on toevoegen:

    • Let op: PostGuard voor Outlook werkt alleen in nieuwe Outlook en Outlook op het web. Klassiek Outlook wordt niet ondersteund.
    • Download het bestand manifest.xml en bewaar het ergens waar je het gemakkelijk terug kunt vinden.
    • Open aka.ms/olksideload in je browser.
    • Klik op Mijn add-ins.
    • Onder Aangepaste add-ins, klik op Een aangepaste add-in toevoegen en vervolgens op Toevoegen vanuit bestand.... Als je deze optie niet ziet, staat je organisatie waarschijnlijk niet toe dat aangepaste add-ins worden geïnstalleerd. Neem contact op met je beheerder.
    • Selecteer het manifest.xml-bestand dat je zojuist hebt gedownload en bevestig om te installeren.
  2. Als je nu een nieuw e-mailbericht opstelt, is er een nieuwe groep zichtbaar in het menu Message met de naam PostGuard Add- in. Het bevat slechts één knop, genaamd Gecodeerde e-mail verzenden. Wanneer je erop klikt, wordt het bericht gecodeerd en naar alle ontvangers verzonden. Elke ontvanger moet de Yivi-app gebruiken om te bewijzen dat hij/zij echt over het door je gebruikte e-mailadres beschikt. Ook wordt een kopie van de verzonden e-mail opgeslagen in de map PostGuard Sent Items als concept-e-mail (momenteel staat Microsoft alleen toe om berichten als concept te maken).
  3. Na ontvangst van een met PostGuard versleutelde e-mail, kan de e-mail worden ontsleuteld door te klikken op de knop E-mail ontsleutelen in de groep PostGuard-Addon onder de Start-menu.
", "instruction.header": "Installatie instructies", "instruction.download": "Downloaden voor:" From 1607f2a8cb94d3bb9806fb585c02eb950f415356 Mon Sep 17 00:00:00 2001 From: "dobby-yivi-agent[bot]" <275734547+dobby-yivi-agent[bot]@users.noreply.github.com> Date: Sat, 9 May 2026 14:58:22 +0000 Subject: [PATCH 4/4] fix(addons): consolidate install-doc, i18n, and UX fixes Apply changes from PRs #190, #191, #193, #195, #196, #197, #199 on top of #189 and #192. Specifically: - Outlook: clarify add-in lives under Apps menu (#189) - Outlook: NL terminology aligned with current Outlook UI (#190) - Outlook: instruct user to restart after install (#191) - Outlook: save manifest as manifest.xml via download attr (#193) - Outlook: open aka.ms/olksideload in new tab (#196) - Outlook: warn users when custom add-ins are blocked (#199) - Thunderbird: clarify Manage Extensions cog icon (#195) - Addons page: rerun {#key} on locale change so instructions reflect stored locale (#197) --- src/lib/locales/en.json | 5 +++-- src/lib/locales/nl.json | 5 +++-- src/routes/(marketing)/addons/+page.svelte | 20 ++++++++++++++++++-- 3 files changed, 24 insertions(+), 6 deletions(-) diff --git a/src/lib/locales/en.json b/src/lib/locales/en.json index a401024..2564835 100644 --- a/src/lib/locales/en.json +++ b/src/lib/locales/en.json @@ -81,9 +81,10 @@ "title": "Add PostGuard to your mail client", "par": "Using the PostGuard addon for Thunderbird or Outlook, you can send encrypted emails in a breeze!", "Thunderbird": "
  1. Download and save the file postguard-tb-addon.xpi somewhere on your computer, where you can find it again easily.
  2. Within Thunderbird:

    • under the menu Tools, go to Add-ons and Themes,
    • click on the cog icon next to Manage Your Extensions and select Install Add-on From File ...,
    • a file selection window opens; go to the folder where you stored the file postguard-tb-addon.xpi and select it,
    • Thunderbird tells you what an add-on can do; when you wish to continue, click the Add button.
  3. Now, when you compose a new mail message, a new header is shown with a button to switch PostGuard on or off. When on, it will encrypt the message for all recipients. Each recipient needs to use the Yivi app to prove that (s)he really posesses the email address that you used.
", - "Outlook": "
  1. Adding the add-on:

    • Note: PostGuard for Outlook only works in New Outlook and Outlook on the web. Classic Outlook is not supported.
    • Download the manifest.xml file and save it somewhere you can find it again.
    • Open aka.ms/olksideload in your browser.
    • Click My add-ins.
    • Under Custom Add-ins, click Add a custom add-in, then Add from file.... If you do not see this option, your organization probably does not allow custom add-ins to be installed. Please contact your administrator.
    • Select the manifest.xml file you just downloaded and confirm to install.
  2. Now, when you compose a new mail message, the PostGuard add-in is available from the Apps menu in the Outlook ribbon. Note: Outlook currently lists custom add-ins under the Apps menu rather than as a dedicated ribbon button — click Apps in the ribbon, then select PostGuard Add-in to open it. The add-in contains a button called Send encrypted Email. When clicking, it will encrypt and send the message to all recipients. Each recipient needs to use the Yivi app to prove that (s)he really possesses the email address that you used. Also, a copy of the sent mail is stored in the folder PostGuard Sent Items as a draft email (currently, Microsoft only allows to create messages as a draft).
  3. After receiving a PostGuard encrypted email, the email can be decrypted by opening the message, clicking Apps in the Outlook ribbon, selecting PostGuard Add-in, and then clicking the Decrypt Email button.
", + "Outlook": "
  1. Adding the add-on:

    • Note: PostGuard for Outlook only works in New Outlook and Outlook on the web. Classic Outlook is not supported.
    • Download the manifest.xml file and save it somewhere you can find it again.
    • Open aka.ms/olksideload in your browser.
    • Click My add-ins.
    • Under Custom Add-ins, click Add a custom add-in, then Add from file.... If you do not see this option, your organization probably does not allow custom add-ins to be installed. Please contact your administrator.
    • Select the manifest.xml file you just downloaded and confirm to install.
    • Restart Outlook (close and reopen the desktop client, or refresh the browser tab if you are using Outlook on the web) to complete the activation of the add-in.
  2. Now, when you compose a new mail message, the PostGuard add-in is available from the Apps menu in the Outlook ribbon. Note: Outlook currently lists custom add-ins under the Apps menu rather than as a dedicated ribbon button — click Apps in the ribbon, then select PostGuard Add-in to open it. The add-in contains a button called Send encrypted Email. When clicking, it will encrypt and send the message to all recipients. Each recipient needs to use the Yivi app to prove that (s)he really possesses the email address that you used. Also, a copy of the sent mail is stored in the folder PostGuard Sent Items as a draft email (currently, Microsoft only allows to create messages as a draft).
  3. After receiving a PostGuard encrypted email, the email can be decrypted by opening the message, clicking Apps in the Outlook ribbon, selecting PostGuard Add-in, and then clicking the Decrypt Email button.
", "instruction.header": "Install instructions", - "instruction.download": "Download for:" + "instruction.download": "Download for:", + "outlookWarning": "Heads up: some Outlook accounts (typically those provided by an organization) do not allow custom add-ins. If your account is one of them, the Custom Add-ins section described below will be missing from aka.ms/olksideload and PostGuard for Outlook cannot be installed. Please contact your administrator, or use PostGuard for Thunderbird or the web app instead." }, "fallback": { "extensionPrompt": "Want to decrypt emails directly in Thunderbird or Outlook?", diff --git a/src/lib/locales/nl.json b/src/lib/locales/nl.json index 28fc009..482d673 100644 --- a/src/lib/locales/nl.json +++ b/src/lib/locales/nl.json @@ -81,9 +81,10 @@ "title": "Voeg PostGuard toe aan uw e-mailclient", "par": "Met de PostGuard add-on voor Thunderbird of Outlook kunt je in een handomdraai versleutelde e-mails verzenden!", "Thunderbird": "
  1. Download en bewaar het bestand postguard-tb-addon.xpi ergens op uw computer, waar je het gemakkelijk terug kunt vinden.
  2. Binnen Thunderbird:

    • ga onder het menu Tools naar Add-ons en thema's,
    • klik op het tandwielpictogram naast Uw extensies beheren en selecteer Add-on installeren vanuit bestand...,
    • een venster voor bestandsselectie wordt geopend; ga naar de map waar je het bestand postguard-tb-addon.xpi hebt opgeslagen en selecteer het,
    • Thunderbird vertelt je wat een add-on kan doen; als je wilt doorgaan, klikt je op de knop Toevoegen.
  3. Als je nu een nieuw mailbericht opstelt, wordt er een nieuwe balk getoond met een knop om PostGuard aan of uit te zetten. Indien ingeschakeld, wordt het bericht voor alle ontvangers versleuteld. Elke ontvanger moet de Yivi-app gebruiken om te bewijzen dat hij/zij echt in het bezit is van het e-mailadres dat je hebt gebruikt.
", - "Outlook": "
  1. De add-on toevoegen:

    • Let op: PostGuard voor Outlook werkt alleen in nieuwe Outlook en Outlook op het web. Klassiek Outlook wordt niet ondersteund.
    • Download het bestand manifest.xml en bewaar het ergens waar je het gemakkelijk terug kunt vinden.
    • Open aka.ms/olksideload in je browser.
    • Klik op Mijn add-ins.
    • Onder Aangepaste add-ins, klik op Een aangepaste add-in toevoegen en vervolgens op Toevoegen vanuit bestand.... Als je deze optie niet ziet, staat je organisatie waarschijnlijk niet toe dat aangepaste add-ins worden geïnstalleerd. Neem contact op met je beheerder.
    • Selecteer het manifest.xml-bestand dat je zojuist hebt gedownload en bevestig om te installeren.
  2. Als je nu een nieuw e-mailbericht opstelt, is de PostGuard-add-in beschikbaar via het menu Apps in het Outlook-lint. Let op: Outlook plaatst aangepaste add-ins momenteel onder het Apps-menu in plaats van als aparte knop in het lint — klik op Apps in het lint en selecteer vervolgens PostGuard Add-in om de add-in te openen. De add-in bevat een knop met de naam Gecodeerde e-mail verzenden. Wanneer je erop klikt, wordt het bericht gecodeerd en naar alle ontvangers verzonden. Elke ontvanger moet de Yivi-app gebruiken om te bewijzen dat hij/zij echt over het door je gebruikte e-mailadres beschikt. Ook wordt een kopie van de verzonden e-mail opgeslagen in de map PostGuard Sent Items als concept-e-mail (momenteel staat Microsoft alleen toe om berichten als concept te maken).
  3. Na ontvangst van een met PostGuard versleutelde e-mail kan de e-mail worden ontsleuteld door het bericht te openen, op Apps in het Outlook-lint te klikken, PostGuard Add-in te selecteren en vervolgens op de knop E-mail ontsleutelen te klikken.
", + "Outlook": "
  1. De add-on toevoegen:

    • Let op: PostGuard voor Outlook werkt alleen in nieuwe Outlook en Outlook op het web. Klassiek Outlook wordt niet ondersteund.
    • Download het bestand manifest.xml en bewaar het ergens waar je het gemakkelijk terug kunt vinden.
    • Open aka.ms/olksideload in je browser.
    • Klik op Mijn invoegtoepassingen.
    • Onder Mijn invoegtoepassingen, klik op Aangepaste invoegtoepassing toevoegen en vervolgens op Toevoegen uit bestand. Als je deze optie niet ziet, staat je organisatie waarschijnlijk niet toe dat aangepaste add-ins worden geïnstalleerd. Neem contact op met je beheerder.
    • Selecteer het manifest.xml-bestand dat je zojuist hebt gedownload en bevestig om te installeren.
    • Herstart Outlook (sluit en heropen de desktopclient, of vernieuw het tabblad als je Outlook op het web gebruikt) om de activatie van de add-in te voltooien.
  2. Als je nu een nieuw e-mailbericht opstelt, is de PostGuard-add-in beschikbaar via het menu Apps in het Outlook-lint. Let op: Outlook plaatst aangepaste add-ins momenteel onder het Apps-menu in plaats van als aparte knop in het lint — klik op Apps in het lint en selecteer vervolgens PostGuard Add-in om de add-in te openen. De add-in bevat een knop met de naam Gecodeerde e-mail verzenden. Wanneer je erop klikt, wordt het bericht gecodeerd en naar alle ontvangers verzonden. Elke ontvanger moet de Yivi-app gebruiken om te bewijzen dat hij/zij echt over het door je gebruikte e-mailadres beschikt. Ook wordt een kopie van de verzonden e-mail opgeslagen in de map PostGuard Sent Items als concept-e-mail (momenteel staat Microsoft alleen toe om berichten als concept te maken).
  3. Na ontvangst van een met PostGuard versleutelde e-mail kan de e-mail worden ontsleuteld door het bericht te openen, op Apps in het Outlook-lint te klikken, PostGuard Add-in te selecteren en vervolgens op de knop E-mail ontsleutelen te klikken.
", "instruction.header": "Installatie instructies", - "instruction.download": "Downloaden voor:" + "instruction.download": "Downloaden voor:", + "outlookWarning": "Let op: sommige Outlook-accounts (meestal accounts van een organisatie) staan geen aangepaste add-ins toe. Als dat voor jouw account geldt, ontbreekt het onderdeel Aangepaste add-ins dat hieronder wordt beschreven op aka.ms/olksideload en kan PostGuard voor Outlook niet worden geïnstalleerd. Neem contact op met je beheerder, of gebruik in plaats daarvan PostGuard voor Thunderbird of de webversie." }, "fallback": { "extensionPrompt": "Wil je e-mails direct ontsleutelen in Thunderbird of Outlook?", diff --git a/src/routes/(marketing)/addons/+page.svelte b/src/routes/(marketing)/addons/+page.svelte index a0e3133..6a1ef41 100644 --- a/src/routes/(marketing)/addons/+page.svelte +++ b/src/routes/(marketing)/addons/+page.svelte @@ -1,5 +1,5 @@