mirror of
https://github.com/YunoHost-Apps/rainloop_ynh.git
synced 2024-09-03 20:16:18 +02:00
Merge pull request #49 from YunoHost-Apps/master
Merge master into testing
This commit is contained in:
commit
9190695a17
2 changed files with 10 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
# Rainloop for YunoHost
|
||||
|
||||
* [rainloop](http://rainloop.net/ ): 1.10.5.192
|
||||
* [rainloop](http://rainloop.net/ ): 1.11.3
|
||||
|
||||
## English
|
||||
Rainloop is a lightweight webmail.
|
||||
|
@ -31,7 +31,7 @@ Pour le configurer après l'installation, veuillez vous rendre sur http://DOMAIN
|
|||
- Le mot de passe admin par défaut est : Mot de passe choisi lors de l'installation
|
||||
- Si vous avez oublié votre mot de passe, vous pouvez le retrouver avec ``sudo yunohost app settings rainloop password``
|
||||
|
||||
Chaque utilisateur peut ajouter un carnet d'adresse distant CardDav via leur propre paramètres.
|
||||
Chaque utilisateur peut ajouter un carnet d'adresse distant CardDav via leurs propres paramètres.
|
||||
|
||||
- Si vous utilisez Baikal, l'adresse à renseigner est du type : https://DOMAIN.TLD/baikal/card.php/addressbooks/UTILISATEUR/default/
|
||||
- Si vous utilisez NextCloud, l'adresse à renseigner est du type : https://DOMAIN.TLD/nextcloud/remote.php/carddav/addressbooks/USER/contacts
|
||||
|
|
|
@ -1,5 +1,12 @@
|
|||
<?php
|
||||
|
||||
if (!function_exists('ereg')) {
|
||||
function ereg($pattern, $subject, &$matches = array())
|
||||
{
|
||||
return preg_match('/'.$pattern.'/', $subject, $matches);
|
||||
}
|
||||
}
|
||||
|
||||
function arguments($argv) {
|
||||
$_ARG = array();
|
||||
foreach ($argv as $arg) {
|
||||
|
@ -24,4 +31,4 @@ $oConfig = \RainLoop\Api::Config();
|
|||
$oConfig->SetPassword($args['password']);
|
||||
echo $oConfig->Save() ? 'Admin password updated' : 'Admin password not updated';
|
||||
|
||||
?>
|
||||
?>
|
||||
|
|
Loading…
Add table
Reference in a new issue