blob: fcd3206aeacf9c3ae16d006b7377e4b826454bcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?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(
'skin' => 'sulix',
'backend' => 'file',
'authentication' => 'optional',
'onExpired' => 'force update',
'onDisabled' => 'refuse',
'accountAttrs' => array('mail'),
'file account file' => '/tmp/passwd',
'file group file' => '/tmp/group',
);
?>
|