# Nextcloud Mail ![Downloads](https://img.shields.io/github/downloads/nextcloud/mail/total.svg) [![Build Status](https://travis-ci.org/nextcloud/mail.svg?branch=master)](https://travis-ci.org/nextcloud/mail) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/nextcloud/mail/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/nextcloud/mail/?branch=master) [![PHP Coverage](https://scrutinizer-ci.com/g/nextcloud/mail/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/nextcloud/mail/?branch=master) [![JavaScript Coverage](https://coveralls.io/repos/github/nextcloud/mail/badge.svg)](https://coveralls.io/github/nextcloud/mail) [![Bountysource](https://img.shields.io/bountysource/team/nextcloud/activity.svg?maxAge=2592000)](https://www.bountysource.com/teams/nextcloud/issues?tracker_ids=44154351) **A mail app for [Nextcloud](https://nextcloud.com)** ![](screenshots/mail.png) ## Why is this so awesome? * :rocket: **Integration with other Nextcloud apps!** Currently Contacts, Calendar & Files – more to come. * :inbox_tray: **Multiple mail accounts!** Personal and company account? No problem, and a nice unified inbox. * :lock: **Send & receive encrypted mails!** Using the great [Mailvelope](https://mailvelope.com) browser extension. * :see_no_evil: **We’re not reinventing the wheel!** Based on the great [Horde](http://horde.org) libraries. And in the works for the [coming versions](https://github.com/nextcloud/mail/milestones/): * :books: Proper grouping of message threads * :zap: Caching to make everything faster * :paperclip: Even better attachment support * :package: Folder management & moving mails ## Installation In your Nextcloud, simply navigate to »Apps«, choose the category »Social & Communication«, find the Mail app and enable it. Then open the Mail app from the app menu. Put in your mail account credentials and off you go! If you experience any issues or have any suggestions for improvement, use the [issue tracker](https://github.com/nextcloud/mail/issues). Please follow the [issue template](https://raw.githubusercontent.com/nextcloud/mail/master/.github/issue_template.md) so we get the info needed to debug and fix the problem. Thanks! ## Usage ### Keyboard shortcuts for Mail Speed up your Mail experience by using keyboard shortcuts. | Action | Shortcut | | ------------- | ---------------------------------- | | Newer message | K or | | Older message | J or | | Toggle star | S | | Toggle unread | U | | Delete | Del | | Search | Ctrl + F | | Send | Ctrl + | | Refresh | R | ## Maintainers [Christoph Wurst](https://github.com/ChristophWurst), [Jan-Christoph Borchardt](https://github.com/jancborchardt), [Steffen Lindner](https://github.com/Gomez) [and many more](https://github.com/nextcloud/mail/graphs/contributors) If you’d like to join, just run through the [issue list](https://github.com/nextcloud/mail/issues) and fix some. :) ## Troubleshooting ### Gmail If you can not access your Gmail account use https://accounts.google.com/DisplayUnlockCaptcha to unlock your account. ### Outlook.com If you can not access your Outlook.com account try to enable the 'Two-Factor Verification' (https://account.live.com/proofs/Manage) and set up an app password (https://account.live.com/proofs/AppPassword), which you then use for the Nextcloud Mail app. ### Dovecot IMAP If your Dovecot IMAP server prefixes all folders with `INBOX`, Nextcloud Mail does not work correctly. Check `/etc/dovecot/dovecot.conf`: ``` namespace inbox { separator = . # All folders prefixed # prefix = INBOX. prefix = inbox = yes type = private } ``` ## Developer setup info Just clone this repo into your apps directory (Nextcloud server installation needed). Additionally, [npm](https://www.npmjs.com/) to fetch [Node.js](https://nodejs.org/en/download/package-manager/) is needed for installing JavaScript dependencies. Once npm and Node.js are installed, PHP and JavaScript dependencies can be installed by running: ```bash make install-composer-deps make optimize-js ``` ### Nightly builds Instead of setting everything up manually, you can just [download the nightly builds](https://nightly.portknox.net/mail/?C=M;O=D) instead. These builds are updated every 24 hours, and are pre-configured with all the needed dependencies. 1. Download 2. Extract the tar archive to 'path-to-nextcloud/apps' 3. Navigate to »Apps«, choose the category »Productivity«, find the Mail app and enable it. The nightly builds are provided by [Portknox.net](https://portknox.net) ### Resetting the app Connect to your database and run the following commands (`oc_` is the default table prefix): ```sql DELETE FROM oc_appconfig WHERE appid = 'mail'; DROP TABLE oc_mail_accounts; DROP TABLE oc_mail_aliases; DROP TABLE oc_mail_collected_addresses; ``` ## Configuration Certain advanced or experimental features need to be specifically enabled in your `config.php`: ### Debug mode You can enable IMAP and SMTP backend logging. A horde_imap.log for IMAP and horde_smtp.log for SMTP will appear in the same directory as your nextcloud.log. #### IMAP logging ```php 'app.mail.imaplog.enabled' => true ``` #### SMTP logging ```php 'app.mail.smtplog.enabled' => true ``` ### Timeouts Depending on your mail host, it may be necessary to increase your IMAP and/or SMTP timeout threshold. Currently IMAP defaults to 20 seconds and SMTP defaults to 2 seconds. They can be changed as follows: #### IMAP timeout ```php 'app.mail.imap.timeout' => 20 ``` #### SMTP timeout ```php 'app.mail.smtp.timeout' => 2 ``` ### Use php-mail for sending mail You can use the php-mail function to send mails. This is needed for some webhosters (1&1 (1und1)): ```php 'app.mail.transport' => 'php-mail' ```