diff --git a/actions/admin/settings/135.fcgid.php b/actions/admin/settings/135.fcgid.php
index 050ede3b..d57e4241 100644
--- a/actions/admin/settings/135.fcgid.php
+++ b/actions/admin/settings/135.fcgid.php
@@ -105,6 +105,14 @@ return array(
'default' => 30,
'save_method' => 'storeSettingField'
),
+ 'system_nssextrausers' => array(
+ 'label' => $lng['serversettings']['nssextrausers'],
+ 'settinggroup' => 'system',
+ 'varname' => 'nssextrausers',
+ 'type' => 'bool',
+ 'default' => false,
+ 'save_method' => 'storeSettingField'
+ ),
)
)
)
diff --git a/actions/admin/settings/136.phpfpm.php b/actions/admin/settings/136.phpfpm.php
index 750a4660..45fc5e71 100644
--- a/actions/admin/settings/136.phpfpm.php
+++ b/actions/admin/settings/136.phpfpm.php
@@ -160,6 +160,14 @@ return array(
'visible' => Settings::Get('system.apache24'),
'save_method' => 'storeSettingField'
),
+ 'system_nssextrausers' => array(
+ 'label' => $lng['serversettings']['nssextrausers'],
+ 'settinggroup' => 'system',
+ 'varname' => 'nssextrausers',
+ 'type' => 'bool',
+ 'default' => false,
+ 'save_method' => 'storeSettingField'
+ ),
),
),
),
diff --git a/lng/english.lng.php b/lng/english.lng.php
index 8ed89fd8..5361073f 100644
--- a/lng/english.lng.php
+++ b/lng/english.lng.php
@@ -2074,3 +2074,5 @@ $lng['admin']['domain_ocsp_stapling']['description'] = 'See WARNING: Nginx version 1.3.7 or above is required for OCSP stapling. If your version is older, the webserver will NOT start correctly while OCSP stapling is enabled!';
$lng['serversettings']['ssl']['apache24_ocsp_cache_path']['title'] = 'Apache 2.4: path to the OCSP stapling cache';
$lng['serversettings']['ssl']['apache24_ocsp_cache_path']['description'] = 'Configures the cache used to store OCSP responses which get included in TLS handshakes.';
+$lng['serversettings']['nssextrausers']['title'] = 'Use libnss-extrausers instead of libnss-mysql';
+$lng['serversettings']['nssextrausers']['description'] = 'Do not read users from the database but from files. Please only activate if you have already gone through the required configuration steps (system -> libnss-extrausers).
For Debian/Ubuntu only (or if you have compiled libnss-extrausers yourself!)';
diff --git a/lng/german.lng.php b/lng/german.lng.php
index 57e9476c..7c2f182e 100644
--- a/lng/german.lng.php
+++ b/lng/german.lng.php
@@ -1725,3 +1725,5 @@ $lng['admin']['domain_ocsp_stapling']['description'] = 'Siehe WARNUNG: Nginx unterstützt OCSP-Stapling erst ab Version 1.3.7. Wenn Ihre Version älter ist, wird der Webserver bei aktiviertem OCSP-Stapling NICHT korrekt starten.';
$lng['serversettings']['ssl']['apache24_ocsp_cache_path']['title'] = 'Apache 2.4: Pfad zum OCSP-Stapling-Cache';
$lng['serversettings']['ssl']['apache24_ocsp_cache_path']['description'] = 'Konfiguriert den Cache-Pfad zum Zwischenspeichern der OCSP-Antworten,
die an TLS-Handshakes angehängt werden.';
+$lng['serversettings']['nssextrausers']['title'] = 'Verwende libnss-extrausers anstatt libnss-mysql';
+$lng['serversettings']['nssextrausers']['description'] = 'Lese Benutzer nicht direkt aus der Datenbank sondern über Dateien, bitte nur aktivieren, wenn die entsprechende Konfiguration vorgenommen wurde (System -> libnss-extrausers).
Nur für Debian/Ubuntu (oder wenn libnss-extrausers manuell kompiliert wurde!)';