blob: a366aefaab550866138c39e2863a1ebcb81fce19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php
// A kezdőlap beállítása
// Ha a portál modult telepítjük:
// $DEFAULT_PSF['public'] = array('page'=>'portal', 'sub'=>'portal', 'f' => 'portal');
// Illetve nélküle, csak napló modullal:
$DEFAULT_PSF['public'] = array('page'=>'auth', 'sub'=>'', 'f' => 'login');
$AUTH['public'] = array(
'backend' => 'file',
'authentication' => 'optional',
'onExpired' => 'force update',
'onDisabled' => 'refuse',
'accountAttrs' => array('mail'),
'file account file' => '/tmp/passwd',
'file group file' => '/tmp/group',
);
// authentication:
// - optional: nem próbálunk authentikálni [default]
// - try: megpróbálhatunk belépni (globalLogin használja)
// - required: kötelező
?>
|