Update SOGo Connector docs

Dieser Commit ist enthalten in:
Michael Kuron 2019-10-20 10:05:52 +02:00
Ursprung bef9133662
Commit c7ca6327da
4 geänderte Dateien mit 22 neuen und 22 gelöschten Zeilen

Datei anzeigen

@ -23,34 +23,34 @@
<li>
Close the account settings window with the <i>OK</i> button.
</li>
<li class="client_integrator_enabled">
In your web browser, download <span class="client_variables_unavailable">SOGo Integrator</span><span class="client_variables_available"><a class="client_var_integrator_link client_var_link" href="/thunderbird-plugins/sogo-integrator-__VERSION__-__DOMAIN__.xpi">SOGo Integrator</a></span>.
<li class="client_connector_enabled">
In your web browser, download <span class="client_variables_unavailable">SOGo Connector</span><span class="client_variables_available"><a class="client_var_connector_link client_var_link" href="/thunderbird-plugins/sogo-connector-__VERSION__-__DOMAIN__.xpi">SOGo Connector</a></span>.
</li>
<li class="client_integrator_enabled">
<li class="client_connector_enabled">
Back in Thunderbird, go to the <i>Tools</i> menu and select <i>Add-ons</i>.
</li>
<li class="client_integrator_enabled">
<li class="client_connector_enabled">
Click <i>Extensions</i> on the left and ensure that the <i>Lightning</i> add-on is already installed. It is installed by default in the Windows and macOS versions of Thunderbird, but if you are running Linux and installed Thunderbird through your distribution's package manager, <i>Lightning</i> might be available as a separate package (e.g. xul-ext-lightning on Ubuntu).
</li>
<li class="client_integrator_enabled">
<li class="client_connector_enabled">
Click <i>Extensions</i> on the left, click the little gear icon at the top and select <i>Install Add-on From File</i>. Select the file you downloaded in step 9, click <i>Open</i> and, after waiting for a few seconds, <i>Install Now</i>.
</li>
<li class="client_integrator_enabled">
<li class="client_connector_enabled">
Click the <i>Restart Now</i> button at the top that appears.
</li>
<li class="client_integrator_enabled">
<li class="client_connector_enabled">
Thunderbird briefly shows a message that it is updating extensions, then restarts automatically once more.
</li>
<li class="client_integrator_enabled">
<li class="client_connector_enabled">
When you are prompted to authenticate<span class="client_variables_available"> for <code><span class="client_var_host"></span><span class="client_var_port"></span></code></span>, enter your email address and password, check <i>Use Password Manager</i> and click <i>OK</i>.
</li>
</ol>
<div class="client_integrator_disabled client_variables_available" markdown="1">
<div class="client_connector_disabled client_variables_available" markdown="1">
Automatic configuration of calendars and address books in Thunderbird is not currently supported.
You can ask your server administrator to enable SOGo Integrator if you need it.
You can ask your server administrator to enable SOGo Connector if you need it.
</div>
<div class="client_variables_unavailable" markdown="1">
Automatic configuration of calendars and address books (from step 9 onward) in Thunderbird is only supported if your server administrator has enabled [SOGo Integrator](https://mailcow.github.io/mailcow-dockerized-docs/third_party-thunderbird).
Automatic configuration of calendars and address books (from step 9 onward) in Thunderbird is only supported if your server administrator has enabled [SOGo Connector](https://mailcow.github.io/mailcow-dockerized-docs/third_party-thunderbird).
</div>

Datei anzeigen

@ -27,8 +27,8 @@ if (window.location.href.indexOf('/client/') >= 0) {
if (getParameterByName('port')) {
setCookie("port", getParameterByName('port'));
}
if (getParameterByName('integrator')) {
setCookie("integrator", getParameterByName('integrator'));
if (getParameterByName('connector')) {
setCookie("connector", getParameterByName('connector'));
}
if (getParameterByName('outlookEAS')) {
setCookie("outlookEAS", getParameterByName('outlookEAS'));
@ -97,16 +97,16 @@ if (window.location.href.indexOf('/client') >= 0) {
});
}
/* Hide those sections that are not applicable because useOutlookForEAS is disabled or SOGo integrator is not available */
if (getCookie('integrator')) {
Array.prototype.forEach.call(document.getElementsByClassName('client_var_integrator_link'), function(el) {
el.href = el.href.replace('__DOMAIN__', getCookie('domain')).replace('__VERSION__', getCookie('integrator'));
/* Hide those sections that are not applicable because useOutlookForEAS is disabled or SOGo Connector is not available */
if (getCookie('connector')) {
Array.prototype.forEach.call(document.getElementsByClassName('client_var_connector_link'), function(el) {
el.href = el.href.replace('__DOMAIN__', getCookie('domain')).replace('__VERSION__', getCookie('connector'));
});
Array.prototype.forEach.call(document.getElementsByClassName('client_integrator_disabled'), function(el) {
Array.prototype.forEach.call(document.getElementsByClassName('client_connector_disabled'), function(el) {
el.style.display = 'none';
});
} else if (getCookie('host')) {
Array.prototype.forEach.call(document.getElementsByClassName('client_integrator_enabled'), function(el) {
Array.prototype.forEach.call(document.getElementsByClassName('client_connector_enabled'), function(el) {
el.style.display = 'none';
});
}

Datei anzeigen

@ -1,4 +1,4 @@
# Build the SOGo Integrator plugin
# Build the SOGo Connector plugin
Install GNU Make, tar, and ZIP if you don't already have them installed. On Debian/Ubuntu, this can be done using
@ -24,5 +24,5 @@ echo example.com example.org | ./build-plugins.sh mailcow.example.com
# Install it in Thunderbird
After you have set up your mailcow IMAP account in Thunderbird, download the SOGo integrator plugin for your domain, e.g. https://mailcow.example.com/thunderbird-plugins/sogo-integrator-31.0.6-example.com.xpi, and install it into Thunderbird.
After you have set up your mailcow IMAP account in Thunderbird, download the SOGo Connector plugin for your domain, e.g. https://mailcow.example.com/thunderbird-plugins/sogo-connector-68.0.0-example.com.xpi, and install it into Thunderbird.
All your address books and calendars will be configured automatically.

Datei anzeigen

@ -105,7 +105,7 @@ nav:
- 'Windows Phone': 'client/client-windowsphone.md'
- 'Manual configuration': 'client/client-manual.md'
- 'Third party apps':
- 'SOGo Integrator for Thunderbird': 'third_party-thunderbird.md'
- 'SOGo Connector for Thunderbird': 'third_party-thunderbird.md'
- 'Roundcube': 'third_party-roundcube.md'
- 'Portainer': 'third_party-portainer.md'
- 'Gogs': 'third_party-gogs.md'