diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2007-11-25 16:21:55 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2007-11-25 16:21:55 +0000 |
| commit | 6ac3c9018c1c453a62dcb37a09efa7e85d6450b6 (patch) | |
| tree | 1501656b569221255e522556190d9b9174b878ef /roundcubemail/program/include/main.inc | |
| parent | dea2d5550be909d35f6548ec843576d20eb00ec5 (diff) | |
Don't create default folders by default
git-svn-id: https://svn.roundcube.net/trunk@925 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/main.inc')
| -rw-r--r-- | roundcubemail/program/include/main.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/roundcubemail/program/include/main.inc b/roundcubemail/program/include/main.inc index 1764435ee..49dd2aaff 100644 --- a/roundcubemail/program/include/main.inc +++ b/roundcubemail/program/include/main.inc @@ -660,7 +660,9 @@ function rcmail_login($user, $pass, $host=NULL) // force reloading complete list of subscribed mailboxes rcmail_set_imap_prop(); $IMAP->clear_cache('mailboxes'); - $IMAP->create_default_folders(); + + if ($CONFIG['create_default_folders']) + $IMAP->create_default_folders(); return TRUE; } |
