[commits] [Wiki] changed: AuthCompositeHowTo
Michael Slusarz
slusarz at horde.org
Thu Apr 21 15:57:11 UTC 2011
slusarz Thu, 21 Apr 2011 15:57:11 +0000
Modified page: http://wiki.horde.org/AuthCompositeHowTo
New Revision: 1.3
Change log: Fix example
@@ -34,18 +34,18 @@
'secure' => 'none'
);
</code>
-To finish the example, let's pretend that we want to use the **imap**
driver for admin and the **ftp** driver for authentication. The final
composite driver configuration to be placed in horde/config/conf.php
would be as follows:
+To finish the example, let's pretend that we want to use the **ftp**
driver for admin and the **imap** driver for authentication. The
final composite driver configuration to be placed in
horde/config/conf.php would be as follows:
<code type="php">
$conf['auth']['driver'] = 'composite';
$conf['auth']['params']['admin_driver']['driver'] = 'ftp';
$conf['auth']['params']['admin_driver']['params'] = array(
'hostspec' => '192.168.0.21',
'port' => 21
);
-$conf['auth']['params']['auth_driver']['driver'] = 'ftp';
+$conf['auth']['params']['auth_driver']['driver'] = 'imap';
$conf['auth']['params']['auth_driver']['params'] = array(
'hostspec' => '192.168.0.42',
'port' => 143,
'secure' => 'none'
More information about the commits
mailing list