Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 39d7a21a authored by Pierre-Alain Bandinelli's avatar Pierre-Alain Bandinelli
Browse files

Nextcloud in the comments

parent ab89ba55
Loading
Loading
Loading
Loading
+9 −18
Original line number Diff line number Diff line
************************************************************************
*
* ownCloud/Nextcloud - RainLoop Webmail package
* Nextcloud - RainLoop Webmail package
*
* @author RainLoop Team
* @copyright 2018 RainLoop Team
* @author RainLoop Team, Pierre-Alain Bandinelli, Nextgend-networks
*
* https://github.com/RainLoop/rainloop-webmail/tree/master/build/owncloud
*
************************************************************************

REQUIREMENTS:
- ownCloud version 6 or higher
or
- Nextcloud version 10 or higher
- nextCloud version 14 and above


INSTALL:
- Unpack the RainLoop Webmail application package in the apps directory of your ownCloud or Nextcloud instance
- Make sure the rights are appropriately set

CONFIGURATION:
- ownCloud:
	1) In the Apps > Enable 'RainLoop' plugin
	2) In the Settings > Personal > Type your email server login and password
- Nextcloud:
	1) In the Apps > Enable 'RainLoop' plugin after checking 'Enable experimental apps'
	2) In the Settings > Personal > Type your email server login and password
INSTALL & CONFIGURATION:
Start within Nextcloud, and click on the "+ Apps" button in the upper-left corner dropdown menu:
Then, enable the Rainloop plugin that is in the "Social & communication" section.
After a quick wait, Rainloop is installed. Even if it is really attractive, it is too soon to click on the newly appeared "Email" icon in the apps list. You should configure Rainloop before using it (which makes some sense, doesn'it): go to Nextcloud admin panel (upper-right corner dropdown menu) and go to "Additionnal settings". There click on the "Go to RainLoop Webmail admin panel".
In the Rainloop admin prompt, the default login is "admin" and the default password is "12345". No need to advise you to change it once in the admin panel!
This is it, you are now free to configure Rainloop as you wish. One important point is the Domains section when you will set up the IMAP/SMTP parameters that shall be associated with the email adresses of your users.
+1 −1
Original line number Diff line number Diff line
5.1.1
 No newline at end of file
6.0
+3 −3
Original line number Diff line number Diff line
<?php

/**
 * ownCloud - RainLoop mail plugin
 * Nextcloud - RainLoop mail plugin
 *
 * @author RainLoop Team
 * @author RainLoop Team, Pierre-Alain Bandinelli, nextgen-networks
 *
 * https://github.com/RainLoop/rainloop-webmail/tree/master/build/owncloud
 * Based initially on https://github.com/RainLoop/rainloop-webmail/tree/master/build/owncloud
 */

OCP\User::checkAdminUser();
+3 −3
Original line number Diff line number Diff line
<?php

/**
 * ownCloud - RainLoop mail plugin
 * Nextcloud - RainLoop mail plugin
 *
 * @author RainLoop Team
 * @author RainLoop Team, Pierre-Alain Bandinelli, nextgen-networks
 *
 * https://github.com/RainLoop/rainloop-webmail/tree/master/build/owncloud
 * Based initially on https://github.com/RainLoop/rainloop-webmail/tree/master/build/owncloud
 */

\OC_JSON::checkAdminUser();
+3 −3
Original line number Diff line number Diff line
<?php

/**
 * ownCloud - RainLoop mail plugin
 * Nextcloud - RainLoop mail plugin
 *
 * @author RainLoop Team
 * @author RainLoop Team, Pierre-Alain Bandinelli, nextgen-networks
 *
 * https://github.com/RainLoop/rainloop-webmail/tree/master/build/owncloud
 * Based initially on https://github.com/RainLoop/rainloop-webmail/tree/master/build/owncloud
 */

\OC_JSON::checkLoggedIn();
Loading