Changeset View
Changeset View
Standalone View
Standalone View
conf/default.conf.php
| Show First 20 Lines • Show All 537 Lines • ▼ Show 20 Lines | // -- Email ----------------------------------------------------------------- // | ||||
| // '[Accepted]' and '[Commented]' in them. This makes subjects more useful, | // '[Accepted]' and '[Commented]' in them. This makes subjects more useful, | ||||
| // but might break threading on some clients. If you've set | // but might break threading on some clients. If you've set | ||||
| // 'metamta.one-mail-per-recipient', users can override this setting in their | // 'metamta.one-mail-per-recipient', users can override this setting in their | ||||
| // preferences. | // preferences. | ||||
| 'metamta.vary-subjects' => true, | 'metamta.vary-subjects' => true, | ||||
| // -- Auth ------------------------------------------------------------------ // | // -- Auth ------------------------------------------------------------------ // | ||||
| // Maximum number of simultaneous web sessions each user is permitted to have. | |||||
| // Setting this to "1" will prevent a user from logging in on more than one | |||||
| // browser at the same time. | |||||
| 'auth.sessions.web' => 5, | |||||
| // Maximum number of simultaneous Conduit sessions each user is permitted | |||||
| // to have. | |||||
| 'auth.sessions.conduit' => 5, | |||||
| // If true, email addresses must be verified (by clicking a link in an | // If true, email addresses must be verified (by clicking a link in an | ||||
| // email) before a user can login. By default, verification is optional | // email) before a user can login. By default, verification is optional | ||||
| // unless 'auth.email-domains' is nonempty (see below). | // unless 'auth.email-domains' is nonempty (see below). | ||||
| 'auth.require-email-verification' => false, | 'auth.require-email-verification' => false, | ||||
| // You can restrict allowed email addresses to certain domains (like | // You can restrict allowed email addresses to certain domains (like | ||||
| // "yourcompany.com") by setting a list of allowed domains here. Users will | // "yourcompany.com") by setting a list of allowed domains here. Users will | ||||
| // only be allowed to register using email addresses at one of the domains, | // only be allowed to register using email addresses at one of the domains, | ||||
| ▲ Show 20 Lines • Show All 576 Lines • Show Last 20 Lines | |||||