💌 Mail app for Nextcloud
Перейти к файлу
Thomas Müller 094406aa32 Merge pull request #548 from owncloud/scrutinizer-patch-1
Scrutinizer Auto-Fixes
2015-04-28 13:02:31 +02:00
appinfo change detection is now performed server side 2015-04-27 01:02:25 +02:00
css Adding favorite inbox 2015-04-15 23:33:37 +02:00
img make notification on favicon more visible 2015-04-27 01:02:25 +02:00
js Fix multiple sending of messages 2015-04-27 20:59:04 +02:00
l10n No php translation files 2015-04-27 01:01:41 +02:00
lib Scrutinizer Auto-Fixes 2015-04-28 10:17:33 +00:00
templates change favicon if new messages did arrive 2015-04-27 01:02:25 +02:00
tests Scrutinizer Auto-Fixes 2015-04-28 10:17:33 +00:00
.gitignore Lock vendor versions 2014-12-05 10:11:10 +01:00
.jshintrc addin jshintrc - used by scrutinizer 2014-09-29 21:49:13 +02:00
.scrutinizer.yml Ignore l10n 2014-12-05 16:55:09 +01:00
.travis.yml composer self-update 2015-04-27 01:02:26 +02:00
CONTRIBUTING.md Fix IRC-URL in Contributing.md 2014-08-29 18:11:41 +02:00
README.md add cache reset instructions to readme, fix #519 2015-04-23 09:35:16 +02:00
build.xml fix travis 2014-07-28 00:44:25 +02:00
composer.json update composer.lock, fixed mailbox non-ascii status returning null #444 #522 2015-04-28 09:47:50 +08:00
composer.lock update composer.lock, fixed mailbox non-ascii status returning null #444 #522 2015-04-28 09:47:50 +08:00

README.md

Mail app

Build Status Scrutinizer Code Quality Code Coverage Dependency Status

An email app for ownCloud (minimum version 7). At the moment it is a basic IMAP client and in heavy development. (A possibility for the future would be to also have it be a dedicated email server. But that would always be optional, require additional dependencies and is out of scope for now.)

Were working towards a 0.1 release at the moment. If you experience any issues or have enhancement suggestions, please report them in our issue tracker.

Maintainers

If youd like to join, just go through the issue list and fix some. :)

Developer setup info

Just clone this repo into your apps directory (ownCloud Core installation needed). Additionally you need Composer to install dependencies:

curl -sS https://getcomposer.org/installer | php
php composer.phar install

Resetting the app

Connect to your database and run the following commands where oc_ is your table prefix (defaults to oc_)

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();