add cache reset instructions to readme, fix #519

This commit is contained in:
Jan-Christoph Borchardt 2015-04-23 09:33:23 +02:00
Родитель bfa16ad60a
Коммит 6cded10a60
1 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -34,10 +34,14 @@ curl -sS https://getcomposer.org/installer | php
php composer.phar install
```
### How do I reset the Mail app
### Resetting the app
Connect to your database and run the following commands where **oc\_** is your table prefix (defaults to oc\_)
```sql
DELETE FROM oc_appconfig WHERE appid = 'mail';
DROP TABLE oc_mail_accounts;
```
Go to ownCloud Mail in the browser and run this from the developer console to clear the cache:
```
localStorage.clear();
```