diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-11-24 20:45:53 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-11-25 14:43:45 +0100 |
commit | ffd14dfd0931857fb49ec5b1cedb9dbe1bac392a (patch) | |
tree | 583266bba5a0e38052829ef7ce6a4f6ccee4daa2 /config | |
parent | f81321af3d82bbf9a78f44f4f5bfe60c24f87a04 (diff) | |
download | nextcloud-server-ffd14dfd0931857fb49ec5b1cedb9dbe1bac392a.tar.gz nextcloud-server-ffd14dfd0931857fb49ec5b1cedb9dbe1bac392a.zip |
add sample configuration for user backends
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 0ef90a04699..f531d5f146b 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -119,4 +119,10 @@ $CONFIG = array( 'writable' => true, ), ), + 'user_backends'=>array( + array( + 'class'=>'OC_User_IMAP', + 'arguments'=>array('{imap.gmail.com:993/imap/ssl}INBOX') + ) + ) ); |