diff options
| author | Christian Aistleitner <christian@quelltextlich.at> | 2016-06-05 12:46:56 +0200 |
|---|---|---|
| committer | Christian Aistleitner <christian@quelltextlich.at> | 2016-06-05 23:48:29 +0200 |
| commit | e84000f7b8b8fb8ae29f53f66dea488f904e0838 (patch) | |
| tree | 5f13682709817542d91e29a06791e657cdfe1ddf /doc | |
| parent | a93247d32f79d4b354c4a9e15bf05d787610eb2c (diff) | |
| download | ngircd-e84000f7b8b8fb8ae29f53f66dea488f904e0838.tar.gz ngircd-e84000f7b8b8fb8ae29f53f66dea488f904e0838.zip | |
Add PAMServiceName setting to specify the used PAM configuration
This setting allows to run multiple ngIRCd instances with PAM configurations on each instance. If one sets it to "ngircd-foo", PAM will use `/etc/pam.d/ngircd-foo` instead of the default `/etc/pam.d/ngircd`.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/sample-ngircd.conf.tmpl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/sample-ngircd.conf.tmpl b/doc/sample-ngircd.conf.tmpl index a4346b1e..3f9ba088 100644 --- a/doc/sample-ngircd.conf.tmpl +++ b/doc/sample-ngircd.conf.tmpl @@ -226,6 +226,15 @@ # character prepended to their respective user names! ;PAMIsOptional = no + # When PAM is enabled, this value determines the used PAM + # configuration. + # This setting allows to run multiple ngIRCd instances with + # different PAM configurations on each instance. + # If you set it to "ngircd-foo", PAM will use + # /etc/pam.d/ngircd-foo instead of the default + # /etc/pam.d/ngircd. + ;PAMServiceName = ngircd + # Let ngIRCd send an "authentication PING" when a new client connects, # and register this client only after receiving the corresponding # "PONG" reply. |