Merge pull request #3063 from mailcow/sogo-connector

SOGo Integrator is now SOGo Connector
This commit is contained in:
Michael Kuron 2019-10-22 09:12:57 +02:00 committed by GitHub
commit 60741fcf5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -84,8 +84,8 @@ elseif (isset($_SESSION['mailcow_cc_role']) && $_SESSION['mailcow_cc_role'] == '
$fh = fopen('thunderbird-plugins/version.csv', 'r'); $fh = fopen('thunderbird-plugins/version.csv', 'r');
if ($fh) { if ($fh) {
while (($row = fgetcsv($fh, 1000, ';')) !== FALSE) { while (($row = fgetcsv($fh, 1000, ';')) !== FALSE) {
if ($row[0] == 'sogo-integrator@inverse.ca') { if ($row[0] == 'sogo-connector@inverse.ca') {
$clientconfigstr .= "&integrator=" . urlencode($row[1]); $clientconfigstr .= "&connector=" . urlencode($row[1]);
} }
} }
fclose($fh); fclose($fh);